source: trunk/src/xmlpatterns/parser/qmaintainingreader.cpp@ 612

Last change on this file since 612 was 561, checked in by Dmitry A. Kuminov, 15 years ago

trunk: Merged in qt 4.6.1 sources.

File size: 11.9 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2009 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 * @file
44 * @short This file is included by qcastingplatform_p.h.
45 * If you need includes in this file, put them in CasttingPlatform.h,
46 * outside of the namespace.
47 */
48
49template<typename TokenLookupClass,
50 typename LookupKey>
51MaintainingReader<TokenLookupClass, LookupKey>::MaintainingReader(const typename ElementDescription<TokenLookupClass, LookupKey>::Hash &elementDescriptions,
52 const QSet<typename TokenLookupClass::NodeName> &standardAttributes,
53 const ReportContext::Ptr &context,
54 QIODevice *const queryDevice) : QXmlStreamReader(queryDevice)
55 , m_hasHandledStandardAttributes(false)
56 , m_context(context)
57 , m_elementDescriptions(elementDescriptions)
58 , m_standardAttributes(standardAttributes)
59{
60 Q_ASSERT(m_context);
61 Q_ASSERT(!m_elementDescriptions.isEmpty());
62
63 /* We start with stripping. */
64 m_stripWhitespace.push(true);
65}
66
67template<typename TokenLookupClass,
68 typename LookupKey>
69MaintainingReader<TokenLookupClass, LookupKey>::~MaintainingReader()
70{
71}
72
73template<typename TokenLookupClass,
74 typename LookupKey>
75QSourceLocation MaintainingReader<TokenLookupClass, LookupKey>::currentLocation() const
76{
77 return QSourceLocation(documentURI(),
78 lineNumber(),
79 columnNumber());
80}
81
82template<typename TokenLookupClass,
83 typename LookupKey>
84QXmlStreamReader::TokenType MaintainingReader<TokenLookupClass, LookupKey>::readNext()
85{
86 const TokenType retval = QXmlStreamReader::readNext();
87
88 switch(retval)
89 {
90 case StartElement:
91 {
92 m_currentElementName = TokenLookupClass::toToken(name());
93 m_currentAttributes = attributes();
94 m_hasHandledStandardAttributes = false;
95
96 if(!m_currentAttributes.hasAttribute(QLatin1String("xml:space")))
97 m_stripWhitespace.push(m_stripWhitespace.top());
98 break;
99 }
100 case EndElement:
101 m_currentElementName = TokenLookupClass::toToken(name());
102 m_stripWhitespace.pop();
103 break;
104 default:
105 break;
106 }
107
108 return retval;
109}
110
111template<typename TokenLookupClass,
112 typename LookupKey>
113bool MaintainingReader<TokenLookupClass, LookupKey>::isWhitespace() const
114{
115 return QXmlStreamReader::isWhitespace()
116 || XPathHelper::isWhitespaceOnly(text());
117}
118
119
120template<typename TokenLookupClass,
121 typename LookupKey>
122void MaintainingReader<TokenLookupClass, LookupKey>::error(const QString &message,
123 const ReportContext::ErrorCode code) const
124{
125 m_context->error(message, code, currentLocation());
126}
127
128template<typename TokenLookupClass,
129 typename LookupKey>
130void MaintainingReader<TokenLookupClass, LookupKey>::warning(const QString &message) const
131{
132 m_context->warning(message, currentLocation());
133}
134
135template<typename TokenLookupClass,
136 typename LookupKey>
137typename TokenLookupClass::NodeName MaintainingReader<TokenLookupClass, LookupKey>::currentElementName() const
138{
139 return m_currentElementName;
140}
141
142template<typename TokenLookupClass,
143 typename LookupKey>
144void MaintainingReader<TokenLookupClass, LookupKey>::validateElement(const LookupKey elementName) const
145{
146 Q_ASSERT(tokenType() == QXmlStreamReader::StartElement);
147
148 if(m_elementDescriptions.contains(elementName))
149 {
150 // QHash::value breaks in Metrowerks Compiler
151 const ElementDescription<TokenLookupClass, LookupKey> &desc = *m_elementDescriptions.find(elementName);
152 const int attCount = m_currentAttributes.count();
153
154 QSet<typename TokenLookupClass::NodeName> encounteredXSLTAtts;
155
156 for(int i = 0; i < attCount; ++i)
157 {
158 const QXmlStreamAttribute &attr = m_currentAttributes.at(i);
159 if(attr.namespaceUri().isEmpty())
160 {
161 const typename TokenLookupClass::NodeName attrName(TokenLookupClass::toToken(attr.name()));