-
Notifications
You must be signed in to change notification settings - Fork 0
/
debugger.install
407 lines (391 loc) · 12.4 KB
/
debugger.install
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
<?php
/**
* @file
* Installation file
*
*/
/**
* Implementation of hook_schema().
*/
function debugger_schema() {
$schema['debugger_requests'] = array(
'description' => t('Stores HTTP requests for Drupal debugger.'),
'fields' => array(
'rid' => array(
'description' => 'The primary identifier for a request.',
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE),
/* Do we need this?
'host' => array(
'description' => 'URL host of this entry.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => ''),
*/
'path' => array(
'description' => 'URL page path of this entry.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => ''),
'rpath' => array(
'description' => 'Router menu page path of this entry.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => ''),
'fid' => array(
'description' => 'The file identifier of menu callback.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0),
'fncid' => array(
'description' => 'The function identifier of menu callback.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE),
'mem_fncid' => array(
'description' => 'Function which uses the most memory for that request.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE),
'slow_fncid' => array(
'description' => 'The slowest function.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE),
'slow_qid' => array(
'description' => 'Query ID of the slowest db query of that request.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE),
'query' => array(
'description' => 'URL page query of this entry.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => ''),
'post' => array(
'type' => 'text',
'not null' => FALSE,
'size' => 'big',
'description' => 'A serialized array of POST value pairs that are related to arguments passwd by posting the values by user.'),
'uid' => array(
'description' => 'The {users}.uid corresponding to a session, or 0 for anonymous user.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE),
'time' => array(
'type' => 'float',
'not null' => FALSE,
'description' => 'The total time in miliseconds of that request.',
),
'memory' => array(
'type' => 'int',
'not null' => FALSE,
'description' => 'The memory used in kilobytes of that request.',
),
'num_sql' => array(
'description' => 'Number of sql queries of that request.',
'type' => 'int',
'not null' => TRUE),
'num_ticks' => array(
'description' => 'Number of PHP ticks executed in that request.',
'type' => 'int',
'not null' => TRUE),
'num_err' => array(
'description' => 'Number of PHP errors of that request.',
'type' => 'int',
'not null' => TRUE),
'num_warn' => array(
'description' => 'Number of PHP warnings of that request.',
'type' => 'int',
'not null' => TRUE),
'num_notices' => array(
'description' => 'Number of PHP notices of that request.',
'type' => 'int',
'not null' => TRUE),
'page_args' => array(
'description' => 'Page arguments passed for this request.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => ''),
'options' => array(
'description' => 'Serialized additional custom options for that request.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => ''),
'timestamp' => array(
'description' => 'The Unix timestamp when the request was created.',
'type' => 'int',
'not null' => TRUE,
'default' => 0),
),
'primary key' => array('rid'),
'indexes' =>
array(
'path' => array('path'),
),
);
$schema['debugger_functions'] = array(
'description' => t('Stores function calls for Drupal debugger.'),
'fields' => array(
'fncid' => array(
'description' => 'The primary identifier for a function.',
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE),
'name' => array(
'description' => 'A function name.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => ''),
'fid' => array(
'description' => 'File ID where this function exists.',
'type' => 'int',
// 'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0),
'line' => array(
'description' => 'The line of the file.',
'type' => 'int',
'not null' => TRUE),
'args' => array(
'description' => 'Serialized function arguments.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => ''),
'description' => array(
'description' => 'A description of that function.',
'type' => 'text',
'not null' => TRUE),
'options' => array(
'description' => 'Serialized additional custom options for that function.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => ''),
),
'primary key' => array('fncid'),
'unique keys' => array(
'name_fid_line' => array('name', 'fid', 'line'),
),
'indexes' =>
array(
'name' => array('name'),
'fid' => array('fid'),
),
);
$schema['debugger_sql_queries'] = array(
'description' => t('Stores database queries for Drupal debugger.'),
'fields' => array(
'qid' => array(
'description' => 'The primary identifier of the query.',
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE),
'fncid' => array(
'description' => 'The function identifier.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE),
'time' => array(
'type' => 'float',
'not null' => FALSE,
'description' => 'The current time in miliseconds of that query.',
'num' => array(
'description' => 'Average number of this sql query per request where is used.',
'type' => 'int',
'not null' => TRUE),
'options' => array(
'description' => 'Serialized additional custom options for that query.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => ''),
),
),
'primary key' => array('qid'),
);
$schema['debugger_files'] = array(
'description' => t('Stores filenames for Drupal debugger.'),
'fields' => array(
'fid' => array(
'description' => 'The primary identifier for a file.',
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE),
'filepath' => array(
'description' => 'Path of the file relative to Drupal root.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => ''),
'module' => array(
'description' => 'The name of the module which file belongs to (e.g. node, drupal for core).',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => ''),
'options' => array(
'description' => 'Serialized additional custom options for that file.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => ''),
),
'primary key' => array('fid'),
'unique keys' => array(
'filepath' => array('filepath'),
),
);
$schema['debugger_traces'] = array(
'description' => t('Stores straces for Drupal debugger.'),
'fields' => array(
'tid' => array(
'description' => 'The primary identifier for a trace.',
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE),
'ptid' => array(
'description' => 'The parent trace ID.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0),
'fncid' => array(
'description' => 'The function identifier.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE),
'pfncid' => array(
'description' => 'The parent function ID which called this function.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0),
'fid' => array(
'description' => 'The file identifier.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0),
'line' => array(
'description' => 'The line in the file of that trace.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE),
'rid' => array(
'description' => 'The request identifier.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0),
/*
'pid' => array(
'description' => 'The trace item parent.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0),
*/
/*
'time' => array(
'type' => 'float',
'not null' => FALSE,
'description' => 'The current time in miliseconds of that trace.',
),
*/
'time_delta' => array(
'type' => 'float',
'not null' => FALSE,
'description' => 'Delta of time in miliseconds of that trace.',
),
'mem_delta' => array(
'type' => 'int',
'not null' => FALSE,
'description' => 'The memory used in kilobytes',
),
'args' => array(
'type' => 'text',
'not null' => FALSE,
'size' => 'big',
'description' => 'A serialized array of name value pairs that are related to arguments passed to the function.'),
'options' => array(
'description' => 'Serialized additional custom options for that trace.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => ''),
),
'primary key' => array('tid'),
'unique keys' => array(
'rid_fncid_pfncid_fid_line' => array('rid', 'fncid', 'pfncid', 'fid', 'line'),
),
'indexes' =>
array(
'fncid' => array('fncid'),
'pfncid' => array('pfncid'),
'fid' => array('fid'),
'rid' => array('rid'),
),
);
return $schema;
}
/**
* Test and report Drupal installation requirements.
*
* @param $phase
* The current system installation phase.
* @return
* An array of system requirements.
*/
function debugger_requirements($phase) {
$requirements = array();
// Ensure translations don't break at install time
$t = get_t();
try {
declare(ticks = 1);
// register_shutdown_function('drupal_set_message', 'Sorry!'); // Doesn't work when crashes
register_tick_function('debugger_test'); // FIXME: it crashes anyway, needs some better method to check it
unregister_tick_function('debugger_test');
} catch (Exception $e) {
watchdog('php', $e, array(), 'error'); // TODO: check the correct parameters
}
// var_dump($debugger_compatible); exit;
if (!debugger_test(TRUE)) {
$requirements['debugger_php']['title'] = $t("PHP register_tick compatible");
$requirements['debugger_php']['description'] = $t("Your PHP installation doesn't support register_tick_function() on threaded web server modules with PHP 5.2 or lower, sorry.");
$requirements['debugger_php']['severity'] = REQUIREMENT_ERROR;
/* Learn more: http://php.net/register_tick_function */
}
return $requirements;
}
/**
* Test function to check if PHP installation supports register_tick_function()
*/
function debugger_test($return = FALSE) {
static $debugger_compatible = FALSE;
!$return ? $debugger_compatible = TRUE : NULL;
return $debugger_compatible;
}
/**
* Implementation of hook_install().
*/
function debugger_install() {
// drupal_install_schema('debugger');
}
/**
* Implementation of hook_uninstall().
*/
function debugger_uninstall() {
db_query("DELETE FROM {variable} WHERE name LIKE 'debugger_%%'");
// drupal_uninstall_schema('debugger');
}