[556] | 1 | /****************************************************************************
|
---|
| 2 | **
|
---|
| 3 | ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
|
---|
| 4 | ** All rights reserved.
|
---|
| 5 | ** Contact: Nokia Corporation ([email protected])
|
---|
| 6 | **
|
---|
| 7 | ** This file is part of the QtXmlPatterns module of the Qt Toolkit.
|
---|
| 8 | **
|
---|
| 9 | ** $QT_BEGIN_LICENSE:LGPL$
|
---|
| 10 | ** Commercial Usage
|
---|
| 11 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
| 12 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
| 13 | ** Software or, alternatively, in accordance with the terms contained in
|
---|
| 14 | ** a written agreement between you and Nokia.
|
---|
| 15 | **
|
---|
| 16 | ** GNU Lesser General Public License Usage
|
---|
| 17 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
---|
| 18 | ** General Public License version 2.1 as published by the Free Software
|
---|
| 19 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
---|
| 20 | ** packaging of this file. Please review the following information to
|
---|
| 21 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
---|
| 22 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
---|
| 23 | **
|
---|
| 24 | ** In addition, as a special exception, Nokia gives you certain additional
|
---|
| 25 | ** rights. These rights are described in the Nokia Qt LGPL Exception
|
---|
| 26 | ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
---|
| 27 | **
|
---|
| 28 | ** GNU General Public License Usage
|
---|
| 29 | ** Alternatively, this file may be used under the terms of the GNU
|
---|
| 30 | ** General Public License version 3.0 as published by the Free Software
|
---|
| 31 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
| 32 | ** packaging of this file. Please review the following information to
|
---|
| 33 | ** ensure the GNU General Public License version 3.0 requirements will be
|
---|
| 34 | ** met: http://www.gnu.org/copyleft/gpl.html.
|
---|
| 35 | **
|
---|
| 36 | ** If you have questions regarding the use of this file, please contact
|
---|
| 37 | ** Nokia at [email protected].
|
---|
| 38 | ** $QT_END_LICENSE$
|
---|
| 39 | **
|
---|
| 40 | ****************************************************************************/
|
---|
| 41 |
|
---|
| 42 | //
|
---|
| 43 | // W A R N I N G
|
---|
| 44 | // -------------
|
---|
| 45 | //
|
---|
| 46 | // This file is not part of the Qt API. It exists purely as an
|
---|
| 47 | // implementation detail. This header file may change from version to
|
---|
| 48 | // version without notice, or even be removed.
|
---|
| 49 | //
|
---|
| 50 | // We mean it.
|
---|
| 51 |
|
---|
| 52 | #ifndef Patternist_XsdValidatingInstanceReader_H
|
---|
| 53 | #define Patternist_XsdValidatingInstanceReader_H
|
---|
| 54 |
|
---|
| 55 | #include "qxsdidchelper_p.h"
|
---|
| 56 | #include "qxsdinstancereader_p.h"
|
---|
| 57 | #include "qxsdstatemachine_p.h"
|
---|
| 58 | #include "qxsdvalidatedxmlnodemodel_p.h"
|
---|
| 59 |
|
---|
| 60 | #include <QtCore/QStack>
|
---|
| 61 |
|
---|
| 62 | QT_BEGIN_HEADER
|
---|
| 63 |
|
---|
| 64 | QT_BEGIN_NAMESPACE
|
---|
| 65 |
|
---|
| 66 | class QXmlQuery;
|
---|
| 67 |
|
---|
| 68 | namespace QPatternist
|
---|
| 69 | {
|
---|
| 70 | /**
|
---|
| 71 | * @short The validating schema instance reader.
|
---|
| 72 | *
|
---|
| 73 | * This class reads in a xml instance document from a QAbstractXmlNodeModel and
|
---|
| 74 | * validates it against a given xml schema.
|
---|
| 75 | *
|
---|
| 76 | * @ingroup Patternist_schema
|
---|
| 77 | * @author Tobias Koenig <[email protected]>
|
---|
| 78 | */
|
---|
| 79 | class XsdValidatingInstanceReader : public XsdInstanceReader
|
---|
| 80 | {
|
---|
| 81 | public:
|
---|
| 82 | typedef QExplicitlySharedDataPointer<XsdValidatingInstanceReader> Ptr;
|
---|
| 83 |
|
---|
| 84 | /**
|
---|
| 85 | * Creates a new validating instance reader that reads the data from
|
---|
| 86 | * the given @p model.
|
---|
| 87 | *
|
---|
| 88 | * @param model The model the data shall be read from.
|
---|
| 89 | * @param documentUri The uri of the document the model is from.
|
---|
| 90 | * @param context The context that is used to report errors etc.
|
---|
| 91 | */
|
---|
| 92 | XsdValidatingInstanceReader(XsdValidatedXmlNodeModel *model, const QUrl &documentUri, const XsdSchemaContext::Ptr &context);
|
---|
| 93 |
|
---|
| 94 | /**
|
---|
| 95 | * Adds a new @p schema to the pool of schemas that shall be used
|
---|
| 96 | * for validation.
|
---|
| 97 | * The schema is located at the given @p url.
|
---|
| 98 | */
|
---|
| 99 | void addSchema(const XsdSchema::Ptr &schema, const QUrl &url);
|
---|
| 100 |
|
---|
| 101 | /**
|
---|
| 102 | * Reads and validates the instance document.
|
---|
| 103 | */
|
---|
| 104 | bool read();
|
---|
| 105 |
|
---|
| 106 | private:
|
---|
| 107 | /**
|
---|
| 108 | * Loads a schema with the given @p targetNamespace from the given @p location
|
---|
| 109 | * and adds it to the pool of schemas that are used for validation.
|
---|
| 110 | *
|
---|
| 111 | * This method is used to load schemas defined in the xsi:schemaLocation or
|
---|
| 112 | * xsi:noNamespaceSchemaLocation attributes in the instance document.
|
---|
| 113 | */
|
---|
| 114 | bool loadSchema(const QString &targetNamespace, const QUrl &location);
|
---|
| 115 |
|
---|
| 116 | /**
|
---|
| 117 | * Reports an error via the report context.
|
---|
| 118 | */
|
---|
| 119 | void error(const QString &msg) const;
|
---|
| 120 |
|
---|
| 121 | /**
|
---|
| 122 | * Validates the current element tag of the instance document.
|
---|
| 123 | *
|
---|
| 124 | * @param hasStateMachine Used to remember whether this element represents the start tag
|
---|
| 125 | * of a complex type and therefor pushes a new state machine on the stack.
|
---|
| 126 | * @param element Used to remember which element has been validated in this step.
|
---|
| 127 | */
|
---|
| 128 | bool validate(bool &hasStateMachine, XsdElement::Ptr &element);
|
---|
| 129 |
|
---|
| 130 | /**
|
---|
| 131 | * Validates the current tag of the instance document against the given element @p declaration.
|
---|
| 132 | *
|
---|
| 133 | * @param declaration The element declaration to validate against.
|
---|
| 134 | * @param hasStateMachine Used to remember whether this element represents the start tag
|
---|
| 135 | * of a complex type and therefor pushes a new state machine on the stack.
|
---|
| 136 | */
|
---|
| 137 | bool validateElement(const XsdElement::Ptr &declaration, bool &hasStateMachine);
|
---|
| 138 |
|
---|
| 139 | /**
|
---|
| 140 | * Validates the current tag of the instance document against the given @p type of the element @p declaration.
|
---|
| 141 | *
|
---|
| 142 | * @param declaration The element declaration to validate against.
|
---|
| 143 | * @param type The type to validate against.
|
---|
| 144 | * @param isNilled Defines whether the element is nilled by the instance document.
|
---|
| 145 | * @param hasStateMachine Used to remember whether this element represents the start tag
|
---|
| 146 | * of a complex type and therefor pushes a new state machine on the stack.
|
---|
| 147 | *
|
---|
| 148 | * @note The @p type can differ from the element @p declaration type if the instance document has defined
|
---|
| 149 | * it via xsi:type attribute.
|
---|
| 150 | */
|
---|
| 151 | bool validateElementType(const XsdElement::Ptr &declaration, const SchemaType::Ptr &type, bool isNilled, bool &hasStateMachine);
|
---|
| 152 |
|
---|
| 153 | /**
|
---|
| 154 | * Validates the current tag of the instance document against the given simple @p type of the element @p declaration.
|
---|
| 155 | *
|
---|
| 156 | * @param declaration The element declaration to validate against.
|
---|
| 157 | * @param type The type to validate against.
|
---|
| 158 | * @param isNilled Defines whether the element is nilled by the instance document.
|
---|
| 159 | *
|
---|
| 160 | * @note The @p type can differ from the element @p declaration type if the instance document has defined
|
---|
| 161 | * it via xsi:type attribute.
|
---|
| 162 | */
|
---|
| 163 | bool validateElementSimpleType(const XsdElement::Ptr &declaration, const SchemaType::Ptr &type, bool isNilled);
|
---|
| 164 |
|
---|
| 165 | /**
|
---|
| 166 | * Validates the current tag of the instance document against the given complex @p type of the element @p declaration.
|
---|
| 167 | *
|
---|
| 168 | * @param declaration The element declaration to validate against.
|
---|
| 169 | * @param type The type to validate against.
|
---|
| 170 | * @param isNilled Defines whether the element is nilled by the instance document.
|
---|
| 171 | * @param hasStateMachine Used to remember whether this element represents the start tag
|
---|
| 172 | * of a complex type and therefor pushes a new state machine on the stack.
|
---|
| 173 | *
|
---|
| 174 | * @note The @p type can differ from the element @p declaration type if the instance document has defined
|
---|
| 175 | * it via xsi:type attribute.
|
---|
| 176 | */
|
---|
| 177 | bool validateElementComplexType(const XsdElement::Ptr &declaration, const SchemaType::Ptr &type, bool isNilled, bool &hasStateMachine);
|
---|
| 178 |
|
---|
| 179 | /**
|
---|
| 180 | * Validates the given @p value against the attribute use @p declaration.
|
---|
| 181 | */
|
---|
| 182 | bool validateAttribute(const XsdAttributeUse::Ptr &declaration, const QString &value);
|
---|
| 183 |
|
---|
| 184 | /**
|
---|
| 185 | * Validates the given @p value against the attribute @p declaration.
|
---|
| 186 | */
|
---|
| 187 | bool validateAttribute(const XsdAttribute::Ptr &declaration, const QString &value);
|
---|
| 188 |
|
---|
| 189 | /**
|
---|
| 190 | * Validates the given @p attributeName against the @p wildcard.
|
---|
| 191 | */
|
---|
| 192 | bool validateAttributeWildcard(const QXmlName &attributeName, const XsdWildcard::Ptr &wildcard);
|
---|
| 193 |
|
---|
| 194 | /**
|
---|
| 195 | * Validates the identity constraints of an @p element.
|
---|
| 196 | */
|
---|
| 197 | bool validateIdentityConstraint(const XsdElement::Ptr &element, const QXmlItem ¤tItem);
|
---|
| 198 |
|
---|
| 199 | /**
|
---|
| 200 | * Validates the <em>unique</em> identity @p constraint of the @p element.
|
---|
| 201 | */
|
---|
| 202 | bool validateUniqueIdentityConstraint(const XsdElement::Ptr &element, const XsdIdentityConstraint::Ptr &constraint, const TargetNode::Set &qualifiedNodeSet);
|
---|
| 203 |
|
---|
| 204 | /**
|
---|
| 205 | * Validates the <em>key</em> identity @p constraint of the @p element.
|
---|
| 206 | */
|
---|
| 207 | bool validateKeyIdentityConstraint(const XsdElement::Ptr &element, const XsdIdentityConstraint::Ptr &constraint, const TargetNode::Set &targetNodeSet, const TargetNode::Set &qualifiedNodeSet);
|
---|
| 208 |
|
---|
| 209 | /**
|
---|
| 210 | * Validates the <em>keyref</em> identity @p constraint of the @p element.
|
---|
| 211 | */
|
---|
| 212 | bool validateKeyRefIdentityConstraint(const XsdElement::Ptr &element, const XsdIdentityConstraint::Ptr &constraint, const TargetNode::Set &qualifiedNodeSet);
|
---|
| 213 |
|
---|
| |
---|