qabstractxmlnodemodel.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtXmlPatterns module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QABSTRACTXMLNODEMODEL_H
  40. #define QABSTRACTXMLNODEMODEL_H
  41. #include <QtXmlPatterns/QXmlName>
  42. #include <QtCore/QSharedData>
  43. #include <QtCore/QScopedPointer>
  44. QT_BEGIN_NAMESPACE
  45. /* This file contains the classes QXmlNodeModelIndex, QAbstractXmlNodeModel,
  46. * QXmlItem and QPatternist::NodeIndexStorage. */
  47. class QAbstractXmlNodeModel;
  48. class QAbstractXmlNodeModelPrivate;
  49. class QAbstractXmlReceiver;
  50. class QSourceLocation;
  51. class QUrl;
  52. class QXmlName;
  53. class QXmlNodeModelIndex;
  54. template<typename T> class QAbstractXmlForwardIterator;
  55. template<typename T> class QVector;
  56. /* The members in the namespace QPatternist are internal, not part of the public API, and
  57. * unsupported. Using them leads to undefined behavior. */
  58. namespace QPatternist
  59. {
  60. class DynamicContext;
  61. class Item;
  62. class ItemType;
  63. class XsdValidatedXmlNodeModel;
  64. template<typename TResult, typename TSource, typename TMapper, typename Context> class ItemMappingIterator;
  65. template<typename TResult, typename TSource, typename TMapper> class SequenceMappingIterator;
  66. typedef QExplicitlySharedDataPointer<ItemType> ItemTypePtr;
  67. typedef QExplicitlySharedDataPointer<QAbstractXmlForwardIterator<Item> > ItemIteratorPtr;
  68. typedef QVector<QXmlName> QXmlNameVector;
  69. class NodeIndexStorage
  70. {
  71. public:
  72. typedef qint64 Data;
  73. /*!
  74. \note Changing merely the order of these two members, ptr and data,
  75. is a binary incompatible change on Mac Power PC.
  76. */
  77. union
  78. {
  79. void *ptr; // Do not use ptr directy, use pointer() instead.
  80. Data data;
  81. };
  82. void *pointer() const
  83. {
  84. // Constructing via qptrdiff avoids warnings:
  85. return reinterpret_cast<void*>(qptrdiff(data));
  86. }
  87. Data additionalData;
  88. const QAbstractXmlNodeModel *model;
  89. /* Implementation is in qabstractxmlnodemodel.cpp. */
  90. inline bool operator!=(const NodeIndexStorage &other) const;
  91. void reset()
  92. {
  93. data = 0;
  94. additionalData = 0;
  95. model = Q_NULLPTR;
  96. }
  97. };
  98. }
  99. class Q_XMLPATTERNS_EXPORT QXmlNodeModelIndex
  100. {
  101. enum Constants
  102. {
  103. ForwardAxis = 8192,
  104. ReverseAxis = 16384
  105. };
  106. public:
  107. inline QXmlNodeModelIndex()
  108. {
  109. reset();
  110. }
  111. inline QXmlNodeModelIndex(const QXmlNodeModelIndex &other) : m_storage(other.m_storage)
  112. {
  113. }
  114. bool operator==(const QXmlNodeModelIndex &other) const;
  115. bool operator!=(const QXmlNodeModelIndex &other) const;
  116. typedef QAbstractXmlForwardIterator<QXmlNodeModelIndex> Iterator;
  117. typedef QList<QXmlNodeModelIndex> List;
  118. enum NodeKind
  119. {
  120. Attribute = 1,
  121. Comment = 2,
  122. Document = 4,
  123. Element = 8,
  124. Namespace = 16,
  125. ProcessingInstruction = 32,
  126. Text = 64
  127. };
  128. enum DocumentOrder
  129. {
  130. Precedes = -1,
  131. Is = 0,
  132. Follows = 1
  133. };
  134. enum Axis
  135. {
  136. AxisChild = 1 | ForwardAxis,
  137. AxisDescendant = 2 | ForwardAxis,
  138. AxisAttribute = 4 | ForwardAxis,
  139. AxisSelf = 8 | ForwardAxis,
  140. AxisDescendantOrSelf = 16 | ForwardAxis,
  141. AxisFollowingSibling = 32 | ForwardAxis,
  142. AxisNamespace = 64 | ForwardAxis,
  143. AxisFollowing = 128 | ReverseAxis,
  144. AxisParent = 256 | ReverseAxis,
  145. AxisAncestor = 512 | ReverseAxis,
  146. AxisPrecedingSibling = 1024 | ReverseAxis,
  147. AxisPreceding = 2048 | ReverseAxis,
  148. AxisAncestorOrSelf = 4096 | ReverseAxis,
  149. /* Note that we cannot clash with the values of ForwardAxis and
  150. * ReverseAxis. */
  151. AxisChildOrTop = 32768 | ForwardAxis,
  152. AxisAttributeOrTop = 65536 | ForwardAxis
  153. };
  154. inline qint64 data() const
  155. {
  156. return m_storage.data;
  157. }
  158. inline void *internalPointer() const
  159. {
  160. return m_storage.pointer();
  161. }
  162. inline const QAbstractXmlNodeModel *model() const
  163. {
  164. return m_storage.model;
  165. }
  166. inline qint64 additionalData() const
  167. {
  168. return m_storage.additionalData;
  169. }
  170. inline bool isNull() const
  171. {
  172. return !m_storage.model;
  173. }
  174. /* The members below are internal, not part of the public API, and
  175. * unsupported. Using them leads to undefined behavior. */
  176. inline QXmlName name() const;
  177. inline QXmlNodeModelIndex root() const;
  178. inline QExplicitlySharedDataPointer<QAbstractXmlForwardIterator<QXmlNodeModelIndex> > iterate(const Axis axis) const;
  179. inline QExplicitlySharedDataPointer<QAbstractXmlForwardIterator<QPatternist::Item> > sequencedTypedValue() const;
  180. inline QUrl documentUri() const;
  181. inline QUrl baseUri() const;
  182. inline NodeKind kind() const;
  183. inline bool isDeepEqual(const QXmlNodeModelIndex &other) const;
  184. inline DocumentOrder compareOrder(const QXmlNodeModelIndex &other) const;
  185. inline void sendNamespaces(QAbstractXmlReceiver *const receiver) const;
  186. inline QVector<QXmlName> namespaceBindings() const;
  187. inline QXmlName::NamespaceCode namespaceForPrefix(const QXmlName::PrefixCode prefix) const;
  188. inline QString stringValue() const;
  189. inline QPatternist::ItemTypePtr type() const;
  190. inline bool is(const QXmlNodeModelIndex &other) const;
  191. inline void reset()
  192. {
  193. m_storage.reset();
  194. }
  195. private:
  196. static inline QXmlNodeModelIndex create(const qint64 d,
  197. const QAbstractXmlNodeModel *const nm)
  198. {
  199. QXmlNodeModelIndex n;
  200. n.m_storage.data = d;
  201. n.m_storage.model = nm;
  202. n.m_storage.additionalData = 0;
  203. return n;
  204. }
  205. static inline QXmlNodeModelIndex create(const qint64 data,
  206. const QAbstractXmlNodeModel *const nm,
  207. const qint64 addData)
  208. {
  209. QXmlNodeModelIndex n;
  210. n.m_storage.data = data;
  211. n.m_storage.model = nm;
  212. n.m_storage.additionalData = addData;
  213. return n;
  214. }
  215. inline QXmlNodeModelIndex(const QPatternist::NodeIndexStorage &storage) : m_storage(storage)
  216. {
  217. }
  218. friend class QAbstractXmlNodeModel;
  219. friend class QPatternist::Item;
  220. friend class QXmlItem;
  221. inline operator int() const; // Disable
  222. QPatternist::NodeIndexStorage m_storage;
  223. };
  224. Q_XMLPATTERNS_EXPORT uint qHash(const QXmlNodeModelIndex &index);
  225. inline bool qIsForwardIteratorEnd(const QXmlNodeModelIndex &item)
  226. {
  227. return item.isNull();
  228. }
  229. class Q_XMLPATTERNS_EXPORT QAbstractXmlNodeModel : public QSharedData
  230. {
  231. public:
  232. enum SimpleAxis
  233. {
  234. Parent,
  235. FirstChild,
  236. PreviousSibling,
  237. NextSibling
  238. };
  239. typedef QExplicitlySharedDataPointer<QAbstractXmlNodeModel> Ptr;
  240. typedef QList<Ptr> List;
  241. QAbstractXmlNodeModel();
  242. virtual ~QAbstractXmlNodeModel();
  243. virtual QUrl baseUri(const QXmlNodeModelIndex &ni) const = 0;
  244. virtual QUrl documentUri(const QXmlNodeModelIndex &ni) const = 0;
  245. virtual QXmlNodeModelIndex::NodeKind kind(const QXmlNodeModelIndex &ni) const = 0;
  246. virtual QXmlNodeModelIndex::DocumentOrder compareOrder(const QXmlNodeModelIndex &ni1,
  247. const QXmlNodeModelIndex &ni2) const = 0;
  248. virtual QXmlNodeModelIndex root(const QXmlNodeModelIndex &n) const = 0;
  249. virtual QXmlName name(const QXmlNodeModelIndex &ni) const = 0;
  250. virtual QString stringValue(const QXmlNodeModelIndex &n) const = 0;
  251. virtual QVariant typedValue(const QXmlNodeModelIndex &n) const = 0;
  252. /* The members below are internal, not part of the public API, and
  253. * unsupported. Using them leads to undefined behavior. */
  254. virtual QExplicitlySharedDataPointer<QAbstractXmlForwardIterator<QXmlNodeModelIndex> > iterate(const QXmlNodeModelIndex &ni, QXmlNodeModelIndex::Axis axis) const;
  255. virtual QPatternist::ItemIteratorPtr sequencedTypedValue(const QXmlNodeModelIndex &ni) const;
  256. virtual QPatternist::ItemTypePtr type(const QXmlNodeModelIndex &ni) const;
  257. virtual QXmlName::NamespaceCode namespaceForPrefix(const QXmlNodeModelIndex &ni,
  258. const QXmlName::PrefixCode prefix) const;
  259. virtual bool isDeepEqual(const QXmlNodeModelIndex &ni1,
  260. const QXmlNodeModelIndex &ni2) const;
  261. virtual void sendNamespaces(const QXmlNodeModelIndex &n,
  262. QAbstractXmlReceiver *const receiver) const;
  263. virtual QVector<QXmlName> namespaceBindings(const QXmlNodeModelIndex &n) const = 0;
  264. virtual QXmlNodeModelIndex elementById(const QXmlName &NCName) const = 0;
  265. virtual QVector<QXmlNodeModelIndex> nodesByIdref(const QXmlName &NCName) const = 0;
  266. enum NodeCopySetting
  267. {
  268. InheritNamespaces = 0x1,
  269. PreserveNamespaces = 0x2
  270. };
  271. typedef QFlags<NodeCopySetting> NodeCopySettings;
  272. virtual void copyNodeTo(const QXmlNodeModelIndex &node,
  273. QAbstractXmlReceiver *const receiver,
  274. const NodeCopySettings &) const;
  275. QSourceLocation sourceLocation(const QXmlNodeModelIndex &index) const;
  276. protected:
  277. virtual QXmlNodeModelIndex nextFromSimpleAxis(SimpleAxis axis, const QXmlNodeModelIndex &origin) const = 0;
  278. virtual QVector<QXmlNodeModelIndex> attributes(const QXmlNodeModelIndex &element) const = 0;
  279. QAbstractXmlNodeModel(QAbstractXmlNodeModelPrivate *d);
  280. inline QXmlNodeModelIndex createIndex(qint64 data) const
  281. {
  282. return QXmlNodeModelIndex::create(data, this);
  283. }
  284. inline QXmlNodeModelIndex createIndex(void * pointer,
  285. qint64 additionalData = 0) const
  286. {
  287. return QXmlNodeModelIndex::create(qptrdiff(pointer), this, additionalData);
  288. }
  289. inline QXmlNodeModelIndex createIndex(qint64 data,
  290. qint64 additionalData) const
  291. {
  292. return QXmlNodeModelIndex::create(data, this, additionalData);
  293. }
  294. QScopedPointer<QAbstractXmlNodeModelPrivate> d_ptr;
  295. private:
  296. friend class QPatternist::ItemMappingIterator<QXmlNodeModelIndex, QXmlNodeModelIndex, const QAbstractXmlNodeModel *, QExplicitlySharedDataPointer<QPatternist::DynamicContext> >;
  297. friend class QPatternist::SequenceMappingIterator<QXmlNodeModelIndex, QXmlNodeModelIndex, const QAbstractXmlNodeModel *>;
  298. friend class QPatternist::XsdValidatedXmlNodeModel;
  299. inline QExplicitlySharedDataPointer<QAbstractXmlForwardIterator<QXmlNodeModelIndex> > mapToSequence(const QXmlNodeModelIndex &ni,
  300. const QExplicitlySharedDataPointer<QPatternist::DynamicContext> &) const;
  301. static inline bool isIgnorableInDeepEqual(const QXmlNodeModelIndex &n);
  302. Q_DISABLE_COPY(QAbstractXmlNodeModel)
  303. };
  304. Q_DECLARE_TYPEINFO(QXmlNodeModelIndex, Q_MOVABLE_TYPE);
  305. template<typename T> class QAbstractXmlForwardIterator;
  306. class QVariant;
  307. class QXmlItemPrivate;
  308. namespace QPatternist
  309. {
  310. class AtomicValue;
  311. class VariableLoader;
  312. class IteratorBridge;
  313. class ToQXmlItemMapper;
  314. class ToItemMapper;
  315. }
  316. class Q_XMLPATTERNS_EXPORT QXmlItem
  317. {
  318. public:
  319. typedef QAbstractXmlForwardIterator<QXmlItem> Iterator;
  320. QXmlItem();
  321. QXmlItem(const QXmlItem &other);
  322. QXmlItem(const QXmlNodeModelIndex &node);
  323. QXmlItem(const QVariant &atomicValue);
  324. ~QXmlItem();
  325. QXmlItem &operator=(const QXmlItem &other);
  326. bool isNull() const;
  327. bool isNode() const;
  328. bool isAtomicValue() const;
  329. QVariant toAtomicValue() const;
  330. QXmlNodeModelIndex toNodeModelIndex() const;
  331. private:
  332. friend class QPatternist::IteratorBridge;
  333. friend class QPatternist::VariableLoader;
  334. friend class QPatternist::ToQXmlItemMapper;
  335. friend class QPatternist::ToItemMapper;
  336. friend class QPatternist::Item;
  337. inline bool internalIsAtomicValue() const;
  338. inline QXmlItem(const QPatternist::Item &i);
  339. union
  340. {
  341. QPatternist::NodeIndexStorage m_node;
  342. /* These two sits at the position of NodeIndexStorage::data.
  343. * NodeIndexStorage::{additionalData,model} are free. */
  344. const QPatternist::AtomicValue *m_atomicValue;
  345. QXmlItemPrivate * m_ptr; /* Not currently used. */
  346. };
  347. };
  348. inline bool qIsForwardIteratorEnd(const QXmlItem &item)
  349. {
  350. return item.isNull();
  351. }
  352. Q_DECLARE_TYPEINFO(QXmlItem, Q_MOVABLE_TYPE);
  353. QT_END_NAMESPACE
  354. Q_DECLARE_METATYPE(QXmlItem) /* This macro must appear after QT_END_NAMESPACE. */
  355. #endif