forked from Nhacsam/SiPoteris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
getXML.js
executable file
·138 lines (87 loc) · 3.45 KB
/
getXML.js
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
/*
Creation : 19/04/2013
Author : Fabien Daoulas
Last update : 08/05/2013
This script parses xml files, informations about videos...
number of lines : 130
*/
#pragma strict
import System.Xml;
import System.IO;
// number of movies
private var numberOfMovies : int = 0;
private var mFile : XmlDocument ;
function InitXml( XMLToLoad : String ) {
// because .xml is not managed by iPad, this file has to be .txt and then load as a textAsset
var textAsset : TextAsset = Resources.Load( XMLToLoad , typeof(TextAsset) ) as TextAsset;
mFile = new XmlDocument();
mFile.Load( new StringReader( textAsset.text ) );
}
/*
*parse xml file
*this method creates a hashtable containing all informations of this element, and
*thanks to callback, this hashtable will be attached to the plane
*/
static function getElementFromXML( fileName : String, callbackFunc : function( String, Hashtable ) ) : Array {
var Data = new Array();
var textAsset : TextAsset = Resources.Load( fileName , typeof(TextAsset) ) as TextAsset;
if( !textAsset){
Console.CriticalError( 'Xml file '+ fileName + ' not found !');
return Data ;
}
var mFile : XmlDocument = new XmlDocument();
mFile.Load( new StringReader( textAsset.text ) );
// root hashtable
var rootTab : Hashtable ;
// get all element under tag "root"
var elementList : XmlNodeList = mFile.GetElementsByTagName( "root" );
var rootChildren : XmlNodeList;
// get child of roots
for each( var rootnodeList : XmlNode in elementList ) {
rootChildren = rootnodeList.ChildNodes ;
}
// parse XML - fir each element of rootChildren list
for each( var nodeList : XmlNode in rootChildren ){
if( nodeList.Name == '#comment' )
continue ;
rootTab = new Hashtable();
// list of child of an element of rootChidren list
var elementContent : XmlNodeList = nodeList.ChildNodes;
// explore all the xml recursively until there is no child for a node
exploreRecursively( elementContent , rootTab );
// get all the information stored under this element of rootChildren
Data.Push( rootTab );
callbackFunc( (nodeList.Name as String).ToLower(), rootTab);
}
return Data ;
}
/*
*explore recursively the xml file
*/
private static function exploreRecursively ( list : XmlNodeList , Htab : Hashtable){
for each( var nodeList : XmlNode in list ) {
var elementContent : XmlNodeList = nodeList.ChildNodes;
// conversion en minuscule (pour insensibilité à la casse)
var nodeName = (nodeList.Name as String).ToLower() ;
// if there are childNodes
if( elementContent.Count > 1 ){
var nextHT : Hashtable = new Hashtable();
// fill nextHT
exploreRecursively( elementContent , nextHT );
Htab[ nodeName ] = nextHT;
}
else {// if there are no childNodes
if( Htab.ContainsKey( nodeName ) && typeof( Htab[ nodeName ] ) != typeof( Array ) ){ // if key already exists and this is not an array
// create an array and start storing all the information
var array : Array = new Array();
array.Push( Htab[ nodeName ] );
array.Push( nodeList.InnerText );
Htab[ nodeName ] = array;
} else if( Htab.ContainsKey( nodeName ) && typeof( Htab[ nodeName ] ) == typeof( Array ) ){ // if key already exists and this is an array
// add another element in the array
( Htab[ nodeList.Name ] as Array).Push( nodeList.InnerText );
} else // if key does not exist already
Htab[ nodeName ] = nodeList.InnerText.Trim() ;
}
}
}