~vcs-imports/lince/trunk

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
/***************************************************************************
 *            XMLWriter.cc
 *
 *  Sun Jan  7 17:04:24 2007
 *  Copyright  2007  Fernando TarĂ­n Morales
 *  icemanf@gmail.com
 ****************************************************************************/

/*
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301,  USA
 */
 
 
#include "XMLWriter.h"
 
 
XMLWriter::XMLWriter(){
 	LIBXML_TEST_VERSION
	
	writer   = NULL;
	formatfile = true;
}

XMLWriter::XMLWriter(const Glib::ustring & fname){
 	LIBXML_TEST_VERSION
	
	writer   = NULL;
	formatfile = true;
	filename = fname;
}

XMLWriter::~XMLWriter(){
	if (isWriterInitialized()){
		endDocument();
		freeWriter();
	}
	
	xmlCleanupParser();
}

bool XMLWriter::initializeWriter(){
	if (!filename.length()){
		return false;
	}
	
	writer = xmlNewTextWriterFilename(filename.c_str(), 0);
	
	if (writer) return true;
		
	return false;
}


/*!
 This is the first function that should be called to save some data into an xml
 file. Only utf8 encoding will be used and accepted as input data. By default 
 the file will be indented with tabs.
*/
bool XMLWriter::startDocument(const Glib::ustring &nodeName){
	int rc;
	
	if (!isWriterInitialized())
		initializeWriter();
	else
		return false;
	
	if (!isWriterInitialized())
		return false;
	
	if (formatfile){
		setFormatFile(true);
		xmlTextWriterSetIndentString(writer, BAD_CAST "\t");
	}
	
	encoding = "UTF-8";
	rc = xmlTextWriterStartDocument(writer, NULL, encoding.c_str(), NULL);
	if (rc < 0){
		return false;
	}
	
	return startElement(nodeName);
}


/*!
 Used to start an element in the xml file.
*/
bool XMLWriter::startElement(const Glib::ustring &nodeName){
	int rc;
		
	if (!isWriterInitialized() || !checkUtf8(nodeName))
		return false;
	
	rc = xmlTextWriterStartElement(writer, (xmlChar *) nodeName.c_str());
	
	if (rc < 0) {
        return false;
	}
	
	return true;
}

/*!
 Used to write a complete element to the file. It can't handle attributes.
*/
bool XMLWriter::writeElement(const Glib::ustring &elementname, const Glib::ustring &elementdata){
	int rc;
		
	if (!isWriterInitialized() || (!checkUtf8(elementname) || !checkUtf8(elementdata)))
		return false;
	
	rc = xmlTextWriterWriteElement(writer, (xmlChar *) elementname.c_str(), (xmlChar *) elementdata.c_str());
	
	if (rc < 0) {
        return false;
    }
    		
	return true;
}

/*!
 Used to add attributes to the current element.
*/
bool XMLWriter::addAttribute(const Glib::ustring &attr_name, const Glib::ustring &attr_data){
	int rc;
	
	if (!isWriterInitialized() || (!checkUtf8(attr_name) || !checkUtf8(attr_data)))
		return false;
	
	rc = xmlTextWriterWriteAttribute(writer, (xmlChar *) attr_name.c_str(), (xmlChar *) attr_data.c_str());
	
	if (rc < 0) {
        return false;
    }
	
	return true;
}

/*!
 Used to add data to the current element data must be a string.
*/
bool XMLWriter::addElementData(const Glib::ustring &elementdata){
	int rc;
		
	if (!isWriterInitialized() || !checkUtf8(elementdata))
		return false;
	
	rc = xmlTextWriterWriteFormatString(writer, "%s", elementdata.c_str());
	
	if (rc < 0) {
        return false;
    }
    		
	return true;
}

/*!
 Used to add data to the current element data must be an int.
*/
bool XMLWriter::addElementData(int elementdata){
	int rc;
	
	if (!isWriterInitialized())
		return false;
	
	rc = xmlTextWriterWriteFormatString(writer, "%i", elementdata);
	
	if (rc < 0) {
        return false;
    }
		
	return true;
}

/*!
 Used to add data to the current element data must be an float.
*/
bool XMLWriter::addElementData(float elementdata){
	int rc;
	
	if (!isWriterInitialized())
		return false;
	
	rc = xmlTextWriterWriteFormatString(writer, "%f", elementdata);
	
	if (rc < 0) {
        return false;
    }
		
	return true;
}

bool XMLWriter::addElementData(int64_t elementdata){
	int rc;
	
	if (!isWriterInitialized())
		return false;
	
	rc = xmlTextWriterWriteFormatString(writer, "%lli", elementdata);
	
	if (rc < 0) {
        return false;
    }
		
	return true;
}

/*!
 Used to add a comment. Can't be used after an endElement call.
*/
bool XMLWriter::addComment(const Glib::ustring &comment){
	int rc;
	
	if (!isWriterInitialized())
		return false;
	
	rc = xmlTextWriterWriteComment(writer, (xmlChar *) comment.c_str());
	
	if (rc < 0) {
        return false;
    }
    		
	return true;
}

/*!
 Used to end an element.
*/
bool XMLWriter::endElement(){
	int rc;
	
	if (!isWriterInitialized())
		return false;
	
	rc = xmlTextWriterEndElement(writer);
    if (rc < 0) {
        return false;
    }
	
	return true;
}

/*!
 Used to finish the xml file it will close all unclosed elements if it isn't
 called the destructor will do it.
*/
bool XMLWriter::endDocument(){
	int rc;
	
	if (!isWriterInitialized())
		return false;
	
	rc = xmlTextWriterEndDocument(writer);
    
	if (rc < 0){
		return false;
	}
	
	freeWriter();
	return true;
}

/*!
 Private function used to check that input data is utf8 compliant.
*/
bool XMLWriter::checkUtf8(const Glib::ustring & data){
	if (!xmlCheckUTF8((xmlChar *) data.c_str()))
		return false;
	
	return true;
}