123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426 |
- /****************************************************************************
- **
- ** Copyright (C) 2016 The Qt Company Ltd.
- ** Contact: https://www.qt.io/licensing/
- **
- ** This file is part of the QtXmlPatterns 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 The Qt Company. For licensing terms
- ** and conditions see https://www.qt.io/terms-conditions. For further
- ** information use the contact form at https://www.qt.io/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 3 as published by the Free Software
- ** Foundation and appearing in the file LICENSE.LGPL3 included in the
- ** packaging of this file. Please review the following information to
- ** ensure the GNU Lesser General Public License version 3 requirements
- ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
- **
- ** GNU General Public License Usage
- ** Alternatively, this file may be used under the terms of the GNU
- ** General Public License version 2.0 or (at your option) the GNU General
- ** Public license version 3 or any later version approved by the KDE Free
- ** Qt Foundation. The licenses are as published by the Free Software
- ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
- ** included in the packaging of this file. Please review the following
- ** information to ensure the GNU General Public License requirements will
- ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
- ** https://www.gnu.org/licenses/gpl-3.0.html.
- **
- ** $QT_END_LICENSE$
- **
- ****************************************************************************/
- #ifndef QABSTRACTXMLNODEMODEL_H
- #define QABSTRACTXMLNODEMODEL_H
- #include <QtXmlPatterns/QXmlName>
- #include <QtCore/QSharedData>
- #include <QtCore/QScopedPointer>
- QT_BEGIN_NAMESPACE
- /* This file contains the classes QXmlNodeModelIndex, QAbstractXmlNodeModel,
- * QXmlItem and QPatternist::NodeIndexStorage. */
- class QAbstractXmlNodeModel;
- class QAbstractXmlNodeModelPrivate;
- class QAbstractXmlReceiver;
- class QSourceLocation;
- class QUrl;
- class QXmlName;
- class QXmlNodeModelIndex;
- template<typename T> class QAbstractXmlForwardIterator;
- template<typename T> class QVector;
- /* The members in the namespace QPatternist are internal, not part of the public API, and
- * unsupported. Using them leads to undefined behavior. */
- namespace QPatternist
- {
- class DynamicContext;
- class Item;
- class ItemType;
- class XsdValidatedXmlNodeModel;
- template<typename TResult, typename TSource, typename TMapper, typename Context> class ItemMappingIterator;
- template<typename TResult, typename TSource, typename TMapper> class SequenceMappingIterator;
- typedef QExplicitlySharedDataPointer<ItemType> ItemTypePtr;
- typedef QExplicitlySharedDataPointer<QAbstractXmlForwardIterator<Item> > ItemIteratorPtr;
- typedef QVector<QXmlName> QXmlNameVector;
- class NodeIndexStorage
- {
- public:
- typedef qint64 Data;
- /*!
- \note Changing merely the order of these two members, ptr and data,
- is a binary incompatible change on Mac Power PC.
- */
- union
- {
- void *ptr; // Do not use ptr directy, use pointer() instead.
- Data data;
- };
- void *pointer() const
- {
- // Constructing via qptrdiff avoids warnings:
- return reinterpret_cast<void*>(qptrdiff(data));
- }
- Data additionalData;
- const QAbstractXmlNodeModel *model;
- /* Implementation is in qabstractxmlnodemodel.cpp. */
- inline bool operator!=(const NodeIndexStorage &other) const;
- void reset()
- {
- data = 0;
- additionalData = 0;
- model = Q_NULLPTR;
- }
- };
- }
- class Q_XMLPATTERNS_EXPORT QXmlNodeModelIndex
- {
- enum Constants
- {
- ForwardAxis = 8192,
- ReverseAxis = 16384
- };
- public:
- inline QXmlNodeModelIndex()
- {
- reset();
- }
- inline QXmlNodeModelIndex(const QXmlNodeModelIndex &other) : m_storage(other.m_storage)
- {
- }
- bool operator==(const QXmlNodeModelIndex &other) const;
- bool operator!=(const QXmlNodeModelIndex &other) const;
- typedef QAbstractXmlForwardIterator<QXmlNodeModelIndex> Iterator;
- typedef QList<QXmlNodeModelIndex> List;
- enum NodeKind
- {
- Attribute = 1,
- Comment = 2,
- Document = 4,
- Element = 8,
- Namespace = 16,
- ProcessingInstruction = 32,
- Text = 64
- };
- enum DocumentOrder
- {
- Precedes = -1,
- Is = 0,
- Follows = 1
- };
- enum Axis
- {
- AxisChild = 1 | ForwardAxis,
- AxisDescendant = 2 | ForwardAxis,
- AxisAttribute = 4 | ForwardAxis,
- AxisSelf = 8 | ForwardAxis,
- AxisDescendantOrSelf = 16 | ForwardAxis,
- AxisFollowingSibling = 32 | ForwardAxis,
- AxisNamespace = 64 | ForwardAxis,
- AxisFollowing = 128 | ReverseAxis,
- AxisParent = 256 | ReverseAxis,
- AxisAncestor = 512 | ReverseAxis,
- AxisPrecedingSibling = 1024 | ReverseAxis,
- AxisPreceding = 2048 | ReverseAxis,
- AxisAncestorOrSelf = 4096 | ReverseAxis,
- /* Note that we cannot clash with the values of ForwardAxis and
- * ReverseAxis. */
- AxisChildOrTop = 32768 | ForwardAxis,
- AxisAttributeOrTop = 65536 | ForwardAxis
- };
- inline qint64 data() const
- {
- return m_storage.data;
- }
- inline void *internalPointer() const
- {
- return m_storage.pointer();
- }
- inline const QAbstractXmlNodeModel *model() const
- {
- return m_storage.model;
- }
- inline qint64 additionalData() const
- {
- return m_storage.additionalData;
- }
- inline bool isNull() const
- {
- return !m_storage.model;
- }
- /* The members below are internal, not part of the public API, and
- * unsupported. Using them leads to undefined behavior. */
- inline QXmlName name() const;
- inline QXmlNodeModelIndex root() const;
- inline QExplicitlySharedDataPointer<QAbstractXmlForwardIterator<QXmlNodeModelIndex> > iterate(const Axis axis) const;
- inline QExplicitlySharedDataPointer<QAbstractXmlForwardIterator<QPatternist::Item> > sequencedTypedValue() const;
- inline QUrl documentUri() const;
- inline QUrl baseUri() const;
- inline NodeKind kind() const;
- inline bool isDeepEqual(const QXmlNodeModelIndex &other) const;
- inline DocumentOrder compareOrder(const QXmlNodeModelIndex &other) const;
- inline void sendNamespaces(QAbstractXmlReceiver *const receiver) const;
- inline QVector<QXmlName> namespaceBindings() const;
- inline QXmlName::NamespaceCode namespaceForPrefix(const QXmlName::PrefixCode prefix) const;
- inline QString stringValue() const;
- inline QPatternist::ItemTypePtr type() const;
- inline bool is(const QXmlNodeModelIndex &other) const;
- inline void reset()
- {
- m_storage.reset();
- }
- private:
- static inline QXmlNodeModelIndex create(const qint64 d,
- const QAbstractXmlNodeModel *const nm)
- {
- QXmlNodeModelIndex n;
- n.m_storage.data = d;
- n.m_storage.model = nm;
- n.m_storage.additionalData = 0;
- return n;
- }
- static inline QXmlNodeModelIndex create(const qint64 data,
- const QAbstractXmlNodeModel *const nm,
- const qint64 addData)
- {
- QXmlNodeModelIndex n;
- n.m_storage.data = data;
- n.m_storage.model = nm;
- n.m_storage.additionalData = addData;
- return n;
- }
- inline QXmlNodeModelIndex(const QPatternist::NodeIndexStorage &storage) : m_storage(storage)
- {
- }
- friend class QAbstractXmlNodeModel;
- friend class QPatternist::Item;
- friend class QXmlItem;
- inline operator int() const; // Disable
- QPatternist::NodeIndexStorage m_storage;
- };
- Q_XMLPATTERNS_EXPORT uint qHash(const QXmlNodeModelIndex &index);
- inline bool qIsForwardIteratorEnd(const QXmlNodeModelIndex &item)
- {
- return item.isNull();
- }
- class Q_XMLPATTERNS_EXPORT QAbstractXmlNodeModel : public QSharedData
- {
- public:
- enum SimpleAxis
- {
- Parent,
- FirstChild,
- PreviousSibling,
- NextSibling
- };
- typedef QExplicitlySharedDataPointer<QAbstractXmlNodeModel> Ptr;
- typedef QList<Ptr> List;
- QAbstractXmlNodeModel();
- virtual ~QAbstractXmlNodeModel();
- virtual QUrl baseUri(const QXmlNodeModelIndex &ni) const = 0;
- virtual QUrl documentUri(const QXmlNodeModelIndex &ni) const = 0;
- virtual QXmlNodeModelIndex::NodeKind kind(const QXmlNodeModelIndex &ni) const = 0;
- virtual QXmlNodeModelIndex::DocumentOrder compareOrder(const QXmlNodeModelIndex &ni1,
- const QXmlNodeModelIndex &ni2) const = 0;
- virtual QXmlNodeModelIndex root(const QXmlNodeModelIndex &n) const = 0;
- virtual QXmlName name(const QXmlNodeModelIndex &ni) const = 0;
- virtual QString stringValue(const QXmlNodeModelIndex &n) const = 0;
- virtual QVariant typedValue(const QXmlNodeModelIndex &n) const = 0;
- /* The members below are internal, not part of the public API, and
- * unsupported. Using them leads to undefined behavior. */
- virtual QExplicitlySharedDataPointer<QAbstractXmlForwardIterator<QXmlNodeModelIndex> > iterate(const QXmlNodeModelIndex &ni, QXmlNodeModelIndex::Axis axis) const;
- virtual QPatternist::ItemIteratorPtr sequencedTypedValue(const QXmlNodeModelIndex &ni) const;
- virtual QPatternist::ItemTypePtr type(const QXmlNodeModelIndex &ni) const;
- virtual QXmlName::NamespaceCode namespaceForPrefix(const QXmlNodeModelIndex &ni,
- const QXmlName::PrefixCode prefix) const;
- virtual bool isDeepEqual(const QXmlNodeModelIndex &ni1,
- const QXmlNodeModelIndex &ni2) const;
- virtual void sendNamespaces(const QXmlNodeModelIndex &n,
- QAbstractXmlReceiver *const receiver) const;
- virtual QVector<QXmlName> namespaceBindings(const QXmlNodeModelIndex &n) const = 0;
- virtual QXmlNodeModelIndex elementById(const QXmlName &NCName) const = 0;
- virtual QVector<QXmlNodeModelIndex> nodesByIdref(const QXmlName &NCName) const = 0;
- enum NodeCopySetting
- {
- InheritNamespaces = 0x1,
- PreserveNamespaces = 0x2
- };
- typedef QFlags<NodeCopySetting> NodeCopySettings;
- virtual void copyNodeTo(const QXmlNodeModelIndex &node,
- QAbstractXmlReceiver *const receiver,
- const NodeCopySettings &) const;
- QSourceLocation sourceLocation(const QXmlNodeModelIndex &index) const;
- protected:
- virtual QXmlNodeModelIndex nextFromSimpleAxis(SimpleAxis axis, const QXmlNodeModelIndex &origin) const = 0;
- virtual QVector<QXmlNodeModelIndex> attributes(const QXmlNodeModelIndex &element) const = 0;
- QAbstractXmlNodeModel(QAbstractXmlNodeModelPrivate *d);
- inline QXmlNodeModelIndex createIndex(qint64 data) const
- {
- return QXmlNodeModelIndex::create(data, this);
- }
- inline QXmlNodeModelIndex createIndex(void * pointer,
- qint64 additionalData = 0) const
- {
- return QXmlNodeModelIndex::create(qptrdiff(pointer), this, additionalData);
- }
- inline QXmlNodeModelIndex createIndex(qint64 data,
- qint64 additionalData) const
- {
- return QXmlNodeModelIndex::create(data, this, additionalData);
- }
- QScopedPointer<QAbstractXmlNodeModelPrivate> d_ptr;
- private:
- friend class QPatternist::ItemMappingIterator<QXmlNodeModelIndex, QXmlNodeModelIndex, const QAbstractXmlNodeModel *, QExplicitlySharedDataPointer<QPatternist::DynamicContext> >;
- friend class QPatternist::SequenceMappingIterator<QXmlNodeModelIndex, QXmlNodeModelIndex, const QAbstractXmlNodeModel *>;
- friend class QPatternist::XsdValidatedXmlNodeModel;
- inline QExplicitlySharedDataPointer<QAbstractXmlForwardIterator<QXmlNodeModelIndex> > mapToSequence(const QXmlNodeModelIndex &ni,
- const QExplicitlySharedDataPointer<QPatternist::DynamicContext> &) const;
- static inline bool isIgnorableInDeepEqual(const QXmlNodeModelIndex &n);
- Q_DISABLE_COPY(QAbstractXmlNodeModel)
- };
- Q_DECLARE_TYPEINFO(QXmlNodeModelIndex, Q_MOVABLE_TYPE);
- template<typename T> class QAbstractXmlForwardIterator;
- class QVariant;
- class QXmlItemPrivate;
- namespace QPatternist
- {
- class AtomicValue;
- class VariableLoader;
- class IteratorBridge;
- class ToQXmlItemMapper;
- class ToItemMapper;
- }
- class Q_XMLPATTERNS_EXPORT QXmlItem
- {
- public:
- typedef QAbstractXmlForwardIterator<QXmlItem> Iterator;
- QXmlItem();
- QXmlItem(const QXmlItem &other);
- QXmlItem(const QXmlNodeModelIndex &node);
- QXmlItem(const QVariant &atomicValue);
- ~QXmlItem();
- QXmlItem &operator=(const QXmlItem &other);
- bool isNull() const;
- bool isNode() const;
- bool isAtomicValue() const;
- QVariant toAtomicValue() const;
- QXmlNodeModelIndex toNodeModelIndex() const;
- private:
- friend class QPatternist::IteratorBridge;
- friend class QPatternist::VariableLoader;
- friend class QPatternist::ToQXmlItemMapper;
- friend class QPatternist::ToItemMapper;
- friend class QPatternist::Item;
- inline bool internalIsAtomicValue() const;
- inline QXmlItem(const QPatternist::Item &i);
- union
- {
- QPatternist::NodeIndexStorage m_node;
- /* These two sits at the position of NodeIndexStorage::data.
- * NodeIndexStorage::{additionalData,model} are free. */
- const QPatternist::AtomicValue *m_atomicValue;
- QXmlItemPrivate * m_ptr; /* Not currently used. */
- };
- };
- inline bool qIsForwardIteratorEnd(const QXmlItem &item)
- {
- return item.isNull();
- }
- Q_DECLARE_TYPEINFO(QXmlItem, Q_MOVABLE_TYPE);
- QT_END_NAMESPACE
- Q_DECLARE_METATYPE(QXmlItem) /* This macro must appear after QT_END_NAMESPACE. */
- #endif
|