source: trunk/src/xmlpatterns/expr/qcomputednamespaceconstructor.cpp@ 1168

Last change on this file since 1168 was 846, checked in by Dmitry A. Kuminov, 14 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

File size: 5.4 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2011 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#include "qanyuri_p.h"
43#include "qbuiltintypes_p.h"
44#include "qcommonsequencetypes_p.h"
45#include "qpatternistlocale_p.h"
46#include "private/qxmlutils_p.h"
47
48#include "qcomputednamespaceconstructor_p.h"
49
50QT_BEGIN_NAMESPACE
51
52using namespace QPatternist;
53
54ComputedNamespaceConstructor::ComputedNamespaceConstructor(const Expression::Ptr &prefix,
55 const Expression::Ptr &namespaceURI) : PairContainer(prefix, namespaceURI)
56{
57}
58
59void ComputedNamespaceConstructor::evaluateToSequenceReceiver(const DynamicContext::Ptr &context) const
60{
61 const Item prefixItem(m_operand1->evaluateSingleton(context));
62 const QString prefix(prefixItem ? prefixItem.stringValue() : QString());
63
64 const Item namespaceItem(m_operand2->evaluateSingleton(context));
65 const QString namespaceURI(namespaceItem ? namespaceItem.stringValue() : QString());
66
67 if(namespaceURI.isEmpty())
68 {
69 context->error(QtXmlPatterns::tr("In a namespace constructor, the value for a namespace cannot be an empty string."),
70 ReportContext::XTDE0930,
71 this);
72 }
73
74 /* One optimization could be to store a pointer to
75 * the name pool as a member in order to avoid the virtual call(s). */
76 const NamePool::Ptr np(context->namePool());
77
78 if(!prefix.isEmpty() && !QXmlUtils::isNCName(prefix))
79 {
80 context->error(QtXmlPatterns::tr("The prefix must be a valid %1, which %2 is not.")
81 .arg(formatType(np, BuiltinTypes::xsNCName),
82 formatKeyword(prefix)),
83 ReportContext::XTDE0920,
84 this);
85 }
86 const QXmlName binding(np->allocateBinding(prefix, namespaceURI));
87
88 AnyURI::toQUrl<ReportContext::XTDE0905, DynamicContext::Ptr>(namespaceURI,
89 context,
90 this);
91
92 if(binding.prefix() == StandardPrefixes::xmlns)
93 {
94 context->error(QtXmlPatterns::tr("The prefix %1 cannot be bound.")
95 .arg(formatKeyword(prefix)),
96 ReportContext::XTDE0920,
97 this);
98 }
99
100 if((binding.prefix() == StandardPrefixes::xml && binding.namespaceURI() != StandardNamespaces::xml)
101 ||
102 (binding.prefix() != StandardPrefixes::xml && binding.namespaceURI() == StandardNamespaces::xml))
103 {
104 context->error(QtXmlPatterns::tr("Only the prefix %1 can be bound to %2 and vice versa.")
105 .arg(formatKeyword(prefix), formatKeyword(namespaceURI)),
106 ReportContext::XTDE0925,
107 this);
108 }
109
110 context->outputReceiver()->namespaceBinding(binding);
111}
112
113SequenceType::Ptr ComputedNamespaceConstructor::staticType() const
114{
115 return CommonSequenceTypes::ExactlyOneAttribute;
116}
117
118SequenceType::List ComputedNamespaceConstructor::expectedOperandTypes() const
119{
120 SequenceType::List result;
121 result.append(CommonSequenceTypes::ZeroOrOneString);
122 result.append(CommonSequenceTypes::ZeroOrOneString);
123 return result;
124}
125
126Expression::Properties ComputedNamespaceConstructor::properties() const
127{
128 return DisableElimination | IsNodeConstructor;
129}
130
131ExpressionVisitorResult::Ptr ComputedNamespaceConstructor::accept(const ExpressionVisitor::Ptr &visitor) const
132{
133 return visitor->visit(this);
134}
135
136QT_END_NAMESPACE
Note: See TracBrowser for help on using the repository browser.