-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathPatternData.php
627 lines (473 loc) · 16.8 KB
/
PatternData.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
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
<?php
/*!
* Pattern Data Class
*
* Copyright (c) 2014 Dave Olsen, http://dmolsen.com
* Licensed under the MIT license
*
* Gather together all of the general information related to patterns into one central location
*
*/
namespace PatternLab;
use \PatternLab\Config;
use \PatternLab\Dispatcher;
use \PatternLab\PatternData\Event as PatternDataEvent;
use \PatternLab\PatternData\Exporters\DataLinkExporter;
use \PatternLab\PatternData\Exporters\DataMergeExporter;
use \PatternLab\PatternData\Exporters\NavItemsExporter;
use \PatternLab\PatternData\Exporters\PatternPathSrcExporter;
use \PatternLab\PatternData\Exporters\ViewAllPathsExporter;
use \PatternLab\PatternData\Helpers\LineageHelper;
use \PatternLab\PatternData\Helpers\PatternCodeHelper;
use \PatternLab\PatternData\Helpers\PatternStateHelper;
use \PatternLab\PatternData\Helpers\RawPatternHelper;
use \PatternLab\Timer;
class PatternData {
protected static $store = array();
protected static $patternSubtype = "";
protected static $patternSubtypeClean = "";
protected static $patternSubtypeDash = "";
protected static $patternSubtypeSet = false;
protected static $patternType = "";
protected static $patternTypeClean = "";
protected static $patternTypeDash = "";
protected static $rules = array();
protected static $dirSep = DIRECTORY_SEPARATOR;
protected static $frontMeta = array("-","_");
/**
* Return if a specific option is set
* @param {String} the option to check
*/
public static function checkOption($optionName) {
return isset(self::$store[$optionName]);
}
/**
* Return if a specific option for a pattern is set
* @param {String} the pattern to check
* @param {String} the option to check
*/
public static function checkPatternOption($patternStoreKey,$optionName) {
if (isset(self::$store[$patternStoreKey])) {
return isset(self::$store[$patternStoreKey][$optionName]);
}
return false;
}
/**
* Clear all of the data in the $store
*/
public static function clear() {
self::$store = array();
}
/**
* Check to see if the given pattern type has a pattern subtype associated with it
* @param {String} the name of the pattern
*
* @return {Boolean} if it was found or not
*/
public static function hasPatternSubtype($patternType) {
foreach (self::$store as $patternStoreKey => $patternStoreData) {
if (($patternStoreData["category"] == "patternSubtype") && ($patternStoreData["typeDash"] == $patternType)) {
return true;
}
}
return false;
}
/**
* Gather all of the information related to the patterns
*/
public static function gather($options = array()) {
// set default vars
$exportClean = (isset($options["exportClean"])) ? $options["exportClean"] : false;
$exportFiles = (isset($options["exportClean"])) ? $options["exportFiles"] : false;
$dispatcherInstance = Dispatcher::getInstance();
// cleaning the var for use below, i know this is stupid
$options = array();
// dispatch that the data gather has started
$event = new PatternDataEvent($options);
$dispatcherInstance->dispatch("patternData.gatherStart",$event);
// load up the rules for parsing patterns and the directories
self::loadRules($options);
// dispatch that the rules are loaded
$event = new PatternDataEvent($options);
$dispatcherInstance->dispatch("patternData.rulesLoaded",$event);
// iterate over the patterns & related data and regenerate the entire site if they've changed
// seems a little silly to use symfony finder here. not really giving me any power
if (!is_dir(Config::getOption("patternSourceDir"))) {
Console::writeError("having patterns is important. please make sure you've installed a starterkit and/or that ".Console::getHumanReadablePath(Config::getOption("patternSourceDir"))." exists...");
}
$patternSourceDir = Config::getOption("patternSourceDir");
$patternObjects = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($patternSourceDir, \RecursiveDirectoryIterator::FOLLOW_SYMLINKS | \FilesystemIterator::SKIP_DOTS), \RecursiveIteratorIterator::SELF_FIRST);
// sort the returned objects
$patternObjects = iterator_to_array($patternObjects);
ksort($patternObjects);
foreach ($patternObjects as $name => $object) {
$ext = $object->getExtension();
$isDir = $object->isDir();
$isFile = $object->isFile();
$path = str_replace($patternSourceDir.DIRECTORY_SEPARATOR,"",$object->getPath());
$pathName = str_replace($patternSourceDir.DIRECTORY_SEPARATOR,"",$object->getPathname());
$name = $object->getFilename();
$depth = substr_count($pathName,DIRECTORY_SEPARATOR);
// iterate over the rules and see if the current file matches one, if so run the rule
foreach (self::$rules as $rule) {
if ($rule->test($depth, $ext, $isDir, $isFile, $name)) {
$rule->run($depth, $ext, $path, $pathName, $name);
}
}
}
// dispatch that the data is loaded
$event = new PatternDataEvent($options);
$dispatcherInstance->dispatch("patternData.dataLoaded",$event);
// make sure all of the appropriate pattern data is pumped into $this->d for rendering patterns
$dataLinkExporter = new DataLinkExporter();
$dataLinkExporter->run();
// make sure all of the appropriate pattern data is pumped into $this->d for rendering patterns
$dataMergeExporter = new DataMergeExporter();
$dataMergeExporter->run();
// dispatch that the raw pattern helper is about to start
$event = new PatternDataEvent($options);
$dispatcherInstance->dispatch("patternData.rawPatternHelperStart",$event);
// add the lineage info to PatternData::$store
$rawPatternHelper = new RawPatternHelper();
$rawPatternHelper->run();
// dispatch that the raw pattern helper is ended
$event = new PatternDataEvent($options);
$dispatcherInstance->dispatch("patternData.rawPatternHelperEnd",$event);
// dispatch that the lineage helper is about to start
$event = new PatternDataEvent($options);
$dispatcherInstance->dispatch("patternData.lineageHelperStart",$event);
// add the lineage info to PatternData::$store
$lineageHelper = new LineageHelper();
$lineageHelper->run();
// dispatch that the lineage helper is ended
$event = new PatternDataEvent($options);
$dispatcherInstance->dispatch("patternData.lineageHelperEnd",$event);
// dispatch that the pattern state helper is about to start
$event = new PatternDataEvent($options);
$dispatcherInstance->dispatch("patternData.patternStateHelperStart",$event);
// using the lineage info update the pattern states on PatternData::$store
$patternStateHelper = new PatternStateHelper();
$patternStateHelper->run();
// dispatch that the pattern state helper is ended
$event = new PatternDataEvent($options);
$dispatcherInstance->dispatch("patternData.patternStateHelperEnd",$event);
// set-up code pattern paths
$ppdExporter = new PatternPathSrcExporter();
$patternPathSrc = $ppdExporter->run();
$options = array();
$options["patternPaths"] = $patternPathSrc;
// dispatch that the code helper is about to start
$event = new PatternDataEvent($options);
$dispatcherInstance->dispatch("patternData.codeHelperStart",$event);
// render out all of the patterns and store the generated info in PatternData::$store
$options["exportFiles"] = $exportFiles;
$options["exportClean"] = $exportClean;
$patternCodeHelper = new PatternCodeHelper($options);
$patternCodeHelper->run();
// dispatch that the pattern code helper is ended
$event = new PatternDataEvent($options);
$dispatcherInstance->dispatch("patternData.patternCodeHelperEnd",$event);
// dispatch that the gather has ended
$event = new PatternDataEvent($options);
$dispatcherInstance->dispatch("patternData.gatherEnd",$event);
}
/**
* Get the overall store of PatternData
*/
public static function get() {
return self::$store;
}
/**
* Get the directory separator
*/
public static function getDirSep() {
return self::$dirSep;
}
/**
* GEt the front meta bits (hidden and noviewall)
*/
public static function getFrontMeta() {
return self::$frontMeta;
}
/**
* Get a specific item from the store
* @param {String} the option to check
*/
public static function getOption($optionName) {
if (isset(self::$store[$optionName])) {
return self::$store[$optionName];
}
return false;
}
/**
* Get a specific item from a pattern in the store data
* @param {String} the name of the pattern
* @param {String} the name of the option to get
*
* @return {String|Boolean} the value of false if it wasn't found
*/
public static function getPatternOption($patternStoreKey,$optionName) {
if (isset(self::$store[$patternStoreKey][$optionName])) {
return self::$store[$patternStoreKey][$optionName];
}
return false;
}
/**
* Get the pattern sub type
*/
public static function getPatternSubtype() {
if (isset(self::$patternSubtype)) {
return self::$patternSubtype;
}
return false;
}
/**
* Get the pattern sub type clean
*/
public static function getPatternSubtypeClean() {
if (isset(self::$patternSubtypeClean)) {
return self::$patternSubtypeClean;
}
return false;
}
/**
* Get the pattern sub type dash
*/
public static function getPatternSubtypeDash() {
if (isset(self::$patternSubtypeDash)) {
return self::$patternSubtypeDash;
}
return false;
}
/**
* Get the pattern sub type set
*/
public static function getPatternSubtypeSet() {
if (isset(self::$patternSubtypeSet)) {
return self::$patternSubtypeSet;
}
return false;
}
/**
* Get the pattern type
*/
public static function getPatternType() {
if (isset(self::$patternType)) {
return self::$patternType;
}
return false;
}
/**
* Get the pattern type clean
*/
public static function getPatternTypeClean() {
if (isset(self::$patternTypeClean)) {
return self::$patternTypeClean;
}
return false;
}
/**
* Get the pattern type dash
*/
public static function getPatternTypeDash() {
if (isset(self::$patternTypeDash)) {
return self::$patternTypeDash;
}
return false;
}
/**
* Get a particular rule
* @param {String} the name of the pattern
*/
public static function getRule($ruleName) {
if (isset(self::$rules[$ruleName])) {
return self::$rules[$ruleName];
}
return false;
}
/**
* Get all rules
*/
public static function getRules() {
return self::$rules;
}
/**
* Load all of the rules related to Pattern Data, plus any extra add-ons
*/
public static function loadRules($options) {
// First handle default PL rules, minus any being disabled
foreach (glob(__DIR__."/PatternData/Rules/*.php") as $filename) {
$ruleName = str_replace(".php","",str_replace(__DIR__."/PatternData/Rules/","",$filename));
$disabledRules = array();
if (Config::getOption("disabledPatternRules")) {
$disabledRules = Config::getOption("disabledPatternRules");
}
// Load all rules that aren't on the disabledPatternRules list
if (($ruleName[0] != "_") && (!in_array($ruleName, $disabledRules))) {
$ruleClass = "\PatternLab\PatternData\Rules\\".$ruleName;
$rule = new $ruleClass($options);
self::setRule($ruleName, $rule);
}
}
// Then handle any extra rules to add on top of the default PL rules
$extraPatternRulesDir = Config::getOption("sourceDir") . '/_extensions/rules'; // Default extra rules location to check
if (Config::getOption("extraPatternRulesDir")) {
$extraPatternRulesDir = Config::getOption("extraPatternRulesDir");
}
if (is_dir($extraPatternRulesDir)){
foreach (glob($extraPatternRulesDir . "/*.php") as $filename) {
$ruleName = str_replace(".php","",str_replace($extraPatternRulesDir . "/","",$filename));
$extraRules = array();
if (Config::getOption("extraPatternRules")) {
$extraRules = Config::getOption("extraPatternRules");
}
// Only load extra rules that are on the extraPatternRules list
if (($ruleName[0] != "_") && (in_array($ruleName, $extraRules))) {
require_once($filename); // Pull in extra rule so we can use it
$ruleClass = "\PatternLab\PatternData\Rules\\".$ruleName;
$rule = new $ruleClass($options);
self::setRule($ruleName, $rule);
}
}
}
}
/**
* Set an options value
* @param {String} the name of the option to set
* @param {String} the name of the value to give to it
*
* @return {Boolean} if it was set or not
*/
public static function setOption($optionName,$optionValue) {
if (isset(self::$store)) {
self::$store[$optionName] = $optionValue;
return true;
}
return false;
}
/**
* Set a pattern option value
* @param {String} the name of the pattern
* @param {String} the name of the option to set
* @param {String} the name of the value to give to it
*
* @return {Boolean} if it was set or not
*/
public static function setPatternOption($patternStoreKey,$optionName,$optionValue) {
if (isset(self::$store[$patternStoreKey])) {
self::$store[$patternStoreKey][$optionName] = $optionValue;
return true;
}
return false;
}
/**
* Set a pattern option value for an option element that has an array
* @param {String} the name of the pattern
* @param {String} the name of the option to set
* @param {String} the name of the value to give to it
* @param {String} the key to be added to the array
*
* @return {Boolean} if it was set or not
*/
public static function setPatternOptionArray($patternStoreKey,$optionName,$optionValue,$optionKey = "") {
if (isset(self::$store[$patternStoreKey]) && isset(self::$store[$patternStoreKey][$optionName]) && is_array(self::$store[$patternStoreKey][$optionName])) {
if (empty($optionKey)) {
self::$store[$patternStoreKey][$optionName][] = $optionValue;
} else {
self::$store[$patternStoreKey][$optionName][$optionKey] = $optionValue;
}
return true;
}
return false;
}
/**
* Set a pattern sub option value
* @param {String} the name of the pattern
* @param {String} the name of the option to check
* @param {String} the name of the pattern sub key
* @param {String} the name of the option to set
* @param {String} the name of the value to give to it
*
* @return {Boolean} if it was set or not
*/
public static function setPatternSubOption($patternStoreKey,$optionName,$patternSubStoreKey,$optionSubName,$optionSubValue) {
if (isset(self::$store[$patternStoreKey]) && isset(self::$store[$patternStoreKey][$optionName]) && isset(self::$store[$patternStoreKey][$optionName][$patternSubStoreKey])) {
self::$store[$patternStoreKey][$optionName][$patternSubStoreKey][$optionSubName] = $optionSubValue;
return true;
}
return false;
}
/**
* Set the pattern subtype
* @param {String} the option value
*/
public static function setPatternSubtype($optionValue) {
self::$patternSubtype = $optionValue;
}
/**
* Set the pattern subtype clean
* @param {String} the option value
*/
public static function setPatternSubtypeClean($optionValue) {
self::$patternSubtypeClean = $optionValue;
}
/**
* Set the pattern subtype dash
* @param {String} the option value
*/
public static function setPatternSubtypeDash($optionValue) {
self::$patternSubtypeDash = $optionValue;
}
/**
* Set the pattern subtype set
* @param {String} the option value
*/
public static function setPatternSubtypeSet($optionValue) {
self::$patternSubtypeSet = $optionValue;
}
/**
* Set the pattern type
* @param {String} the option value
*/
public static function setPatternType($optionValue) {
self::$patternType = $optionValue;
}
/**
* Set the pattern type clean
* @param {String} the option value
*/
public static function setPatternTypeClean($optionValue) {
self::$patternTypeClean = $optionValue;
}
/**
* Set the pattern type dash
* @param {String} the option value
*/
public static function setPatternTypeDash($optionValue) {
self::$patternTypeDash = $optionValue;
}
/**
* Set a rule
* @param {String} the name of the rule
* @param {Object} the rule properties, guess this is a class too
*/
public static function setRule($ruleName, $rule) {
self::$rules[$ruleName] = $rule;
}
/**
* Update a property for a given rule
* @param {String} the name of the rule to update
* @param {String} the name of the property
* @param {String} the value of the property
* @param {String} the action that should be taken with the new value
*
* @return {Boolean} whether the update was successful
*/
public function updateRuleProp($ruleName, $propName, $propValue, $action = "or") {
if ($rule != self::getRule($ruleName)) {
return false;
}
$rule->updateProp($propName, $propValue, $action);
self::setRule($ruleName, $rule);
}
}