ce63bfe200f4a7a40e1dc96aecc78ec4e24404f3
[profile/ivi/qtxmlpatterns.git] / src / xmlpatterns / utils / qoutputvalidator.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the QtXmlPatterns module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include "qpatternistlocale_p.h"
43
44 #include "qoutputvalidator_p.h"
45
46 QT_BEGIN_NAMESPACE
47
48 using namespace QPatternist;
49
50 OutputValidator::OutputValidator(QAbstractXmlReceiver *const receiver,
51                                  const DynamicContext::Ptr &context,
52                                  const SourceLocationReflection *const r,
53                                  const bool isXSLT) : DelegatingSourceLocationReflection(r)
54                                                     , m_hasReceivedChildren(false)
55                                                     , m_receiver(receiver)
56                                                     , m_context(context)
57                                                     , m_isXSLT(isXSLT)
58 {
59     Q_ASSERT(receiver);
60     Q_ASSERT(context);
61 }
62
63 void OutputValidator::namespaceBinding(const QXmlName &nb)
64 {
65     m_receiver->namespaceBinding(nb);
66 }
67
68 void OutputValidator::startElement(const QXmlName &name)
69 {
70     m_hasReceivedChildren = false;
71     m_receiver->startElement(name);
72     m_attributes.clear();
73 }
74
75 void OutputValidator::endElement()
76 {
77     m_hasReceivedChildren = true;
78     m_receiver->endElement();
79 }
80
81 void OutputValidator::attribute(const QXmlName &name,
82                                 const QStringRef &value)
83 {
84     if(m_hasReceivedChildren)
85     {
86         m_context->error(QtXmlPatterns::tr("It's not possible to add attributes after any other kind of node."),
87                          m_isXSLT ? ReportContext::XTDE0410 : ReportContext::XQTY0024, this);
88     }
89     else
90     {
91         if(!m_isXSLT && m_attributes.contains(name))
92         {
93             m_context->error(QtXmlPatterns::tr("An attribute by name %1 has already been created.").arg(formatKeyword(m_context->namePool(), name)),
94                                 ReportContext::XQDY0025, this);
95         }
96         else
97         {
98             m_attributes.insert(name);
99             m_receiver->attribute(name, value);
100         }
101     }
102 }
103
104 void OutputValidator::comment(const QString &value)
105 {
106     m_hasReceivedChildren = true;
107     m_receiver->comment(value);
108 }
109
110 void OutputValidator::characters(const QStringRef &value)
111 {
112     m_hasReceivedChildren = true;
113     m_receiver->characters(value);
114 }
115
116 void OutputValidator::processingInstruction(const QXmlName &name,
117                                             const QString &value)
118 {
119     m_hasReceivedChildren = true;
120     m_receiver->processingInstruction(name, value);
121 }
122
123 void OutputValidator::item(const Item &outputItem)
124 {
125     /* We can't send outputItem directly to m_receiver since its item() function
126      * won't dispatch to this OutputValidator, but to itself. We're not sub-classing here,
127      * we're delegating. */
128
129     if(outputItem.isNode())
130         sendAsNode(outputItem);
131     else
132     {
133         m_hasReceivedChildren = true;
134         m_receiver->item(outputItem);
135     }
136 }
137
138 void OutputValidator::startDocument()
139 {
140     m_receiver->startDocument();
141 }
142
143 void OutputValidator::endDocument()
144 {
145     m_receiver->endDocument();
146 }
147
148 void OutputValidator::atomicValue(const QVariant &value)
149 {
150     Q_UNUSED(value);
151     // TODO
152 }
153
154 void OutputValidator::endOfSequence()
155 {
156 }
157
158 void OutputValidator::startOfSequence()
159 {
160 }
161
162 QT_END_NAMESPACE