53 $this->bench_max_records = 2000;
59 $global_settings_available = $this->dic->isDependencyAvailable(
'settings');
60 if ($global_settings_available) {
61 $this->
settings = $this->dic->settings();
63 $this->db_bechmark_enabled = (bool) ($this->
retrieveSetting(self::ENABLE_DB_BENCH) ??
false);
65 $this->db_bechmark_user_id = $user_id !== null ? (
int) $user_id : null;
79 if (!$this->db instanceof
ilDBInterface && $this->dic->isDependencyAvailable(
'database')) {
80 $this->db = $this->dic->database();
92 if (!$this->
user instanceof
ilObjUser && $this->dic->isDependencyAvailable(
'user')) {
93 $this->
user = $this->dic->user();
105 $partials1 = explode(
" ", $t1);
106 $partials2 = explode(
" ", $t2);
108 return (
string) ((float) $partials2[0] - (
float) $partials1[0] + (float) $partials2[1] - (
float) $partials1[1]);
129 public function start(
string $a_module,
string $a_bench): void
138 public function stop(
string $a_module,
string $a_bench): void
151 && $this->db_bechmark_user_id === $this->
user->getId()) {
152 if (is_array($this->collected_db_benchmarks)) {
153 $this->stop_db_recording =
true;
158 foreach ($this->collected_db_benchmarks as
$b) {
160 $db->
insert(
"benchmark", [
161 "id" => [
"integer",
$id],
162 "duration" => [
"float", $this->
microtimeDiff($b[
"start"], $b[
"stop"])],
163 "sql_stmt" => [
"clob", $b[
"sql"]]
180 $cnt_set = $db->
query(
"SELECT COUNT(*) AS cnt FROM benchmark");
182 return (
int) $cnt_rec[
"cnt"];
199 return $this->db_bechmark_enabled ===
true && $this->
isDBavailable();
204 if ($a_user === null) {
209 $this->db_bechmark_enabled =
true;
210 $this->
settings->set(self::ENABLE_DB_BENCH,
'1');
214 $this->db_bechmark_user_id = $user_id;
215 $this->
settings->set(self::DB_BENCH_USER, (
string) $user_id);
220 $this->db_bechmark_enabled =
false;
221 $this->
settings->set(self::ENABLE_DB_BENCH,
'0');
222 $this->db_bechmark_user_id = null;
223 $this->
settings->set(self::DB_BENCH_USER,
'0');
233 !$this->stop_db_recording
236 && $this->db_bechmark_user_id === $this->
user->getId()
238 $this->
start = (string) microtime();
239 $this->temporary_sql_storage = $a_sql;
246 !$this->stop_db_recording
249 && $this->db_bechmark_user_id === $this->
user->getId()
264 $set = $db->
query(
"SELECT * FROM benchmark");
268 "sql" => $rec[
"sql_stmt"],
269 "time" => $rec[
"duration"]
insert(string $table_name, array $values)
fetchAssoc(ilDBStatement $statement)
static _lookupId($a_user_str)
__construct()
Constructor.
start(string $a_module, string $a_bench)
start measurement
stop(string $a_module, string $a_bench)
stop measurement
Customizing of pimple-DIC for ILIAS.
isDbBenchEnabled()
Check wether benchmarking is enabled or not.
getCurrentRecordNumber()
get current number of benchmark records
retrieveSetting(string $keyword)
enableDbBenchmarkForUserName(?string $a_user)
nextId(string $table_name)
query(string $query)
Run a (read-only) Query on the database.
clearData()
delete all measurement data
startDbBench(string $a_sql)
start measurement
string $temporary_sql_storage
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
bool $db_bechmark_enabled
array $collected_db_benchmarks
microtimeDiff(string $t1, string $t2)
manipulate(string $query)
Run a (write) Query on the database.
save()
save all measurements