API: Avoid number/string confusion in YAML
[lhc/web/wiklou.git] / includes / api / ApiFormatYaml_spyc.php
1 <?php
2 /**
3 * Spyc -- A Simple PHP YAML Class
4 * @version 0.2.3 -- 2006-02-04
5 * @author Chris Wanstrath <chris@ozmm.org>
6 * @see http://spyc.sourceforge.net/
7 * @copyright Copyright 2005-2006 Chris Wanstrath
8 * @license http://www.opensource.org/licenses/mit-license.php MIT License
9 */
10
11 /**
12 * A node, used by Spyc for parsing YAML.
13 * @addtogroup API
14 */
15 class YAMLNode {
16 /**#@+
17 * @access public
18 * @var string
19 */
20 var $parent;
21 var $id;
22 /**#@-*/
23 /**
24 * @access public
25 * @var mixed
26 */
27 var $data;
28 /**
29 * @access public
30 * @var int
31 */
32 var $indent;
33 /**
34 * @access public
35 * @var bool
36 */
37 var $children = false;
38
39 /**
40 * The constructor assigns the node a unique ID.
41 * @access public
42 * @return void
43 */
44 function YAMLNode() {
45 $this->id = uniqid('');
46 }
47 }
48
49 /**
50 * The Simple PHP YAML Class.
51 *
52 * This class can be used to read a YAML file and convert its contents
53 * into a PHP array. It currently supports a very limited subsection of
54 * the YAML spec.
55 *
56 * Usage:
57 * <code>
58 * $parser = new Spyc;
59 * $array = $parser->load($file);
60 * </code>
61 * @addtogroup API
62 */
63 class Spyc {
64
65 /**
66 * Load YAML into a PHP array statically
67 *
68 * The load method, when supplied with a YAML stream (string or file),
69 * will do its best to convert YAML in a file into a PHP array. Pretty
70 * simple.
71 * Usage:
72 * <code>
73 * $array = Spyc::YAMLLoad('lucky.yml');
74 * print_r($array);
75 * </code>
76 * @access public
77 * @return array
78 * @param string $input Path of YAML file or string containing YAML
79 */
80 function YAMLLoad($input) {
81 $spyc = new Spyc;
82 return $spyc->load($input);
83 }
84
85 /**
86 * Dump YAML from PHP array statically
87 *
88 * The dump method, when supplied with an array, will do its best
89 * to convert the array into friendly YAML. Pretty simple. Feel free to
90 * save the returned string as nothing.yml and pass it around.
91 *
92 * Oh, and you can decide how big the indent is and what the wordwrap
93 * for folding is. Pretty cool -- just pass in 'false' for either if
94 * you want to use the default.
95 *
96 * Indent's default is 2 spaces, wordwrap's default is 40 characters. And
97 * you can turn off wordwrap by passing in 0.
98 *
99 * @access public
100 * @static
101 * @return string
102 * @param array $array PHP array
103 * @param int $indent Pass in false to use the default, which is 2
104 * @param int $wordwrap Pass in 0 for no wordwrap, false for default (40)
105 */
106 public static function YAMLDump($array,$indent = false,$wordwrap = false) {
107 $spyc = new Spyc;
108 return $spyc->dump($array,$indent,$wordwrap);
109 }
110
111 /**
112 * Load YAML into a PHP array from an instantiated object
113 *
114 * The load method, when supplied with a YAML stream (string or file path),
115 * will do its best to convert the YAML into a PHP array. Pretty simple.
116 * Usage:
117 * <code>
118 * $parser = new Spyc;
119 * $array = $parser->load('lucky.yml');
120 * print_r($array);
121 * </code>
122 * @access public
123 * @return array
124 * @param string $input Path of YAML file or string containing YAML
125 */
126 function load($input) {
127 // See what type of input we're talking about
128 // If it's not a file, assume it's a string
129 if (!empty($input) && (strpos($input, "\n") === false)
130 && file_exists($input)) {
131 $yaml = file($input);
132 } else {
133 $yaml = explode("\n",$input);
134 }
135 // Initiate some objects and values
136 $base = new YAMLNode;
137 $base->indent = 0;
138 $this->_lastIndent = 0;
139 $this->_lastNode = $base->id;
140 $this->_inBlock = false;
141 $this->_isInline = false;
142
143 foreach ($yaml as $linenum => $line) {
144 $ifchk = trim($line);
145
146 // If the line starts with a tab (instead of a space), throw a fit.
147 if (preg_match('/^(\t)+(\w+)/', $line)) {
148 $err = 'ERROR: Line '. ($linenum + 1) .' in your input YAML begins'.
149 ' with a tab. YAML only recognizes spaces. Please reformat.';
150 die($err);
151 }
152
153 if ($this->_inBlock === false && empty($ifchk)) {
154 continue;
155 } elseif ($this->_inBlock == true && empty($ifchk)) {
156 $last =& $this->_allNodes[$this->_lastNode];
157 $last->data[key($last->data)] .= "\n";
158 } elseif ($ifchk{0} != '#' && substr($ifchk,0,3) != '---') {
159 // Create a new node and get its indent
160 $node = new YAMLNode;
161 $node->indent = $this->_getIndent($line);
162
163 // Check where the node lies in the hierarchy
164 if ($this->_lastIndent == $node->indent) {
165 // If we're in a block, add the text to the parent's data
166 if ($this->_inBlock === true) {
167 $parent =& $this->_allNodes[$this->_lastNode];
168 $parent->data[key($parent->data)] .= trim($line).$this->_blockEnd;
169 } else {
170 // The current node's parent is the same as the previous node's
171 if (isset($this->_allNodes[$this->_lastNode])) {
172 $node->parent = $this->_allNodes[$this->_lastNode]->parent;
173 }
174 }
175 } elseif ($this->_lastIndent < $node->indent) {
176 if ($this->_inBlock === true) {
177 $parent =& $this->_allNodes[$this->_lastNode];
178 $parent->data[key($parent->data)] .= trim($line).$this->_blockEnd;
179 } elseif ($this->_inBlock === false) {
180 // The current node's parent is the previous node
181 $node->parent = $this->_lastNode;
182
183 // If the value of the last node's data was > or | we need to
184 // start blocking i.e. taking in all lines as a text value until
185 // we drop our indent.
186 $parent =& $this->_allNodes[$node->parent];
187 $this->_allNodes[$node->parent]->children = true;
188 if (is_array($parent->data)) {
189 $chk = $parent->data[key($parent->data)];
190 if ($chk === '>') {
191 $this->_inBlock = true;
192 $this->_blockEnd = ' ';
193 $parent->data[key($parent->data)] =
194 str_replace('>','',$parent->data[key($parent->data)]);
195 $parent->data[key($parent->data)] .= trim($line).' ';
196 $this->_allNodes[$node->parent]->children = false;
197 $this->_lastIndent = $node->indent;
198 } elseif ($chk === '|') {
199 $this->_inBlock = true;
200 $this->_blockEnd = "\n";
201 $parent->data[key($parent->data)] =
202 str_replace('|','',$parent->data[key($parent->data)]);
203 $parent->data[key($parent->data)] .= trim($line)."\n";
204 $this->_allNodes[$node->parent]->children = false;
205 $this->_lastIndent = $node->indent;
206 }
207 }
208 }
209 } elseif ($this->_lastIndent > $node->indent) {
210 // Any block we had going is dead now
211 if ($this->_inBlock === true) {
212 $this->_inBlock = false;
213 if ($this->_blockEnd = "\n") {
214 $last =& $this->_allNodes[$this->_lastNode];
215 $last->data[key($last->data)] =
216 trim($last->data[key($last->data)]);
217 }
218 }
219
220 // We don't know the parent of the node so we have to find it
221 // foreach ($this->_allNodes as $n) {
222 foreach ($this->_indentSort[$node->indent] as $n) {
223 if ($n->indent == $node->indent) {
224 $node->parent = $n->parent;
225 }
226 }
227 }
228
229 if ($this->_inBlock === false) {
230 // Set these properties with information from our current node
231 $this->_lastIndent = $node->indent;
232 // Set the last node
233 $this->_lastNode = $node->id;
234 // Parse the YAML line and return its data
235 $node->data = $this->_parseLine($line);
236 // Add the node to the master list
237 $this->_allNodes[$node->id] = $node;
238 // Add a reference to the node in an indent array
239 $this->_indentSort[$node->indent][] =& $this->_allNodes[$node->id];
240 // Add a reference to the node in a References array if this node
241 // has a YAML reference in it.
242 if (
243 ( (is_array($node->data)) &&
244 isset($node->data[key($node->data)]) &&
245 (!is_array($node->data[key($node->data)])) )
246 &&
247 ( (preg_match('/^&([^ ]+)/',$node->data[key($node->data)]))
248 ||
249 (preg_match('/^\*([^ ]+)/',$node->data[key($node->data)])) )
250 ) {
251 $this->_haveRefs[] =& $this->_allNodes[$node->id];
252 } elseif (
253 ( (is_array($node->data)) &&
254 isset($node->data[key($node->data)]) &&
255 (is_array($node->data[key($node->data)])) )
256 ) {
257 // Incomplete reference making code. Ugly, needs cleaned up.
258 foreach ($node->data[key($node->data)] as $d) {
259 if ( !is_array($d) &&
260 ( (preg_match('/^&([^ ]+)/',$d))
261 ||
262 (preg_match('/^\*([^ ]+)/',$d)) )
263 ) {
264 $this->_haveRefs[] =& $this->_allNodes[$node->id];
265 }
266 }
267 }
268 }
269 }
270 }
271 unset($node);
272
273 // Here we travel through node-space and pick out references (& and *)
274 $this->_linkReferences();
275
276 // Build the PHP array out of node-space
277 $trunk = $this->_buildArray();
278 return $trunk;
279 }
280
281 /**
282 * Dump PHP array to YAML
283 *
284 * The dump method, when supplied with an array, will do its best
285 * to convert the array into friendly YAML. Pretty simple. Feel free to
286 * save the returned string as tasteful.yml and pass it around.
287 *
288 * Oh, and you can decide how big the indent is and what the wordwrap
289 * for folding is. Pretty cool -- just pass in 'false' for either if
290 * you want to use the default.
291 *
292 * Indent's default is 2 spaces, wordwrap's default is 40 characters. And
293 * you can turn off wordwrap by passing in 0.
294 *
295 * @access public
296 * @return string
297 * @param array $array PHP array
298 * @param int $indent Pass in false to use the default, which is 2
299 * @param int $wordwrap Pass in 0 for no wordwrap, false for default (40)
300 */
301 function dump($array,$indent = false,$wordwrap = false) {
302 // Dumps to some very clean YAML. We'll have to add some more features
303 // and options soon. And better support for folding.
304
305 // New features and options.
306 if ($indent === false or !is_numeric($indent)) {
307 $this->_dumpIndent = 2;
308 } else {
309 $this->_dumpIndent = $indent;
310 }
311
312 if ($wordwrap === false or !is_numeric($wordwrap)) {
313 $this->_dumpWordWrap = 40;
314 } else {
315 $this->_dumpWordWrap = $wordwrap;
316 }
317
318 // New YAML document
319 $string = "---\n";
320
321 // Start at the base of the array and move through it.
322 foreach ($array as $key => $value) {
323 $string .= $this->_yamlize($key,$value,0);
324 }
325 return $string;
326 }
327
328 /**** Private Properties ****/
329
330 /**#@+
331 * @access private
332 * @var mixed
333 */
334 var $_haveRefs;
335 var $_allNodes;
336 var $_lastIndent;
337 var $_lastNode;
338 var $_inBlock;
339 var $_isInline;
340 var $_dumpIndent;
341 var $_dumpWordWrap;
342 /**#@-*/
343
344 /**** Private Methods ****/
345
346 /**
347 * Attempts to convert a key / value array item to YAML
348 * @access private
349 * @return string
350 * @param $key The name of the key
351 * @param $value The value of the item
352 * @param $indent The indent of the current node
353 */
354 function _yamlize($key,$value,$indent) {
355 if (is_array($value)) {
356 // It has children. What to do?
357 // Make it the right kind of item
358 $string = $this->_dumpNode($key,NULL,$indent);
359 // Add the indent
360 $indent += $this->_dumpIndent;
361 // Yamlize the array
362 $string .= $this->_yamlizeArray($value,$indent);
363 } elseif (!is_array($value)) {
364 // It doesn't have children. Yip.
365 $string = $this->_dumpNode($key,$value,$indent);
366 }
367 return $string;
368 }
369
370 /**
371 * Attempts to convert an array to YAML
372 * @access private
373 * @return string
374 * @param $array The array you want to convert
375 * @param $indent The indent of the current level
376 */
377 function _yamlizeArray($array,$indent) {
378 if (is_array($array)) {
379 $string = '';
380 foreach ($array as $key => $value) {
381 $string .= $this->_yamlize($key,$value,$indent);
382 }
383 return $string;
384 } else {
385 return false;
386 }
387 }
388
389 /**
390 * Find out whether a string needs to be output as a literal rather than in plain style.
391 * Added by Roan Kattouw 13-03-2008
392 * @param $value The string to check
393 * @return bool
394 */
395 function _needLiteral($value) {
396 # Check whether the string contains # or : or begins with any of:
397 # [ - ? , [ ] { } ! * & | > ' " % @ ` ]
398 # or is a number or contains newlines
399 return (bool)(gettype($value) == "string" &&
400 (is_numeric($value) ||
401 strpos($value, "\n") ||
402 preg_match("/[#:]/", $value) ||
403 preg_match("/^[-?,[\]{}!*&|>'\"%@`]/", $value)));
404
405 }
406
407 /**
408 * Returns YAML from a key and a value
409 * @access private
410 * @return string
411 * @param $key The name of the key
412 * @param $value The value of the item
413 * @param $indent The indent of the current node
414 */
415 function _dumpNode($key,$value,$indent) {
416 // do some folding here, for blocks
417 if ($this->_needLiteral($value)) {
418 $value = $this->_doLiteralBlock($value,$indent);
419 } else {
420 $value = $this->_doFolding($value,$indent);
421 }
422
423 $spaces = str_repeat(' ',$indent);
424
425 if (is_int($key)) {
426 // It's a sequence
427 $string = $spaces.'- '.$value."\n";
428 } else {
429 // It's mapped
430 $string = $spaces.$key.': '.$value."\n";
431 }
432 return $string;
433 }
434
435 /**
436 * Creates a literal block for dumping
437 * @access private
438 * @return string
439 * @param $value
440 * @param $indent int The value of the indent
441 */
442 function _doLiteralBlock($value,$indent) {
443 $exploded = explode("\n",$value);
444 $newValue = '|';
445 $indent += $this->_dumpIndent;
446 $spaces = str_repeat(' ',$indent);
447 foreach ($exploded as $line) {
448 $newValue .= "\n" . $spaces . trim($line);
449 }
450 return $newValue;
451 }
452
453 /**
454 * Folds a string of text, if necessary
455 * @access private
456 * @return string
457 * @param $value The string you wish to fold
458 */
459 function _doFolding($value,$indent) {
460 // Don't do anything if wordwrap is set to 0
461 if ($this->_dumpWordWrap === 0) {
462 return $value;
463 }
464
465 if (strlen($value) > $this->_dumpWordWrap) {
466 $indent += $this->_dumpIndent;
467 $indent = str_repeat(' ',$indent);
468 $wrapped = wordwrap($value,$this->_dumpWordWrap,"\n$indent");
469 $value = ">\n".$indent.$wrapped;
470 }
471 return $value;
472 }
473
474 /* Methods used in loading */
475
476 /**
477 * Finds and returns the indentation of a YAML line
478 * @access private
479 * @return int
480 * @param string $line A line from the YAML file
481 */
482 function _getIndent($line) {
483 $match = array();
484 preg_match('/^\s{1,}/',$line,$match);
485 if (!empty($match[0])) {
486 $indent = substr_count($match[0],' ');
487 } else {
488 $indent = 0;
489 }
490 return $indent;
491 }
492
493 /**
494 * Parses YAML code and returns an array for a node
495 * @access private
496 * @return array
497 * @param string $line A line from the YAML file
498 */
499 function _parseLine($line) {
500 $line = trim($line);
501
502 $array = array();
503
504 if (preg_match('/^-(.*):$/',$line)) {
505 // It's a mapped sequence
506 $key = trim(substr(substr($line,1),0,-1));
507 $array[$key] = '';
508 } elseif ($line[0] == '-' && substr($line,0,3) != '---') {
509 // It's a list item but not a new stream
510 if (strlen($line) > 1) {
511 $value = trim(substr($line,1));
512 // Set the type of the value. Int, string, etc
513 $value = $this->_toType($value);
514 $array[] = $value;
515 } else {
516 $array[] = array();
517 }
518 } elseif (preg_match('/^(.+):/',$line,$key)) {
519 // It's a key/value pair most likely
520 // If the key is in double quotes pull it out
521 $matches = array();
522 if (preg_match('/^(["\'](.*)["\'](\s)*:)/',$line,$matches)) {
523 $value = trim(str_replace($matches[1],'',$line));
524 $key = $matches[2];
525 } else {
526 // Do some guesswork as to the key and the value
527 $explode = explode(':',$line);
528 $key = trim($explode[0]);
529 array_shift($explode);
530 $value = trim(implode(':',$explode));
531 }
532
533 // Set the type of the value. Int, string, etc
534 $value = $this->_toType($value);
535 if (empty($key)) {
536 $array[] = $value;
537 } else {
538 $array[$key] = $value;
539 }
540 }
541 return $array;
542 }
543
544 /**
545 * Finds the type of the passed value, returns the value as the new type.
546 * @access private
547 * @param string $value
548 * @return mixed
549 */
550 function _toType($value) {
551 $matches = array();
552 if (preg_match('/^("(.*)"|\'(.*)\')/',$value,$matches)) {
553 $value = (string)preg_replace('/(\'\'|\\\\\')/',"'",end($matches));
554 $value = preg_replace('/\\\\"/','"',$value);
555 } elseif (preg_match('/^\\[(.+)\\]$/',$value,$matches)) {
556 // Inline Sequence
557
558 // Take out strings sequences and mappings
559 $explode = $this->_inlineEscape($matches[1]);
560
561 // Propogate value array
562 $value = array();
563 foreach ($explode as $v) {
564 $value[] = $this->_toType($v);
565 }
566 } elseif (strpos($value,': ')!==false && !preg_match('/^{(.+)/',$value)) {
567 // It's a map
568 $array = explode(': ',$value);
569 $key = trim($array[0]);
570 array_shift($array);
571 $value = trim(implode(': ',$array));
572 $value = $this->_toType($value);
573 $value = array($key => $value);
574 } elseif (preg_match("/{(.+)}$/",$value,$matches)) {
575 // Inline Mapping
576
577 // Take out strings sequences and mappings
578 $explode = $this->_inlineEscape($matches[1]);
579
580 // Propogate value array
581 $array = array();
582 foreach ($explode as $v) {
583 $array = $array + $this->_toType($v);
584 }
585 $value = $array;
586 } elseif (strtolower($value) == 'null' or $value == '' or $value == '~') {
587 $value = NULL;
588 } elseif (ctype_digit($value)) {
589 $value = (int)$value;
590 } elseif (in_array(strtolower($value),
591 array('true', 'on', '+', 'yes', 'y'))) {
592 $value = TRUE;
593 } elseif (in_array(strtolower($value),
594 array('false', 'off', '-', 'no', 'n'))) {
595 $value = FALSE;
596 } elseif (is_numeric($value)) {
597 $value = (float)$value;
598 } else {
599 // Just a normal string, right?
600 $value = trim(preg_replace('/#(.+)$/','',$value));
601 }
602
603 return $value;
604 }
605
606 /**
607 * Used in inlines to check for more inlines or quoted strings
608 * @access private
609 * @return array
610 */
611 function _inlineEscape($inline) {
612 // There's gotta be a cleaner way to do this...
613 // While pure sequences seem to be nesting just fine,
614 // pure mappings and mappings with sequences inside can't go very
615 // deep. This needs to be fixed.
616
617 // Check for strings
618 $regex = '/(?:(")|(?:\'))((?(1)[^"]+|[^\']+))(?(1)"|\')/';
619 $strings = array();
620 if (preg_match_all($regex,$inline,$strings)) {
621 $saved_strings[] = $strings[0][0];
622 $inline = preg_replace($regex,'YAMLString',$inline);
623 }
624 unset($regex);
625
626 // Check for sequences
627 $seqs = array();
628 if (preg_match_all('/\[(.+)\]/U',$inline,$seqs)) {
629 $inline = preg_replace('/\[(.+)\]/U','YAMLSeq',$inline);
630 $seqs = $seqs[0];
631 }
632
633 // Check for mappings
634 $maps = array();
635 if (preg_match_all('/{(.+)}/U',$inline,$maps)) {
636 $inline = preg_replace('/{(.+)}/U','YAMLMap',$inline);
637 $maps = $maps[0];
638 }
639
640 $explode = explode(', ',$inline);
641
642 // Re-add the strings
643 if (!empty($saved_strings)) {
644 $i = 0;
645 foreach ($explode as $key => $value) {
646 if (strpos($value,'YAMLString')) {
647 $explode[$key] = str_replace('YAMLString',$saved_strings[$i],$value);
648 ++$i;
649 }
650 }
651 }
652
653 // Re-add the sequences
654 if (!empty($seqs)) {
655 $i = 0;
656 foreach ($explode as $key => $value) {
657 if (strpos($value,'YAMLSeq') !== false) {
658 $explode[$key] = str_replace('YAMLSeq',$seqs[$i],$value);
659 ++$i;
660 }
661 }
662 }
663
664 // Re-add the mappings
665 if (!empty($maps)) {
666 $i = 0;
667 foreach ($explode as $key => $value) {
668 if (strpos($value,'YAMLMap') !== false) {
669 $explode[$key] = str_replace('YAMLMap',$maps[$i],$value);
670 ++$i;
671 }
672 }
673 }
674
675 return $explode;
676 }
677
678 /**
679 * Builds the PHP array from all the YAML nodes we've gathered
680 * @access private
681 * @return array
682 */
683 function _buildArray() {
684 $trunk = array();
685
686 if (!isset($this->_indentSort[0])) {
687 return $trunk;
688 }
689
690 foreach ($this->_indentSort[0] as $n) {
691 if (empty($n->parent)) {
692 $this->_nodeArrayizeData($n);
693 // Check for references and copy the needed data to complete them.
694 $this->_makeReferences($n);
695 // Merge our data with the big array we're building
696 $trunk = $this->_array_kmerge($trunk,$n->data);
697 }
698 }
699
700 return $trunk;
701 }
702
703 /**
704 * Traverses node-space and sets references (& and *) accordingly
705 * @access private
706 * @return bool
707 */
708 function _linkReferences() {
709 if (is_array($this->_haveRefs)) {
710 foreach ($this->_haveRefs as $node) {
711 if (!empty($node->data)) {
712 $key = key($node->data);
713 // If it's an array, don't check.
714 if (is_array($node->data[$key])) {
715 foreach ($node->data[$key] as $k => $v) {
716 $this->_linkRef($node,$key,$k,$v);
717 }
718 } else {
719 $this->_linkRef($node,$key);
720 }
721 }
722 }
723 }
724 return true;
725 }
726
727 function _linkRef(&$n,$key,$k = NULL,$v = NULL) {
728 if (empty($k) && empty($v)) {
729 // Look for &refs
730 $matches = array();
731 if (preg_match('/^&([^ ]+)/',$n->data[$key],$matches)) {
732 // Flag the node so we know it's a reference
733 $this->_allNodes[$n->id]->ref = substr($matches[0],1);
734 $this->_allNodes[$n->id]->data[$key] =
735 substr($n->data[$key],strlen($matches[0])+1);
736 // Look for *refs
737 } elseif (preg_match('/^\*([^ ]+)/',$n->data[$key],$matches)) {
738 $ref = substr($matches[0],1);
739 // Flag the node as having a reference
740 $this->_allNodes[$n->id]->refKey = $ref;
741 }
742 } elseif (!empty($k) && !empty($v)) {
743 if (preg_match('/^&([^ ]+)/',$v,$matches)) {
744 // Flag the node so we know it's a reference
745 $this->_allNodes[$n->id]->ref = substr($matches[0],1);
746 $this->_allNodes[$n->id]->data[$key][$k] =
747 substr($v,strlen($matches[0])+1);
748 // Look for *refs
749 } elseif (preg_match('/^\*([^ ]+)/',$v,$matches)) {
750 $ref = substr($matches[0],1);
751 // Flag the node as having a reference
752 $this->_allNodes[$n->id]->refKey = $ref;
753 }
754 }
755 }
756
757 /**
758 * Finds the children of a node and aids in the building of the PHP array
759 * @access private
760 * @param int $nid The id of the node whose children we're gathering
761 * @return array
762 */
763 function _gatherChildren($nid) {
764 $return = array();
765 $node =& $this->_allNodes[$nid];
766 foreach ($this->_allNodes as $z) {
767 if ($z->parent == $node->id) {
768 // We found a child
769 $this->_nodeArrayizeData($z);
770 // Check for references
771 $this->_makeReferences($z);
772 // Merge with the big array we're returning
773 // The big array being all the data of the children of our parent node
774 $return = $this->_array_kmerge($return,$z->data);
775 }
776 }
777 return $return;
778 }
779
780 /**
781 * Turns a node's data and its children's data into a PHP array
782 *
783 * @access private
784 * @param array $node The node which you want to arrayize
785 * @return boolean
786 */
787 function _nodeArrayizeData(&$node) {
788 if (is_array($node->data) && $node->children == true) {
789 // This node has children, so we need to find them
790 $childs = $this->_gatherChildren($node->id);
791 // We've gathered all our children's data and are ready to use it
792 $key = key($node->data);
793 $key = empty($key) ? 0 : $key;
794 // If it's an array, add to it of course
795 if (is_array($node->data[$key])) {
796 $node->data[$key] = $this->_array_kmerge($node->data[$key],$childs);
797 } else {
798 $node->data[$key] = $childs;
799 }
800 } elseif (!is_array($node->data) && $node->children == true) {
801 // Same as above, find the children of this node
802 $childs = $this->_gatherChildren($node->id);
803 $node->data = array();
804 $node->data[] = $childs;
805 }
806
807 // We edited $node by reference, so just return true
808 return true;
809 }
810
811 /**
812 * Traverses node-space and copies references to / from this object.
813 * @access private
814 * @param object $z A node whose references we wish to make real
815 * @return bool
816 */
817 function _makeReferences(&$z) {
818 // It is a reference
819 if (isset($z->ref)) {
820 $key = key($z->data);
821 // Copy the data to this object for easy retrieval later
822 $this->ref[$z->ref] =& $z->data[$key];
823 // It has a reference
824 } elseif (isset($z->refKey)) {
825 if (isset($this->ref[$z->refKey])) {
826 $key = key($z->data);
827 // Copy the data from this object to make the node a real reference
828 $z->data[$key] =& $this->ref[$z->refKey];
829 }
830 }
831 return true;
832 }
833
834
835 /**
836 * Merges arrays and maintains numeric keys.
837 *
838 * An ever-so-slightly modified version of the array_kmerge() function posted
839 * to php.net by mail at nospam dot iaindooley dot com on 2004-04-08.
840 *
841 * http://us3.php.net/manual/en/function.array-merge.php#41394
842 *
843 * @access private
844 * @param array $arr1
845 * @param array $arr2
846 * @return array
847 */
848 function _array_kmerge($arr1,$arr2) {
849 if(!is_array($arr1))
850 $arr1 = array();
851
852 if(!is_array($arr2))
853 $arr2 = array();
854
855 $keys1 = array_keys($arr1);
856 $keys2 = array_keys($arr2);
857 $keys = array_merge($keys1,$keys2);
858 $vals1 = array_values($arr1);
859 $vals2 = array_values($arr2);
860 $vals = array_merge($vals1,$vals2);
861 $ret = array();
862
863 foreach($keys as $key) {
864 list( /* unused */ ,$val) = each($vals);
865 // This is the good part! If a key already exists, but it's part of a
866 // sequence (an int), just keep addin numbers until we find a fresh one.
867 if (isset($ret[$key]) and is_int($key)) {
868 while (array_key_exists($key, $ret)) {
869 $key++;
870 }
871 }
872 $ret[$key] = $val;
873 }
874
875 return $ret;
876 }
877 }
878