-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSmartXML.class.php
More file actions
920 lines (685 loc) · 24.8 KB
/
SmartXML.class.php
File metadata and controls
920 lines (685 loc) · 24.8 KB
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
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
<?php
/**************************************************************************************************
** SmartXML_node class **
*
* Used during iteration of a SmartXML. Allows interface to the node's properties.
* There's no public constructor, used only from iterator itself.
**************************************************************************************************/
class SmartXML_node {
//------------------------------------------------------------------------------------------### properties
protected $core;
protected $iterator;
public $tagName;
public $position;
public $path;
public $depth;
//--------------------------------------------------------------------------------------------# __construct
protected function __construct($iterator,$node,$iterated=false)
{
$this->iterator = $iterator;
$this->core = !isset($node->tagName) ? null : $node;
$this->tagName = $this->core ? $iterator->getTagName($this->core) : null;
$this->position = $iterated ? 1+$iterator->entId : null;
$this->path = $iterated ? $iterator->path : null;
$this->depth = $iterated ? count($this->path) : null;
}
public static function create_SmartXML_node($iterator,$node,$iterated=false)
{
return new SmartXML_node($iterator,$node,$iterated);
}
public static function falseNode($iterator)
{
return new SmartXML_node($iterator,null);
}
//--------------------------------------------------------------------------------------------# _getCore
public function _getCore()
{
return $this->core;
}
//--------------------------------------------------------------------------------------------# _getIterator
public function _getIterator()
{
return $this->iterator;
}
//--------------------------------------------------------------------------------------------# __toString
public function __toString()
{
return $this->iterator->xmlRoot->saveXML($this->core);
}
//--------------------------------------------------------------------------------------------# __isset
public function __isset($name)
{
if($this->core && ($name=="tagName" || $name=="position" || $name=="path" || $name=="depth"))
return 1;
if($name=="parentNode" || $name=="previousSibling" || $name=="nextSibling" || $name=="firstChild" || $name=="lastChild" )
return 6;
if($name=="childNodes" || $name=="subTree")
return 7;
if($name=="xpath")
return 8;
if($name=="attributes")
return 9;
if(isset($this->core->$name))
return 2;
return isset($this->iterator->$name) ? 3 : 0;
}
//--------------------------------------------------------------------------------------------# __get
public function __get($name)
{
if($name=="nodeValue" && !is_null($this->iterator->encoding))
{
return iconv("UTF-8", $this->iterator->encoding, $this->core->nodeValue);
}
if(is_null($this->position) && $name=="position")
$this->position = $this->getPosition();
if(is_null($this->path) && ($name=="xpath" || $name=="path" || $name=="depth"))
{
$this->getPath();
}
switch($this->__isset($name))
{
case 0 : return null;
case 1 : return $this->$name;
case 2 : return $this->core->$name;
case 3 : return $this->iterator->$name;
case 6 : return new SmartXML_node($this->iterator,$this->core->$name);
case 7 : return new SmartXML_nodeList_iterator($this->iterator,$this->core->childNodes);
case 8 : return ($this->depth ? "/" : "").implode("/",$this->path)."/".$this->tagName;
case 9 : return new SmartXML_node_attributes($this);
}
}
//--------------------------------------------------------------------------------------------# __set
public function __set($name, $value)
{
if($name=="nodeValue")
{
return $this->iterator->setValue($value,$this->core);
}
}
//--------------------------------------------------------------------------------------------# hasChild
public function hasChildNodes()
{
return $this->core->hasChildNodes();
}
//--------------------------------------------------------------------------------------------# insertNode
public function insertNode($name,$value=null,$after=null)
{
if(!strlen($name) || !$this->core) return;
if(!is_null($this->iterator->encoding))
{
$name = iconv($this->iterator->encoding,"UTF-8", $name);
$value = is_null($value) ? null : iconv($this->iterator->encoding,"UTF-8", $value);
}
if(!is_null($value))
$newNode = $this->iterator->xmlRoot->createElement($name,$value);
else
$newNode = $this->iterator->xmlRoot->createElement($name);
if($newNode)
{
if(!is_null($after))
$this->core->insertBefore($newNode,$after->core);
else
$this->core->appendChild($newNode);
}
return new SmartXML_node($this->iterator,$newNode);
}
//--------------------------------------------------------------------------------------------# removeChild
public function removeChild(SmartXML_node $child)
{
return $this->core->removeChild($child->core);
}
//--------------------------------------------------------------------------------------------# _die
public function _die()
{
if($this->core && $this->core->parentNode)
{
// iteration safe seppuku
if($this->iterator->node->isSameNode($this->core) && $this->iterator->valid())
{
$this->iterator->next();
$this->iterator->keepNext();
}
$this->core->parentNode->removeChild($this->core);
}
}
//--------------------------------------------------------------------------------------------# getElementsByTagName
public function getElementsByTagName($tag)
{
if(!is_null($this->iterator->encoding))
$tag = iconv($this->iterator->encoding,"UTF-8", $tag);
return new SmartXML_nodeList_iterator($this->iterator,$this->core->getElementsByTagName($tag));
}
//--------------------------------------------------------------------------------------------# importNode
public function importNode($node,$deep=false)
{
if(!$node->core) return self::FalseNode($this->iterator);
$newNode = $this->iterator->xmlRoot->importNode($node->core,$deep);
if($newNode)
{
return new SmartXML_node($this->iterator,$this->core->appendChild($newNode));
}
return self::FalseNode($this->iterator);
}
//--------------------------------------------------------------------------------------------# isEqual
public function isEqual($other)
{
if($other->tagName != $this->tagName || $other->nodeValue != $this->nodeValue)
return false;
foreach($other->attributes as $name=>$value)
if($this->attributes->$name != $value)
return false;
foreach($this->attributes as $name=>$value)
if($other->attributes->$name != $value)
return false;
return true;
}
//--------------------------------------------------------------------------------------------# getPosition
protected function getPosition()
{
$parent = $this->core ? $this->core->parentNode : null;
if($parent && isset($parent->tagName))
{
$brothers = $parent->getElementsByTagName($this->core->tagName);
for($i=0; $i < $brothers->length; $i++)
{
if($brothers->item($i)->isSameNode($this->core))
return 1+$i;
}
}
return 0;
}
//--------------------------------------------------------------------------------------------# getPath
protected function getPath()
{
$this->path = array();
$path=array();
$go = $this->core ? $this->core->parentNode : null;
while($go && isset($go->tagName))
{
$path[]=$this->iterator->getTagName($go);
$go=$go->parentNode;
}
$path = array_reverse($path);
$i=0;
foreach($path as $tag)
$this->path[$i++]=$tag;
$this->depth = count($this->path);
return $this->path;
}
//--------------------------------------------------------------------------------------------# xpath
public function xpath($query)
{
return $this->iterator->xpath->evaluate($query,$this);
}
}
/**************************************************************************************************
** SmartXML_node_attributes class **
*
* Provides an interface to the attributes of a SmartXML_node object.
**************************************************************************************************/
class SmartXML_node_attributes implements Iterator {
protected $node;
protected $XML_node;
protected $pos = 0;
//--------------------------------------------------------------------------------------------# __construct
public function __construct($node)
{
$this->XML_node = $node;
$this->node = $node->_getCore();
}
//--------------------------------------------------------------------------------------------# __isset
public function __isset($name)
{
return $this->node->hasAttribute($name);
}
//--------------------------------------------------------------------------------------------# __isset
public function __unset($name)
{
return $this->node->removeAttribute($name);
}
//--------------------------------------------------------------------------------------------# __get
public function __get($name)
{
$encoding = 0;
if(!is_null($this->XML_node->_getIterator()->encoding))
{
$name = iconv($this->XML_node->_getIterator()->encoding,"UTF-8",$name);
$encoding = $this->XML_node->_getIterator()->encoding;
}
return $encoding ? iconv("UTF-8",$this->XML_node->_getIterator()->encoding,$this->node->getAttribute($name)) : $this->node->getAttribute($name);
}
//--------------------------------------------------------------------------------------------# __set
public function __set($name, $value)
{
if(!is_null($this->XML_node->_getIterator()->encoding))
{
$name = iconv($this->XML_node->_getIterator()->encoding,"UTF-8",$name);
$value = iconv($this->XML_node->_getIterator()->encoding,"UTF-8",$value);
}
return $this->node->setAttribute($name,$value);
}
//--------------------------------------------------------------------------------------------# __toString
public function __toString()
{
$str="";
for($i=0;$i < $this->node->attributes->length;$i++)
$str.=" ".$this->node->attributes->item($i)->name."=\"".$this->node->attributes->item($i)->value."\"";
return ltrim($str);
}
//--------------------------------------------------------------------------------------------# count
public function count()
{
return $this->node->attributes->length;
}
//--------------------------------------------------------------------------------------------# as_array
public function as_array()
{
$arrAttributes=array();
for($i=0;$i < $this->node->attributes->length;$i++)
{
$arrAttributes[$this->node->attributes->item($i)->name]=$this->node->attributes->item($i)->value;
}
return $arrAttributes;
}
//--------------------------------------------------------------------------------------------# rewind
public function rewind()
{
$this->pos=0;
}
//--------------------------------------------------------------------------------------------# rewind
public function current()
{
return $this->node->attributes->item($this->pos)->value;
}
//--------------------------------------------------------------------------------------------# key
public function key()
{
return $this->node->attributes->item($this->pos)->name;
}
//--------------------------------------------------------------------------------------------# next
public function next()
{
$this->pos++;
}
//--------------------------------------------------------------------------------------------# valid
public function valid()
{
return $this->pos < $this->node->attributes->length;
}
}
/**************************************************************************************************
** SmartXML class **
*
* Just for your comfort. Knows what you need, just as you need it.
**************************************************************************************************/
class SmartXML implements Iterator {
//------------------------------------------------------------------------------------------### properties
public $xmlRoot;
public $node;
public $depth;
public $path;
public $entId;
public $xpath;
public $keepNextStep = 0;
public $encoding;
protected $level;
//--------------------------------------------------------------------------------------------# __construct
public function __construct($xml=null,$encoding=null,$formatted=true)
{
$this->xmlRoot = new DOMDocument("1.0",is_null($encoding) ? "UTF-8" : $encoding);
$this->path = array();
$this->depth = 0;
$this->entId = 0;
$this->level = array();
$this->encoding = $encoding;
if(!is_null($xml))
$this->init($xml);
$this->xmlRoot->formatOutput=$formatted;
$this->xpath = new SmartXML_xpath_interface($this);
}
//--------------------------------------------------------------------------------------------# init
public function init($xml=null)
{
if($xml)
{
switch(is_object($xml) ? get_class($xml) : "text")
{
case "SimpleXMLElement" : $this->xmlRoot->loadXML($xml->asXML());break;
case "DOMDocument" : $this->xmlRoot = $xml;break;
default :
$xml = trim(preg_replace("/([\\n\\s]*)(<\/?)([^>]*>)/","\\2\\3",$xml));
if(!is_null($this->encoding))
{
// the character encoding in the xml header is necessary for non-utf8 xml sources
$headerEnd = strpos($xml,"?>");
$xml = substr($xml,$headerEnd===false ? 0 : 2+$headerEnd);
$xml = "<?xml version=\"1.0\" encoding=\"".$this->encoding."\"?>".$xml;
}
$this->xmlRoot->loadXML($xml);
if(is_null($this->encoding) && $this->xmlRoot->encoding!="UTF-8")
$this->encoding = $this->xmlRoot->encoding;
}
}
else
{
$this->path = array();
$this->level = array();
$this->depth = 0;
}
$this->node = $this->xmlRoot->documentElement;
}
//--------------------------------------------------------------------------------------------# getTagName
public function getTagName($node)
{
return is_null($this->encoding) ? $node->tagName : iconv("UTF-8", $this->encoding, $node->tagName);
}
//--------------------------------------------------------------------------------------------# createRoot
public function createRoot($name)
{
$name = is_null($this->encoding) ? $name : iconv($this->encoding,"UTF-8", $name);
return SmartXML_node::create_SmartXML_node($this,$this->xmlRoot->appendChild($this->xmlRoot->createElement($name)));
}
//--------------------------------------------------------------------------------------------# getRoot
public function getRoot()
{
return SmartXML_node::create_SmartXML_node($this,$this->xmlRoot->documentElement);
}
//--------------------------------------------------------------------------------------------# insertFromXpath
public function insertFromXpath($xpath,$value=null)
{
$path = explode("/",$xpath);
if($this->getNode($xpath) || $this->xmlRoot->documentElement && $path[0]!=$this->getTagName($this->xmlRoot->documentElement))
return SmartXML_node::falseNode($this);
$node = $this->getCore();
foreach($path as $node)
{
//;
}
$node = $this->getNode($xpath);
}
//--------------------------------------------------------------------------------------------# rewind
public function rewind()
{
$this->path = array();
$this->depth = 0;
$this->node = $this->xmlRoot->documentElement;
$this->level = array();
$this->keepNextStep = 0;
$this->evaluateNode();
}
//--------------------------------------------------------------------------------------------# current
public function current()
{
return SmartXML_node::create_SmartXML_node($this,$this->node,true);
}
//--------------------------------------------------------------------------------------------# key
public function key()
{
return $this->getTagName($this->node);
}
//--------------------------------------------------------------------------------------------# keepNext
public function keepNext()
{
$this->keepNextStep = 1;
}
//--------------------------------------------------------------------------------------------# next
public function next()
{
if($this->keepNextStep)
{
$this->keepNextStep=0;
return;
}
if($this->node)
$this->path[$this->depth]=$this->getTagName($this->node);
if($this->node->firstChild && get_class($this->node->firstChild)!="DOMText")
{
$this->node=$this->node->firstChild;
$this->level[$this->depth] = array();
$this->depth++;
}
else if($this->node->nextSibling)
{
$this->node=$this->node->nextSibling;
}
else
{
while($this->node)
{
$this->node=$this->node->parentNode;
$this->depth--;
if($this->node && $this->node->nextSibling)
{
$this->node=$this->node->nextSibling;
break;
}
}
}
$this->evaluateNode();
}
//--------------------------------------------------------------------------------------------# evaluateNode
protected function evaluateNode()
{
if($this->node)
{
if(isset($this->level[$this->depth-1][$this->node->tagName]))
$this->level[$this->depth-1][$this->node->tagName]++;
else
$this->level[$this->depth-1][$this->node->tagName]=0;
$this->path = array_slice($this->path, 0, $this->depth);
$this->entId = $this->level[$this->depth-1][$this->node->tagName];
}
}
//--------------------------------------------------------------------------------------------# valid
public function valid()
{
return $this->node;
}
//--------------------------------------------------------------------------------------------# setValue
public function setValue($value,$node=null)
{
if(is_null($node))
$node = $this->node;
if($node->firstChild && get_class($node->firstChild)!="DOMText")
return false;
else if($node->firstChild)
{
$node->removeChild($node->firstChild);
}
if(!is_null($this->encoding))
$value = iconv($this->encoding, "UTF-8", $value);
$node->appendChild(new DOMText($value));
return true;
}
//--------------------------------------------------------------------------------------------# saveXML
public function saveXML()
{
return $this->xmlRoot->saveXML();
}
//--------------------------------------------------------------------------------------------# formattedXML
public function formattedXML()
{
$formatted = $this->xmlRoot->formatOutput;
$this->xmlRoot->formatOutput = true;
$xml = $this->xmlRoot->saveXML();
$this->xmlRoot->formatOutput=$formatted;
return $xml;
}
//--------------------------------------------------------------------------------------------# __toString
public function __toString()
{
return $this->xmlRoot->saveXML();
}
//--------------------------------------------------------------------------------------------# hasNode
public function hasNode($xpath)
{
return $this->xpath->evaluate("count(".$xpath.")");
}
//--------------------------------------------------------------------------------------------# getNode
public function getNode($xpath)
{
return $this->xpath->query($xpath)->first();
}
//--------------------------------------------------------------------------------------------# isEqual
public function isEqual(SmartXML $other)
{
$state = $this->saveState();
$this->rewind();
foreach($other as $node)
{
if(!$this->valid() || !$node->isEqual($this->current()))
{
$this->restoreState($state);
return false;
}
$this->next();
}
$this->restoreState($state);
return !$this->valid();
}
//--------------------------------------------------------------------------------------------# isSameStructure
public function isSameStructure(SmartXML $other)
{
$state = $this->saveState();
$this->rewind();
foreach($other as $node)
{
if(!$this->valid() || $node->tagName!=$this->node->tagName)
{
$this->restoreState($state);
return false;
}
$this->next();
}
$this->restoreState($state);
return !$this->valid();
}
//--------------------------------------------------------------------------------------------# count
public function count()
{
return $this->xpath->evaluate("count(//*)");
}
//--------------------------------------------------------------------------------------------# saveState
protected function saveState()
{
$state = array();
$state["node"] = $this->node;
$state["depth"] = $this->depth;
$state["path"] = $this->path;
$state["entId"] = $this->entId;
$state["level"] = $this->level;
return $state;
}
//--------------------------------------------------------------------------------------------# saveState
protected function restoreState($state)
{
$this->node = $state["node"];
$this->depth = $state["depth"];
$this->path = $state["path"];
$this->entId = $state["entId"];
$this->level = $state["level"];
}
}
/**************************************************************************************************
** SmartXML_xpath_interface class **
*
* Made for XPATH evaluations.
**************************************************************************************************/
class SmartXML_xpath_interface {
protected $parent;
protected $xpath;
//--------------------------------------------------------------------------------------------# __construct
public function __construct(SmartXML $parent)
{
$this->parent = $parent;
$this->xpath = new DOMXPath($parent->xmlRoot);
}
//--------------------------------------------------------------------------------------------# query
public function query($query)
{
if(!is_null($this->parent->encoding))
$query = iconv($this->parent->encoding, "UTF-8", $query);
return new SmartXML_nodeList_iterator($this->parent,$this->xpath->query($query));
}
//--------------------------------------------------------------------------------------------# evaluate
public function evaluate($query,$node=null)
{
if(!is_null($this->parent->encoding))
$query = iconv($this->parent->encoding, "UTF-8", $query);
if(is_null($node))
$res = $this->xpath->evaluate($query);
else
$res = $this->xpath->evaluate($query,$node->_getCore());
if(is_object($res) && get_class($res)=="DOMNodeList")
return new SmartXML_nodeList_iterator($this->parent,$res);
else
return $res;
}
}
/**************************************************************************************************
** SmartXML_nodeList_iterator class **
*
* Made for iterating through XPATH evaluations.
**************************************************************************************************/
class SmartXML_nodeList_iterator extends SmartXML {
protected $nodeList;
protected $nodePosition;
//--------------------------------------------------------------------------------------------# __construct
public function __construct($parent,$nodeList)
{
parent::__construct($parent->xmlRoot);
$this->nodeList = $nodeList;
$this->nodePosition = 0;
$this->rewind();
$this->encoding = $parent->encoding;
}
//--------------------------------------------------------------------------------------------# saveAsXML
public function saveAsXML()
{
foreach($this as $node)
;
}
//--------------------------------------------------------------------------------------------# first
public function first()
{
return SmartXML_node::create_SmartXML_node($this,$this->nodeList->item(0));
}
//--------------------------------------------------------------------------------------------# count
public function count()
{
return $this->nodeList->length;
}
//--------------------------------------------------------------------------------------------# count
public function item($index)
{
return $index<$this->nodeList->length ? SmartXML_node::create_SmartXML_node($this,$this->nodeList->item($index)) : SmartXML_node::falseNode($this);
}
//--------------------------------------------------------------------------------------------# rewind
public function rewind()
{
parent::rewind();
$this->nodePosition=0;
$this->node = $this->nodeList->item(0);
}
//--------------------------------------------------------------------------------------------# current
public function current()
{
return SmartXML_node::create_SmartXML_node($this,$this->node);
}
//--------------------------------------------------------------------------------------------# next
public function next()
{
if($this->keepNextStep)
{
$this->keepNextStep=0;
return;
}
$this->node = $this->nodeList->item(++$this->nodePosition);
}
//--------------------------------------------------------------------------------------------# valid
public function valid()
{
return $this->nodePosition < $this->nodeList->length;
}
}
?>