-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDataTable.js
125 lines (109 loc) · 2.51 KB
/
DataTable.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
/* DataTable.js */
var headers = [];
var rows = [];
function DataTable( )
{
// global variables
var dataTableVars = [];
var name = "";
/*
importDataTable : Converts the data from XML output format to something usable
*/
this.importDataTable = function( xml )
{
$xml.find("DataTable").each(function(){
for ( var i = 0; i < this.attributes.length; i++ )
{
dataTableVars[ this.attributes.item(i).nodeName ] = this.attributes.item(i).nodeValue;
}
});
// get the table headers
headers = new DataTable().stringSplit(dataTableVars["Headers"]);
delete dataTableVars["Headers"];
this.name = dataTableVars["Name"];
delete dataTableVars["Name"];
rows = [];
// loop through all of the 'rows' in the data table
$xml.find("Row").each(function(){
var rd = new DataTable().stringSplit( $(this).text() );
var row = [];
for( var i = 0; i < headers.length; i++ )
{
if ( rd[i] == " " )
{
rd[i] = "";
}
row[ headers[i] ] = rd[i];
}
rows.push(row);
});
}
/*
stringSplit : Splits the input from pipe seperated form into an array.
RPC code splits on pipe chars, and double pipes are intended to be quoted.
*/
this.stringSplit = function ( listOfHeaders )
{
// this is the regex that I should be using: /(?<!\|)\|(?!\|)/
// Javascript only supports lookahead - not look behind.
var ar = listOfHeaders.split( /\|(?!\|)/ );
var arrayToReturn = [];
for ( var i = 0; i < ar.length; i++ )
{
// check the last char in ar[i] == |
if ( ar[i].charAt(ar[i].length-1) == "|" )
{
arrayToReturn.push( ar[i] + ar[i + 1] );
i++;
}
else
{
arrayToReturn.push(ar[i]);
}
}
return arrayToReturn;
}
/*
headers : Returns the table headers as an array
*/
this.getHeaders = function()
{
return headers;
}
/*
paramForName : Returns a table parameter for a given Name.
*/
this.paramForName = function( key )
{
if ( key in dataTableVars )
{
return dataTableVars[ key ];
}
else
{
return "undef";
}
}
/*
rowCount : returns number of rows
*/
this.getRowCount = function()
{
return rows.length;
}
/*
rowsAsArray : returns the rows as an array -
note - the underlying hashes are references and hence changes are persisted.
*/
this.rowsAsArray = function()
{
return rows;
}
/*
tableName : returns the table name
*/
this.getTableName = function()
{
return this.name;
}
}