qxmlquery.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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 QXMLQUERY_H
  40. #define QXMLQUERY_H
  41. #include <QtCore/QUrl>
  42. #include <QtXmlPatterns/QAbstractXmlNodeModel>
  43. #include <QtXmlPatterns/QAbstractXmlReceiver>
  44. #include <QtXmlPatterns/QXmlNamePool>
  45. QT_BEGIN_NAMESPACE
  46. class QAbstractMessageHandler;
  47. class QAbstractUriResolver;
  48. class QIODevice;
  49. class QNetworkAccessManager;
  50. class QXmlName;
  51. class QXmlNodeIndex;
  52. class QXmlQueryPrivate;
  53. class QXmlResultItems;
  54. class QXmlSerializer;
  55. /* The members in the namespace QPatternistSDK are internal, not part of the public API, and
  56. * unsupported. Using them leads to undefined behavior. */
  57. namespace QPatternistSDK
  58. {
  59. class TestCase;
  60. }
  61. namespace QPatternist
  62. {
  63. class XsdSchemaParser;
  64. class XsdValidatingInstanceReader;
  65. class VariableLoader;
  66. }
  67. class Q_XMLPATTERNS_EXPORT QXmlQuery
  68. {
  69. public:
  70. enum QueryLanguage
  71. {
  72. XQuery10 = 1,
  73. XSLT20 = 2,
  74. XmlSchema11IdentityConstraintSelector = 1024,
  75. XmlSchema11IdentityConstraintField = 2048,
  76. XPath20 = 4096
  77. };
  78. QXmlQuery();
  79. QXmlQuery(const QXmlQuery &other);
  80. QXmlQuery(const QXmlNamePool &np);
  81. QXmlQuery(QueryLanguage queryLanguage,
  82. const QXmlNamePool &np = QXmlNamePool());
  83. ~QXmlQuery();
  84. QXmlQuery &operator=(const QXmlQuery &other);
  85. void setMessageHandler(QAbstractMessageHandler *messageHandler);
  86. QAbstractMessageHandler *messageHandler() const;
  87. void setQuery(const QString &sourceCode, const QUrl &documentURI = QUrl());
  88. void setQuery(QIODevice *sourceCode, const QUrl &documentURI = QUrl());
  89. void setQuery(const QUrl &queryURI, const QUrl &baseURI = QUrl());
  90. QXmlNamePool namePool() const;
  91. void bindVariable(const QXmlName &name, const QXmlItem &value);
  92. void bindVariable(const QString &localName, const QXmlItem &value);
  93. void bindVariable(const QXmlName &name, QIODevice *);
  94. void bindVariable(const QString &localName, QIODevice *);
  95. void bindVariable(const QXmlName &name, const QXmlQuery &query);
  96. void bindVariable(const QString &localName, const QXmlQuery &query);
  97. bool isValid() const;
  98. void evaluateTo(QXmlResultItems *result) const;
  99. bool evaluateTo(QAbstractXmlReceiver *callback) const;
  100. bool evaluateTo(QStringList *target) const;
  101. bool evaluateTo(QIODevice *target) const;
  102. bool evaluateTo(QString *output) const;
  103. void setUriResolver(const QAbstractUriResolver *resolver);
  104. const QAbstractUriResolver *uriResolver() const;
  105. void setFocus(const QXmlItem &item);
  106. bool setFocus(const QUrl &documentURI);
  107. bool setFocus(QIODevice *document);
  108. bool setFocus(const QString &focus);
  109. void setInitialTemplateName(const QXmlName &name);
  110. void setInitialTemplateName(const QString &name);
  111. QXmlName initialTemplateName() const;
  112. void setNetworkAccessManager(QNetworkAccessManager *newManager);
  113. QNetworkAccessManager *networkAccessManager() const;
  114. QueryLanguage queryLanguage() const;
  115. private:
  116. friend class QXmlName;
  117. friend class QXmlSerializer;
  118. friend class QPatternistSDK::TestCase;
  119. friend class QPatternist::XsdSchemaParser;
  120. friend class QPatternist::XsdValidatingInstanceReader;
  121. friend class QPatternist::VariableLoader;
  122. template<typename TInputType> friend bool setFocusHelper(QXmlQuery *const queryInstance,
  123. const TInputType &focusValue);
  124. QXmlQueryPrivate *d;
  125. };
  126. QT_END_NAMESPACE
  127. #endif