-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathEnvironment.php
514 lines (425 loc) · 11.6 KB
/
Environment.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
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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
<?php
namespace Gregwar\RST;
class Environment
{
/**
* Letters used as separators for titles and horizontal line
*/
public static $letters = array('=', '-', '~', '*', '^', '"');
// Error manager
public $errorManager = null;
// Table letters
public static $tableLetter = '=';
public static $prettyTableLetter = '-';
public static $prettyTableHeader = '=';
public static $prettyTableJoint = '+';
// Title letter for each levels
protected $currentTitleLevel = 0;
protected $titleLetters = array();
// Current file name
protected $currentFileName = null;
protected $currentDirectory = '.';
protected $targetDirectory = '.';
protected $url = null;
// References that can be resolved
protected $references = array();
// Metas
protected $metas = null;
// Dependencies of this document
protected $dependencies = array();
// Variables of the document
protected $variables = array();
// Links
protected $links = array();
// Level counters
protected $levels = array();
protected $counters = array();
// Enable relative URLs
protected $relativeUrls = true;
// Anonymous links stack
protected $anonymous = array();
public function __construct()
{
$this->errorManager = new ErrorManager;
$this->reset();
}
/**
* Puts the environment in a clean state for a new parse, like title level order.
*/
public function reset()
{
$this->titleLetters = array();
$this->currentTitleLevel = 0;
$this->levels = array();
$this->counters = array();
for ($level=0; $level<16; $level++) {
$this->levels[$level] = 1;
$this->counters[$level] = 0;
}
}
public function getErrorManager()
{
return $this->errorManager;
}
public function setErrorManager(ErrorManager $errorManager)
{
$this->errorManager = $errorManager;
}
public function setMetas($metas)
{
$this->metas = $metas;
}
/**
* Get my parent metas
*/
public function getParent()
{
if (!$this->currentFileName || !$this->metas) {
return null;
}
$meta = $this->metas->get($this->currentFileName);
if (!$meta || !isset($meta['parent'])) {
return null;
}
$parent = $this->metas->get($meta['parent']);
if (!$parent) {
return null;
}
return $parent;
}
/**
* Get the docs involving this document
*/
public function getMyToc()
{
$parent = $this->getParent();
if ($parent) {
foreach ($parent['tocs'] as $toc) {
if (in_array($this->currentFileName, $toc)) {
$before = array();
$after = $toc;
while ($after) {
$file = array_shift($after);
if ($file == $this->currentFileName) {
return array($before, $after);
}
$before[] = $file;
}
}
}
}
return null;
}
/**
* Registers a new reference
*/
public function registerReference(Reference $reference)
{
$name = $reference->getName();
$this->references[$name] = $reference;
}
/**
* Resolves a reference
*/
public function resolve($section, $data)
{
if (isset($this->references[$section])) {
$reference = $this->references[$section];
return $reference->resolve($this, $data);
}
$this->errorManager->error('Unknown reference section '.$section);
}
public function found($section, $data)
{
if (isset($this->references[$section])) {
$reference = $this->references[$section];
return $reference->found($this, $data);
}
$this->errorManager->error('Unknown reference section '.$section);
}
/**
* Sets the giving variable to a value
*
* @param $variable the variable name
* @param $value the variable value
*/
public function setVariable($variable, $value)
{
$this->variables[$variable] = $value;
}
/**
* Title level
*/
public function createTitle($level)
{
for ($currentLevel=0; $currentLevel<16; $currentLevel++) {
if ($currentLevel > $level) {
$this->levels[$currentLevel] = 1;
$this->counters[$currentLevel] = 0;
}
}
$this->levels[$level] = 1;
$this->counters[$level]++;
$token = array('title');
for ($i=1; $i<=$level; $i++) {
$token[] = $this->counters[$i];
}
return implode('.', $token);
}
/**
* Get a level number
*/
public function getNumber($level)
{
return $this->levels[$level]++;
}
/**
* Gets the variable value
*
* @param $name the variable name
*/
public function getVariable($variable, $default = null)
{
if (isset($this->variables[$variable])) {
return $this->variables[$variable];
}
return $default;
}
/**
* Set the link url
*/
public function setLink($name, $url)
{
$name = trim(strtolower($name));
if ($name == '_') {
$name = array_shift($this->anonymous);
}
$this->links[$name] = trim($url);
}
/**
* Resets the anonymous stack
*/
public function resetAnonymousStack()
{
$this->anonymous = array();
}
/**
* Set the current anonymous links name
*/
public function pushAnonymous($name)
{
$this->anonymous[] = trim(strtolower($name));
}
/**
* Get a link value
*/
public function getLink($name, $relative = true)
{
$name = trim(strtolower($name));
if (isset($this->links[$name])) {
$link = $this->links[$name];
if ($relative) {
return $this->relativeUrl($link);
}
return $link;
}
return null;
}
/**
* Adds a dependency to the document
*/
public function addDependency($dependency)
{
$dependency = $this->canonicalUrl($dependency);
$this->dependencies[] = $dependency;
}
/**
* Getting all the dependencies for this environment
*/
public function getDependencies()
{
return $this->dependencies;
}
/**
* Resolves a relative URL using directories, for instance, if the
* current directory is "path/to/something", and you want to get the
* relative URL to "path/to/something/else.html", the result will
* be else.html. Else, "../" will be added to go to the upper directory
*/
public function relativeUrl($url)
{
// If string contains ://, it is considered as absolute
if (preg_match('/:\\/\\//mUsi', $url)) {
return $url;
}
// If string begins with "/", the "/" is removed to resolve the
// relative path
if (strlen($url) && $url[0] == '/') {
$url = substr($url, 1);
if ($this->samePrefix($url)) {
// If the prefix is the same, simply returns the file name
$relative = basename($url);
} else {
// Else, returns enough ../ to get upper
$relative = '';
for ($k=0; $k<$this->getDepth(); $k++) {
$relative .= '../';
}
$relative .= $url;
}
} else {
$relative = $url;
}
return $relative;
}
/**
* Use relative URLs for links
*/
public function useRelativeUrls()
{
return $this->relativeUrls;
}
/**
* Use relative URLs for links
*/
public function setUseRelativeUrls($enable)
{
$this->relativeUrls = $enable;
}
/**
* Get the depth of the current file name (the number of parent
* directories)
*/
public function getDepth()
{
return count(explode('/', $this->currentFileName))-1;
}
/**
* Returns true if the given url have the same prefix as the
* current document
*/
protected function samePrefix($url)
{
$partsA = explode('/', $url);
$partsB = explode('/', $this->currentFileName);
$n = count($partsA);
if ($n != count($partsB)) {
return false;
}
unset($partsA[$n-1]);
unset($partsB[$n-1]);
return $partsA == $partsB;
}
/**
* Returns the directory name
*/
public function getDirName()
{
$dirname = dirname($this->currentFileName);
if ($dirname == '.') {
return '';
}
return $dirname;
}
/**
* Canonicalize a path, a/b/c/../d/e will become
* a/b/d/e
*/
protected function canonicalize($url)
{
$parts = explode('/', $url);
$stack = array();
foreach ($parts as $part) {
if ($part == '..') {
array_pop($stack);
} else {
$stack[] = $part;
}
}
return implode('/', $stack);
}
/**
* Gets a canonical URL from the given one
*/
public function canonicalUrl($url)
{
if (strlen($url)) {
if ($url[0] == '/') {
// If the URL begins with a "/", the following is the
// canonical URL
return substr($url, 1);
} else {
// Else, the canonical name is under the current dir
if ($this->getDirName()) {
return $this->canonicalize($this->getDirName() . '/' .$url);
} else {
return $this->canonicalize($url);
}
}
}
return null;
}
/**
* Sets the current file name
*/
public function setCurrentFileName($filename)
{
$this->currentFileName = $filename;
}
/**
* Sets the directory of the current parsing
*/
public function setCurrentDirectory($directory)
{
$this->currentDirectory = $directory;
}
/**
* Returns an absolute path for a relative given URL
*/
public function absoluteRelativePath($url)
{
return $this->currentDirectory . '/' . $this->getDirName() . '/' . $this->relativeUrl($url);
}
public function setTargetDirectory($directory)
{
$this->targetDirectory = $directory;
}
public function getTargetDirectory()
{
return $this->targetDirectory;
}
public function getUrl()
{
if ($this->url) {
return $this->url;
} else {
return $this->currentFileName;
}
}
public function setUrl($url)
{
if ($this->getDirName()) {
$url = $this->getDirName() . '/' . $url;
}
$this->url = $url;
}
public function getMetas()
{
return $this->metas;
}
public function getLevel($letter)
{
foreach ($this->titleLetters as $level => $titleLetter) {
if ($letter == $titleLetter) {
return $level;
}
}
$this->currentTitleLevel++;
$this->titleLetters[$this->currentTitleLevel] = $letter;
return $this->currentTitleLevel;
}
public function getTitleLetters()
{
return $this->titleLetters;
}
}