forked from vim-php/phpctags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap.php
257 lines (228 loc) · 7.49 KB
/
bootstrap.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
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
<?php
if (file_exists($autoload = __DIR__ . '/vendor/autoload.php')) {
require($autoload);
} elseif (file_exists($autoload = __DIR__ . '/../../autoload.php')) {
require($autoload);
} else {
die(
'You must set up the project dependencies, run the following commands:'.PHP_EOL.
'curl -s http://getcomposer.org/installer | php'.PHP_EOL.
'php composer.phar install'.PHP_EOL
);
}
$version = PHPCtags::VERSION;
$copyright = <<<'EOF'
Exuberant Ctags compatiable PHP enhancement, Copyright (C) 2012 Techlive Zheng
Addresses: <techlivezheng@gmail.com>, https://github.com/techlivezheng/phpctags
EOF;
$options = getopt('af:Nno:RuV', array(
'append::',
'debug',
'exclude:',
'excmd::',
'fields::',
'format::',
'help',
'recurse::',
'sort::',
'version',
'memory::',
));
$options_info = <<<'EOF'
phpctags currently only supports a subset of the original ctags' options.
Usage: phpctags [options] [file(s)]
-a Append the tags to an existing tag file.
-f <name>
Write tags to specified file. Value of "-" writes tags to stdout
["tags"].
-n Equivalent to --excmd=number.
-N Equivalent to --excmd=pattern.
-o Alternative for -f.
-R Equivalent to --recurse.
-u Equivalent to --sort=no.
-V Equivalent to --verbose.
--append=[yes|no]
Should tags should be appended to existing tag file [no]?
--debug
phpctags only
Repect PHP's error level configuration.
--exclude=pattern
Exclude files and directories matching 'pattern'.
--excmd=number|pattern|mix
Uses the specified type of EX command to locate tags [mix].
--fields=[+|-]flags
Include selected extension fields (flags: "afmikKlnsStz") [fks].
--format=level
Force output of specified tag file format [2].
--help
Print this option summary.
--memory=[-1|bytes|KMG]
phpctags only
Set how many memories phpctags could use.
--recurse=[yes|no]
Recurse into directories supplied on command line [no].
--sort=[yes|no|foldcase]
Should tags be sorted (optionally ignoring case) [yes]?.
--version
Print version identifier to standard output.
EOF;
// prune options and its value from the $argv array
$argv_ = array();
foreach ($options as $option => $value) {
foreach ($argv as $key => $chunk) {
$regex = '/^'. (isset($option[1]) ? '--' : '-') . $option . '/';
if ($chunk == $value && $argv[$key-1][0] == '-' || preg_match($regex, $chunk)) {
array_push($argv_, $key);
}
}
}
while ($key = array_pop($argv_)) unset($argv[$key]);
// option -V is an alternative to --version
if (isset($options['V'])) {
$options['version'] = FALSE;
}
if (!isset($options['debug'])) {
error_reporting(0);
}
if (isset($options['help'])) {
echo "Version: ".$version."\n\n".$copyright;
echo PHP_EOL;
echo PHP_EOL;
echo $options_info;
echo PHP_EOL;
exit;
}
if (isset($options['version'])) {
echo "Version: ".$version."\n\n".$copyright;
echo PHP_EOL;
exit;
}
array_shift($argv);
// option -o is an alternative to -f
if (isset($options['o']) && !isset($options['f'])) {
$options['f'] = $options['o'];
}
// if both -n and -N options are given, use the last specified one
if (isset($options['n']) && isset($options['N'])) {
if (array_search('n', array_keys($options)) < array_search('N', array_keys($options))) {
unset($options['n']);
} else {
unset($options['N']);
}
}
// option -n is equivalent to --excmd=number
if (isset($options['n']) && !isset($options['N'])) {
$options['excmd'] = 'number';
}
// option -N is equivalent to --excmd=pattern
if (isset($options['N']) && !isset($options['n'])) {
$options['excmd'] = 'pattern';
}
if (!isset($options['excmd']))
$options['excmd'] = 'pattern';
if (!isset($options['format']))
$options['format'] = 2;
if (!isset($options['memory']))
$options['memory'] = '128M';
if (!isset($options['fields'])) {
$options['fields'] = array('n', 'k', 's', 'a','i');
} else {
$options['fields'] = str_split($options['fields']);
}
// handle -u or --sort options
if (isset($options['sort'])) {
// --sort or --sort=[Y,y,YES,Yes,yes]
if ($options['sort'] === FALSE || yes_or_no($options['sort']) == 'yes') {
$options['sort'] = 'yes';
// --sort=[N,n,NO,No,no]
} else if (yes_or_no($options['sort']) == 'no') {
$options['sort'] = 'no';
// --sort=foldcase, case insensitive sorting
} else if ($options['sort'] == 'foldcase') {
$options['sort'] = 'foldcase';
} else {
die('phpctags: Invalid value for "sort" option'.PHP_EOL);
}
// option -n is equivalent to --sort=no
} else if (isset($options['u'])) {
$options['sort'] = 'no';
// sort the result by default
} else {
$options['sort'] = 'yes';
}
// if the memory limit option is set and is valid, adjust memory
if (isset($options['memory'])) {
$memory_limit = trim($options['memory']);
if (isMemoryLimitValid($memory_limit)) {
ini_set('memory_limit', $memory_limit);
}
}
if (isset($options['append'])) {
if ($options['append'] === FALSE || yes_or_no($options['append']) == 'yes') {
$options['a'] = FALSE;
} else if (yes_or_no($options['append']) != 'no') {
die('phpctags: Invalid value for "append" option'.PHP_EOL);
}
}
if (isset($options['recurse'])) {
if ($options['recurse'] === FALSE || yes_or_no($options['recurse']) == 'yes') {
$options['R'] = FALSE;
} else if (yes_or_no($options['recurse']) != 'no') {
die('phpctags: Invalid value for "recurse" option'.PHP_EOL);
}
}
// if option -R is given and no file is specified, use current working directory
if (isset($options['R']) && empty($argv)) {
$argv[] = getcwd();
}
try {
$ctags = new PHPCtags($options);
$ctags->addFiles($argv);
$result = $ctags->export();
} catch (Exception $e) {
die("phpctags: {$e->getMessage()}".PHP_EOL);
}
// write to a specified file
if (isset($options['f']) && $options['f'] !== '-') {
$tagfile = fopen($options['f'], isset($options['a']) ? 'a' : 'w');
// write to stdout only when instructed
} else if (isset($options['f']) && $options['f'] === '-') {
$tagfile = fopen('php://stdout', 'w');
// write to file 'tags' by default
} else {
$tagfile = fopen('tags', isset($options['a']) ? 'a' : 'w');
}
$mode = ($options['sort'] == 'yes' ? 1 : ($options['sort'] == 'foldcase' ? 2 : 0));
$tagline = <<<EOF
!_TAG_FILE_FORMAT\t2\t/extended format; --format=1 will not append ;" to lines/
!_TAG_FILE_SORTED\t{$mode}\t/0=unsorted, 1=sorted, 2=foldcase/
!_TAG_PROGRAM_AUTHOR\ttechlivezheng\t/techlivezheng@gmail.com/
!_TAG_PROGRAM_NAME\tphpctags\t//
!_TAG_PROGRAM_URL\thttps://github.com/techlivezheng/phpctags\t/official site/
!_TAG_PROGRAM_VERSION\t${version}\t//\n
EOF;
fwrite($tagfile, $tagline.$result);
fclose($tagfile);
function yes_or_no($arg) {
if (preg_match('/\b[Y|y]([E|e][S|s])?\b/', $arg)) {
return 'yes';
} else if (preg_match('/\b[N|n]([O|o])?\b/', $arg)) {
return 'no';
} else {
return false;
}
}
function isMemoryLimitValid($memory_limit) {
if ($memory_limit == "-1") {
// no memory limit
return true;
} elseif (is_numeric($memory_limit) && $memory_limit > 0) {
// memory limit provided in bytes
return true;
} elseif (preg_match("/\d+\s*[KMG]/", $memory_limit)) {
// memory limit provided in human readable sizes
// as specified here: http://www.php.net/manual/en/faq.using.php#faq.using.shorthandbytes
return true;
}
return false;
}