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 |
|
---|
43 | #include "qcontextitem_p.h"
|
---|
44 | #include "qcommonsequencetypes_p.h"
|
---|
45 | #include "qemptysequence_p.h"
|
---|
46 | #include "qfunctionsignature_p.h"
|
---|
47 | #include "qgenericsequencetype_p.h"
|
---|
48 | #include "qcollationchecker_p.h"
|
---|
49 | #include "qcommonnamespaces_p.h"
|
---|
50 |
|
---|
51 | #include "qfunctioncall_p.h"
|
---|
52 |
|
---|
53 | QT_BEGIN_NAMESPACE
|
---|
54 |
|
---|
55 | using namespace QPatternist;
|
---|
56 |
|
---|
57 | SequenceType::List FunctionCall::expectedOperandTypes() const
|
---|
58 | {
|
---|
59 | const FunctionArgument::List args(signature()->arguments());
|
---|
60 | FunctionArgument::List::const_iterator it(args.constBegin());
|
---|
61 | const FunctionArgument::List::const_iterator end(args.constEnd());
|
---|
62 | // TODO reserve/resize()
|
---|
63 | SequenceType::List result;
|
---|
64 |
|
---|
65 | for(; it != end; ++it)
|
---|
66 | result.append((*it)->type());
|
---|
67 |
|
---|
68 | return result;
|
---|
69 | }
|
---|
70 |
|
---|
71 | Expression::Ptr FunctionCall::typeCheck(const StaticContext::Ptr &context,
|
---|
72 | const SequenceType::Ptr &reqType)
|
---|
73 | {
|
---|
74 | /* We don't cache properties() at some stages because it can be invalidated
|
---|
75 | * by the typeCheck(). */
|
---|
76 |
|
---|
77 | const FunctionSignature::Arity maxArgs = signature()->maximumArguments();
|
---|
78 | /* We do this before the typeCheck() such that the appropriate conversions
|
---|
79 | * are applied to the ContextItem. */
|
---|
80 | if(m_operands.count() < maxArgs &&
|
---|
81 | has(UseContextItem))
|
---|
82 | {
|
---|
83 | m_operands.append(Expression::Ptr(new ContextItem()));
|
---|
84 | context->wrapExpressionWith(this, m_operands.last());
|
---|
85 | }
|
---|
86 |
|
---|
87 | const Expression::Ptr me(UnlimitedContainer::typeCheck(context, reqType));
|
---|
88 | if(me != this)
|
---|
89 | return me;
|
---|
90 |
|
---|
91 | const Properties props(properties());
|
---|
92 |
|
---|
93 | if(props.testFlag(RewriteToEmptyOnEmpty) &&
|
---|
94 | *CommonSequenceTypes::Empty == *m_operands.first()->staticType()->itemType())
|
---|
95 | {
|
---|
96 | return EmptySequence::create(this, context);
|
---|
97 | }
|
---|
98 |
|
---|
99 | if(props.testFlag(LastOperandIsCollation) &&
|
---|
100 | m_operands.count() == maxArgs)
|
---|
101 | {
|
---|
102 | m_operands.last() = Expression::Ptr(new CollationChecker(m_operands.last()));
|
---|
103 | context->wrapExpressionWith(this, m_operands.last());
|
---|
104 | }
|
---|
105 |
|
---|
106 | return me;
|
---|
107 | }
|
---|
108 |
|
---|
109 | void FunctionCall::setSignature(const FunctionSignature::Ptr &sign)
|
---|
110 | {
|
---|
111 | m_signature = sign;
|
---|
112 | }
|
---|
113 |
|
---|
114 | FunctionSignature::Ptr FunctionCall::signature() const
|
---|
115 | {
|
---|
116 | Q_ASSERT(m_signature); /* It really should be set. */
|
---|
117 | return m_signature;
|
---|
118 | }
|
---|
119 |
|
---|
120 | SequenceType::Ptr FunctionCall::staticType() const
|
---|
121 | {
|
---|
122 | Q_ASSERT(m_signature);
|
---|
123 | if(has(EmptynessFollowsChild))
|
---|
124 | {
|
---|
125 | if(m_operands.isEmpty())
|
---|
126 | {
|
---|
127 | /* This is a function which uses the context item when having no arguments. */
|
---|
128 | return signature()->returnType();
|
---|
129 | }
|
---|
130 | const Cardinality card(m_operands.first()->staticType()->cardinality());
|
---|
131 | if(card.allowsEmpty())
|
---|
132 | return signature()->returnType();
|
---|
133 | else
|
---|
134 | {
|
---|
135 | /* Remove empty. */
|
---|
136 | return makeGenericSequenceType(signature()->returnType()->itemType(),
|
---|
137 | card & Cardinality::oneOrMore());
|
---|
138 | }
|
---|
139 | }
|
---|
140 | return signature()->returnType();
|
---|
141 | }
|
---|
142 |
|
---|
143 | Expression::Properties FunctionCall::properties() const
|
---|
144 | {
|
---|
145 | Q_ASSERT(m_signature);
|
---|
146 | return signature()->properties();
|
---|
147 | }
|
---|
148 |
|
---|
149 | ExpressionVisitorResult::Ptr FunctionCall::accept(const ExpressionVisitor::Ptr &visitor) const
|
---|
150 | {
|
---|
151 | return visitor->visit(this);
|
---|
152 | }
|
---|
153 |
|
---|
154 | Expression::ID FunctionCall::id() const
|
---|
155 | {
|
---|
156 | Q_ASSERT(m_signature);
|
---|
157 | return m_signature->id();
|
---|
158 | }
|
---|
159 |
|
---|
160 | QT_END_NAMESPACE
|
---|