forked from jokkedk/webgrind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
159 lines (142 loc) · 4.91 KB
/
config.php
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
<?php
/**
* Configuration for webgrind
* @author Jacob Oettinger
* @author Joakim Nygård
*/
class Webgrind_Config extends Webgrind_MasterConfig {
/**
* Automatically check if a newer version of webgrind is available for download
*/
static $checkVersion = true;
static $hideWebgrindProfiles = true;
/**
* Writable dir for information storage.
* If empty, will use system tmp folder or xdebug tmp
*/
static $storageDir = '';
static $profilerDir = '/tmp';
/**
* Suffix for preprocessed files
*/
static $preprocessedSuffix = '.webgrind';
/**
* Image type of graph to output
* Can be png or svg
*/
static $graphImageType = 'svg';
static $defaultTimezone = 'Europe/Copenhagen';
static $dateFormat = 'Y-m-d H:i:s';
static $defaultCostformat = 'percent'; // 'percent', 'usec' or 'msec'
static $defaultFunctionPercentage = 90;
static $defaultHideInternalFunctions = false;
/**
* Path to python executable
*/
static $pythonExecutable = '/usr/bin/python';
/**
* Path to graphviz dot executable
*/
static $dotExecutable = '/usr/bin/dot';
/**
* sprintf compatible format for generating links to source files.
* %1$s will be replaced by the full path name of the file
* %2$d will be replaced by the linenumber
*/
static $fileUrlFormat = 'index.php?op=fileviewer&file=%1$s#line%2$d'; // Built in fileviewer
//static $fileUrlFormat = 'txmt://open/?url=file://%1$s&line=%2$d'; // Textmate
//static $fileUrlFormat = 'file://%1$s'; // ?
/**
* format of the trace drop down list
* default is: invokeurl (tracefile_name) [tracefile_size]
* the following options will be replaced:
* %i - invoked url
* %f - trace file name
* %s - size of trace file
* %m - modified time of file name (in dateFormat specified above)
*/
static $traceFileListFormat = '%i (%f) [%s]';
/**
* Proxy functions are stepped over transparently. Functions listed here
* MUST make exactly one (though not necessarily the same one) function
* call per execution.
*/
static $proxyFunctions = array( // resolve dynamic function calls in-place
'php::call_user_func',
'php::call_user_func_array',
);
//static $proxyFunctions = array(); // do not skip any functions
/**
* Specify which fields display, and the order to display them. Uncomment
* entries to enable, move entries to change order.
*/
static $tableFields = array(
'Invocation Count',
'Total Self Cost',
//'Average Self Cost',
'Total Inclusive Cost',
//'Average Inclusive Cost',
);
#########################
# BELOW NOT FOR EDITING #
#########################
/**
* Regex that matches the trace files generated by xdebug
*/
static function xdebugOutputFormat() {
$outputName = ini_get('xdebug.profiler_output_name');
if ($outputName=='') // Ini value not defined
$outputName = '/^cachegrind\.out\..+$/';
else
$outputName = '/^'.preg_replace('/(%[^%])+/', '.+', $outputName).'$/';
return $outputName;
}
/**
* Directory to search for trace files
*/
static function xdebugOutputDir() {
$dir = ini_get('xdebug.profiler_output_dir');
if ($dir=='') // Ini value not defined
return realpath(Webgrind_Config::$profilerDir).'/';
return realpath($dir).'/';
}
/**
* Writable dir for information storage
*/
static function storageDir() {
if (!empty(Webgrind_Config::$storageDir))
return realpath(Webgrind_Config::$storageDir).'/';
if (!function_exists('sys_get_temp_dir') || !is_writable(sys_get_temp_dir())) {
// use xdebug setting
return Webgrind_Config::xdebugOutputDir();
}
return realpath(sys_get_temp_dir()).'/';
}
/**
* Binary version of the preprocessor (for faster preprocessing)
*
* If the proper tools are installed and the bin dir is writeable for php,
* automatically compile it (when necessary).
* Automatic compilation disabled if `bin/make-failed` exists.
* Run `make` in the webgrind root directory to manually compile.
*/
static function getBinaryPreprocessor() {
$localBin = __DIR__.'/bin/';
$makeFailed = $localBin.'make-failed';
if (is_writable($localBin) && !file_exists($makeFailed)) {
$make = '/usr/bin/make';
if (is_executable($make)) {
$cwd = getcwd();
chdir(__DIR__);
exec($make, $output, $retval);
chdir($cwd);
if ($retval != 0) {
touch($makeFailed);
}
} else {
touch($makeFailed);
}
}
return $localBin.'preprocessor';
}
}