1 /****************************************************************************
2 **
3 ** Copyright (C) 2015 The Qt Company Ltd.
4 ** Contact: http://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 http://www.qt.io/terms-conditions. For further
15 ** information use the contact form at http://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 2.1 or version 3 as published by the Free
20 ** Software Foundation and appearing in the file LICENSE.LGPLv21 and
21 ** LICENSE.LGPLv3 included in the packaging of this file. Please review the
22 ** following information to ensure the GNU Lesser General Public License
23 ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
24 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
25 **
26 ** As a special exception, The Qt Company gives you certain additional
27 ** rights. These rights are described in The Qt Company LGPL Exception
28 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
29 **
30 ** GNU General Public License Usage
31 ** Alternatively, this file may be used under the terms of the GNU
32 ** General Public License version 3.0 as published by the Free Software
33 ** Foundation and appearing in the file LICENSE.GPL included in the
34 ** packaging of this file.  Please review the following information to
35 ** ensure the GNU General Public License version 3.0 requirements will be
36 ** met: http://www.gnu.org/copyleft/gpl.html.
37 **
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_XsdIdcHelper_H
53 #define Patternist_XsdIdcHelper_H
54 
55 #include "qreportcontext_p.h"
56 #include "qschematype_p.h"
57 
58 #include <QtXmlPatterns/QXmlItem>
59 
60 QT_BEGIN_HEADER
61 
62 QT_BEGIN_NAMESPACE
63 
64 namespace QPatternist
65 {
66 
67     /**
68      * @short A helper class for validating identity constraints.
69      *
70      * This class represents a field node from the key-sequence as defined in
71      * the validation rules at http://www.w3.org/TR/xmlschema11-1/#d0e32243.
72      */
73     class FieldNode
74     {
75         public:
76             /**
77              * Creates an empty field node.
78              */
79             FieldNode();
80 
81             /**
82              * Creates a field node that is bound to a xml node.
83              *
84              * @param item The xml node the field is bound to.
85              * @param data The string content of that field.
86              * @param type The type that is bound to that field.
87              */
88             FieldNode(const QXmlItem &item, const QString &data, const SchemaType::Ptr &type);
89 
90             /**
91              * Returns whether this field is empty.
92              *
93              * A field can be empty, if the xpath expression selects an absent attribute
94              * or element.
95              */
96             bool isEmpty() const;
97 
98             /**
99              * Returns whether this field is equal to the @p other field.
100              *
101              * Equal means that both have the same type and there content is equal in the
102              * types value space.
103              */
104             bool isEqualTo(const FieldNode &other, const NamePool::Ptr &namePool, const ReportContext::Ptr &context, const SourceLocationReflection *const reflection) const;
105 
106             /**
107              * Returns the xml node item the field is bound to.
108              */
109             QXmlItem item() const;
110 
111         private:
112             QXmlItem m_item;
113             QString m_data;
114             SchemaType::Ptr m_type;
115     };
116 
117     /**
118      * @short A helper class for validating identity constraints.
119      *
120      * This class represents a target or qualified node from the target or qualified
121      * node set as defined in the validation rules at http://www.w3.org/TR/xmlschema11-1/#d0e32243.
122      *
123      * A target node is part of the qualified node set, if all of its fields are not empty.
124      */
125     class TargetNode
126     {
127         public:
128             /**
129              * Defines a set of target nodes.
130              */
131             typedef QSet<TargetNode> Set;
132 
133             /**
134              * Creates a new target node that is bound to the xml node @p item.
135              */
136             explicit TargetNode(const QXmlItem &item);
137 
138             /**
139              * Returns the xml node item the target node is bound to.
140              */
141             QXmlItem item() const;
142 
143             /**
144              * Returns all xml node items, the fields of that target node are bound to.
145              */
146             QVector<QXmlItem> fieldItems() const;
147 
148             /**
149              * Returns the number of fields that are empty.
150              */
151             int emptyFieldsCount() const;
152 
153             /**
154              * Returns whether the target node has the same fields as the @p other target node.
155              */
156             bool fieldsAreEqual(const TargetNode &other, const NamePool::Ptr &namePool, const ReportContext::Ptr &context, const SourceLocationReflection *const reflection) const;
157 
158             /**
159              * Adds a new field to the target node with the given values.
160              */
161             void addField(const QXmlItem &item, const QString &data, const SchemaType::Ptr &type);
162 
163             /**
164              * Returns whether the target node is equal to the @p other target node.
165              */
166             bool operator==(const TargetNode &other) const;
167 
168         private:
169             QXmlItem m_item;
170             QVector<FieldNode> m_fields;
171     };
172 
173     /**
174      * Creates a hash value for the given target @p node.
175      */
qHash(const QPatternist::TargetNode & node)176     inline uint qHash(const QPatternist::TargetNode &node)
177     {
178         return qHash(node.item().toNodeModelIndex());
179     }
180 }
181 
182 QT_END_NAMESPACE
183 
184 QT_END_HEADER
185 
186 #endif
187