Passed
Push — master ( 4c6227...f471d9 )
by Chris
02:31
created
php/hamle/Parse.php 1 patch
Switch Indentation   -278 removed lines patch added patch discarded remove patch
@@ -54,281 +54,3 @@
 block discarded – undo
54 54
    */
55 55
 
56 56
   const REGEX_PARSE_LINE = <<<'ENDREGEX'
57
-  /^(\s*)(?:(?:([a-zA-Z0-9-]*)((?:[\.#!][\w\-\_]+)*)(\[(?:(?:\{\$[^\}]+\})?[^\\\]{]*?(?:\\.)*?(?:{[^\$])*?)+\])?)|([_\/]{1,3})|([\|:\$]\w+)|({?\$[^}]+}?)|)(?: (.*))?$/
58
-  ENDREGEX;
59
-
60
-  /**
61
-   * @var int Current Line Number
62
-   */
63
-  protected $lineNo;
64
-  /**
65
-   * @var int Total Lines in File
66
-   */
67
-  protected $lineCount;
68
-
69
-  function __construct()
70
-  {
71
-    $this->init();
72
-  }
73
-
74
-  /**
75
-   * Clear Lines, and Line Number, so if output is
76
-   * called, no output will be produced
77
-   */
78
-  protected function init()
79
-  {
80
-    $this->lines = [];
81
-    $this->lineNo = 0;
82
-    $this->lineCount = 0;
83
-    $this->root = [];
84
-  }
85
-
86
-  protected function loadLines($s)
87
-  {
88
-    $this->lines = explode("\n", str_replace("\r", '', $s));
89
-    $this->lineCount = count($this->lines);
90
-    $this->lineNo = 0;
91
-  }
92
-
93
-  function parseFilter(ParseFilter $filter)
94
-  {
95
-    foreach ($this->root as $k => $tag) {
96
-      $this->root[$k] = $filter->filterTag($tag);
97
-    }
98
-  }
99
-
100
-  function parseSnip($s)
101
-  {
102
-    //save root tags
103
-    /** @var Tag[] $roots */
104
-    $roots = $this->root;
105
-    $this->root = [];
106
-    $this->loadLines($s);
107
-    $this->procLines();
108
-    $this->root = array_merge($roots, $this->root);
109
-  }
110
-
111
-  function applySnip()
112
-  {
113
-    /** @var Tag\Snippet[] $fwdSnip */
114
-    $fwdSnip = [];
115
-    /** @var Tag\Snippet[] $revSnip */
116
-    $revSnip = [];
117
-    /** @var Tag[] $roots */
118
-    $roots = [];
119
-    foreach ($this->root as $snip) {
120
-      if ($snip instanceof Tag\Snippet) {
121
-        if ($snip->getType() == 'append') {
122
-          array_unshift($revSnip, $snip);
123
-        } else {
124
-          $fwdSnip[] = $snip;
125
-        }
126
-      } else {
127
-        $roots[] = $snip;
128
-      }
129
-    }
130
-    foreach ($fwdSnip as $snip) {
131
-      foreach ($roots as $root) {
132
-        $snip->apply($root);
133
-      }
134
-    }
135
-    foreach ($revSnip as $snip) {
136
-      foreach ($roots as $root) {
137
-        $snip->apply($root);
138
-      }
139
-    }
140
-    $this->root = $roots;
141
-  }
142
-
143
-  /**
144
-   * Parse HAMLE template, from a string
145
-   * @param string $s String to parse
146
-   */
147
-  function str($s)
148
-  {
149
-    $this->init();
150
-    $this->loadLines($s);
151
-    $this->procLines();
152
-  }
153
-
154
-  function procLines()
155
-  {
156
-    /* @var $heir Tag[] Tag Heirachy Array */
157
-    $heir = [];
158
-    while ($this->lineNo < $this->lineCount) {
159
-      $line = $this->lines[$this->lineNo];
160
-      if (trim($line)) {
161
-        if (preg_match(self::REGEX_PARSE_LINE, $line, $m)) {
162
-          if (false !== strpos($m[1], "\t")) {
163
-            throw new ParseError(
164
-              'Tabs are not supported in templates at this time',
165
-            );
166
-          }
167
-          $indent = strlen($m[1]);
168
-          $tag = isset($m[2]) ? ($tag = $m[2]) : '';
169
-          $classid = isset($m[3]) ? $m[3] : '';
170
-          $params = str_replace(
171
-            ['\[', '\]', '\\&'],
172
-            ['[', ']', '%26'],
173
-            isset($m[4]) ? $m[4] : '',
174
-          );
175
-          $textcode = isset($m[5]) ? $m[5] : '';
176
-          $text = isset($m[8]) ? $m[8] : '';
177
-          $code = isset($m[6]) ? $m[6] : '';
178
-          $i = self::indentLevel($indent);
179
-          unset($m[0]);
180
-          switch (strlen($code) ? $code[0] : ($textcode ? $textcode : '')) {
181
-            case '|': //Control Tag
182
-              if ($code == '|snippet') {
183
-                $hTag = new Tag\Snippet($text);
184
-              } elseif ($code == '|form') {
185
-                $hTag = new Tag\Form($text);
186
-              } elseif ($code == '|formhint') {
187
-                $hTag = new Tag\FormHint();
188
-              } elseif ($code == '|else') {
189
-                $hTag = new Tag\Control(substr($code, 1), $heir[$i - 1]);
190
-                $hTag->setVar($text);
191
-              } else {
192
-                $hTag = new Tag\Control(substr($code, 1));
193
-                $hTag->setVar($text);
194
-              }
195
-              break;
196
-            case ':': //Filter Tag
197
-              $hTag = new Tag\Filter(substr($code, 1));
198
-              $hTag->addContent($text, Text::TOKEN_CODE);
199
-              foreach ($this->consumeBlock($indent) as $l) {
200
-                $hTag->addContent($l, Text::TOKEN_CODE);
201
-              }
202
-              break;
203
-            case '_': //String Tag
204
-            case '__': //Unescape String Tag
205
-            case '___': //Unescape String Tag (with unescaped vars)
206
-              $hTag = new Tag\Text($textcode);
207
-              $hTag->addContent($text);
208
-              break;
209
-            case '___': //Unescape String Tag
210
-              $hTag = new Tag\Text($textcode);
211
-              $hTag->addContent($text);
212
-              break;
213
-            case '/': // HTML Comment
214
-            case '//': // Non Printed Comment
215
-              $hTag = new Tag\Comment($textcode);
216
-              $hTag->addContent($text);
217
-              foreach ($this->consumeBlock($indent) as $l) {
218
-                $hTag->addContent($l, Text::TOKEN_CODE);
219
-              }
220
-              break;
221
-            default:
222
-              $attr = [];
223
-              if (isset($params[0]) && $params[0] == '[') {
224
-                $param = substr($params, 1, -1);
225
-                $param = str_replace(['+', '\\&'], ['%2B', '%26'], $param);
226
-                $attr = $this->parseQueryString($param);
227
-              }
228
-              $class = [];
229
-              $id = '';
230
-              $ref = '';
231
-              preg_match_all('/[#\.!][a-zA-Z0-9\-\_]+/m', $classid, $cid);
232
-              if (isset($cid[0])) {
233
-                foreach ($cid[0] as $s) {
234
-                  if ($s[0] == '#') {
235
-                    $id = substr($s, 1);
236
-                  }
237
-                  if ($s[0] == '.') {
238
-                    $class[] = substr($s, 1);
239
-                  }
240
-                  if ($s[0] == '!') {
241
-                    $ref = substr($s, 1);
242
-                  }
243
-                }
244
-              }
245
-              if ($ref) {
246
-                $hTag = new Tag\DynHtml($tag, $class, $attr, $id, $ref);
247
-              } else {
248
-                $hTag = new Tag\Html($tag, $class, $attr, $id);
249
-              }
250
-              $hTag->addContent($text);
251
-              break;
252
-          }
253
-          $heir[$i] = $hTag;
254
-          if ($i > 0) {
255
-            $heir[$i - 1]->addChild($hTag);
256
-          } else {
257
-            $this->root[] = $hTag;
258
-          }
259
-        } else {
260
-          throw new ParseError(
261
-            "Unable to parse line {$this->lineNo}\n\"$line\"/" .
262
-              preg_last_error(),
263
-          );
264
-        }
265
-      }
266
-      $this->lineNo++;
267
-    }
268
-  }
269
-
270
-  function parseQueryString($qs)
271
-  {
272
-    $out = [];
273
-    foreach (explode('&', $qs) as $s) {
274
-      $kv = explode('=', $s, 2);
275
-      $out[urldecode($kv[0])] = isset($kv[1]) ? urldecode($kv[1]) : null;
276
-    }
277
-    return $out;
278
-  }
279
-
280
-  function output($minify = false)
281
-  {
282
-    $out = "<?php\nuse Seufert\\Hamle;\n?>";
283
-    foreach ($this->root as $tag) {
284
-      $out .= $tag->render(0, $minify);
285
-    }
286
-    return $out;
287
-  }
288
-
289
-  function consumeBlock($indent)
290
-  {
291
-    $out = [];
292
-    $m = [];
293
-    while (
294
-      $this->lineNo + 1 < $this->lineCount &&
295
-      (!trim($this->lines[$this->lineNo + 1]) ||
296
-        preg_match(
297
-          '/^(\s){' . $indent . '}((\s)+[^\s].*)$/',
298
-          $this->lines[$this->lineNo + 1],
299
-          $m,
300
-        ))
301
-    ) {
302
-      if (trim($this->lines[$this->lineNo + 1])) {
303
-        $out[] = $m[2];
304
-      }
305
-      $this->lineNo++;
306
-    }
307
-    return $out;
308
-  }
309
-
310
-  function indentLevel($indent)
311
-  {
312
-    if (!isset($this->indents)) {
313
-      $this->indents = [];
314
-    }
315
-    if (!count($this->indents)) {
316
-      $this->indents = [0 => $indent];
317
-      // Key = indent level, Value = Depth in spaces
318
-      return 0;
319
-    }
320
-    foreach ($this->indents as $k => $v) {
321
-      if ($v == $indent) {
322
-        $this->indents = array_slice($this->indents, 0, $k + 1);
323
-        return $k;
324
-      }
325
-    }
326
-    $this->indents[] = $indent;
327
-    return max(array_keys($this->indents));
328
-  }
329
-
330
-  function getLineNo()
331
-  {
332
-    return $this->lineNo;
333
-  }
334
-}
Please login to merge, or discard this patch.