ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilBenchmark.php
Go to the documentation of this file.
1 <?php
2 
20 
25 {
26  public const DB_BENCH_USER = "db_bench_user";
27  public const ENABLE_DB_BENCH = "enable_db_bench";
28  private ?ilDBInterface $db = null;
29  private ?ilSetting $settings = null;
30  private ?ilObjUser $user = null;
31 
32  private Container $dic;
33 
34  private string $start = '';
35  private ?string $temporary_sql_storage = '';
36  private array $collected_db_benchmarks = [];
37 
38  private bool $stop_db_recording = false;
39 
40  private int $bench_max_records;
41 
42  private ?bool $db_bechmark_enabled = null;
43  private ?int $db_bechmark_user_id = null;
44 
48  public function __construct()
49  {
50  global $DIC;
51  $this->dic = $DIC;
52  $this->initSettins();
53  $this->bench_max_records = 2000;//(int) ($this->retrieveSetting("bench_max_records") ?? 0);
54  }
55 
56  private function initSettins(): void
57  {
58  if (!$this->settings instanceof ilSetting) {
59  $global_settings_available = $this->dic->isDependencyAvailable('settings');
60  if ($global_settings_available) {
61  $this->settings = $this->dic->settings();
62 
63  $this->db_bechmark_enabled = (bool) ($this->retrieveSetting(self::ENABLE_DB_BENCH) ?? false);
64  $user_id = $this->retrieveSetting(self::DB_BENCH_USER);
65  $this->db_bechmark_user_id = $user_id !== null ? (int) $user_id : null;
66  }
67  }
68  }
69 
70  private function retrieveSetting(string $keyword): ?string
71  {
72  return $this->settings !== null
73  ? $this->settings->get($keyword)
74  : null;
75  }
76 
77  private function retrieveDB(): ?ilDBInterface
78  {
79  if (!$this->db instanceof ilDBInterface && $this->dic->isDependencyAvailable('database')) {
80  $this->db = $this->dic->database();
81  }
82  return $this->db;
83  }
84 
85  private function isDBavailable(): bool
86  {
87  return !is_null($this->retrieveDB());
88  }
89 
90  private function retrieveUser(): ?ilObjUser
91  {
92  if (!$this->user instanceof ilObjUser && $this->dic->isDependencyAvailable('user')) {
93  $this->user = $this->dic->user();
94  }
95  return $this->user;
96  }
97 
98  private function isUserAvailable(): bool
99  {
100  return !is_null($this->retrieveUser());
101  }
102 
103  private function microtimeDiff(string $t1, string $t2): string
104  {
105  $partials1 = explode(" ", $t1);
106  $partials2 = explode(" ", $t2);
107 
108  return (string) ((float) $partials2[0] - (float) $partials1[0] + (float) $partials2[1] - (float) $partials1[1]);
109  }
110 
114  public function clearData(): void
115  {
116  if ($this->isDBavailable()) {
117  $db = $this->retrieveDB();
118  if ($db !== null) {
119  $db->manipulate("DELETE FROM benchmark");
120  }
121  }
122  }
123 
129  public function start(string $a_module, string $a_bench): void
130  {
131  }
132 
138  public function stop(string $a_module, string $a_bench): void
139  {
140  }
141 
145  public function save(): void
146  {
147  if (!$this->isDBavailable() || !$this->isUserAvailable()) {
148  return;
149  }
150  if ($this->isDbBenchEnabled()
151  && $this->db_bechmark_user_id === $this->user->getId()) {
152  if (is_array($this->collected_db_benchmarks)) {
153  $this->stop_db_recording = true;
154 
155  $db = $this->retrieveDB();
156  if ($db !== null) {
157  $db->manipulate("DELETE FROM benchmark");
158  foreach ($this->collected_db_benchmarks as $b) {
159  $id = $db->nextId('benchmark');
160  $db->insert("benchmark", [
161  "id" => ["integer", $id],
162  "duration" => ["float", $this->microtimeDiff($b["start"], $b["stop"])],
163  "sql_stmt" => ["clob", $b["sql"]]
164  ]);
165  }
166  }
167  }
168  $this->disableDbBenchmark();
169  }
170  }
171 
175  private function getCurrentRecordNumber(): int
176  {
177  if ($this->isDBavailable()) {
178  $db = $this->retrieveDB();
179  if ($db !== null) {
180  $cnt_set = $db->query("SELECT COUNT(*) AS cnt FROM benchmark");
181  $cnt_rec = $db->fetchAssoc($cnt_set);
182  return (int) $cnt_rec["cnt"];
183  }
184  }
185  return 0;
186  }
187 
188  //
189  //
190  // NEW DB BENCHMARK IMPLEMENTATION
191  //
192  //
193 
197  public function isDbBenchEnabled(): bool
198  {
199  return $this->db_bechmark_enabled === true && $this->isDBavailable();
200  }
201 
202  public function enableDbBenchmarkForUserName(?string $a_user): void
203  {
204  if ($a_user === null) {
205  $this->disableDbBenchmark();
206  return;
207  }
208  $this->initSettins();
209  $this->db_bechmark_enabled = true;
210  $this->settings->set(self::ENABLE_DB_BENCH, '1');
211 
212  $user_id = ilObjUser::_lookupId($a_user);
213 
214  $this->db_bechmark_user_id = $user_id;
215  $this->settings->set(self::DB_BENCH_USER, (string) $user_id);
216  }
217 
218  public function disableDbBenchmark(): void
219  {
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');
224  }
225 
229  public function startDbBench(string $a_sql): void
230  {
231  $this->initSettins();
232  if (
233  !$this->stop_db_recording
234  && $this->isDbBenchEnabled()
235  && $this->isUserAvailable()
236  && $this->db_bechmark_user_id === $this->user->getId()
237  ) {
238  $this->start = (string) microtime();
239  $this->temporary_sql_storage = $a_sql;
240  }
241  }
242 
243  public function stopDbBench(): bool
244  {
245  if (
246  !$this->stop_db_recording
247  && $this->isDbBenchEnabled()
248  && $this->isUserAvailable()
249  && $this->db_bechmark_user_id === $this->user->getId()
250  ) {
251  $this->collected_db_benchmarks[] = ["start" => $this->start, "stop" => (string) microtime(), "sql" => $this->temporary_sql_storage];
252 
253  return true;
254  }
255 
256  return false;
257  }
258 
259  public function getDbBenchRecords(): array
260  {
261  if ($this->isDBavailable()) {
262  $db = $this->retrieveDB();
263  if ($db !== null) {
264  $set = $db->query("SELECT * FROM benchmark");
265  $b = [];
266  while ($rec = $db->fetchAssoc($set)) {
267  $b[] = [
268  "sql" => $rec["sql_stmt"],
269  "time" => $rec["duration"]
270  ];
271  }
272  return $b;
273  }
274  }
275  return [];
276  }
277 }
insert(string $table_name, array $values)
fetchAssoc(ilDBStatement $statement)
ilSetting $settings
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.
Definition: Container.php:31
isDbBenchEnabled()
Check wether benchmarking is enabled or not.
global $DIC
Definition: feed.php:28
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
ilDBInterface $db
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
Class ilBenchmark.
array $collected_db_benchmarks
microtimeDiff(string $t1, string $t2)
manipulate(string $query)
Run a (write) Query on the database.
save()
save all measurements