/**************************************************************************** ** ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtXmlPatterns module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL21$ ** 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 or version 3 as published by the Free ** Software Foundation and appearing in the file LICENSE.LGPLv21 and ** LICENSE.LGPLv3 included in the packaging of this file. Please review the ** following information to ensure the GNU Lesser General Public License ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and ** 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. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include #include #include #include "qabstractxmlnodemodel_p.h" #include "qemptyiterator_p.h" #include "qitemmappingiterator_p.h" #include "qsequencemappingiterator_p.h" #include "qsimplexmlnodemodel.h" #include "qsingletoniterator_p.h" QT_BEGIN_NAMESPACE using namespace QPatternist; class QSimpleXmlNodeModelPrivate : public QAbstractXmlNodeModelPrivate { public: QSimpleXmlNodeModelPrivate(const QXmlNamePool &np) : namePool(np) { } mutable QXmlNamePool namePool; }; /*! \class QSimpleXmlNodeModel \brief The QSimpleXmlNodeModel class is an implementation of QAbstractXmlNodeModel sufficient for many common cases. \reentrant \since 4.4 \ingroup xml-tools \inmodule QtXmlPatterns Subclassing QAbstractXmlNodeModel can be a significant task, because it requires implementing several, complex member functions. QSimpleXmlNodeModel provides default implementations of these member functions that are suitable for a wide range of node models. Subclasses of QSimpleXmlNodeModel must be thread-safe. */ /*! Constructs a QSimpleXmlNodeModel for use with with the specified \a namePool. */ QSimpleXmlNodeModel::QSimpleXmlNodeModel(const QXmlNamePool &namePool) : QAbstractXmlNodeModel(new QSimpleXmlNodeModelPrivate(namePool)) { } /*! Destructor. */ QSimpleXmlNodeModel::~QSimpleXmlNodeModel() { } /*! If \a node is an element or attribute, typedValue() is called, and the return value converted to a string, as per XQuery's rules. If \a node is another type of node, the empty string is returned. If this function is overridden for comments or processing instructions, it is important to remember to call it (for elements and attributes having values not of type \c xs:string) to ensure that the values are formatted according to XQuery. */ QString QSimpleXmlNodeModel::stringValue(const QXmlNodeModelIndex &node) const { const QXmlNodeModelIndex::NodeKind k= kind(node); if(k == QXmlNodeModelIndex::Element || k == QXmlNodeModelIndex::Attribute) { const QVariant &candidate = typedValue(node); if(candidate.isNull()) return QString(); else return AtomicValue::toXDM(candidate).stringValue(); } else return QString(); } /*! Returns the base URI for \a node. This is always the document URI. \sa documentUri() */ QUrl QSimpleXmlNodeModel::baseUri(const QXmlNodeModelIndex &node) const { return documentUri(node); } /*! Returns the name pool associated with this model. The implementation of name() will use this name pool to create names. */ QXmlNamePool &QSimpleXmlNodeModel::namePool() const { Q_D(const QSimpleXmlNodeModel); return d->namePool; } /*! Always returns an empty QVector. This signals that no namespace bindings are in scope for \a node. */ QVector QSimpleXmlNodeModel::namespaceBindings(const QXmlNodeModelIndex &node) const { Q_UNUSED(node); return QVector(); } /*! Always returns a default constructed QXmlNodeModelIndex instance, regardless of \a id. This effectively means the model has no elements that have an id. */ QXmlNodeModelIndex QSimpleXmlNodeModel::elementById(const QXmlName &id) const { Q_UNUSED(id); return QXmlNodeModelIndex(); } /*! Always returns an empty vector, regardless of \a idref. This effectively means the model has no elements or attributes of type \c IDREF. */ QVector QSimpleXmlNodeModel::nodesByIdref(const QXmlName &idref) const { Q_UNUSED(idref); return QVector(); } QT_END_NAMESPACE