MuseScore/thirdparty/xmlstream/xmlstream.cpp

3962 lines
118 KiB
C++

/****************************************************************************
**
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the QtCore module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia. For licensing terms and
** conditions see http://qt.digia.com/licensing. For further information
** use the contact form at http://qt.digia.com/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Digia gives you certain additional
** rights. These rights are described in the Digia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3.0 as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU General Public License version 3.0 requirements will be
** met: http://www.gnu.org/copyleft/gpl.html.
**
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include "xmlstream.h"
#include "xmlutils_p.h"
#include <qdebug.h>
#include <qfile.h>
#include <stdio.h>
#include <qtextcodec.h>
#include <qstack.h>
#include <qbuffer.h>
#ifndef QT_BOOTSTRAPPED
#include <qcoreapplication.h>
#else
// This specialization of Q_DECLARE_TR_FUNCTIONS is not in qcoreapplication.h,
// because that header depends on QObject being available, which is not the
// case for most bootstrapped applications.
#define Q_DECLARE_TR_FUNCTIONS(context) \
public: \
static inline QString tr(const char *sourceText, const char *comment = 0) \
{ Q_UNUSED(comment); return QString::fromLatin1(sourceText); } \
static inline QString trUtf8(const char *sourceText, const char *comment = 0) \
{ Q_UNUSED(comment); return QString::fromLatin1(sourceText); } \
static inline QString tr(const char *sourceText, const char*, int) \
{ return QString::fromLatin1(sourceText); } \
static inline QString trUtf8(const char *sourceText, const char*, int) \
{ return QString::fromLatin1(sourceText); } \
private:
#endif
#include "xmlstream_p.h"
/*!
\enum XmlStreamReader::TokenType
This enum specifies the type of token the reader just read.
\value NoToken The reader has not yet read anything.
\value Invalid An error has occurred, reported in error() and
errorString().
\value StartDocument The reader reports the XML version number in
documentVersion(), and the encoding as specified in the XML
document in documentEncoding(). If the document is declared
standalone, isStandaloneDocument() returns \c true; otherwise it
returns \c false.
\value EndDocument The reader reports the end of the document.
\value StartElement The reader reports the start of an element
with namespaceUri() and name(). Empty elements are also reported
as StartElement, followed directly by EndElement. The convenience
function readElementText() can be called to concatenate all
content until the corresponding EndElement. Attributes are
reported in attributes(), namespace declarations in
namespaceDeclarations().
\value EndElement The reader reports the end of an element with
namespaceUri() and name().
\value Characters The reader reports characters in text(). If the
characters are all white-space, isWhitespace() returns \c true. If
the characters stem from a CDATA section, isCDATA() returns \c true.
\value Comment The reader reports a comment in text().
\value DTD The reader reports a DTD in text(), notation
declarations in notationDeclarations(), and entity declarations in
entityDeclarations(). Details of the DTD declaration are reported
in in dtdName(), dtdPublicId(), and dtdSystemId().
\value EntityReference The reader reports an entity reference that
could not be resolved. The name of the reference is reported in
name(), the replacement text in text().
\value ProcessingInstruction The reader reports a processing
instruction in processingInstructionTarget() and
processingInstructionData().
*/
/*!
\enum XmlStreamReader::ReadElementTextBehaviour
This enum specifies the different behaviours of readElementText().
\value ErrorOnUnexpectedElement Raise an UnexpectedElementError and return
what was read so far when a child element is encountered.
\value IncludeChildElements Recursively include the text from child elements.
\value SkipChildElements Skip child elements.
\since 4.6
*/
/*!
\enum XmlStreamReader::Error
This enum specifies different error cases
\value NoError No error has occurred.
\value CustomError A custom error has been raised with
raiseError()
\value NotWellFormedError The parser internally raised an error
due to the read XML not being well-formed.
\value PrematureEndOfDocumentError The input stream ended before a
well-formed XML document was parsed. Recovery from this error is
possible if more XML arrives in the stream, either by calling
addData() or by waiting for it to arrive on the device().
\value UnexpectedElementError The parser encountered an element
that was different to those it expected.
*/
/*!
\class XmlStreamEntityResolver
\inmodule QtCore
\reentrant
\since 4.4
\brief The XmlStreamEntityResolver class provides an entity
resolver for a XmlStreamReader.
\ingroup xml-tools
*/
/*!
Destroys the entity resolver.
*/
XmlStreamEntityResolver::~XmlStreamEntityResolver()
{
}
/*!
\internal
This function is a stub for later functionality.
*/
QString XmlStreamEntityResolver::resolveEntity(const QString& /*publicId*/, const QString& /*systemId*/)
{
return QString();
}
/*!
Resolves the undeclared entity \a name and returns its replacement
text. If the entity is also unknown to the entity resolver, it
returns an empty string.
The default implementation always returns an empty string.
*/
QString XmlStreamEntityResolver::resolveUndeclaredEntity(const QString &/*name*/)
{
return QString();
}
#ifndef QT_NO_XMLSTREAMREADER
QString XmlStreamReaderPrivate::resolveUndeclaredEntity(const QString &name)
{
if (entityResolver)
return entityResolver->resolveUndeclaredEntity(name);
return QString();
}
/*!
\since 4.4
Makes \a resolver the new entityResolver().
The stream reader does \e not take ownership of the resolver. It's
the callers responsibility to ensure that the resolver is valid
during the entire life-time of the stream reader object, or until
another resolver or 0 is set.
\sa entityResolver()
*/
void XmlStreamReader::setEntityResolver(XmlStreamEntityResolver *resolver)
{
Q_D(XmlStreamReader);
d->entityResolver = resolver;
}
/*!
\since 4.4
Returns the entity resolver, or 0 if there is no entity resolver.
\sa setEntityResolver()
*/
XmlStreamEntityResolver *XmlStreamReader::entityResolver() const
{
Q_D(const XmlStreamReader);
return d->entityResolver;
}
/*!
\class XmlStreamReader
\inmodule QtCore
\reentrant
\since 4.3
\brief The XmlStreamReader class provides a fast parser for reading
well-formed XML via a simple streaming API.
\ingroup xml-tools
XmlStreamReader is a faster and more convenient replacement for
Qt's own SAX parser (see QXmlSimpleReader). In some cases it might
also be a faster and more convenient alternative for use in
applications that would otherwise use a DOM tree (see QDomDocument).
XmlStreamReader reads data either from a QIODevice (see
setDevice()), or from a raw QByteArray (see addData()).
Qt provides XmlStreamWriter for writing XML.
The basic concept of a stream reader is to report an XML document as
a stream of tokens, similar to SAX. The main difference between
XmlStreamReader and SAX is \e how these XML tokens are reported.
With SAX, the application must provide handlers (callback functions)
that receive so-called XML \e events from the parser at the parser's
convenience. With XmlStreamReader, the application code itself
drives the loop and pulls \e tokens from the reader, one after
another, as it needs them. This is done by calling readNext(), where
the reader reads from the input stream until it completes the next
token, at which point it returns the tokenType(). A set of
convenient functions including isStartElement() and text() can then
be used to examine the token to obtain information about what has
been read. The big advantage of this \e pulling approach is the
possibility to build recursive descent parsers with it, meaning you
can split your XML parsing code easily into different methods or
classes. This makes it easy to keep track of the application's own
state when parsing XML.
A typical loop with XmlStreamReader looks like this:
\snippet code/src_corelib_xml_qxmlstream.cpp 0
XmlStreamReader is a well-formed XML 1.0 parser that does \e not
include external parsed entities. As long as no error occurs, the
application code can thus be assured that the data provided by the
stream reader satisfies the W3C's criteria for well-formed XML. For
example, you can be certain that all tags are indeed nested and
closed properly, that references to internal entities have been
replaced with the correct replacement text, and that attributes have
been normalized or added according to the internal subset of the
DTD.
If an error occurs while parsing, atEnd() and hasError() return
true, and error() returns the error that occurred. The functions
errorString(), lineNumber(), columnNumber(), and characterOffset()
are for constructing an appropriate error or warning message. To
simplify application code, XmlStreamReader contains a raiseError()
mechanism that lets you raise custom errors that trigger the same
error handling described.
The \l{XmlStream Bookmarks Example} illustrates how to use the
recursive descent technique to read an XML bookmark file (XBEL) with
a stream reader.
\section1 Namespaces
XmlStream understands and resolves XML namespaces. E.g. in case of
a StartElement, namespaceUri() returns the namespace the element is
in, and name() returns the element's \e local name. The combination
of namespaceUri and name uniquely identifies an element. If a
namespace prefix was not declared in the XML entities parsed by the
reader, the namespaceUri is empty.
If you parse XML data that does not utilize namespaces according to
the XML specification or doesn't use namespaces at all, you can use
the element's qualifiedName() instead. A qualified name is the
element's prefix() followed by colon followed by the element's local
name() - exactly like the element appears in the raw XML data. Since
the mapping namespaceUri to prefix is neither unique nor universal,
qualifiedName() should be avoided for namespace-compliant XML data.
In order to parse standalone documents that do use undeclared
namespace prefixes, you can turn off namespace processing completely
with the \l namespaceProcessing property.
\section1 Incremental parsing
XmlStreamReader is an incremental parser. It can handle the case
where the document can't be parsed all at once because it arrives in
chunks (e.g. from multiple files, or over a network connection).
When the reader runs out of data before the complete document has
been parsed, it reports a PrematureEndOfDocumentError. When more
data arrives, either because of a call to addData() or because more
data is available through the network device(), the reader recovers
from the PrematureEndOfDocumentError error and continues parsing the
new data with the next call to readNext().
For example, if your application reads data from the network using a
\l{QNetworkAccessManager} {network access manager}, you would issue
a \l{QNetworkRequest} {network request} to the manager and receive a
\l{QNetworkReply} {network reply} in return. Since a QNetworkReply
is a QIODevice, you connect its \l{QNetworkReply::readyRead()}
{readyRead()} signal to a custom slot, e.g. \c{slotReadyRead()} in
the code snippet shown in the discussion for QNetworkAccessManager.
In this slot, you read all available data with
\l{QNetworkReply::readAll()} {readAll()} and pass it to the XML
stream reader using addData(). Then you call your custom parsing
function that reads the XML events from the reader.
\section1 Performance and memory consumption
XmlStreamReader is memory-conservative by design, since it doesn't
store the entire XML document tree in memory, but only the current
token at the time it is reported. In addition, XmlStreamReader
avoids the many small string allocations that it normally takes to
map an XML document to a convenient and Qt-ish API. It does this by
reporting all string data as QStringRef rather than real QString
objects. QStringRef is a thin wrapper around QString substrings that
provides a subset of the QString API without the memory allocation
and reference-counting overhead. Calling
\l{QStringRef::toString()}{toString()} on any of those objects
returns an equivalent real QString object.
*/
/*!
Constructs a stream reader.
\sa setDevice(), addData()
*/
XmlStreamReader::XmlStreamReader()
: d_ptr(new XmlStreamReaderPrivate(this))
{
}
/*! Creates a new stream reader that reads from \a device.
\sa setDevice(), clear()
*/
XmlStreamReader::XmlStreamReader(QIODevice *device)
: d_ptr(new XmlStreamReaderPrivate(this))
{
setDevice(device);
}
/*!
Creates a new stream reader that reads from \a data.
\sa addData(), clear(), setDevice()
*/
XmlStreamReader::XmlStreamReader(const QByteArray &data)
: d_ptr(new XmlStreamReaderPrivate(this))
{
Q_D(XmlStreamReader);
d->dataBuffer = data;
}
/*!
Creates a new stream reader that reads from \a data.
\sa addData(), clear(), setDevice()
*/
XmlStreamReader::XmlStreamReader(const QString &data)
: d_ptr(new XmlStreamReaderPrivate(this))
{
Q_D(XmlStreamReader);
#ifdef QT_NO_TEXTCODEC
d->dataBuffer = data.toLatin1();
#else
d->dataBuffer = d->codec->fromUnicode(data);
d->decoder = d->codec->makeDecoder();
#endif
d->lockEncoding = true;
}
/*!
Creates a new stream reader that reads from \a data.
\sa addData(), clear(), setDevice()
*/
XmlStreamReader::XmlStreamReader(const char *data)
: d_ptr(new XmlStreamReaderPrivate(this))
{
Q_D(XmlStreamReader);
d->dataBuffer = QByteArray(data);
}
/*!
Destructs the reader.
*/
XmlStreamReader::~XmlStreamReader()
{
Q_D(XmlStreamReader);
if (d->deleteDevice)
delete d->device;
}
/*! \fn bool XmlStreamReader::hasError() const
Returns \c true if an error has occurred, otherwise \c false.
\sa errorString(), error()
*/
/*!
Sets the current device to \a device. Setting the device resets
the stream to its initial state.
\sa device(), clear()
*/
void XmlStreamReader::setDevice(QIODevice *device)
{
Q_D(XmlStreamReader);
if (d->deleteDevice) {
delete d->device;
d->deleteDevice = false;
}
d->device = device;
d->init();
}
/*!
Returns the current device associated with the XmlStreamReader,
or 0 if no device has been assigned.
\sa setDevice()
*/
QIODevice *XmlStreamReader::device() const
{
Q_D(const XmlStreamReader);
return d->device;
}
/*!
Adds more \a data for the reader to read. This function does
nothing if the reader has a device().
\sa readNext(), clear()
*/
void XmlStreamReader::addData(const QByteArray &data)
{
Q_D(XmlStreamReader);
if (d->device) {
qWarning("XmlStreamReader: addData() with device()");
return;
}
d->dataBuffer += data;
}
/*!
Adds more \a data for the reader to read. This function does
nothing if the reader has a device().
\sa readNext(), clear()
*/
void XmlStreamReader::addData(const QString &data)
{
Q_D(XmlStreamReader);
d->lockEncoding = true;
#ifdef QT_NO_TEXTCODEC
addData(data.toLatin1());
#else
addData(d->codec->fromUnicode(data));
#endif
}
/*!
Adds more \a data for the reader to read. This function does
nothing if the reader has a device().
\sa readNext(), clear()
*/
void XmlStreamReader::addData(const char *data)
{
addData(QByteArray(data));
}
/*!
Removes any device() or data from the reader and resets its
internal state to the initial state.
\sa addData()
*/
void XmlStreamReader::clear()
{
Q_D(XmlStreamReader);
d->init();
if (d->device) {
if (d->deleteDevice)
delete d->device;
d->device = 0;
}
}
/*!
Returns \c true if the reader has read until the end of the XML
document, or if an error() has occurred and reading has been
aborted. Otherwise, it returns \c false.
When atEnd() and hasError() return true and error() returns
PrematureEndOfDocumentError, it means the XML has been well-formed
so far, but a complete XML document has not been parsed. The next
chunk of XML can be added with addData(), if the XML is being read
from a QByteArray, or by waiting for more data to arrive if the
XML is being read from a QIODevice. Either way, atEnd() will
return false once more data is available.
\sa hasError(), error(), device(), QIODevice::atEnd()
*/
bool XmlStreamReader::atEnd() const
{
Q_D(const XmlStreamReader);
if (d->atEnd
&& ((d->type == XmlStreamReader::Invalid && d->error == PrematureEndOfDocumentError)
|| (d->type == XmlStreamReader::EndDocument))) {
if (d->device)
return d->device->atEnd();
else
return !d->dataBuffer.size();
}
return (d->atEnd || d->type == XmlStreamReader::Invalid);
}
/*!
Reads the next token and returns its type.
With one exception, once an error() is reported by readNext(),
further reading of the XML stream is not possible. Then atEnd()
returns \c true, hasError() returns \c true, and this function returns
XmlStreamReader::Invalid.
The exception is when error() returns PrematureEndOfDocumentError.
This error is reported when the end of an otherwise well-formed
chunk of XML is reached, but the chunk doesn't represent a complete
XML document. In that case, parsing \e can be resumed by calling
addData() to add the next chunk of XML, when the stream is being
read from a QByteArray, or by waiting for more data to arrive when
the stream is being read from a device().
\sa tokenType(), tokenString()
*/
XmlStreamReader::TokenType XmlStreamReader::readNext()
{
Q_D(XmlStreamReader);
if (d->type != Invalid) {
if (!d->hasCheckedStartDocument)
if (!d->checkStartDocument())
return d->type; // synthetic StartDocument or error
d->parse();
if (d->atEnd && d->type != EndDocument && d->type != Invalid)
d->raiseError(PrematureEndOfDocumentError);
else if (!d->atEnd && d->type == EndDocument)
d->raiseWellFormedError(XmlStream::tr("Extra content at end of document."));
} else if (d->error == PrematureEndOfDocumentError) {
// resume error
d->type = NoToken;
d->atEnd = false;
d->token = -1;
return readNext();
}
return d->type;
}
/*!
Returns the type of the current token.
The current token can also be queried with the convenience functions
isStartDocument(), isEndDocument(), isStartElement(),
isEndElement(), isCharacters(), isComment(), isDTD(),
isEntityReference(), and isProcessingInstruction().
\sa tokenString()
*/
XmlStreamReader::TokenType XmlStreamReader::tokenType() const
{
Q_D(const XmlStreamReader);
return d->type;
}
/*!
Reads until the next start element within the current element. Returns \c true
when a start element was reached. When the end element was reached, or when
an error occurred, false is returned.
The current element is the element matching the most recently parsed start
element of which a matching end element has not yet been reached. When the
parser has reached the end element, the current element becomes the parent
element.
This is a convenience function for when you're only concerned with parsing
XML elements. The \l{XmlStream Bookmarks Example} makes extensive use of
this function.
\since 4.6
\sa readNext()
*/
bool XmlStreamReader::readNextStartElement()
{
while (readNext() != Invalid) {
if (isEndElement())
return false;
else if (isStartElement())
return true;
}
return false;
}
/*!
Reads until the end of the current element, skipping any child nodes.
This function is useful for skipping unknown elements.
The current element is the element matching the most recently parsed start
element of which a matching end element has not yet been reached. When the
parser has reached the end element, the current element becomes the parent
element.
\since 4.6
*/
void XmlStreamReader::skipCurrentElement()
{
int depth = 1;
while (depth && readNext() != Invalid) {
if (isEndElement())
--depth;
else if (isStartElement())
++depth;
}
}
/*
* Use the following Perl script to generate the error string index list:
===== PERL SCRIPT ====
print "static const char XmlStreamReader_tokenTypeString_string[] =\n";
$counter = 0;
$i = 0;
while (<STDIN>) {
chomp;
print " \"$_\\0\"\n";
$sizes[$i++] = $counter;
$counter += length 1 + $_;
}
print " \"\\0\";\n\nstatic const short XmlStreamReader_tokenTypeString_indices[] = {\n ";
for ($j = 0; $j < $i; ++$j) {
printf "$sizes[$j], ";
}
print "0\n};\n";
===== PERL SCRIPT ====
* The input data is as follows (copied from qxmlstream.h):
NoToken
Invalid
StartDocument
EndDocument
StartElement
EndElement
Characters
Comment
DTD
EntityReference
ProcessingInstruction
*/
static const char XmlStreamReader_tokenTypeString_string[] =
"NoToken\0"
"Invalid\0"
"StartDocument\0"
"EndDocument\0"
"StartElement\0"
"EndElement\0"
"Characters\0"
"Comment\0"
"DTD\0"
"EntityReference\0"
"ProcessingInstruction\0";
static const short XmlStreamReader_tokenTypeString_indices[] = {
0, 8, 16, 30, 42, 55, 66, 77, 85, 89, 105, 0
};
/*!
\property XmlStreamReader::namespaceProcessing
the namespace-processing flag of the stream reader
This property controls whether or not the stream reader processes
namespaces. If enabled, the reader processes namespaces, otherwise
it does not.
By default, namespace-processing is enabled.
*/
void XmlStreamReader::setNamespaceProcessing(bool enable)
{
Q_D(XmlStreamReader);
d->namespaceProcessing = enable;
}
bool XmlStreamReader::namespaceProcessing() const
{
Q_D(const XmlStreamReader);
return d->namespaceProcessing;
}
/*! Returns the reader's current token as string.
\sa tokenType()
*/
QString XmlStreamReader::tokenString() const
{
Q_D(const XmlStreamReader);
return QLatin1String(XmlStreamReader_tokenTypeString_string +
XmlStreamReader_tokenTypeString_indices[d->type]);
}
#endif // QT_NO_XMLSTREAMREADER
XmlStreamPrivateTagStack::XmlStreamPrivateTagStack()
{
tagStack.reserve(16);
tagStackStringStorage.reserve(32);
tagStackStringStorageSize = 0;
NamespaceDeclaration &namespaceDeclaration = namespaceDeclarations.push();
namespaceDeclaration.prefix = addToStringStorage(QLatin1String("xml"));
namespaceDeclaration.namespaceUri = addToStringStorage(QLatin1String("http://www.w3.org/XML/1998/namespace"));
//WS initialTagStackStringStorageSize = tagStackStringStorageSize;
}
#ifndef QT_NO_XMLSTREAMREADER
XmlStreamReaderPrivate::XmlStreamReaderPrivate(XmlStreamReader *q)
:q_ptr(q)
{
device = 0;
deleteDevice = false;
#ifndef QT_NO_TEXTCODEC
decoder = 0;
#endif
stack_size = 64;
sym_stack = 0;
state_stack = 0;
reallocateStack();
entityResolver = 0;
init();
entityHash.insert(QLatin1String("lt"), Entity::createLiteral(QLatin1String("<")));
entityHash.insert(QLatin1String("gt"), Entity::createLiteral(QLatin1String(">")));
entityHash.insert(QLatin1String("amp"), Entity::createLiteral(QLatin1String("&")));
entityHash.insert(QLatin1String("apos"), Entity::createLiteral(QLatin1String("'")));
entityHash.insert(QLatin1String("quot"), Entity::createLiteral(QLatin1String("\"")));
}
void XmlStreamReaderPrivate::init()
{
scanDtd = false;
token = -1;
token_char = 0;
isEmptyElement = false;
isWhitespace = true;
isCDATA = false;
standalone = false;
tos = 0;
resumeReduction = 0;
state_stack[tos++] = 0;
state_stack[tos] = 0;
putStack.clear();
putStack.reserve(32);
textBuffer.clear();
textBuffer.reserve(256);
tagStack.clear();
tagsDone = false;
attributes.clear();
attributes.reserve(16);
lineNumber = lastLineStart = characterOffset = 0;
readBufferPos = 0;
nbytesread = 0;
#ifndef QT_NO_TEXTCODEC
codec = QTextCodec::codecForMib(106); // utf8
delete decoder;
decoder = 0;
#endif
attributeStack.clear();
attributeStack.reserve(16);
entityParser = 0;
hasCheckedStartDocument = false;
normalizeLiterals = false;
hasSeenTag = false;
atEnd = false;
inParseEntity = false;
referenceToUnparsedEntityDetected = false;
referenceToParameterEntityDetected = false;
hasExternalDtdSubset = false;
lockEncoding = false;
namespaceProcessing = true;
rawReadBuffer.clear();
dataBuffer.clear();
readBuffer.clear();
//WS tagStackStringStorageSize = initialTagStackStringStorageSize;
type = XmlStreamReader::NoToken;
error = XmlStreamReader::NoError;
}
/*
Well-formed requires that we verify entity values. We do this with a
standard parser.
*/
void XmlStreamReaderPrivate::parseEntity(const QString &value)
{
Q_Q(XmlStreamReader);
if (value.isEmpty())
return;
if (!entityParser)
entityParser = new XmlStreamReaderPrivate(q);
else
entityParser->init();
entityParser->inParseEntity = true;
entityParser->readBuffer = value;
entityParser->injectToken(PARSE_ENTITY);
while (!entityParser->atEnd && entityParser->type != XmlStreamReader::Invalid)
entityParser->parse();
if (entityParser->type == XmlStreamReader::Invalid || entityParser->tagStack.size())
raiseWellFormedError(XmlStream::tr("Invalid entity value."));
}
inline void XmlStreamReaderPrivate::reallocateStack()
{
stack_size <<= 1;
sym_stack = reinterpret_cast<Value*> (realloc(sym_stack, stack_size * sizeof(Value)));
Q_CHECK_PTR(sym_stack);
state_stack = reinterpret_cast<int*> (realloc(state_stack, stack_size * sizeof(int)));
Q_CHECK_PTR(sym_stack);
}
XmlStreamReaderPrivate::~XmlStreamReaderPrivate()
{
#ifndef QT_NO_TEXTCODEC
delete decoder;
#endif
free(sym_stack);
free(state_stack);
delete entityParser;
}
inline uint XmlStreamReaderPrivate::filterCarriageReturn()
{
uint peekc = peekChar();
if (peekc == '\n') {
if (putStack.size())
putStack.pop();
else
++readBufferPos;
return peekc;
}
if (peekc == 0) {
putChar('\r');
return 0;
}
return '\n';
}
/*!
\internal
If the end of the file is encountered, 0 is returned.
*/
inline uint XmlStreamReaderPrivate::getChar()
{
uint c;
if (putStack.size()) {
c = atEnd ? 0 : putStack.pop();
} else {
if (readBufferPos < readBuffer.size())
c = readBuffer.at(readBufferPos++).unicode();
else
c = getChar_helper();
}
return c;
}
inline uint XmlStreamReaderPrivate::peekChar()
{
uint c;
if (putStack.size()) {
c = putStack.top();
} else if (readBufferPos < readBuffer.size()) {
c = readBuffer.at(readBufferPos).unicode();
} else {
if ((c = getChar_helper()))
--readBufferPos;
}
return c;
}
/*!
\internal
Scans characters until \a str is encountered, and validates the characters
as according to the Char[2] production and do the line-ending normalization.
If any character is invalid, false is returned, otherwise true upon success.
If \a tokenToInject is not less than zero, injectToken() is called with
\a tokenToInject when \a str is found.
If any error occurred, false is returned, otherwise true.
*/
bool XmlStreamReaderPrivate::scanUntil(const char *str, short tokenToInject)
{
int pos = textBuffer.size();
int oldLineNumber = lineNumber;
while (uint c = getChar()) {
/* First, we do the validation & normalization. */
switch (c) {
case '\r':
if ((c = filterCarriageReturn()) == 0)
break;
// fall through
case '\n':
++lineNumber;
lastLineStart = characterOffset + readBufferPos;
// fall through
case '\t':
textBuffer += QChar(c);
continue;
default:
if (c < 0x20 || (c > 0xFFFD && c < 0x10000) || c > QChar::LastValidCodePoint ) {
raiseWellFormedError(XmlStream::tr("Invalid XML character."));
lineNumber = oldLineNumber;
return false;
}
textBuffer += QChar(c);
}
/* Second, attempt to lookup str. */
if (c == uint(*str)) {
if (!*(str + 1)) {
if (tokenToInject >= 0)
injectToken(tokenToInject);
return true;
} else {
if (scanString(str + 1, tokenToInject, false))
return true;
}
}
}
putString(textBuffer, pos);
textBuffer.resize(pos);
lineNumber = oldLineNumber;
return false;
}
bool XmlStreamReaderPrivate::scanString(const char *str, short tokenToInject, bool requireSpace)
{
int n = 0;
while (str[n]) {
ushort c = getChar();
if (c != ushort(str[n])) {
if (c)
putChar(c);
while (n--) {
putChar(ushort(str[n]));
}
return false;
}
++n;
}
for (int i = 0; i < n; ++i)
textBuffer += QChar(ushort(str[i]));
if (requireSpace) {
int s = fastScanSpace();
if (!s || atEnd) {
int pos = textBuffer.size() - n - s;
putString(textBuffer, pos);
textBuffer.resize(pos);
return false;
}
}
if (tokenToInject >= 0)
injectToken(tokenToInject);
return true;
}
bool XmlStreamReaderPrivate::scanAfterLangleBang()
{
switch (peekChar()) {
case '[':
return scanString(spell[CDATA_START], CDATA_START, false);
case 'D':
return scanString(spell[DOCTYPE], DOCTYPE);
case 'A':
return scanString(spell[ATTLIST], ATTLIST);
case 'N':
return scanString(spell[NOTATION], NOTATION);
case 'E':
if (scanString(spell[ELEMENT], ELEMENT))
return true;
return scanString(spell[ENTITY], ENTITY);
default:
;
};
return false;
}
bool XmlStreamReaderPrivate::scanPublicOrSystem()
{
switch (peekChar()) {
case 'S':
return scanString(spell[SYSTEM], SYSTEM);
case 'P':
return scanString(spell[PUBLIC], PUBLIC);
default:
;
}
return false;
}
bool XmlStreamReaderPrivate::scanNData()
{
if (fastScanSpace()) {
if (scanString(spell[NDATA], NDATA))
return true;
putChar(' ');
}
return false;
}
bool XmlStreamReaderPrivate::scanAfterDefaultDecl()
{
switch (peekChar()) {
case 'R':
return scanString(spell[REQUIRED], REQUIRED, false);
case 'I':
return scanString(spell[IMPLIED], IMPLIED, false);
case 'F':
return scanString(spell[FIXED], FIXED, false);
default:
;
}
return false;
}
bool XmlStreamReaderPrivate::scanAttType()
{
switch (peekChar()) {
case 'C':
return scanString(spell[CDATA], CDATA);
case 'I':
if (scanString(spell[ID], ID))
return true;
if (scanString(spell[IDREF], IDREF))
return true;
return scanString(spell[IDREFS], IDREFS);
case 'E':
if (scanString(spell[ENTITY], ENTITY))
return true;
return scanString(spell[ENTITIES], ENTITIES);
case 'N':
if (scanString(spell[NOTATION], NOTATION))
return true;
if (scanString(spell[NMTOKEN], NMTOKEN))
return true;
return scanString(spell[NMTOKENS], NMTOKENS);
default:
;
}
return false;
}
/*!
\internal
Scan strings with quotes or apostrophes surround them. For instance,
attributes, the version and encoding field in the XML prolog and
entity declarations.
If normalizeLiterals is set to true, the function also normalizes
whitespace. It is set to true when the first start tag is
encountered.
*/
inline int XmlStreamReaderPrivate::fastScanLiteralContent()
{
int n = 0;
uint c;
while ((c = getChar())) {
switch (ushort(c)) {
case 0xfffe:
case 0xffff:
case 0:
/* The putChar() call is necessary so the parser re-gets
* the character from the input source, when raising an error. */
putChar(c);
return n;
case '\r':
if (filterCarriageReturn() == 0)
return n;
// fall through
case '\n':
++lineNumber;
lastLineStart = characterOffset + readBufferPos;
// fall through
case ' ':
case '\t':
if (normalizeLiterals)
textBuffer += QLatin1Char(' ');
else
textBuffer += QChar(c);
++n;
break;
case '&':
case '<':
case '\"':
case '\'':
if (!(c & 0xff0000)) {
putChar(c);
return n;
}
// fall through
default:
textBuffer += QChar(c);
++n;
}
}
return n;
}
inline int XmlStreamReaderPrivate::fastScanSpace()
{
int n = 0;
ushort c;
while ((c = getChar())) {
switch (c) {
case '\r':
if ((c = filterCarriageReturn()) == 0)
return n;
// fall through
case '\n':
++lineNumber;
lastLineStart = characterOffset + readBufferPos;
// fall through
case ' ':
case '\t':
textBuffer += QChar(c);
++n;
break;
default:
putChar(c);
return n;
}
}
return n;
}
/*!
\internal
Used for text nodes essentially. That is, characters appearing
inside elements.
*/
inline int XmlStreamReaderPrivate::fastScanContentCharList()
{
int n = 0;
uint c;
while ((c = getChar())) {
switch (ushort(c)) {
case 0xfffe:
case 0xffff:
case 0:
putChar(c);
return n;
case ']': {
isWhitespace = false;
int pos = textBuffer.size();
textBuffer += QChar(ushort(c));
++n;
while ((c = getChar()) == ']') {
textBuffer += QChar(ushort(c));
++n;
}
if (c == 0) {
putString(textBuffer, pos);
textBuffer.resize(pos);
} else if (c == '>' && textBuffer.at(textBuffer.size()-2) == QLatin1Char(']')) {
raiseWellFormedError(XmlStream::tr("Sequence ']]>' not allowed in content."));
} else {
putChar(c);
break;
}
return n;
} break;
case '\r':
if ((c = filterCarriageReturn()) == 0)
return n;
// fall through
case '\n':
++lineNumber;
lastLineStart = characterOffset + readBufferPos;
// fall through
case ' ':
case '\t':
textBuffer += QChar(ushort(c));
++n;
break;
case '&':
case '<':
if (!(c & 0xff0000)) {
putChar(c);
return n;
}
// fall through
default:
if (c < 0x20) {
putChar(c);
return n;
}
isWhitespace = false;
textBuffer += QChar(ushort(c));
++n;
}
}
return n;
}
inline int XmlStreamReaderPrivate::fastScanName(int *prefix)
{
int n = 0;
ushort c;
while ((c = getChar())) {
switch (c) {
case '\n':
case ' ':
case '\t':
case '\r':
case '&':
case '#':
case '\'':
case '\"':
case '<':
case '>':
case '[':
case ']':
case '=':
case '%':
case '/':
case ';':
case '?':
case '!':
case '^':
case '|':
case ',':
case '(':
case ')':
case '+':
case '*':
putChar(c);
if (prefix && *prefix == n+1) {
*prefix = 0;
putChar(':');
--n;
}
return n;
case ':':
if (prefix) {
if (*prefix == 0) {
*prefix = n+2;
} else { // only one colon allowed according to the namespace spec.
putChar(c);
return n;
}
} else {
putChar(c);
return n;
}
// fall through
default:
textBuffer += QChar(c);
++n;
}
}
if (prefix)
*prefix = 0;
int pos = textBuffer.size() - n;
putString(textBuffer, pos);
textBuffer.resize(pos);
return 0;
}
enum NameChar { NameBeginning, NameNotBeginning, NotName };
static const char Begi = static_cast<char>(NameBeginning);
static const char NtBg = static_cast<char>(NameNotBeginning);
static const char NotN = static_cast<char>(NotName);
static const char nameCharTable[128] =
{
// 0x00
NotN, NotN, NotN, NotN, NotN, NotN, NotN, NotN,
NotN, NotN, NotN, NotN, NotN, NotN, NotN, NotN,
// 0x10
NotN, NotN, NotN, NotN, NotN, NotN, NotN, NotN,
NotN, NotN, NotN, NotN, NotN, NotN, NotN, NotN,
// 0x20 (0x2D is '-', 0x2E is '.')
NotN, NotN, NotN, NotN, NotN, NotN, NotN, NotN,
NotN, NotN, NotN, NotN, NotN, NtBg, NtBg, NotN,
// 0x30 (0x30..0x39 are '0'..'9', 0x3A is ':')
NtBg, NtBg, NtBg, NtBg, NtBg, NtBg, NtBg, NtBg,
NtBg, NtBg, Begi, NotN, NotN, NotN, NotN, NotN,
// 0x40 (0x41..0x5A are 'A'..'Z')
NotN, Begi, Begi, Begi, Begi, Begi, Begi, Begi,
Begi, Begi, Begi, Begi, Begi, Begi, Begi, Begi,
// 0x50 (0x5F is '_')
Begi, Begi, Begi, Begi, Begi, Begi, Begi, Begi,
Begi, Begi, Begi, NotN, NotN, NotN, NotN, Begi,
// 0x60 (0x61..0x7A are 'a'..'z')
NotN, Begi, Begi, Begi, Begi, Begi, Begi, Begi,
Begi, Begi, Begi, Begi, Begi, Begi, Begi, Begi,
// 0x70
Begi, Begi, Begi, Begi, Begi, Begi, Begi, Begi,
Begi, Begi, Begi, NotN, NotN, NotN, NotN, NotN
};
static inline NameChar fastDetermineNameChar(QChar ch)
{
ushort uc = ch.unicode();
if (!(uc & ~0x7f)) // uc < 128
return static_cast<NameChar>(nameCharTable[uc]);
QChar::Category cat = ch.category();
// ### some these categories might be slightly wrong
if ((cat >= QChar::Letter_Uppercase && cat <= QChar::Letter_Other)
|| cat == QChar::Number_Letter)
return NameBeginning;
if ((cat >= QChar::Number_DecimalDigit && cat <= QChar::Number_Other)
|| (cat >= QChar::Mark_NonSpacing && cat <= QChar::Mark_Enclosing))
return NameNotBeginning;
return NotName;
}
inline int XmlStreamReaderPrivate::fastScanNMTOKEN()
{
int n = 0;
uint c;
while ((c = getChar())) {
if (fastDetermineNameChar(c) == NotName) {
putChar(c);
return n;
} else {
++n;
textBuffer += QChar(c);
}
}
int pos = textBuffer.size() - n;
putString(textBuffer, pos);
textBuffer.resize(pos);
return n;
}
void XmlStreamReaderPrivate::putString(const QString &s, int from)
{
putStack.reserve(s.size());
for (int i = s.size()-1; i >= from; --i)
putStack.rawPush() = s.at(i).unicode();
}
void XmlStreamReaderPrivate::putStringLiteral(const QString &s)
{
putStack.reserve(s.size());
for (int i = s.size()-1; i >= 0; --i)
putStack.rawPush() = ((LETTER << 16) | s.at(i).unicode());
}
void XmlStreamReaderPrivate::putReplacement(const QString &s)
{
putStack.reserve(s.size());
for (int i = s.size()-1; i >= 0; --i) {
ushort c = s.at(i).unicode();
if (c == '\n' || c == '\r')
putStack.rawPush() = ((LETTER << 16) | c);
else
putStack.rawPush() = c;
}
}
void XmlStreamReaderPrivate::putReplacementInAttributeValue(const QString &s)
{
putStack.reserve(s.size());
for (int i = s.size()-1; i >= 0; --i) {
ushort c = s.at(i).unicode();
if (c == '&' || c == ';')
putStack.rawPush() = c;
else if (c == '\n' || c == '\r')
putStack.rawPush() = ' ';
else
putStack.rawPush() = ((LETTER << 16) | c);
}
}
ushort XmlStreamReaderPrivate::getChar_helper()
{
const int BUFFER_SIZE = 8192;
characterOffset += readBufferPos;
readBufferPos = 0;
readBuffer.resize(0);
#ifndef QT_NO_TEXTCODEC
if (decoder)
#endif
nbytesread = 0;
if (device) {
rawReadBuffer.resize(BUFFER_SIZE);
int nbytesreadOrMinus1 = device->read(rawReadBuffer.data() + nbytesread, BUFFER_SIZE - nbytesread);
nbytesread += qMax(nbytesreadOrMinus1, 0);
} else {
if (nbytesread)
rawReadBuffer += dataBuffer;
else
rawReadBuffer = dataBuffer;
nbytesread = rawReadBuffer.size();
dataBuffer.clear();
}
if (!nbytesread) {
atEnd = true;
return 0;
}
#ifndef QT_NO_TEXTCODEC
if (!decoder) {
if (nbytesread < 4) { // the 4 is to cover 0xef 0xbb 0xbf plus
// one extra for the utf8 codec
atEnd = true;
return 0;
}
int mib = 106; // UTF-8
// look for byte order mark
uchar ch1 = rawReadBuffer.at(0);
uchar ch2 = rawReadBuffer.at(1);
uchar ch3 = rawReadBuffer.at(2);
uchar ch4 = rawReadBuffer.at(3);
if ((ch1 == 0 && ch2 == 0 && ch3 == 0xfe && ch4 == 0xff) ||
(ch1 == 0xff && ch2 == 0xfe && ch3 == 0 && ch4 == 0))
mib = 1017; // UTF-32 with byte order mark
else if (ch1 == 0x3c && ch2 == 0x00 && ch3 == 0x00 && ch4 == 0x00)
mib = 1019; // UTF-32LE
else if (ch1 == 0x00 && ch2 == 0x00 && ch3 == 0x00 && ch4 == 0x3c)
mib = 1018; // UTF-32BE
else if ((ch1 == 0xfe && ch2 == 0xff) || (ch1 == 0xff && ch2 == 0xfe))
mib = 1015; // UTF-16 with byte order mark
else if (ch1 == 0x3c && ch2 == 0x00)
mib = 1014; // UTF-16LE
else if (ch1 == 0x00 && ch2 == 0x3c)
mib = 1013; // UTF-16BE
codec = QTextCodec::codecForMib(mib);
Q_ASSERT(codec);
decoder = codec->makeDecoder();
}
decoder->toUnicode(&readBuffer, rawReadBuffer.constData(), nbytesread);
if(lockEncoding && decoder->hasFailure()) {
raiseWellFormedError(XmlStream::tr("Encountered incorrectly encoded content."));
readBuffer.clear();
return 0;
}
#else
readBuffer = QString::fromLatin1(rawReadBuffer.data(), nbytesread);
#endif // QT_NO_TEXTCODEC
readBuffer.reserve(1); // keep capacity when calling resize() next time
if (readBufferPos < readBuffer.size()) {
ushort c = readBuffer.at(readBufferPos++).unicode();
return c;
}
atEnd = true;
return 0;
}
QStringRef XmlStreamReaderPrivate::namespaceForPrefix(const QStringRef &prefix)
{
for (int j = namespaceDeclarations.size() - 1; j >= 0; --j) {
const NamespaceDeclaration &namespaceDeclaration = namespaceDeclarations.at(j);
if (namespaceDeclaration.prefix == prefix) {
return namespaceDeclaration.namespaceUri;
}
}
#if 1
if (namespaceProcessing && !prefix.isEmpty())
raiseWellFormedError(XmlStream::tr("Namespace prefix '%1' not declared").arg(prefix.toString()));
#endif
return QStringRef();
}
/*
uses namespaceForPrefix and builds the attribute vector
*/
void XmlStreamReaderPrivate::resolveTag()
{
int n = attributeStack.size();
if (namespaceProcessing) {
for (int a = 0; a < dtdAttributes.size(); ++a) {
DtdAttribute &dtdAttribute = dtdAttributes[a];
if (!dtdAttribute.isNamespaceAttribute
|| dtdAttribute.defaultValue.isNull()
|| dtdAttribute.tagName != qualifiedName
|| dtdAttribute.attributeQualifiedName.isNull())
continue;
int i = 0;
while (i < n && symName(attributeStack[i].key) != dtdAttribute.attributeQualifiedName)
++i;
if (i != n)
continue;
if (dtdAttribute.attributePrefix.isEmpty() && dtdAttribute.attributeName == QLatin1String("xmlns")) {
NamespaceDeclaration &namespaceDeclaration = namespaceDeclarations.push();
namespaceDeclaration.prefix.clear();
const QStringRef ns(dtdAttribute.defaultValue);
if(ns == QLatin1String("http://www.w3.org/2000/xmlns/") ||
ns == QLatin1String("http://www.w3.org/XML/1998/namespace"))
raiseWellFormedError(XmlStream::tr("Illegal namespace declaration."));
else
namespaceDeclaration.namespaceUri = ns;
} else if (dtdAttribute.attributePrefix == QLatin1String("xmlns")) {
NamespaceDeclaration &namespaceDeclaration = namespaceDeclarations.push();
QStringRef namespacePrefix = dtdAttribute.attributeName;
QStringRef namespaceUri = dtdAttribute.defaultValue;
if (((namespacePrefix == QLatin1String("xml"))
^ (namespaceUri == QLatin1String("http://www.w3.org/XML/1998/namespace")))
|| namespaceUri == QLatin1String("http://www.w3.org/2000/xmlns/")
|| namespaceUri.isEmpty()
|| namespacePrefix == QLatin1String("xmlns"))
raiseWellFormedError(XmlStream::tr("Illegal namespace declaration."));
namespaceDeclaration.prefix = namespacePrefix;
namespaceDeclaration.namespaceUri = namespaceUri;
}
}
}
tagStack.top().namespaceDeclaration.namespaceUri = namespaceUri = namespaceForPrefix(prefix);
attributes.resize(n);
for (int i = 0; i < n; ++i) {
XmlStreamAttribute &attribute = attributes[i];
Attribute &attrib = attributeStack[i];
QStringRef prefix(symPrefix(attrib.key));
QStringRef name(symString(attrib.key));
QStringRef qualifiedName(symName(attrib.key));
QStringRef value(symString(attrib.value));
attribute.m_name = XmlStreamStringRef(name);
attribute.m_qualifiedName = XmlStreamStringRef(qualifiedName);
attribute.m_value = XmlStreamStringRef(value);
if (!prefix.isEmpty()) {
QStringRef attributeNamespaceUri = namespaceForPrefix(prefix);
attribute.m_namespaceUri = XmlStreamStringRef(attributeNamespaceUri);
}
for (int j = 0; j < i; ++j) {
if (attributes[j].name() == attribute.name()
&& attributes[j].namespaceUri() == attribute.namespaceUri()
&& (namespaceProcessing || attributes[j].qualifiedName() == attribute.qualifiedName()))
raiseWellFormedError(XmlStream::tr("Attribute redefined."));
}
}
for (int a = 0; a < dtdAttributes.size(); ++a) {
DtdAttribute &dtdAttribute = dtdAttributes[a];
if (dtdAttribute.isNamespaceAttribute
|| dtdAttribute.defaultValue.isNull()
|| dtdAttribute.tagName != qualifiedName
|| dtdAttribute.attributeQualifiedName.isNull())
continue;
int i = 0;
while (i < n && symName(attributeStack[i].key) != dtdAttribute.attributeQualifiedName)
++i;
if (i != n)
continue;
XmlStreamAttribute attribute;
attribute.m_name = XmlStreamStringRef(dtdAttribute.attributeName);
attribute.m_qualifiedName = XmlStreamStringRef(dtdAttribute.attributeQualifiedName);
attribute.m_value = XmlStreamStringRef(dtdAttribute.defaultValue);
if (!dtdAttribute.attributePrefix.isEmpty()) {
QStringRef attributeNamespaceUri = namespaceForPrefix(dtdAttribute.attributePrefix);
attribute.m_namespaceUri = XmlStreamStringRef(attributeNamespaceUri);
}
attribute.m_isDefault = true;
attributes.append(attribute);
}
attributeStack.clear();
}
void XmlStreamReaderPrivate::resolvePublicNamespaces()
{
const Tag &tag = tagStack.top();
int n = namespaceDeclarations.size() - tag.namespaceDeclarationsSize;
publicNamespaceDeclarations.resize(n);
for (int i = 0; i < n; ++i) {
const NamespaceDeclaration &namespaceDeclaration = namespaceDeclarations.at(tag.namespaceDeclarationsSize + i);
XmlStreamNamespaceDeclaration &publicNamespaceDeclaration = publicNamespaceDeclarations[i];
publicNamespaceDeclaration.m_prefix = XmlStreamStringRef(namespaceDeclaration.prefix);
publicNamespaceDeclaration.m_namespaceUri = XmlStreamStringRef(namespaceDeclaration.namespaceUri);
}
}
void XmlStreamReaderPrivate::resolveDtd()
{
publicNotationDeclarations.resize(notationDeclarations.size());
for (int i = 0; i < notationDeclarations.size(); ++i) {
const XmlStreamReaderPrivate::NotationDeclaration &notationDeclaration = notationDeclarations.at(i);
XmlStreamNotationDeclaration &publicNotationDeclaration = publicNotationDeclarations[i];
publicNotationDeclaration.m_name = XmlStreamStringRef(notationDeclaration.name);
publicNotationDeclaration.m_systemId = XmlStreamStringRef(notationDeclaration.systemId);
publicNotationDeclaration.m_publicId = XmlStreamStringRef(notationDeclaration.publicId);
}
notationDeclarations.clear();
publicEntityDeclarations.resize(entityDeclarations.size());
for (int i = 0; i < entityDeclarations.size(); ++i) {
const XmlStreamReaderPrivate::EntityDeclaration &entityDeclaration = entityDeclarations.at(i);
XmlStreamEntityDeclaration &publicEntityDeclaration = publicEntityDeclarations[i];
publicEntityDeclaration.m_name = XmlStreamStringRef(entityDeclaration.name);
publicEntityDeclaration.m_notationName = XmlStreamStringRef(entityDeclaration.notationName);
publicEntityDeclaration.m_systemId = XmlStreamStringRef(entityDeclaration.systemId);
publicEntityDeclaration.m_publicId = XmlStreamStringRef(entityDeclaration.publicId);
publicEntityDeclaration.m_value = XmlStreamStringRef(entityDeclaration.value);
}
entityDeclarations.clear();
parameterEntityHash.clear();
}
uint XmlStreamReaderPrivate::resolveCharRef(int symbolIndex)
{
bool ok = true;
uint s;
// ### add toXShort to QStringRef?
if (sym(symbolIndex).c == 'x')
s = symString(symbolIndex, 1).toString().toUInt(&ok, 16);
else
s = symString(symbolIndex).toString().toUInt(&ok, 10);
ok &= (s == 0x9 || s == 0xa || s == 0xd || (s >= 0x20 && s <= 0xd7ff)
|| (s >= 0xe000 && s <= 0xfffd) || (s >= 0x10000 && s <= QChar::LastValidCodePoint));
return ok ? s : 0;
}
void XmlStreamReaderPrivate::checkPublicLiteral(const QStringRef &publicId)
{
//#x20 | #xD | #xA | [a-zA-Z0-9] | [-'()+,./:=?;!*#@$_%]
const ushort *data = reinterpret_cast<const ushort *>(publicId.constData());
uchar c = 0;
int i;
for (i = publicId.size() - 1; i >= 0; --i) {
if (data[i] < 256)
switch ((c = data[i])) {
case ' ': case '\n': case '\r': case '-': case '(': case ')':
case '+': case ',': case '.': case '/': case ':': case '=':
case '?': case ';': case '!': case '*': case '#': case '@':
case '$': case '_': case '%': case '\'': case '\"':
continue;
default:
if ((c >= 'a' && c <= 'z')
|| (c >= 'A' && c <= 'Z')
|| (c >= '0' && c <= '9'))
continue;
}
break;
}
if (i >= 0)
raiseWellFormedError(XmlStream::tr("Unexpected character '%1' in public id literal.").arg(QChar(QLatin1Char(c))));
}
/*
Checks whether the document starts with an xml declaration. If it
does, this function returns \c true; otherwise it sets up everything
for a synthetic start document event and returns \c false.
*/
bool XmlStreamReaderPrivate::checkStartDocument()
{
hasCheckedStartDocument = true;
if (scanString(spell[XML], XML))
return true;
type = XmlStreamReader::StartDocument;
if (atEnd) {
hasCheckedStartDocument = false;
raiseError(XmlStreamReader::PrematureEndOfDocumentError);
}
return false;
}
void XmlStreamReaderPrivate::startDocument()
{
QString err;
if (documentVersion != QLatin1String("1.0")) {
if (documentVersion.toString().contains(QLatin1Char(' ')))
err = XmlStream::tr("Invalid XML version string.");
else
err = XmlStream::tr("Unsupported XML version.");
}
int n = attributeStack.size();
/* We use this bool to ensure that the pesudo attributes are in the
* proper order:
*
* [23] XMLDecl ::= '<?xml' VersionInfo EncodingDecl? SDDecl? S? '?>' */
bool hasStandalone = false;
for (int i = 0; err.isNull() && i < n; ++i) {
Attribute &attrib = attributeStack[i];
QStringRef prefix(symPrefix(attrib.key));
QStringRef key(symString(attrib.key));
QStringRef value(symString(attrib.value));
if (prefix.isEmpty() && key == QLatin1String("encoding")) {
const QString name(value.toString());
documentEncoding = value;
if(hasStandalone)
err = XmlStream::tr("The standalone pseudo attribute must appear after the encoding.");
if(!QXmlUtils::isEncName(name))
err = XmlStream::tr("%1 is an invalid encoding name.").arg(name);
else {
#ifdef QT_NO_TEXTCODEC
readBuffer = QString::fromLatin1(rawReadBuffer.data(), nbytesread);
#else
QTextCodec *const newCodec = QTextCodec::codecForName(name.toLatin1());
if (!newCodec)
err = XmlStream::tr("Encoding %1 is unsupported").arg(name);
else if (newCodec != codec && !lockEncoding) {
codec = newCodec;
delete decoder;
decoder = codec->makeDecoder();
decoder->toUnicode(&readBuffer, rawReadBuffer.data(), nbytesread);
}
#endif // QT_NO_TEXTCODEC
}
} else if (prefix.isEmpty() && key == QLatin1String("standalone")) {
hasStandalone = true;
if (value == QLatin1String("yes"))
standalone = true;
else if (value == QLatin1String("no"))
standalone = false;
else
err = XmlStream::tr("Standalone accepts only yes or no.");
} else {
err = XmlStream::tr("Invalid attribute in XML declaration.");
}
}
if (!err.isNull())
raiseWellFormedError(err);
attributeStack.clear();
}
void XmlStreamReaderPrivate::raiseError(XmlStreamReader::Error error, const QString& message)
{
this->error = error;
errorString = message;
if (errorString.isNull()) {
if (error == XmlStreamReader::PrematureEndOfDocumentError)
errorString = XmlStream::tr("Premature end of document.");
else if (error == XmlStreamReader::CustomError)
errorString = XmlStream::tr("Invalid document.");
}
type = XmlStreamReader::Invalid;
}
void XmlStreamReaderPrivate::raiseWellFormedError(const QString &message)
{
raiseError(XmlStreamReader::NotWellFormedError, message);
}
void XmlStreamReaderPrivate::parseError()
{
if (token == EOF_SYMBOL) {
raiseError(XmlStreamReader::PrematureEndOfDocumentError);
return;
}
const int nmax = 4;
QString error_message;
int ers = state_stack[tos];
int nexpected = 0;
int expected[nmax];
if (token != ERROR)
for (int tk = 0; tk < TERMINAL_COUNT; ++tk) {
int k = t_action(ers, tk);
if (k <= 0)
continue;
if (spell[tk]) {
if (nexpected < nmax)
expected[nexpected++] = tk;
}
}
error_message.clear ();
if (nexpected && nexpected < nmax) {
bool first = true;
for (int s = 0; s < nexpected; ++s) {
if (first)
error_message += XmlStream::tr ("Expected ");
else if (s == nexpected - 1)
error_message += QLatin1String (nexpected > 2 ? ", or " : " or ");
else
error_message += QLatin1String (", ");
first = false;
error_message += QLatin1String("\'");
error_message += QLatin1String (spell [expected[s]]);
error_message += QLatin1String("\'");
}
error_message += XmlStream::tr(", but got \'");
error_message += QLatin1String(spell [token]);
error_message += QLatin1String("\'");
} else {
error_message += XmlStream::tr("Unexpected \'");
error_message += QLatin1String(spell [token]);
error_message += QLatin1String("\'");
}
error_message += QLatin1Char('.');
raiseWellFormedError(error_message);
}
void XmlStreamReaderPrivate::resume(int rule) {
resumeReduction = rule;
if (error == XmlStreamReader::NoError)
raiseError(XmlStreamReader::PrematureEndOfDocumentError);
}
/*! Returns the current line number, starting with 1.
\sa columnNumber(), characterOffset()
*/
qint64 XmlStreamReader::lineNumber() const
{
Q_D(const XmlStreamReader);
return d->lineNumber + 1; // in public we start with 1
}
/*! Returns the current column number, starting with 0.
\sa lineNumber(), characterOffset()
*/
qint64 XmlStreamReader::columnNumber() const
{
Q_D(const XmlStreamReader);
return d->characterOffset - d->lastLineStart + d->readBufferPos;
}
/*! Returns the current character offset, starting with 0.
\sa lineNumber(), columnNumber()
*/
qint64 XmlStreamReader::characterOffset() const
{
Q_D(const XmlStreamReader);
return d->characterOffset + d->readBufferPos;
}
/*! Returns the text of \l Characters, \l Comment, \l DTD, or
EntityReference.
*/
QStringRef XmlStreamReader::text() const
{
Q_D(const XmlStreamReader);
return d->text;
}
/*! If the tokenType() is \l DTD, this function returns the DTD's
notation declarations. Otherwise an empty vector is returned.
The XmlStreamNotationDeclarations class is defined to be a QVector
of XmlStreamNotationDeclaration.
*/
XmlStreamNotationDeclarations XmlStreamReader::notationDeclarations() const
{
Q_D(const XmlStreamReader);
if (d->notationDeclarations.size())
const_cast<XmlStreamReaderPrivate *>(d)->resolveDtd();
return d->publicNotationDeclarations;
}
/*! If the tokenType() is \l DTD, this function returns the DTD's
unparsed (external) entity declarations. Otherwise an empty vector is returned.
The XmlStreamEntityDeclarations class is defined to be a QVector
of XmlStreamEntityDeclaration.
*/
XmlStreamEntityDeclarations XmlStreamReader::entityDeclarations() const
{
Q_D(const XmlStreamReader);
if (d->entityDeclarations.size())
const_cast<XmlStreamReaderPrivate *>(d)->resolveDtd();
return d->publicEntityDeclarations;
}
/*!
\since 4.4
If the tokenType() is \l DTD, this function returns the DTD's
name. Otherwise an empty string is returned.
*/
QStringRef XmlStreamReader::dtdName() const
{
Q_D(const XmlStreamReader);
if (d->type == XmlStreamReader::DTD)
return d->dtdName;
return QStringRef();
}
/*!
\since 4.4
If the tokenType() is \l DTD, this function returns the DTD's
public identifier. Otherwise an empty string is returned.
*/
QStringRef XmlStreamReader::dtdPublicId() const
{
Q_D(const XmlStreamReader);
if (d->type == XmlStreamReader::DTD)
return d->dtdPublicId;
return QStringRef();
}
/*!
\since 4.4
If the tokenType() is \l DTD, this function returns the DTD's
system identifier. Otherwise an empty string is returned.
*/
QStringRef XmlStreamReader::dtdSystemId() const
{
Q_D(const XmlStreamReader);
if (d->type == XmlStreamReader::DTD)
return d->dtdSystemId;
return QStringRef();
}
/*! If the tokenType() is \l StartElement, this function returns the
element's namespace declarations. Otherwise an empty vector is
returned.
The XmlStreamNamespaceDeclarations class is defined to be a QVector
of XmlStreamNamespaceDeclaration.
\sa addExtraNamespaceDeclaration(), addExtraNamespaceDeclarations()
*/
XmlStreamNamespaceDeclarations XmlStreamReader::namespaceDeclarations() const
{
Q_D(const XmlStreamReader);
if (d->publicNamespaceDeclarations.isEmpty() && d->type == StartElement)
const_cast<XmlStreamReaderPrivate *>(d)->resolvePublicNamespaces();
return d->publicNamespaceDeclarations;
}
/*!
\since 4.4
Adds an \a extraNamespaceDeclaration. The declaration will be
valid for children of the current element, or - should the function
be called before any elements are read - for the entire XML
document.
\sa namespaceDeclarations(), addExtraNamespaceDeclarations(), setNamespaceProcessing()
*/
void XmlStreamReader::addExtraNamespaceDeclaration(const XmlStreamNamespaceDeclaration &extraNamespaceDeclaration)
{
Q_D(XmlStreamReader);
XmlStreamReaderPrivate::NamespaceDeclaration &namespaceDeclaration = d->namespaceDeclarations.push();
namespaceDeclaration.prefix = d->addToStringStorage(extraNamespaceDeclaration.prefix());
namespaceDeclaration.namespaceUri = d->addToStringStorage(extraNamespaceDeclaration.namespaceUri());
}
/*!
\since 4.4
Adds a vector of declarations specified by \a extraNamespaceDeclarations.
\sa namespaceDeclarations(), addExtraNamespaceDeclaration()
*/
void XmlStreamReader::addExtraNamespaceDeclarations(const XmlStreamNamespaceDeclarations &extraNamespaceDeclarations)
{
for (int i = 0; i < extraNamespaceDeclarations.size(); ++i)
addExtraNamespaceDeclaration(extraNamespaceDeclarations.at(i));
}
/*! Convenience function to be called in case a StartElement was
read. Reads until the corresponding EndElement and returns all text
in-between. In case of no error, the current token (see tokenType())
after having called this function is EndElement.
The function concatenates text() when it reads either \l Characters
or EntityReference tokens, but skips ProcessingInstruction and \l
Comment. If the current token is not StartElement, an empty string is
returned.
The \a behaviour defines what happens in case anything else is
read before reaching EndElement. The function can include the text from
child elements (useful for example for HTML), ignore child elements, or
raise an UnexpectedElementError and return what was read so far (default).
\since 4.6
*/
QString XmlStreamReader::readElementText(ReadElementTextBehaviour behaviour)
{
Q_D(XmlStreamReader);
if (isStartElement()) {
QString result;
forever {
switch (readNext()) {
case Characters:
case EntityReference:
result.insert(result.size(), d->text.unicode(), d->text.size());
break;
case EndElement:
return result;
case ProcessingInstruction:
case Comment:
break;
case StartElement:
if (behaviour == SkipChildElements) {
skipCurrentElement();
break;
} else if (behaviour == IncludeChildElements) {
result += readElementText(behaviour);
break;
}
// Fall through (for ErrorOnUnexpectedElement)
default:
if (d->error || behaviour == ErrorOnUnexpectedElement) {
if (!d->error)
d->raiseError(UnexpectedElementError, XmlStream::tr("Expected character data."));
return result;
}
}
}
}
return QString();
}
/*! Raises a custom error with an optional error \a message.
\sa error(), errorString()
*/
void XmlStreamReader::raiseError(const QString& message)
{
Q_D(XmlStreamReader);
d->raiseError(CustomError, message);
}
/*!
Returns the error message that was set with raiseError().
\sa error(), lineNumber(), columnNumber(), characterOffset()
*/
QString XmlStreamReader::errorString() const
{
Q_D(const XmlStreamReader);
if (d->type == XmlStreamReader::Invalid)
return d->errorString;
return QString();
}
/*! Returns the type of the current error, or NoError if no error occurred.
\sa errorString(), raiseError()
*/
XmlStreamReader::Error XmlStreamReader::error() const
{
Q_D(const XmlStreamReader);
if (d->type == XmlStreamReader::Invalid)
return d->error;
return NoError;
}
/*!
Returns the target of a ProcessingInstruction.
*/
QStringRef XmlStreamReader::processingInstructionTarget() const
{
Q_D(const XmlStreamReader);
return d->processingInstructionTarget;
}
/*!
Returns the data of a ProcessingInstruction.
*/
QStringRef XmlStreamReader::processingInstructionData() const
{
Q_D(const XmlStreamReader);
return d->processingInstructionData;
}
/*!
Returns the local name of a StartElement, EndElement, or an EntityReference.
\sa namespaceUri(), qualifiedName()
*/
QStringRef XmlStreamReader::name() const
{
Q_D(const XmlStreamReader);
return d->name;
}
/*!
Returns the namespaceUri of a StartElement or EndElement.
\sa name(), qualifiedName()
*/
QStringRef XmlStreamReader::namespaceUri() const
{
Q_D(const XmlStreamReader);
return d->namespaceUri;
}
/*!
Returns the qualified name of a StartElement or EndElement;
A qualified name is the raw name of an element in the XML data. It
consists of the namespace prefix, followed by colon, followed by the
element's local name. Since the namespace prefix is not unique (the
same prefix can point to different namespaces and different prefixes
can point to the same namespace), you shouldn't use qualifiedName(),
but the resolved namespaceUri() and the attribute's local name().
\sa name(), prefix(), namespaceUri()
*/
QStringRef XmlStreamReader::qualifiedName() const
{
Q_D(const XmlStreamReader);
return d->qualifiedName;
}
/*!
\since 4.4
Returns the prefix of a StartElement or EndElement.
\sa name(), qualifiedName()
*/
QStringRef XmlStreamReader::prefix() const
{
Q_D(const XmlStreamReader);
return d->prefix;
}
/*!
Returns the attributes of a StartElement.
*/
XmlStreamAttributes XmlStreamReader::attributes() const
{
Q_D(const XmlStreamReader);
return d->attributes;
}
#endif // QT_NO_XMLSTREAMREADER
/*!
\class XmlStreamAttribute
\inmodule QtCore
\since 4.3
\reentrant
\brief The XmlStreamAttribute class represents a single XML attribute
\ingroup xml-tools
An attribute consists of an optionally empty namespaceUri(), a
name(), a value(), and an isDefault() attribute.
The raw XML attribute name is returned as qualifiedName().
*/
/*!
Creates an empty attribute.
*/
XmlStreamAttribute::XmlStreamAttribute()
{
m_isDefault = false;
}
/*!
Destructs an attribute.
*/
XmlStreamAttribute::~XmlStreamAttribute()
{
}
/*! Constructs an attribute in the namespace described with \a
namespaceUri with \a name and value \a value.
*/
XmlStreamAttribute::XmlStreamAttribute(const QString &namespaceUri, const QString &name, const QString &value)
{
m_namespaceUri = XmlStreamStringRef(QStringRef(&namespaceUri));
m_name = m_qualifiedName = XmlStreamStringRef(QStringRef(&name));
m_value = XmlStreamStringRef(QStringRef(&value));
m_namespaceUri = XmlStreamStringRef(QStringRef(&namespaceUri));
}
/*!
Constructs an attribute with qualified name \a qualifiedName and value \a value.
*/
XmlStreamAttribute::XmlStreamAttribute(const QString &qualifiedName, const QString &value)
{
int colon = qualifiedName.indexOf(QLatin1Char(':'));
m_name = XmlStreamStringRef(QStringRef(&qualifiedName,
colon + 1,
qualifiedName.size() - (colon + 1)));
m_qualifiedName = XmlStreamStringRef(QStringRef(&qualifiedName));
m_value = XmlStreamStringRef(QStringRef(&value));
}
/*! \fn QStringRef XmlStreamAttribute::namespaceUri() const
Returns the attribute's resolved namespaceUri, or an empty string
reference if the attribute does not have a defined namespace.
*/
/*! \fn QStringRef XmlStreamAttribute::name() const
Returns the attribute's local name.
*/
/*! \fn QStringRef XmlStreamAttribute::qualifiedName() const
Returns the attribute's qualified name.
A qualified name is the raw name of an attribute in the XML
data. It consists of the namespace prefix(), followed by colon,
followed by the attribute's local name(). Since the namespace prefix
is not unique (the same prefix can point to different namespaces
and different prefixes can point to the same namespace), you
shouldn't use qualifiedName(), but the resolved namespaceUri() and
the attribute's local name().
*/
/*!
\fn QStringRef XmlStreamAttribute::prefix() const
\since 4.4
Returns the attribute's namespace prefix.
\sa name(), qualifiedName()
*/
/*! \fn QStringRef XmlStreamAttribute::value() const
Returns the attribute's value.
*/
/*! \fn bool XmlStreamAttribute::isDefault() const
Returns \c true if the parser added this attribute with a default
value following an ATTLIST declaration in the DTD; otherwise
returns \c false.
*/
/*! \fn bool XmlStreamAttribute::operator==(const XmlStreamAttribute &other) const
Compares this attribute with \a other and returns \c true if they are
equal; otherwise returns \c false.
*/
/*! \fn bool XmlStreamAttribute::operator!=(const XmlStreamAttribute &other) const
Compares this attribute with \a other and returns \c true if they are
not equal; otherwise returns \c false.
*/
/*!
Creates a copy of \a other.
*/
XmlStreamAttribute::XmlStreamAttribute(const XmlStreamAttribute &other)
{
*this = other;
}
/*!
Assigns \a other to this attribute.
*/
XmlStreamAttribute& XmlStreamAttribute::operator=(const XmlStreamAttribute &other)
{
m_name = other.m_name;
m_namespaceUri = other.m_namespaceUri;
m_qualifiedName = other.m_qualifiedName;
m_value = other.m_value;
m_isDefault = other.m_isDefault;
return *this;
}
/*!
\class XmlStreamAttributes
\inmodule QtCore
\since 4.3
\reentrant
\brief The XmlStreamAttributes class represents a vector of XmlStreamAttribute.
Attributes are returned by a XmlStreamReader in
\l{XmlStreamReader::attributes()} {attributes()} when the reader
reports a \l {XmlStreamReader::StartElement}{start element}. The
class can also be used with a XmlStreamWriter as an argument to
\l {XmlStreamWriter::writeAttributes()}{writeAttributes()}.
The convenience function value() loops over the vector and returns
an attribute value for a given namespaceUri and an attribute's
name.
New attributes can be added with append().
\ingroup xml-tools
*/
/*!
\fn void XmlStreamAttributes::append(const XmlStreamAttribute &attribute)
Appends the given \a attribute to the end of the vector.
\sa QVector::append()
*/
/*!
\typedef XmlStreamNotationDeclarations
\relates XmlStreamNotationDeclaration
Synonym for QVector<XmlStreamNotationDeclaration>.
*/
/*!
\class XmlStreamNotationDeclaration
\inmodule QtCore
\since 4.3
\reentrant
\brief The XmlStreamNotationDeclaration class represents a DTD notation declaration.
\ingroup xml-tools
An notation declaration consists of a name(), a systemId(), and a publicId().
*/
/*!
Creates an empty notation declaration.
*/
XmlStreamNotationDeclaration::XmlStreamNotationDeclaration()
{
}
/*!
Creates a copy of \a other.
*/
XmlStreamNotationDeclaration::XmlStreamNotationDeclaration(const XmlStreamNotationDeclaration &other)
{
*this = other;
}
/*!
Assigns \a other to this notation declaration.
*/
XmlStreamNotationDeclaration& XmlStreamNotationDeclaration::operator=(const XmlStreamNotationDeclaration &other)
{
m_name = other.m_name;
m_systemId = other.m_systemId;
m_publicId = other.m_publicId;
return *this;
}
/*!
Destructs this notation declaration.
*/
XmlStreamNotationDeclaration::~XmlStreamNotationDeclaration()
{
}
/*! \fn QStringRef XmlStreamNotationDeclaration::name() const
Returns the notation name.
*/
/*! \fn QStringRef XmlStreamNotationDeclaration::systemId() const
Returns the system identifier.
*/
/*! \fn QStringRef XmlStreamNotationDeclaration::publicId() const
Returns the public identifier.
*/
/*! \fn inline bool XmlStreamNotationDeclaration::operator==(const XmlStreamNotationDeclaration &other) const
Compares this notation declaration with \a other and returns \c true
if they are equal; otherwise returns \c false.
*/
/*! \fn inline bool XmlStreamNotationDeclaration::operator!=(const XmlStreamNotationDeclaration &other) const
Compares this notation declaration with \a other and returns \c true
if they are not equal; otherwise returns \c false.
*/
/*!
\typedef XmlStreamNamespaceDeclarations
\relates XmlStreamNamespaceDeclaration
Synonym for QVector<XmlStreamNamespaceDeclaration>.
*/
/*!
\class XmlStreamNamespaceDeclaration
\inmodule QtCore
\since 4.3
\reentrant
\brief The XmlStreamNamespaceDeclaration class represents a namespace declaration.
\ingroup xml-tools
An namespace declaration consists of a prefix() and a namespaceUri().
*/
/*! \fn inline bool XmlStreamNamespaceDeclaration::operator==(const XmlStreamNamespaceDeclaration &other) const
Compares this namespace declaration with \a other and returns \c true
if they are equal; otherwise returns \c false.
*/
/*! \fn inline bool XmlStreamNamespaceDeclaration::operator!=(const XmlStreamNamespaceDeclaration &other) const
Compares this namespace declaration with \a other and returns \c true
if they are not equal; otherwise returns \c false.
*/
/*!
Creates an empty namespace declaration.
*/
XmlStreamNamespaceDeclaration::XmlStreamNamespaceDeclaration()
{
}
/*!
\since 4.4
Creates a namespace declaration with \a prefix and \a namespaceUri.
*/
XmlStreamNamespaceDeclaration::XmlStreamNamespaceDeclaration(const QString &prefix, const QString &namespaceUri)
{
m_prefix = prefix;
m_namespaceUri = namespaceUri;
}
/*!
Creates a copy of \a other.
*/
XmlStreamNamespaceDeclaration::XmlStreamNamespaceDeclaration(const XmlStreamNamespaceDeclaration &other)
{
*this = other;
}
/*!
Assigns \a other to this namespace declaration.
*/
XmlStreamNamespaceDeclaration& XmlStreamNamespaceDeclaration::operator=(const XmlStreamNamespaceDeclaration &other)
{
m_prefix = other.m_prefix;
m_namespaceUri = other.m_namespaceUri;
return *this;
}
/*!
Destructs this namespace declaration.
*/
XmlStreamNamespaceDeclaration::~XmlStreamNamespaceDeclaration()
{
}
/*! \fn QStringRef XmlStreamNamespaceDeclaration::prefix() const
Returns the prefix.
*/
/*! \fn QStringRef XmlStreamNamespaceDeclaration::namespaceUri() const
Returns the namespaceUri.
*/
/*!
\typedef XmlStreamEntityDeclarations
\relates XmlStreamEntityDeclaration
Synonym for QVector<XmlStreamEntityDeclaration>.
*/
/*!
\class XmlStreamStringRef
\inmodule QtCore
\since 4.3
\internal
*/
/*!
\class XmlStreamEntityDeclaration
\inmodule QtCore
\since 4.3
\reentrant
\brief The XmlStreamEntityDeclaration class represents a DTD entity declaration.
\ingroup xml-tools
An entity declaration consists of a name(), a notationName(), a
systemId(), a publicId(), and a value().
*/
/*!
Creates an empty entity declaration.
*/
XmlStreamEntityDeclaration::XmlStreamEntityDeclaration()
{
}
/*!
Creates a copy of \a other.
*/
XmlStreamEntityDeclaration::XmlStreamEntityDeclaration(const XmlStreamEntityDeclaration &other)
{
*this = other;
}
/*!
Assigns \a other to this entity declaration.
*/
XmlStreamEntityDeclaration& XmlStreamEntityDeclaration::operator=(const XmlStreamEntityDeclaration &other)
{
m_name = other.m_name;
m_notationName = other.m_notationName;
m_systemId = other.m_systemId;
m_publicId = other.m_publicId;
m_value = other.m_value;
return *this;
}
/*!
Destructs this entity declaration.
*/
XmlStreamEntityDeclaration::~XmlStreamEntityDeclaration()
{
}
/*! \fn QStringRef XmlStreamEntityDeclaration::name() const
Returns the entity name.
*/
/*! \fn QStringRef XmlStreamEntityDeclaration::notationName() const
Returns the notation name.
*/
/*! \fn QStringRef XmlStreamEntityDeclaration::systemId() const
Returns the system identifier.
*/
/*! \fn QStringRef XmlStreamEntityDeclaration::publicId() const
Returns the public identifier.
*/
/*! \fn QStringRef XmlStreamEntityDeclaration::value() const
Returns the entity's value.
*/
/*! \fn bool XmlStreamEntityDeclaration::operator==(const XmlStreamEntityDeclaration &other) const
Compares this entity declaration with \a other and returns \c true if
they are equal; otherwise returns \c false.
*/
/*! \fn bool XmlStreamEntityDeclaration::operator!=(const XmlStreamEntityDeclaration &other) const
Compares this entity declaration with \a other and returns \c true if
they are not equal; otherwise returns \c false.
*/
/*! Returns the value of the attribute \a name in the namespace
described with \a namespaceUri, or an empty string reference if the
attribute is not defined. The \a namespaceUri can be empty.
*/
QStringRef XmlStreamAttributes::value(const QString &namespaceUri, const QString &name) const
{
for (int i = 0; i < size(); ++i) {
const XmlStreamAttribute &attribute = at(i);
if (attribute.name() == name && attribute.namespaceUri() == namespaceUri)
return attribute.value();
}
return QStringRef();
}
/*!\overload
Returns the value of the attribute \a name in the namespace
described with \a namespaceUri, or an empty string reference if the
attribute is not defined. The \a namespaceUri can be empty.
*/
QStringRef XmlStreamAttributes::value(const QString &namespaceUri, QLatin1String name) const
{
for (int i = 0; i < size(); ++i) {
const XmlStreamAttribute &attribute = at(i);
if (attribute.name() == name && attribute.namespaceUri() == namespaceUri)
return attribute.value();
}
return QStringRef();
}
/*!\overload
Returns the value of the attribute \a name in the namespace
described with \a namespaceUri, or an empty string reference if the
attribute is not defined. The \a namespaceUri can be empty.
*/
QStringRef XmlStreamAttributes::value(QLatin1String namespaceUri, QLatin1String name) const
{
for (int i = 0; i < size(); ++i) {
const XmlStreamAttribute &attribute = at(i);
if (attribute.name() == name && attribute.namespaceUri() == namespaceUri)
return attribute.value();
}
return QStringRef();
}
/*!\overload
Returns the value of the attribute with qualified name \a
qualifiedName , or an empty string reference if the attribute is not
defined. A qualified name is the raw name of an attribute in the XML
data. It consists of the namespace prefix, followed by colon,
followed by the attribute's local name. Since the namespace prefix
is not unique (the same prefix can point to different namespaces and
different prefixes can point to the same namespace), you shouldn't
use qualified names, but a resolved namespaceUri and the attribute's
local name.
*/
QStringRef XmlStreamAttributes::value(const QString &qualifiedName) const
{
for (int i = 0; i < size(); ++i) {
const XmlStreamAttribute &attribute = at(i);
if (attribute.qualifiedName() == qualifiedName)
return attribute.value();
}
return QStringRef();
}
/*!\overload
Returns the value of the attribute with qualified name \a
qualifiedName , or an empty string reference if the attribute is not
defined. A qualified name is the raw name of an attribute in the XML
data. It consists of the namespace prefix, followed by colon,
followed by the attribute's local name. Since the namespace prefix
is not unique (the same prefix can point to different namespaces and
different prefixes can point to the same namespace), you shouldn't
use qualified names, but a resolved namespaceUri and the attribute's
local name.
*/
QStringRef XmlStreamAttributes::value(QLatin1String qualifiedName) const
{
for (int i = 0; i < size(); ++i) {
const XmlStreamAttribute &attribute = at(i);
if (attribute.qualifiedName() == qualifiedName)
return attribute.value();
}
return QStringRef();
}
/*!Appends a new attribute with \a name in the namespace
described with \a namespaceUri, and value \a value. The \a
namespaceUri can be empty.
*/
void XmlStreamAttributes::append(const QString &namespaceUri, const QString &name, const QString &value)
{
append(XmlStreamAttribute(namespaceUri, name, value));
}
/*!\overload
Appends a new attribute with qualified name \a qualifiedName and
value \a value.
*/
void XmlStreamAttributes::append(const QString &qualifiedName, const QString &value)
{
append(XmlStreamAttribute(qualifiedName, value));
}
#ifndef QT_NO_XMLSTREAMREADER
/*! \fn bool XmlStreamReader::isStartDocument() const
Returns \c true if tokenType() equals \l StartDocument; otherwise returns \c false.
*/
/*! \fn bool XmlStreamReader::isEndDocument() const
Returns \c true if tokenType() equals \l EndDocument; otherwise returns \c false.
*/
/*! \fn bool XmlStreamReader::isStartElement() const
Returns \c true if tokenType() equals \l StartElement; otherwise returns \c false.
*/
/*! \fn bool XmlStreamReader::isEndElement() const
Returns \c true if tokenType() equals \l EndElement; otherwise returns \c false.
*/
/*! \fn bool XmlStreamReader::isCharacters() const
Returns \c true if tokenType() equals \l Characters; otherwise returns \c false.
\sa isWhitespace(), isCDATA()
*/
/*! \fn bool XmlStreamReader::isComment() const
Returns \c true if tokenType() equals \l Comment; otherwise returns \c false.
*/
/*! \fn bool XmlStreamReader::isDTD() const
Returns \c true if tokenType() equals \l DTD; otherwise returns \c false.
*/
/*! \fn bool XmlStreamReader::isEntityReference() const
Returns \c true if tokenType() equals \l EntityReference; otherwise returns \c false.
*/
/*! \fn bool XmlStreamReader::isProcessingInstruction() const
Returns \c true if tokenType() equals \l ProcessingInstruction; otherwise returns \c false.
*/
/*! Returns \c true if the reader reports characters that only consist
of white-space; otherwise returns \c false.
\sa isCharacters(), text()
*/
bool XmlStreamReader::isWhitespace() const
{
Q_D(const XmlStreamReader);
return d->type == XmlStreamReader::Characters && d->isWhitespace;
}
/*! Returns \c true if the reader reports characters that stem from a
CDATA section; otherwise returns \c false.
\sa isCharacters(), text()
*/
bool XmlStreamReader::isCDATA() const
{
Q_D(const XmlStreamReader);
return d->type == XmlStreamReader::Characters && d->isCDATA;
}
/*!
Returns \c true if this document has been declared standalone in the
XML declaration; otherwise returns \c false.
If no XML declaration has been parsed, this function returns \c false.
*/
bool XmlStreamReader::isStandaloneDocument() const
{
Q_D(const XmlStreamReader);
return d->standalone;
}
/*!
\since 4.4
If the tokenType() is \l StartDocument, this function returns the
version string as specified in the XML declaration.
Otherwise an empty string is returned.
*/
QStringRef XmlStreamReader::documentVersion() const
{
Q_D(const XmlStreamReader);
if (d->type == XmlStreamReader::StartDocument)
return d->documentVersion;
return QStringRef();
}
/*!
\since 4.4
If the tokenType() is \l StartDocument, this function returns the
encoding string as specified in the XML declaration.
Otherwise an empty string is returned.
*/
QStringRef XmlStreamReader::documentEncoding() const
{
Q_D(const XmlStreamReader);
if (d->type == XmlStreamReader::StartDocument)
return d->documentEncoding;
return QStringRef();
}
#endif // QT_NO_XMLSTREAMREADER
/*!
\class XmlStreamWriter
\inmodule QtCore
\since 4.3
\reentrant
\brief The XmlStreamWriter class provides an XML writer with a
simple streaming API.
\ingroup xml-tools
XmlStreamWriter is the counterpart to XmlStreamReader for writing
XML. Like its related class, it operates on a QIODevice specified
with setDevice(). The API is simple and straightforward: for every
XML token or event you want to write, the writer provides a
specialized function.
You start a document with writeStartDocument() and end it with
writeEndDocument(). This will implicitly close all remaining open
tags.
Element tags are opened with writeStartElement() followed by
writeAttribute() or writeAttributes(), element content, and then
writeEndElement(). A shorter form writeEmptyElement() can be used
to write empty elements, followed by writeAttributes().
Element content consists of either characters, entity references or
nested elements. It is written with writeCharacters(), which also
takes care of escaping all forbidden characters and character
sequences, writeEntityReference(), or subsequent calls to
writeStartElement(). A convenience method writeTextElement() can be
used for writing terminal elements that contain nothing but text.
The following abridged code snippet shows the basic use of the class
to write formatted XML with indentation:
\snippet qxmlstreamwriter/main.cpp start stream
\dots
\snippet qxmlstreamwriter/main.cpp write element
\dots
\snippet qxmlstreamwriter/main.cpp finish stream
XmlStreamWriter takes care of prefixing namespaces, all you have to
do is specify the \c namespaceUri when writing elements or
attributes. If you must conform to certain prefixes, you can force
the writer to use them by declaring the namespaces manually with
either writeNamespace() or writeDefaultNamespace(). Alternatively,
you can bypass the stream writer's namespace support and use
overloaded methods that take a qualified name instead. The namespace
\e http://www.w3.org/XML/1998/namespace is implicit and mapped to the
prefix \e xml.
The stream writer can automatically format the generated XML data by
adding line-breaks and indentation to empty sections between
elements, making the XML data more readable for humans and easier to
work with for most source code management systems. The feature can
be turned on with the \l autoFormatting property, and customized
with the \l autoFormattingIndent property.
Other functions are writeCDATA(), writeComment(),
writeProcessingInstruction(), and writeDTD(). Chaining of XML
streams is supported with writeCurrentToken().
By default, XmlStreamWriter encodes XML in UTF-8. Different
encodings can be enforced using setCodec().
If an error occurs while writing to the underlying device, hasError()
starts returning true and subsequent writes are ignored.
The \l{XmlStream Bookmarks Example} illustrates how to use a
stream writer to write an XML bookmark file (XBEL) that
was previously read in by a XmlStreamReader.
*/
#ifndef QT_NO_XMLSTREAMWRITER
class XmlStreamWriterPrivate : public XmlStreamPrivateTagStack {
XmlStreamWriter *q_ptr;
Q_DECLARE_PUBLIC(XmlStreamWriter)
public:
XmlStreamWriterPrivate(XmlStreamWriter *q);
~XmlStreamWriterPrivate() {
if (deleteDevice)
delete device;
#ifndef QT_NO_TEXTCODEC
delete encoder;
#endif
}
void write(const QStringRef &);
void write(const QString &);
void writeEscaped(const QString &, bool escapeWhitespace = false);
void write(const char *s, int len);
template <int N> void write(const char (&s)[N]) { write(s, N - 1); }
bool finishStartElement(bool contents = true);
void writeStartElement(const QString &namespaceUri, const QString &name);
QIODevice *device;
QString *stringDevice;
uint deleteDevice :1;
uint inStartElement :1;
uint inEmptyElement :1;
uint lastWasStartElement :1;
uint wroteSomething :1;
uint hasError :1;
uint autoFormatting :1;
uint isCodecASCIICompatible :1;
QByteArray autoFormattingIndent;
NamespaceDeclaration emptyNamespace;
int lastNamespaceDeclaration;
#ifndef QT_NO_TEXTCODEC
QTextCodec *codec;
QTextEncoder *encoder;
#endif
void checkIfASCIICompatibleCodec();
NamespaceDeclaration &findNamespace(const QString &namespaceUri, bool writeDeclaration = false, bool noDefault = false);
void writeNamespaceDeclaration(const NamespaceDeclaration &namespaceDeclaration);
int namespacePrefixCount;
void indent(int level);
};
XmlStreamWriterPrivate::XmlStreamWriterPrivate(XmlStreamWriter *q)
:autoFormattingIndent(4, ' ')
{
q_ptr = q;
device = 0;
stringDevice = 0;
deleteDevice = false;
#ifndef QT_NO_TEXTCODEC
codec = QTextCodec::codecForMib(106); // utf8
encoder = codec->makeEncoder(QTextCodec::IgnoreHeader); // no byte order mark for utf8
#endif
checkIfASCIICompatibleCodec();
inStartElement = inEmptyElement = false;
wroteSomething = false;
hasError = false;
lastWasStartElement = false;
lastNamespaceDeclaration = 1;
autoFormatting = false;
namespacePrefixCount = 0;
}
void XmlStreamWriterPrivate::checkIfASCIICompatibleCodec()
{
#ifndef QT_NO_TEXTCODEC
Q_ASSERT(encoder);
// assumes ASCII-compatibility for all 8-bit encodings
const QByteArray bytes = encoder->fromUnicode(QStringLiteral(" "));
isCodecASCIICompatible = (bytes.count() == 1);
#else
isCodecASCIICompatible = true;
#endif
}
void XmlStreamWriterPrivate::write(const QStringRef &s)
{
if (device) {
if (hasError)
return;
#ifdef QT_NO_TEXTCODEC
QByteArray bytes = s.toLatin1();
#else
QByteArray bytes = encoder->fromUnicode(s.constData(), s.size());
#endif
if (device->write(bytes) != bytes.size())
hasError = true;
}
else if (stringDevice)
s.appendTo(stringDevice);
else
qWarning("XmlStreamWriter: No device");
}
void XmlStreamWriterPrivate::write(const QString &s)
{
if (device) {
if (hasError)
return;
#ifdef QT_NO_TEXTCODEC
QByteArray bytes = s.toLatin1();
#else
QByteArray bytes = encoder->fromUnicode(s);
#endif
if (device->write(bytes) != bytes.size())
hasError = true;
}
else if (stringDevice)
stringDevice->append(s);
else
qWarning("XmlStreamWriter: No device");
}
void XmlStreamWriterPrivate::writeEscaped(const QString &s, bool escapeWhitespace)
{
QString escaped;
escaped.reserve(s.size());
for ( int i = 0; i < s.size(); ++i ) {
QChar c = s.at(i);
if (c.unicode() == '<' )
escaped.append(QLatin1String("&lt;"));
else if (c.unicode() == '>' )
escaped.append(QLatin1String("&gt;"));
else if (c.unicode() == '&' )
escaped.append(QLatin1String("&amp;"));
else if (c.unicode() == '\"' )
escaped.append(QLatin1String("&quot;"));
else if (escapeWhitespace && c.isSpace()) {
if (c.unicode() == '\n')
escaped.append(QLatin1String("&#10;"));
else if (c.unicode() == '\r')
escaped.append(QLatin1String("&#13;"));
else if (c.unicode() == '\t')
escaped.append(QLatin1String("&#9;"));
else
escaped += c;
} else {
escaped += QChar(c);
}
}
write(escaped);
}
// Converts from ASCII to output encoding
void XmlStreamWriterPrivate::write(const char *s, int len)
{
if (device) {
if (hasError)
return;
if (isCodecASCIICompatible) {
if (device->write(s, len) != len)
hasError = true;
return;
}
}
write(QString::fromLatin1(s, len));
}
void XmlStreamWriterPrivate::writeNamespaceDeclaration(const NamespaceDeclaration &namespaceDeclaration) {
if (namespaceDeclaration.prefix.isEmpty()) {
write(" xmlns=\"");
write(namespaceDeclaration.namespaceUri);
write("\"");
} else {
write(" xmlns:");
write(namespaceDeclaration.prefix);
write("=\"");
write(namespaceDeclaration.namespaceUri);
write("\"");
}
}
bool XmlStreamWriterPrivate::finishStartElement(bool contents)
{
bool hadSomethingWritten = wroteSomething;
wroteSomething = contents;
if (!inStartElement)
return hadSomethingWritten;
if (inEmptyElement) {
write("/>");
XmlStreamWriterPrivate::Tag &tag = tagStack_pop();
lastNamespaceDeclaration = tag.namespaceDeclarationsSize;
lastWasStartElement = false;
} else {
write(">");
}
inStartElement = inEmptyElement = false;
lastNamespaceDeclaration = namespaceDeclarations.size();
return hadSomethingWritten;
}
XmlStreamPrivateTagStack::NamespaceDeclaration &XmlStreamWriterPrivate::findNamespace(const QString &namespaceUri, bool writeDeclaration, bool noDefault)
{
for (int j = namespaceDeclarations.size() - 1; j >= 0; --j) {
NamespaceDeclaration &namespaceDeclaration = namespaceDeclarations[j];
if (namespaceDeclaration.namespaceUri == namespaceUri) {
if (!noDefault || !namespaceDeclaration.prefix.isEmpty())
return namespaceDeclaration;
}
}
if (namespaceUri.isEmpty())
return emptyNamespace;
NamespaceDeclaration &namespaceDeclaration = namespaceDeclarations.push();
if (namespaceUri.isEmpty()) {
namespaceDeclaration.prefix.clear();
} else {
QString s;
int n = ++namespacePrefixCount;
forever {
s = QLatin1Char('n') + QString::number(n++);
int j = namespaceDeclarations.size() - 2;
while (j >= 0 && namespaceDeclarations.at(j).prefix != s)
--j;
if (j < 0)
break;
}
namespaceDeclaration.prefix = addToStringStorage(s);
}
namespaceDeclaration.namespaceUri = addToStringStorage(namespaceUri);
if (writeDeclaration)
writeNamespaceDeclaration(namespaceDeclaration);
return namespaceDeclaration;
}
void XmlStreamWriterPrivate::indent(int level)
{
write("\n");
for (int i = level; i > 0; --i)
write(autoFormattingIndent.constData(), autoFormattingIndent.length());
}
/*!
Constructs a stream writer.
\sa setDevice()
*/
XmlStreamWriter::XmlStreamWriter()
: d_ptr(new XmlStreamWriterPrivate(this))
{
}
/*!
Constructs a stream writer that writes into \a device;
*/
XmlStreamWriter::XmlStreamWriter(QIODevice *device)
: d_ptr(new XmlStreamWriterPrivate(this))
{
Q_D(XmlStreamWriter);
d->device = device;
}
/*! Constructs a stream writer that writes into \a array. This is the
same as creating an xml writer that operates on a QBuffer device
which in turn operates on \a array.
*/
XmlStreamWriter::XmlStreamWriter(QByteArray *array)
: d_ptr(new XmlStreamWriterPrivate(this))
{
Q_D(XmlStreamWriter);
d->device = new QBuffer(array);
d->device->open(QIODevice::WriteOnly);
d->deleteDevice = true;
}
/*! Constructs a stream writer that writes into \a string.
*/
XmlStreamWriter::XmlStreamWriter(QString *string)
: d_ptr(new XmlStreamWriterPrivate(this))
{
Q_D(XmlStreamWriter);
d->stringDevice = string;
}
/*!
Destructor.
*/
XmlStreamWriter::~XmlStreamWriter()
{
}
/*!
Sets the current device to \a device. If you want the stream to
write into a QByteArray, you can create a QBuffer device.
\sa device()
*/
void XmlStreamWriter::setDevice(QIODevice *device)
{
Q_D(XmlStreamWriter);
if (device == d->device)
return;
d->stringDevice = 0;
if (d->deleteDevice) {
delete d->device;
d->deleteDevice = false;
}
d->device = device;
}
/*!
Returns the current device associated with the XmlStreamWriter,
or 0 if no device has been assigned.
\sa setDevice()
*/
QIODevice *XmlStreamWriter::device() const
{
Q_D(const XmlStreamWriter);
return d->device;
}
#ifndef QT_NO_TEXTCODEC
/*!
Sets the codec for this stream to \a codec. The codec is used for
encoding any data that is written. By default, XmlStreamWriter
uses UTF-8.
The encoding information is stored in the initial xml tag which
gets written when you call writeStartDocument(). Call this
function before calling writeStartDocument().
\sa codec()
*/
void XmlStreamWriter::setCodec(QTextCodec *codec)
{
Q_D(XmlStreamWriter);
if (codec) {
d->codec = codec;
delete d->encoder;
d->encoder = codec->makeEncoder(QTextCodec::IgnoreHeader); // no byte order mark for utf8
d->checkIfASCIICompatibleCodec();
}
}
/*!
Sets the codec for this stream to the QTextCodec for the encoding
specified by \a codecName. Common values for \c codecName include
"ISO 8859-1", "UTF-8", and "UTF-16". If the encoding isn't
recognized, nothing happens.
\sa QTextCodec::codecForName()
*/
void XmlStreamWriter::setCodec(const char *codecName)
{
setCodec(QTextCodec::codecForName(codecName));
}
/*!
Returns the codec that is currently assigned to the stream.
\sa setCodec()
*/
QTextCodec *XmlStreamWriter::codec() const
{
Q_D(const XmlStreamWriter);
return d->codec;
}
#endif // QT_NO_TEXTCODEC
/*!
\property XmlStreamWriter::autoFormatting
\since 4.4
the auto-formatting flag of the stream writer
This property controls whether or not the stream writer
automatically formats the generated XML data. If enabled, the
writer automatically adds line-breaks and indentation to empty
sections between elements (ignorable whitespace). The main purpose
of auto-formatting is to split the data into several lines, and to
increase readability for a human reader. The indentation depth can
be controlled through the \l autoFormattingIndent property.
By default, auto-formatting is disabled.
*/
/*!
\since 4.4
Enables auto formatting if \a enable is \c true, otherwise
disables it.
The default value is \c false.
*/
void XmlStreamWriter::setAutoFormatting(bool enable)
{
Q_D(XmlStreamWriter);
d->autoFormatting = enable;
}
/*!
\since 4.4
Returns \c true if auto formattting is enabled, otherwise \c false.
*/
bool XmlStreamWriter::autoFormatting() const
{
Q_D(const XmlStreamWriter);
return d->autoFormatting;
}
/*!
\property XmlStreamWriter::autoFormattingIndent
\since 4.4
\brief the number of spaces or tabs used for indentation when
auto-formatting is enabled. Positive numbers indicate spaces,
negative numbers tabs.
The default indentation is 4.
\sa autoFormatting
*/
void XmlStreamWriter::setAutoFormattingIndent(int spacesOrTabs)
{
Q_D(XmlStreamWriter);
d->autoFormattingIndent = QByteArray(qAbs(spacesOrTabs), spacesOrTabs >= 0 ? ' ' : '\t');
}
int XmlStreamWriter::autoFormattingIndent() const
{
Q_D(const XmlStreamWriter);
return d->autoFormattingIndent.count(' ') - d->autoFormattingIndent.count('\t');
}
/*!
Returns \c true if the stream failed to write to the underlying device.
The error status is never reset. Writes happening after the error
occurred are ignored, even if the error condition is cleared.
*/
bool XmlStreamWriter::hasError() const
{
Q_D(const XmlStreamWriter);
return d->hasError;
}
/*!
\overload
Writes an attribute with \a qualifiedName and \a value.
This function can only be called after writeStartElement() before
any content is written, or after writeEmptyElement().
*/
void XmlStreamWriter::writeAttribute(const QString &qualifiedName, const QString &value)
{
Q_D(XmlStreamWriter);
Q_ASSERT(d->inStartElement);
Q_ASSERT(qualifiedName.count(QLatin1Char(':')) <= 1);
d->write(" ");
d->write(qualifiedName);
d->write("=\"");
d->writeEscaped(value, true);
d->write("\"");
}
/*! Writes an attribute with \a name and \a value, prefixed for
the specified \a namespaceUri. If the namespace has not been
declared yet, XmlStreamWriter will generate a namespace declaration
for it.
This function can only be called after writeStartElement() before
any content is written, or after writeEmptyElement().
*/
void XmlStreamWriter::writeAttribute(const QString &namespaceUri, const QString &name, const QString &value)
{
Q_D(XmlStreamWriter);
Q_ASSERT(d->inStartElement);
Q_ASSERT(!name.contains(QLatin1Char(':')));
XmlStreamWriterPrivate::NamespaceDeclaration &namespaceDeclaration = d->findNamespace(namespaceUri, true, true);
d->write(" ");
if (!namespaceDeclaration.prefix.isEmpty()) {
d->write(namespaceDeclaration.prefix);
d->write(":");
}
d->write(name);
d->write("=\"");
d->writeEscaped(value, true);
d->write("\"");
}
/*!
\overload
Writes the \a attribute.
This function can only be called after writeStartElement() before
any content is written, or after writeEmptyElement().
*/
void XmlStreamWriter::writeAttribute(const XmlStreamAttribute& attribute)
{
if (attribute.namespaceUri().isEmpty())
writeAttribute(attribute.qualifiedName().toString(),
attribute.value().toString());
else
writeAttribute(attribute.namespaceUri().toString(),
attribute.name().toString(),
attribute.value().toString());
}
/*! Writes the attribute vector \a attributes. If a namespace
referenced in an attribute not been declared yet, XmlStreamWriter
will generate a namespace declaration for it.
This function can only be called after writeStartElement() before
any content is written, or after writeEmptyElement().
\sa writeAttribute(), writeNamespace()
*/
void XmlStreamWriter::writeAttributes(const XmlStreamAttributes& attributes)
{
Q_D(XmlStreamWriter);
Q_ASSERT(d->inStartElement);
Q_UNUSED(d);
for (int i = 0; i < attributes.size(); ++i)
writeAttribute(attributes.at(i));
}
/*! Writes \a text as CDATA section. If \a text contains the
forbidden character sequence "]]>", it is split into different CDATA
sections.
This function mainly exists for completeness. Normally you should
not need use it, because writeCharacters() automatically escapes all
non-content characters.
*/
void XmlStreamWriter::writeCDATA(const QString &text)
{
Q_D(XmlStreamWriter);
d->finishStartElement();
QString copy(text);
copy.replace(QLatin1String("]]>"), QLatin1String("]]]]><![CDATA[>"));
d->write("<![CDATA[");
d->write(copy);
d->write("]]>");
}
/*! Writes \a text. The characters "<", "&", and "\"" are escaped as entity
references "&lt;", "&amp;, and "&quot;". To avoid the forbidden sequence
"]]>", ">" is also escaped as "&gt;".
\sa writeEntityReference()
*/
void XmlStreamWriter::writeCharacters(const QString &text)
{
Q_D(XmlStreamWriter);
d->finishStartElement();
d->writeEscaped(text);
}
/*! Writes \a text as XML comment, where \a text must not contain the
forbidden sequence "--" or end with "-". Note that XML does not
provide any way to escape "-" in a comment.
*/
void XmlStreamWriter::writeComment(const QString &text)
{
Q_D(XmlStreamWriter);
Q_ASSERT(!text.contains(QLatin1String("--")) && !text.endsWith(QLatin1Char('-')));
if (!d->finishStartElement(false) && d->autoFormatting)
d->indent(d->tagStack.size());
d->write("<!--");
d->write(text);
d->write("-->");
d->inStartElement = d->lastWasStartElement = false;
}
/*! Writes a DTD section. The \a dtd represents the entire
doctypedecl production from the XML 1.0 specification.
*/
void XmlStreamWriter::writeDTD(const QString &dtd)
{
Q_D(XmlStreamWriter);
d->finishStartElement();
if (d->autoFormatting)
d->write("\n");
d->write(dtd);
if (d->autoFormatting)
d->write("\n");
}
/*! \overload
Writes an empty element with qualified name \a qualifiedName.
Subsequent calls to writeAttribute() will add attributes to this element.
*/
void XmlStreamWriter::writeEmptyElement(const QString &qualifiedName)
{
Q_D(XmlStreamWriter);
Q_ASSERT(qualifiedName.count(QLatin1Char(':')) <= 1);
d->writeStartElement(QString(), qualifiedName);
d->inEmptyElement = true;
}
/*! Writes an empty element with \a name, prefixed for the specified
\a namespaceUri. If the namespace has not been declared,
XmlStreamWriter will generate a namespace declaration for it.
Subsequent calls to writeAttribute() will add attributes to this element.
\sa writeNamespace()
*/
void XmlStreamWriter::writeEmptyElement(const QString &namespaceUri, const QString &name)
{
Q_D(XmlStreamWriter);
Q_ASSERT(!name.contains(QLatin1Char(':')));
d->writeStartElement(namespaceUri, name);
d->inEmptyElement = true;
}
/*!\overload
Writes a text element with \a qualifiedName and \a text.
This is a convenience function equivalent to:
\snippet code/src_corelib_xml_qxmlstream.cpp 1
*/
void XmlStreamWriter::writeTextElement(const QString &qualifiedName, const QString &text)
{
writeStartElement(qualifiedName);
writeCharacters(text);
writeEndElement();
}
/*! Writes a text element with \a name, prefixed for the specified \a
namespaceUri, and \a text. If the namespace has not been
declared, XmlStreamWriter will generate a namespace declaration
for it.
This is a convenience function equivalent to:
\snippet code/src_corelib_xml_qxmlstream.cpp 2
*/
void XmlStreamWriter::writeTextElement(const QString &namespaceUri, const QString &name, const QString &text)
{
writeStartElement(namespaceUri, name);
writeCharacters(text);
writeEndElement();
}
/*!
Closes all remaining open start elements and writes a newline.
\sa writeStartDocument()
*/
void XmlStreamWriter::writeEndDocument()
{
Q_D(XmlStreamWriter);
while (d->tagStack.size())
writeEndElement();
d->write("\n");
}
/*!
Closes the previous start element.
\sa writeStartElement()
*/
void XmlStreamWriter::writeEndElement()
{
Q_D(XmlStreamWriter);
if (d->tagStack.isEmpty())
return;
// shortcut: if nothing was written, close as empty tag
if (d->inStartElement && !d->inEmptyElement) {
d->write("/>");
d->lastWasStartElement = d->inStartElement = false;
XmlStreamWriterPrivate::Tag &tag = d->tagStack_pop();
d->lastNamespaceDeclaration = tag.namespaceDeclarationsSize;
return;
}
if (!d->finishStartElement(false) && !d->lastWasStartElement && d->autoFormatting)
d->indent(d->tagStack.size()-1);
if (d->tagStack.isEmpty())
return;
d->lastWasStartElement = false;
XmlStreamWriterPrivate::Tag &tag = d->tagStack_pop();
d->lastNamespaceDeclaration = tag.namespaceDeclarationsSize;
d->write("</");
if (!tag.namespaceDeclaration.prefix.isEmpty()) {
d->write(tag.namespaceDeclaration.prefix);
d->write(":");
}
d->write(tag.name);
d->write(">");
}
/*!
Writes the entity reference \a name to the stream, as "&\a{name};".
*/
void XmlStreamWriter::writeEntityReference(const QString &name)
{
Q_D(XmlStreamWriter);
d->finishStartElement();
d->write("&");
d->write(name);
d->write(";");
}
/*! Writes a namespace declaration for \a namespaceUri with \a
prefix. If \a prefix is empty, XmlStreamWriter assigns a unique
prefix consisting of the letter 'n' followed by a number.
If writeStartElement() or writeEmptyElement() was called, the
declaration applies to the current element; otherwise it applies to
the next child element.
Note that the prefix \e xml is both predefined and reserved for
\e http://www.w3.org/XML/1998/namespace, which in turn cannot be
bound to any other prefix. The prefix \e xmlns and its URI
\e http://www.w3.org/2000/xmlns/ are used for the namespace mechanism
itself and thus completely forbidden in declarations.
*/
void XmlStreamWriter::writeNamespace(const QString &namespaceUri, const QString &prefix)
{
Q_D(XmlStreamWriter);
Q_ASSERT(!namespaceUri.isEmpty());
Q_ASSERT(prefix != QLatin1String("xmlns"));
if (prefix.isEmpty()) {
d->findNamespace(namespaceUri, d->inStartElement);
} else {
Q_ASSERT(!((prefix == QLatin1String("xml")) ^ (namespaceUri == QLatin1String("http://www.w3.org/XML/1998/namespace"))));
Q_ASSERT(namespaceUri != QLatin1String("http://www.w3.org/2000/xmlns/"));
XmlStreamWriterPrivate::NamespaceDeclaration &namespaceDeclaration = d->namespaceDeclarations.push();
namespaceDeclaration.prefix = d->addToStringStorage(prefix);
namespaceDeclaration.namespaceUri = d->addToStringStorage(namespaceUri);
if (d->inStartElement)
d->writeNamespaceDeclaration(namespaceDeclaration);
}
}
/*! Writes a default namespace declaration for \a namespaceUri.
If writeStartElement() or writeEmptyElement() was called, the
declaration applies to the current element; otherwise it applies to
the next child element.
Note that the namespaces \e http://www.w3.org/XML/1998/namespace
(bound to \e xmlns) and \e http://www.w3.org/2000/xmlns/ (bound to
\e xml) by definition cannot be declared as default.
*/
void XmlStreamWriter::writeDefaultNamespace(const QString &namespaceUri)
{
Q_D(XmlStreamWriter);
Q_ASSERT(namespaceUri != QLatin1String("http://www.w3.org/XML/1998/namespace"));
Q_ASSERT(namespaceUri != QLatin1String("http://www.w3.org/2000/xmlns/"));
XmlStreamWriterPrivate::NamespaceDeclaration &namespaceDeclaration = d->namespaceDeclarations.push();
namespaceDeclaration.prefix.clear();
namespaceDeclaration.namespaceUri = d->addToStringStorage(namespaceUri);
if (d->inStartElement)
d->writeNamespaceDeclaration(namespaceDeclaration);
}
/*!
Writes an XML processing instruction with \a target and \a data,
where \a data must not contain the sequence "?>".
*/
void XmlStreamWriter::writeProcessingInstruction(const QString &target, const QString &data)
{
Q_D(XmlStreamWriter);
Q_ASSERT(!data.contains(QLatin1String("?>")));
if (!d->finishStartElement(false) && d->autoFormatting)
d->indent(d->tagStack.size());
d->write("<?");
d->write(target);
if (!data.isNull()) {
d->write(" ");
d->write(data);
}
d->write("?>");
}
/*!\overload
Writes a document start with XML version number "1.0". This also
writes the encoding information.
\sa writeEndDocument(), setCodec()
\since 4.5
*/
void XmlStreamWriter::writeStartDocument()
{
writeStartDocument(QLatin1String("1.0"));
}
/*!
Writes a document start with the XML version number \a version.
\sa writeEndDocument()
*/
void XmlStreamWriter::writeStartDocument(const QString &version)
{
Q_D(XmlStreamWriter);
d->finishStartElement(false);
d->write("<?xml version=\"");
d->write(version);
if (d->device) { // stringDevice does not get any encoding
d->write("\" encoding=\"");
#ifdef QT_NO_TEXTCODEC
d->write("iso-8859-1");
#else
d->write(d->codec->name().constData(), d->codec->name().length());
#endif
}
d->write("\"?>");
}
/*! Writes a document start with the XML version number \a version
and a standalone attribute \a standalone.
\sa writeEndDocument()
\since 4.5
*/
void XmlStreamWriter::writeStartDocument(const QString &version, bool standalone)
{
Q_D(XmlStreamWriter);
d->finishStartElement(false);
d->write("<?xml version=\"");
d->write(version);
if (d->device) { // stringDevice does not get any encoding
d->write("\" encoding=\"");
#ifdef QT_NO_TEXTCODEC
d->write("iso-8859-1");
#else
d->write(d->codec->name().constData(), d->codec->name().length());
#endif
}
if (standalone)
d->write("\" standalone=\"yes\"?>");
else
d->write("\" standalone=\"no\"?>");
}
/*!\overload
Writes a start element with \a qualifiedName. Subsequent calls to
writeAttribute() will add attributes to this element.
\sa writeEndElement(), writeEmptyElement()
*/
void XmlStreamWriter::writeStartElement(const QString &qualifiedName)
{
Q_D(XmlStreamWriter);
Q_ASSERT(qualifiedName.count(QLatin1Char(':')) <= 1);
d->writeStartElement(QString(), qualifiedName);
}
/*! Writes a start element with \a name, prefixed for the specified
\a namespaceUri. If the namespace has not been declared yet,
XmlStreamWriter will generate a namespace declaration for
it. Subsequent calls to writeAttribute() will add attributes to this
element.
\sa writeNamespace(), writeEndElement(), writeEmptyElement()
*/
void XmlStreamWriter::writeStartElement(const QString &namespaceUri, const QString &name)
{
Q_D(XmlStreamWriter);
Q_ASSERT(!name.contains(QLatin1Char(':')));
d->writeStartElement(namespaceUri, name);
}
void XmlStreamWriterPrivate::writeStartElement(const QString &namespaceUri, const QString &name)
{
if (!finishStartElement(false) && autoFormatting)
indent(tagStack.size());
Tag &tag = tagStack_push();
tag.name = addToStringStorage(name);
tag.namespaceDeclaration = findNamespace(namespaceUri);
write("<");
if (!tag.namespaceDeclaration.prefix.isEmpty()) {
write(tag.namespaceDeclaration.prefix);
write(":");
}
write(tag.name);
inStartElement = lastWasStartElement = true;
for (int i = lastNamespaceDeclaration; i < namespaceDeclarations.size(); ++i)
writeNamespaceDeclaration(namespaceDeclarations[i]);
tag.namespaceDeclarationsSize = lastNamespaceDeclaration;
}
#ifndef QT_NO_XMLSTREAMREADER
/*! Writes the current state of the \a reader. All possible valid
states are supported.
The purpose of this function is to support chained processing of XML data.
\sa XmlStreamReader::tokenType()
*/
void XmlStreamWriter::writeCurrentToken(const XmlStreamReader &reader)
{
switch (reader.tokenType()) {
case XmlStreamReader::NoToken:
break;
case XmlStreamReader::StartDocument:
writeStartDocument();
break;
case XmlStreamReader::EndDocument:
writeEndDocument();
break;
case XmlStreamReader::StartElement: {
XmlStreamNamespaceDeclarations namespaceDeclarations = reader.namespaceDeclarations();
for (int i = 0; i < namespaceDeclarations.size(); ++i) {
const XmlStreamNamespaceDeclaration &namespaceDeclaration = namespaceDeclarations.at(i);
writeNamespace(namespaceDeclaration.namespaceUri().toString(),
namespaceDeclaration.prefix().toString());
}
writeStartElement(reader.namespaceUri().toString(), reader.name().toString());
writeAttributes(reader.attributes());
} break;
case XmlStreamReader::EndElement:
writeEndElement();
break;
case XmlStreamReader::Characters:
if (reader.isCDATA())
writeCDATA(reader.text().toString());
else
writeCharacters(reader.text().toString());
break;
case XmlStreamReader::Comment:
writeComment(reader.text().toString());
break;
case XmlStreamReader::DTD:
writeDTD(reader.text().toString());
break;
case XmlStreamReader::EntityReference:
writeEntityReference(reader.name().toString());
break;
case XmlStreamReader::ProcessingInstruction:
writeProcessingInstruction(reader.processingInstructionTarget().toString(),
reader.processingInstructionData().toString());
break;
default:
Q_ASSERT(reader.tokenType() != XmlStreamReader::Invalid);
qWarning("XmlStreamWriter: writeCurrentToken() with invalid state.");
break;
}
}
/*!
\fn bool XmlStreamAttributes::hasAttribute(const QString &qualifiedName) const
\since 4.5
Returns \c true if this XmlStreamAttributes has an attribute whose
qualified name is \a qualifiedName; otherwise returns \c false.
Note that this is not namespace aware. For instance, if this
XmlStreamAttributes contains an attribute whose lexical name is "xlink:href"
this doesn't tell that an attribute named \c href in the XLink namespace is
present, since the \c xlink prefix can be bound to any namespace. Use the
overload that takes a namespace URI and a local name as parameter, for
namespace aware code.
*/
/*!
\fn bool XmlStreamAttributes::hasAttribute(QLatin1String qualifiedName) const
\overload
\since 4.5
*/
/*!
\fn bool XmlStreamAttributes::hasAttribute(const QString &namespaceUri,
const QString &name) const
\overload
\since 4.5
Returns \c true if this XmlStreamAttributes has an attribute whose
namespace URI and name correspond to \a namespaceUri and \a name;
otherwise returns \c false.
*/
#endif // QT_NO_XMLSTREAMREADER
#endif // QT_NO_XMLSTREAMWRITER