-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathKoXmlWriter.cpp
539 lines (479 loc) · 17.1 KB
/
KoXmlWriter.cpp
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
/* This file is part of the KDE project
Copyright (C) 2004 David Faure <[email protected]>
Copyright (C) 2007 Thomas Zander <[email protected]>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "KoXmlWriter.h"
#include <QIODevice>
#include <QByteArray>
#include <float.h>
static const int s_indentBufferLength = 100;
static const int s_escapeBufferLen = 10000;
using namespace KDE5;
class KoXmlWriter::Private {
public:
Private(QIODevice* dev_, int indentLevel = 0) : dev(dev_), baseIndentLevel(indentLevel) {
}
~Private() {
delete[] indentBuffer;
delete[] escapeBuffer;
//TODO: look at if we must delete "dev". For me we must delete it otherwise we will leak it
}
QIODevice* dev;
QStack<Tag> tags;
int baseIndentLevel;
char* indentBuffer; // maybe make it static, but then it needs a K_GLOBAL_STATIC
// and would eat 1K all the time... Maybe refcount it :)
char* escapeBuffer; // can't really be static if we want to be thread-safe
};
KoXmlWriter::KoXmlWriter(QIODevice* dev, int indentLevel)
: d(new Private(dev, indentLevel)) {
init();
}
void KoXmlWriter::init() {
d->indentBuffer = new char[ s_indentBufferLength ];
memset(d->indentBuffer, ' ', s_indentBufferLength);
*d->indentBuffer = '\n'; // write newline before indentation, in one go
d->escapeBuffer = new char[s_escapeBufferLen];
if (!d->dev->isOpen())
d->dev->open(QIODevice::WriteOnly);
}
KoXmlWriter::~KoXmlWriter() {
delete d;
}
void KoXmlWriter::startDocument(const char* rootElemName, const char* publicId, const char* systemId) {
Q_ASSERT(d->tags.isEmpty());
writeCString("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
// There isn't much point in a doctype if there's no DTD to refer to
// (I'm told that files that are validated by a RelaxNG schema cannot refer to the schema)
if (publicId) {
writeCString("<!DOCTYPE ");
writeCString(rootElemName);
writeCString(" PUBLIC \"");
writeCString(publicId);
writeCString("\" \"");
writeCString(systemId);
writeCString("\"");
writeCString(">\n");
}
}
void KoXmlWriter::endDocument() {
// just to do exactly like QDom does (newline at end of file).
writeChar('\n');
Q_ASSERT(d->tags.isEmpty());
}
// returns the value of indentInside of the parent
bool KoXmlWriter::prepareForChild() {
if (!d->tags.isEmpty()) {
Tag& parent = d->tags.top();
if (!parent.hasChildren) {
closeStartElement(parent);
parent.hasChildren = true;
parent.lastChildIsText = false;
}
if (parent.indentInside) {
writeIndent();
}
return parent.indentInside;
}
return true;
}
void KoXmlWriter::prepareForTextNode() {
if (d->tags.isEmpty())
return;
Tag& parent = d->tags.top();
if (!parent.hasChildren) {
closeStartElement(parent);
parent.hasChildren = true;
parent.lastChildIsText = true;
}
}
void KoXmlWriter::startElement(const char* tagName, bool indentInside) {
Q_ASSERT(tagName != 0);
// Tell parent that it has children
bool parentIndent = prepareForChild();
d->tags.push(Tag(tagName, parentIndent && indentInside));
writeChar('<');
writeCString(tagName);
//kDebug(s_area) << tagName;
}
void KoXmlWriter::addCompleteElement(const char* cstr) {
prepareForChild();
writeCString(cstr);
}
void KoXmlWriter::addCompleteElement(QIODevice* indev) {
prepareForChild();
const bool wasOpen = indev->isOpen();
// Always (re)open the device in readonly mode, it might be
// already open but for writing, and we need to rewind.
const bool openOk = indev->open(QIODevice::ReadOnly);
Q_ASSERT(openOk);
if (!openOk) {
kWarning() << "Failed to re-open the device! wasOpen=" << wasOpen;
return;
}
static const int MAX_CHUNK_SIZE = 8 * 1024; // 8 KB
QByteArray buffer;
buffer.resize(MAX_CHUNK_SIZE);
while (!indev->atEnd()) {
qint64 len = indev->read(buffer.data(), buffer.size());
if (len <= 0) // e.g. on error
break;
d->dev->write(buffer.data(), len);
}
if (!wasOpen) {
// Restore initial state
indev->close();
}
}
void KoXmlWriter::endElement() {
if (d->tags.isEmpty())
kWarning() << "Ouch, endElement() was called more times than startElement(). "
"The generated XML will be invalid! "
"Please report this bug (by saving the document to another format...)" << endl;
Tag tag = d->tags.pop();
//kDebug(s_area) <<" tagName=" << tag.tagName <<" hasChildren=" << tag.hasChildren;
if (!tag.hasChildren) {
writeCString("/>");
} else {
if (tag.indentInside && !tag.lastChildIsText) {
writeIndent();
}
writeCString("</");
Q_ASSERT(tag.tagName != 0);
writeCString(tag.tagName);
writeChar('>');
}
}
void KoXmlWriter::addTextNode(const QByteArray& cstr) {
// Same as the const char* version below, but here we know the size
prepareForTextNode();
char* escaped = escapeForXML(cstr.constData(), cstr.size());
writeCString(escaped);
if (escaped != d->escapeBuffer)
delete[] escaped;
}
void KoXmlWriter::addTextNode(const char* cstr) {
prepareForTextNode();
char* escaped = escapeForXML(cstr, -1);
writeCString(escaped);
if (escaped != d->escapeBuffer)
delete[] escaped;
}
void KoXmlWriter::addProcessingInstruction(const char* cstr) {
prepareForTextNode();
writeCString("<?");
addTextNode(cstr);
writeCString("?>");
}
void KoXmlWriter::addAttribute(const char* attrName, const QByteArray& value) {
// Same as the const char* one, but here we know the size
writeChar(' ');
writeCString(attrName);
writeCString("=\"");
char* escaped = escapeForXML(value.constData(), value.size());
writeCString(escaped);
if (escaped != d->escapeBuffer)
delete[] escaped;
writeChar('"');
}
void KoXmlWriter::addAttribute(const char* attrName, const char* value) {
writeChar(' ');
writeCString(attrName);
writeCString("=\"");
char* escaped = escapeForXML(value, -1);
writeCString(escaped);
if (escaped != d->escapeBuffer)
delete[] escaped;
writeChar('"');
}
void KoXmlWriter::addAttribute(const char* attrName, double value) {
QByteArray str;
str.setNum(value, 'f', 11);
addAttribute(attrName, str.data());
}
void KoXmlWriter::addAttribute(const char* attrName, float value) {
QByteArray str;
str.setNum(value, 'f', FLT_DIG);
addAttribute(attrName, str.data());
}
void KoXmlWriter::addAttributePt(const char* attrName, double value) {
QByteArray str;
str.setNum(value, 'f', 11);
str += "pt";
addAttribute(attrName, str.data());
}
void KoXmlWriter::addAttributePt(const char* attrName, float value) {
QByteArray str;
str.setNum(value, 'f', FLT_DIG);
str += "pt";
addAttribute(attrName, str.data());
}
void KoXmlWriter::writeIndent() {
// +1 because of the leading '\n'
d->dev->write(d->indentBuffer, qMin(indentLevel() + 1,
s_indentBufferLength));
}
void KoXmlWriter::writeString(const QString& str) {
// cachegrind says .utf8() is where most of the time is spent
const QByteArray cstr = str.toUtf8();
d->dev->write(cstr);
}
// In case of a reallocation (ret value != d->buffer), the caller owns the return value,
// it must delete it (with [])
char* KoXmlWriter::escapeForXML(const char* source, int length = -1) const {
// we're going to be pessimistic on char length; so lets make the outputLength less
// the amount one char can take: 6
char* destBoundary = d->escapeBuffer + s_escapeBufferLen - 6;
char* destination = d->escapeBuffer;
char* output = d->escapeBuffer;
const char* src = source; // src moves, source remains
for (;;) {
if (destination >= destBoundary) {
// When we come to realize that our escaped string is going to
// be bigger than the escape buffer (this shouldn't happen very often...),
// we drop the idea of using it, and we allocate a bigger buffer.
// Note that this if() can only be hit once per call to the method.
if (length == -1)
length = qstrlen(source); // expensive...
uint newLength = length * 6 + 1; // worst case. 6 is due to " and '
char* buffer = new char[ newLength ];
destBoundary = buffer + newLength;
uint amountOfCharsAlreadyCopied = destination - d->escapeBuffer;
memcpy(buffer, d->escapeBuffer, amountOfCharsAlreadyCopied);
output = buffer;
destination = buffer + amountOfCharsAlreadyCopied;
}
switch (*src) {
case 60: // <
memcpy(destination, "<", 4);
destination += 4;
break;
case 62: // >
memcpy(destination, ">", 4);
destination += 4;
break;
case 34: // "
memcpy(destination, """, 6);
destination += 6;
break;
#if 0 // needed?
case 39: // '
memcpy(destination, "'", 6);
destination += 6;
break;
#endif
case 38: // &
memcpy(destination, "&", 5);
destination += 5;
break;
case 0:
*destination = '\0';
return output;
// Control codes accepted in XML 1.0 documents.
case 9:
case 10:
case 13:
*destination++ = *src++;
continue;
default:
// Don't add control codes not accepted in XML 1.0 documents.
if (*src > 0 && *src < 32) {
++src;
} else {
*destination++ = *src++;
}
continue;
}
++src;
}
// NOTREACHED (see case 0)
return output;
}
void KoXmlWriter::addManifestEntry(const QString& fullPath, const QString& mediaType) {
startElement("manifest:file-entry");
addAttribute("manifest:media-type", mediaType);
addAttribute("manifest:full-path", fullPath);
endElement();
}
void KoXmlWriter::addConfigItem(const QString & configName, const QString& value) {
startElement("config:config-item");
addAttribute("config:name", configName);
addAttribute("config:type", "string");
addTextNode(value);
endElement();
}
void KoXmlWriter::addConfigItem(const QString & configName, bool value) {
startElement("config:config-item");
addAttribute("config:name", configName);
addAttribute("config:type", "boolean");
addTextNode(value ? "true" : "false");
endElement();
}
void KoXmlWriter::addConfigItem(const QString & configName, int value) {
startElement("config:config-item");
addAttribute("config:name", configName);
addAttribute("config:type", "int");
addTextNode(QString::number(value));
endElement();
}
void KoXmlWriter::addConfigItem(const QString & configName, double value) {
startElement("config:config-item");
addAttribute("config:name", configName);
addAttribute("config:type", "double");
addTextNode(QString::number(value));
endElement();
}
void KoXmlWriter::addConfigItem(const QString & configName, float value) {
startElement("config:config-item");
addAttribute("config:name", configName);
addAttribute("config:type", "double");
addTextNode(QString::number(value));
endElement();
}
void KoXmlWriter::addConfigItem(const QString & configName, long value) {
startElement("config:config-item");
addAttribute("config:name", configName);
addAttribute("config:type", "long");
addTextNode(QString::number(value));
endElement();
}
void KoXmlWriter::addConfigItem(const QString & configName, short value) {
startElement("config:config-item");
addAttribute("config:name", configName);
addAttribute("config:type", "short");
addTextNode(QString::number(value));
endElement();
}
void KoXmlWriter::addTextSpan(const QString& text) {
QMap<int, int> tabCache;
addTextSpan(text, tabCache);
}
void KoXmlWriter::addTextSpan(const QString& text, const QMap<int, int>& tabCache) {
int len = text.length();
int nrSpaces = 0; // number of consecutive spaces
bool leadingSpace = false;
QString str;
str.reserve(len);
// Accumulate chars either in str or in nrSpaces (for spaces).
// Flush str when writing a subelement (for spaces or for another reason)
// Flush nrSpaces when encountering two or more consecutive spaces
for (int i = 0; i < len; ++i) {
QChar ch = text[i];
ushort unicode = ch.unicode();
if (unicode == ' ') {
if (i == 0)
leadingSpace = true;
++nrSpaces;
} else {
if (nrSpaces > 0) {
// For the first space we use ' '.
// "it is good practice to use (text:s) for the second and all following SPACE
// characters in a sequence." (per the ODF spec)
// however, per the HTML spec, "authors should not rely on user agents to render
// white space immediately after a start tag or immediately before an end tag"
// (and both we and OO.o ignore leading spaces in <text:p> or <text:h> elements...)
if (!leadingSpace) {
str += ' ';
--nrSpaces;
}
if (nrSpaces > 0) { // there are more spaces
if (!str.isEmpty())
addTextNode(str);
str.clear();
startElement("text:s");
if (nrSpaces > 1) // it's 1 by default
addAttribute("text:c", nrSpaces);
endElement();
}
}
nrSpaces = 0;
leadingSpace = false;
switch (unicode) {
case '\t':
if (!str.isEmpty())
addTextNode(str);
str.clear();
startElement("text:tab");
if (tabCache.contains(i))
addAttribute("text:tab-ref", tabCache[i] + 1);
endElement();
break;
// gracefully handle \f form feed in text input.
// otherwise the xml will not be valid.
// \f can be added e.g. in ascii import filter.
case '\f':
case '\n':
case QChar::LineSeparator:
if (!str.isEmpty())
addTextNode(str);
str.clear();
startElement("text:line-break");
endElement();
break;
default:
// don't add stuff that is not allowed in xml. The stuff we need we have already handled above
if (ch.unicode() >= 0x20) {
str += text[i];
}
break;
}
}
}
// either we still have text in str or we have spaces in nrSpaces
if (!str.isEmpty()) {
addTextNode(str);
}
if (nrSpaces > 0) { // there are more spaces
startElement("text:s");
if (nrSpaces > 1) // it's 1 by default
addAttribute("text:c", nrSpaces);
endElement();
}
}
QIODevice *KoXmlWriter::device() const {
return d->dev;
}
int KoXmlWriter::indentLevel() const {
return d->tags.size() + d->baseIndentLevel;
}
QList<const char*> KoXmlWriter::tagHierarchy() const {
QList<const char*> answer;
foreach(const Tag & tag, d->tags)
answer.append(tag.tagName);
return answer;
}
QString KoXmlWriter::toString() const {
Q_ASSERT(!d->dev->isSequential());
if (d->dev->isSequential())
return QString();
bool wasOpen = d->dev->isOpen();
qint64 oldPos = -1;
if (wasOpen) {
oldPos = d->dev->pos();
if (oldPos > 0)
d->dev->seek(0);
} else {
const bool openOk = d->dev->open(QIODevice::ReadOnly);
Q_ASSERT(openOk);
if (!openOk)
return QString();
}
QString s = QString::fromUtf8(d->dev->readAll());
if (wasOpen)
d->dev->seek(oldPos);
else
d->dev->close();
return s;
}