1 |
/* |
2 |
* i-scream central monitoring system |
3 |
* http://www.i-scream.org.uk |
4 |
* Copyright (C) 2000-2002 i-scream |
5 |
* |
6 |
* This program is free software; you can redistribute it and/or |
7 |
* modify it under the terms of the GNU General Public License |
8 |
* as published by the Free Software Foundation; either version 2 |
9 |
* of the License, or (at your option) any later version. |
10 |
* |
11 |
* This program is distributed in the hope that it will be useful, |
12 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
* GNU General Public License for more details. |
15 |
* |
16 |
* You should have received a copy of the GNU General Public License |
17 |
* along with this program; if not, write to the Free Software |
18 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
19 |
*/ |
20 |
|
21 |
#include "XMLFormatter.h" |
22 |
|
23 |
XMLFormatter::XMLFormatter( string newHostInfo ){ |
24 |
|
25 |
if ( newHostInfo != "" ){ |
26 |
|
27 |
xmlData += "<"; |
28 |
xmlData += newHostInfo; |
29 |
xmlData += ">"; |
30 |
hostInfo = newHostInfo; |
31 |
|
32 |
} // if |
33 |
stackPointer = 0; |
34 |
|
35 |
} // XMLFormatter |
36 |
|
37 |
XMLFormatter::XMLFormatter(){ |
38 |
|
39 |
hostInfo = ""; // null |
40 |
xmlData = ""; |
41 |
stackPointer = 0; |
42 |
|
43 |
} // XMLFormatter |
44 |
|
45 |
XMLFormatter::XMLFormatter( string newHostInfo, string attributes){ |
46 |
|
47 |
xmlData += "<"; |
48 |
xmlData += newHostInfo; |
49 |
xmlData += " "; |
50 |
xmlData += attributes; |
51 |
xmlData += ">"; |
52 |
|
53 |
hostInfo = newHostInfo; |
54 |
|
55 |
stackPointer = 0; |
56 |
} // XMLFormatter |
57 |
|
58 |
void XMLFormatter::closeNest(){ |
59 |
|
60 |
if ( stackPointer >= 0 ){ |
61 |
|
62 |
stackPointer--; |
63 |
xmlData += "</"; |
64 |
xmlData += stack[stackPointer]; |
65 |
xmlData += ">"; |
66 |
} // if |
67 |
|
68 |
return; |
69 |
} // closeNest |
70 |
|
71 |
void XMLFormatter::addNest(string nest){ |
72 |
|
73 |
// check it is not empty |
74 |
if ( nest != "" ){ |
75 |
xmlData += "<"; |
76 |
xmlData += nest; |
77 |
xmlData += ">"; |
78 |
|
79 |
// now add the nest to the stack |
80 |
stack[stackPointer] = nest; |
81 |
stackPointer++; |
82 |
} // if |
83 |
|
84 |
return; |
85 |
} // addNest |
86 |
|
87 |
void XMLFormatter::addElement(string element, string attributes, string value){ |
88 |
|
89 |
xmlData += "<"; |
90 |
xmlData += element; |
91 |
xmlData += " "; |
92 |
xmlData += attributes; |
93 |
xmlData += ">"; |
94 |
xmlData += value; |
95 |
xmlData += "</"; |
96 |
xmlData += element; |
97 |
xmlData += ">"; |
98 |
|
99 |
return; |
100 |
} // addElement |
101 |
|
102 |
void XMLFormatter::addElement(string element, string value){ |
103 |
|
104 |
if (( element != "" ) && ( value != "" )){ |
105 |
xmlData += "<"; |
106 |
xmlData += element; |
107 |
xmlData += ">"; |
108 |
xmlData += value; |
109 |
xmlData += "</"; |
110 |
xmlData += element; |
111 |
xmlData += ">"; |
112 |
} // if |
113 |
return; |
114 |
|
115 |
} // addElement |
116 |
|
117 |
|
118 |
string XMLFormatter::returnXML(){ |
119 |
// close as many nests as we have open, could (but shouldn't) cause |
120 |
// some arraylist out of bounds errors. |
121 |
for ( int count= stackPointer; count > 0; count-- ){ |
122 |
// close nest |
123 |
closeNest(); |
124 |
} // if |
125 |
|
126 |
if ( hostInfo.length() > 0 ){ |
127 |
xmlData += "</"; |
128 |
xmlData += hostInfo; |
129 |
xmlData += ">"; |
130 |
} // if |
131 |
|
132 |
stackPointer = 0; |
133 |
|
134 |
return xmlData; |
135 |
|
136 |
} // returnXML |