| 1 | /****************************************************************************
|
|---|
| 2 | **
|
|---|
| 3 | ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|---|
| 4 | ** Contact: Qt Software Information ([email protected])
|
|---|
| 5 | **
|
|---|
| 6 | ** This file is part of the QtXmlPatterns module of the Qt Toolkit.
|
|---|
| 7 | **
|
|---|
| 8 | ** $QT_BEGIN_LICENSE:LGPL$
|
|---|
| 9 | ** Commercial Usage
|
|---|
| 10 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
|---|
| 11 | ** accordance with the Qt Commercial License Agreement provided with the
|
|---|
| 12 | ** Software or, alternatively, in accordance with the terms contained in
|
|---|
| 13 | ** a written agreement between you and Nokia.
|
|---|
| 14 | **
|
|---|
| 15 | ** GNU Lesser General Public License Usage
|
|---|
| 16 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
|---|
| 17 | ** General Public License version 2.1 as published by the Free Software
|
|---|
| 18 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
|---|
| 19 | ** packaging of this file. Please review the following information to
|
|---|
| 20 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
|---|
| 21 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|---|
| 22 | **
|
|---|
| 23 | ** In addition, as a special exception, Nokia gives you certain
|
|---|
| 24 | ** additional rights. These rights are described in the Nokia Qt LGPL
|
|---|
| 25 | ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
|
|---|
| 26 | ** 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 are unsure which license is appropriate for your use, please
|
|---|
| 37 | ** contact the sales department 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 |
|
|---|
| 50 | QT_BEGIN_NAMESPACE
|
|---|
| 51 |
|
|---|
| 52 | using namespace QPatternist;
|
|---|
| 53 |
|
|---|
| 54 | ComputedNamespaceConstructor::ComputedNamespaceConstructor(const Expression::Ptr &prefix,
|
|---|
| 55 | const Expression::Ptr &namespaceURI) : PairContainer(prefix, namespaceURI)
|
|---|
| 56 | {
|
|---|
| 57 | }
|
|---|
| 58 |
|
|---|
| 59 | void 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 |
|
|---|
| 113 | SequenceType::Ptr ComputedNamespaceConstructor::staticType() const
|
|---|
| 114 | {
|
|---|
| 115 | return CommonSequenceTypes::ExactlyOneAttribute;
|
|---|
| 116 | }
|
|---|
| 117 |
|
|---|
| 118 | SequenceType::List ComputedNamespaceConstructor::expectedOperandTypes() const
|
|---|
| 119 | {
|
|---|
| 120 | SequenceType::List result;
|
|---|
| 121 | result.append(CommonSequenceTypes::ZeroOrOneString);
|
|---|
| 122 | result.append(CommonSequenceTypes::ZeroOrOneString);
|
|---|
| 123 | return result;
|
|---|
| 124 | }
|
|---|
| 125 |
|
|---|
| 126 | Expression::Properties ComputedNamespaceConstructor::properties() const
|
|---|
| 127 | {
|
|---|
| 128 | return DisableElimination | IsNodeConstructor;
|
|---|
| 129 | }
|
|---|
| 130 |
|
|---|
| 131 | ExpressionVisitorResult::Ptr ComputedNamespaceConstructor::accept(const ExpressionVisitor::Ptr &visitor) const
|
|---|
| 132 | {
|
|---|
| 133 | return visitor->visit(this);
|
|---|
| 134 | }
|
|---|
| 135 |
|
|---|
| 136 | QT_END_NAMESPACE
|
|---|