Merge branch 'master' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into master-integration
[qt-netbsd.git] / src / xmlpatterns / schema / qxsdidchelper.cpp
blob774092991a059f7df274f24d2eab0a947efe7d5b
1 /****************************************************************************
2 **
3 ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the QtXmlPatterns module of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** No Commercial Usage
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
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.
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.
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
38 ** $QT_END_LICENSE$
40 ****************************************************************************/
42 #include "qxsdidchelper_p.h"
44 #include "qderivedstring_p.h"
45 #include "qxsdschemahelper_p.h"
47 QT_BEGIN_NAMESPACE
49 using namespace QPatternist;
51 FieldNode::FieldNode()
55 FieldNode::FieldNode(const QXmlItem &item, const QString &data, const SchemaType::Ptr &type)
56 : m_item(item)
57 , m_data(data)
58 , m_type(type)
62 bool FieldNode::isEmpty() const
64 return m_item.isNull();
67 bool FieldNode::isEqualTo(const FieldNode &other, const NamePool::Ptr &namePool, const ReportContext::Ptr &context, const SourceLocationReflection *const reflection) const
69 if (m_type != other.m_type)
70 return false;
72 const DerivedString<TypeString>::Ptr string = DerivedString<TypeString>::fromLexical(namePool, m_data);
73 const DerivedString<TypeString>::Ptr otherString = DerivedString<TypeString>::fromLexical(namePool, other.m_data);
75 return XsdSchemaHelper::constructAndCompare(string, AtomicComparator::OperatorEqual, otherString, m_type, context, reflection);
78 QXmlItem FieldNode::item() const
80 return m_item;
83 TargetNode::TargetNode(const QXmlItem &item)
84 : m_item(item)
88 QXmlItem TargetNode::item() const
90 return m_item;
93 QVector<QXmlItem> TargetNode::fieldItems() const
95 QVector<QXmlItem> items;
97 for (int i = 0; i < m_fields.count(); ++i)
98 items.append(m_fields.at(i).item());
100 return items;
103 int TargetNode::emptyFieldsCount() const
105 int counter = 0;
106 for (int i = 0; i < m_fields.count(); ++i) {
107 if (m_fields.at(i).isEmpty())
108 ++counter;
111 return counter;
114 bool TargetNode::fieldsAreEqual(const TargetNode &other, const NamePool::Ptr &namePool, const ReportContext::Ptr &context, const SourceLocationReflection *const reflection) const
116 if (m_fields.count() != other.m_fields.count())
117 return false;
119 for (int i = 0; i < m_fields.count(); ++i) {
120 if (!m_fields.at(i).isEqualTo(other.m_fields.at(i), namePool, context, reflection))
121 return false;
124 return true;
127 void TargetNode::addField(const QXmlItem &item, const QString &data, const SchemaType::Ptr &type)
129 m_fields.append(FieldNode(item, data, type));
132 bool TargetNode::operator==(const TargetNode &other) const
134 return (m_item.toNodeModelIndex() == other.m_item.toNodeModelIndex());
137 QT_END_NAMESPACE