Table Of Contents

Previous topic

QReadWriteLock

Next topic

QXmlStreamReader

QXmlStreamWriter

Inheritance diagram of QXmlStreamWriter

Synopsis

Functions

Detailed Description

The PySide.QtCore.QXmlStreamWriter class provides an XML writer with a simple streaming API.

PySide.QtCore.QXmlStreamWriter is the counterpart to PySide.QtCore.QXmlStreamReader for writing XML. Like its related class, it operates on a PySide.QtCore.QIODevice specified with PySide.QtCore.QXmlStreamWriter.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 PySide.QtCore.QXmlStreamWriter.writeStartDocument() and end it with PySide.QtCore.QXmlStreamWriter.writeEndDocument() . This will implicitly close all remaining open tags.

Element tags are opened with PySide.QtCore.QXmlStreamWriter.writeStartElement() followed by PySide.QtCore.QXmlStreamWriter.writeAttribute() or PySide.QtCore.QXmlStreamWriter.writeAttributes() , element content, and then PySide.QtCore.QXmlStreamWriter.writeEndElement() . A shorter form PySide.QtCore.QXmlStreamWriter.writeEmptyElement() can be used to write empty elements, followed by PySide.QtCore.QXmlStreamWriter.writeAttributes() .

Element content consists of either characters, entity references or nested elements. It is written with PySide.QtCore.QXmlStreamWriter.writeCharacters() , which also takes care of escaping all forbidden characters and character sequences, PySide.QtCore.QXmlStreamWriter.writeEntityReference() , or subsequent calls to PySide.QtCore.QXmlStreamWriter.writeStartElement() . A convenience method PySide.QtCore.QXmlStreamWriter.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:

QXmlStreamWriter stream(&output);
stream.setAutoFormatting(true);
stream.writeStartDocument();
...
stream.writeStartElement("bookmark");
stream.writeAttribute("href", "http://www.qtsoftware.com/");
stream.writeTextElement("title", "Qt Home");
stream.writeEndElement(); // bookmark
...
stream.writeEndDocument();

PySide.QtCore.QXmlStreamWriter takes care of prefixing namespaces, all you have to do is specify the 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 PySide.QtCore.QXmlStreamWriter.writeNamespace() or PySide.QtCore.QXmlStreamWriter.writeDefaultNamespace() . Alternatively, you can bypass the stream writer’s namespace support and use overloaded methods that take a qualified name instead. The namespace http://www.w3.org/XML/1998/namespace is implicit and mapped to the prefix 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 PySide.QtCore.QXmlStreamWriter.autoFormatting() property, and customized with the PySide.QtCore.QXmlStreamWriter.autoFormattingIndent() property.

Other functions are PySide.QtCore.QXmlStreamWriter.writeCDATA() , PySide.QtCore.QXmlStreamWriter.writeComment() , PySide.QtCore.QXmlStreamWriter.writeProcessingInstruction() , and PySide.QtCore.QXmlStreamWriter.writeDTD() . Chaining of XML streams is supported with PySide.QtCore.QXmlStreamWriter.writeCurrentToken() .

By default, PySide.QtCore.QXmlStreamWriter encodes XML in UTF-8. Different encodings can be enforced using PySide.QtCore.QXmlStreamWriter.setCodec() .

The QXmlStream Bookmarks Example illustrates how to use a stream writer to write an XML bookmark file (XBEL) that was previously read in by a PySide.QtCore.QXmlStreamReader .

class PySide.QtCore.QXmlStreamWriter
class PySide.QtCore.QXmlStreamWriter(array)
class PySide.QtCore.QXmlStreamWriter(device)
Parameters:

Constructs a stream writer.

Constructs a stream writer that writes into array . This is the same as creating an xml writer that operates on a PySide.QtCore.QBuffer device which in turn operates on array .

Constructs a stream writer that writes into device ;

PySide.QtCore.QXmlStreamWriter.autoFormatting()
Return type:PySide.QtCore.bool

Returns true if auto formattting is enabled, otherwise false .

PySide.QtCore.QXmlStreamWriter.autoFormattingIndent()
Return type:PySide.QtCore.int
PySide.QtCore.QXmlStreamWriter.codec()
Return type:PySide.QtCore.QTextCodec

Returns the codec that is currently assigned to the stream.

PySide.QtCore.QXmlStreamWriter.device()
Return type:PySide.QtCore.QIODevice

Returns the current device associated with the PySide.QtCore.QXmlStreamWriter , or 0 if no device has been assigned.

PySide.QtCore.QXmlStreamWriter.setAutoFormatting(arg__1)
Parameters:arg__1PySide.QtCore.bool

Enables auto formatting if enable is true , otherwise disables it.

The default value is false .

PySide.QtCore.QXmlStreamWriter.setAutoFormattingIndent(spacesOrTabs)
Parameters:spacesOrTabsPySide.QtCore.int
PySide.QtCore.QXmlStreamWriter.setCodec(codec)
Parameters:codecPySide.QtCore.QTextCodec

Sets the codec for this stream to codec . The codec is used for encoding any data that is written. By default, PySide.QtCore.QXmlStreamWriter uses UTF-8.

The encoding information is stored in the initial xml tag which gets written when you call PySide.QtCore.QXmlStreamWriter.writeStartDocument() . Call this function before calling PySide.QtCore.QXmlStreamWriter.writeStartDocument() .

PySide.QtCore.QXmlStreamWriter.setCodec(codecName)
Parameters:codecName – str

Sets the codec for this stream to the PySide.QtCore.QTextCodec for the encoding specified by codecName . Common values for codecName include “ISO 8859-1”, “UTF-8”, and “UTF-16”. If the encoding isn’t recognized, nothing happens.

PySide.QtCore.QXmlStreamWriter.setDevice(device)
Parameters:devicePySide.QtCore.QIODevice

Sets the current device to device . If you want the stream to write into a PySide.QtCore.QByteArray , you can create a PySide.QtCore.QBuffer device.

PySide.QtCore.QXmlStreamWriter.writeAttribute(qualifiedName, value)
Parameters:
  • qualifiedName – unicode
  • value – unicode

This is an overloaded function.

Writes an attribute with qualifiedName and value .

This function can only be called after PySide.QtCore.QXmlStreamWriter.writeStartElement() before any content is written, or after PySide.QtCore.QXmlStreamWriter.writeEmptyElement() .

PySide.QtCore.QXmlStreamWriter.writeAttribute(attribute)
Parameters:attributePySide.QtCore.QXmlStreamAttribute

This is an overloaded function.

Writes the attribute .

This function can only be called after PySide.QtCore.QXmlStreamWriter.writeStartElement() before any content is written, or after PySide.QtCore.QXmlStreamWriter.writeEmptyElement() .

PySide.QtCore.QXmlStreamWriter.writeAttribute(namespaceUri, name, value)
Parameters:
  • namespaceUri – unicode
  • name – unicode
  • value – unicode

Writes an attribute with name and value , prefixed for the specified namespaceUri . If the namespace has not been declared yet, PySide.QtCore.QXmlStreamWriter will generate a namespace declaration for it.

This function can only be called after PySide.QtCore.QXmlStreamWriter.writeStartElement() before any content is written, or after PySide.QtCore.QXmlStreamWriter.writeEmptyElement() .

PySide.QtCore.QXmlStreamWriter.writeAttributes(attributes)
Parameters:attributesPySide.QtCore.QXmlStreamAttributes

Writes the attribute vector attributes . If a namespace referenced in an attribute not been declared yet, PySide.QtCore.QXmlStreamWriter will generate a namespace declaration for it.

This function can only be called after PySide.QtCore.QXmlStreamWriter.writeStartElement() before any content is written, or after PySide.QtCore.QXmlStreamWriter.writeEmptyElement() .

PySide.QtCore.QXmlStreamWriter.writeCDATA(text)
Parameters:text – unicode

Writes text as CDATA section. If 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 PySide.QtCore.QXmlStreamWriter.writeCharacters() automatically escapes all non-content characters.

PySide.QtCore.QXmlStreamWriter.writeCharacters(text)
Parameters:text – unicode

Writes text . The characters “<”, “&”, and “”” are escaped as entity references “&lt;”, “&amp;, and “&quot;”. To avoid the forbidden sequence “]]>”, “>” is also escaped as “&gt;”.

PySide.QtCore.QXmlStreamWriter.writeComment(text)
Parameters:text – unicode

Writes text as XML comment, where text must not contain the forbidden sequence “–” or end with “-”. Note that XML does not provide any way to escape “-” in a comment.

PySide.QtCore.QXmlStreamWriter.writeCurrentToken(reader)
Parameters:readerPySide.QtCore.QXmlStreamReader

Writes the current state of the reader . All possible valid states are supported.

The purpose of this function is to support chained processing of XML data.

PySide.QtCore.QXmlStreamWriter.writeDTD(dtd)
Parameters:dtd – unicode

Writes a DTD section. The dtd represents the entire doctypedecl production from the XML 1.0 specification.

PySide.QtCore.QXmlStreamWriter.writeDefaultNamespace(namespaceUri)
Parameters:namespaceUri – unicode

Writes a default namespace declaration for namespaceUri .

If PySide.QtCore.QXmlStreamWriter.writeStartElement() or PySide.QtCore.QXmlStreamWriter.writeEmptyElement() was called, the declaration applies to the current element; otherwise it applies to the next child element.

Note that the namespaces http://www.w3.org/XML/1998/namespace (bound to xmlns ) and http://www.w3.org/2000/xmlns/ (bound to xml ) by definition cannot be declared as default.

PySide.QtCore.QXmlStreamWriter.writeEmptyElement(namespaceUri, name)
Parameters:
  • namespaceUri – unicode
  • name – unicode

Writes an empty element with name , prefixed for the specified namespaceUri . If the namespace has not been declared, PySide.QtCore.QXmlStreamWriter will generate a namespace declaration for it. Subsequent calls to PySide.QtCore.QXmlStreamWriter.writeAttribute() will add attributes to this element.

PySide.QtCore.QXmlStreamWriter.writeEmptyElement(qualifiedName)
Parameters:qualifiedName – unicode

This is an overloaded function.

Writes an empty element with qualified name qualifiedName . Subsequent calls to PySide.QtCore.QXmlStreamWriter.writeAttribute() will add attributes to this element.

PySide.QtCore.QXmlStreamWriter.writeEndDocument()

Closes all remaining open start elements and writes a newline.

PySide.QtCore.QXmlStreamWriter.writeEndElement()

Closes the previous start element.

PySide.QtCore.QXmlStreamWriter.writeEntityReference(name)
Parameters:name – unicode

Writes the entity reference name to the stream, as “&``name`` ;”.

PySide.QtCore.QXmlStreamWriter.writeNamespace(namespaceUri[, prefix=""])
Parameters:
  • namespaceUri – unicode
  • prefix – unicode

Writes a namespace declaration for namespaceUri with prefix . If prefix is empty, PySide.QtCore.QXmlStreamWriter assigns a unique prefix consisting of the letter ‘n’ followed by a number.

If PySide.QtCore.QXmlStreamWriter.writeStartElement() or PySide.QtCore.QXmlStreamWriter.writeEmptyElement() was called, the declaration applies to the current element; otherwise it applies to the next child element.

Note that the prefix xml is both predefined and reserved for http://www.w3.org/XML/1998/namespace , which in turn cannot be bound to any other prefix. The prefix xmlns and its URI http://www.w3.org/2000/xmlns/ are used for the namespace mechanism itself and thus completely forbidden in declarations.

PySide.QtCore.QXmlStreamWriter.writeProcessingInstruction(target[, data=""])
Parameters:
  • target – unicode
  • data – unicode

Writes an XML processing instruction with target and data , where data must not contain the sequence ”?>”.

PySide.QtCore.QXmlStreamWriter.writeStartDocument(version)
Parameters:version – unicode

Writes a document start with the XML version number version .

PySide.QtCore.QXmlStreamWriter.writeStartDocument(version, standalone)
Parameters:
  • version – unicode
  • standalonePySide.QtCore.bool

Writes a document start with the XML version number version and a standalone attribute standalone .

PySide.QtCore.QXmlStreamWriter.writeStartDocument()

This is an overloaded function.

Writes a document start with XML version number “1.0”. This also writes the encoding information.

PySide.QtCore.QXmlStreamWriter.writeStartElement(qualifiedName)
Parameters:qualifiedName – unicode

This is an overloaded function.

Writes a start element with qualifiedName . Subsequent calls to PySide.QtCore.QXmlStreamWriter.writeAttribute() will add attributes to this element.

PySide.QtCore.QXmlStreamWriter.writeStartElement(namespaceUri, name)
Parameters:
  • namespaceUri – unicode
  • name – unicode

Writes a start element with name , prefixed for the specified namespaceUri . If the namespace has not been declared yet, PySide.QtCore.QXmlStreamWriter will generate a namespace declaration for it. Subsequent calls to PySide.QtCore.QXmlStreamWriter.writeAttribute() will add attributes to this element.

PySide.QtCore.QXmlStreamWriter.writeTextElement(namespaceUri, name, text)
Parameters:
  • namespaceUri – unicode
  • name – unicode
  • text – unicode

Writes a text element with name , prefixed for the specified namespaceUri , and text . If the namespace has not been declared, PySide.QtCore.QXmlStreamWriter will generate a namespace declaration for it.

This is a convenience function equivalent to:

writeStartElement(namespaceUri, name)
writeCharacters(text)
writeEndElement()
PySide.QtCore.QXmlStreamWriter.writeTextElement(qualifiedName, text)
Parameters:
  • qualifiedName – unicode
  • text – unicode

This is an overloaded function.

Writes a text element with qualifiedName and text .

This is a convenience function equivalent to:

writeStartElement(qualifiedName)
writeCharacters(text)
writeEndElement()