1 | /**************************************************************************** |
2 | ** |
3 | ** Copyright (C) 2016 The Qt Company Ltd. |
4 | ** Contact: https://www.qt.io/licensing/ |
5 | ** |
6 | ** This file is part of the QtXmlPatterns module of the Qt Toolkit. |
7 | ** |
8 | ** $QT_BEGIN_LICENSE:LGPL$ |
9 | ** Commercial License Usage |
10 | ** Licensees holding valid commercial Qt licenses may use this file in |
11 | ** accordance with the commercial license agreement provided with the |
12 | ** Software or, alternatively, in accordance with the terms contained in |
13 | ** a written agreement between you and The Qt Company. For licensing terms |
14 | ** and conditions see https://www.qt.io/terms-conditions. For further |
15 | ** information use the contact form at https://www.qt.io/contact-us. |
16 | ** |
17 | ** GNU Lesser General Public License Usage |
18 | ** Alternatively, this file may be used under the terms of the GNU Lesser |
19 | ** General Public License version 3 as published by the Free Software |
20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the |
21 | ** packaging of this file. Please review the following information to |
22 | ** ensure the GNU Lesser General Public License version 3 requirements |
23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. |
24 | ** |
25 | ** GNU General Public License Usage |
26 | ** Alternatively, this file may be used under the terms of the GNU |
27 | ** General Public License version 2.0 or (at your option) the GNU General |
28 | ** Public license version 3 or any later version approved by the KDE Free |
29 | ** Qt Foundation. The licenses are as published by the Free Software |
30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 |
31 | ** included in the packaging of this file. Please review the following |
32 | ** information to ensure the GNU General Public License requirements will |
33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and |
34 | ** https://www.gnu.org/licenses/gpl-3.0.html. |
35 | ** |
36 | ** $QT_END_LICENSE$ |
37 | ** |
38 | ****************************************************************************/ |
39 | |
40 | #include "qxmlname.h" |
41 | |
42 | #include "qfunctionsignature_p.h" |
43 | |
44 | QT_BEGIN_NAMESPACE |
45 | |
46 | using namespace QPatternist; |
47 | |
48 | FunctionSignature::FunctionSignature(const QXmlName nameP, |
49 | const Arity minArgs, |
50 | const Arity maxArgs, |
51 | const SequenceType::Ptr &returnTypeP, |
52 | const Expression::Properties props, |
53 | const Expression::ID idP) : CallTargetDescription(nameP) |
54 | , m_minArgs(minArgs) |
55 | , m_maxArgs(maxArgs) |
56 | , m_returnType(returnTypeP) |
57 | , m_arguments() |
58 | , m_props(props) |
59 | , m_id(idP) |
60 | { |
61 | Q_ASSERT(minArgs <= maxArgs || maxArgs == FunctionSignature::UnlimitedArity); |
62 | Q_ASSERT(m_maxArgs >= -1); |
63 | Q_ASSERT(returnTypeP); |
64 | } |
65 | |
66 | void FunctionSignature::appendArgument(const QXmlName::LocalNameCode nameP, |
67 | const SequenceType::Ptr &type) |
68 | { |
69 | Q_ASSERT(type); |
70 | |
71 | m_arguments.append(t: FunctionArgument::Ptr(new FunctionArgument(QXmlName(StandardNamespaces::empty, nameP), type))); |
72 | } |
73 | |
74 | QString FunctionSignature::displayName(const NamePool::Ptr &np) const |
75 | { |
76 | QString result; |
77 | result += np->displayName(qName: name()); |
78 | result += QLatin1Char('('); |
79 | |
80 | FunctionArgument::List::const_iterator it(m_arguments.constBegin()); |
81 | const FunctionArgument::List::const_iterator end(m_arguments.constEnd()); |
82 | |
83 | if(it != end) |
84 | { |
85 | while(true) |
86 | { |
87 | result += QLatin1Char('$'); |
88 | result += np->displayName(qName: (*it)->name()); |
89 | result += QLatin1String(" as " ); |
90 | result += (*it)->type()->displayName(np); |
91 | |
92 | ++it; |
93 | if(it == end) |
94 | break; |
95 | |
96 | result += QLatin1String(", " ); |
97 | } |
98 | } |
99 | |
100 | if(m_maxArgs == FunctionSignature::UnlimitedArity) |
101 | result += QLatin1String(", ..." ); |
102 | |
103 | result += QLatin1String(") as " ); |
104 | result += m_returnType->displayName(np); |
105 | |
106 | return result; |
107 | } |
108 | |
109 | bool FunctionSignature::operator==(const FunctionSignature &other) const |
110 | { |
111 | return name() == other.name() && |
112 | isArityValid(arity: other.maximumArguments()) && |
113 | isArityValid(arity: other.minimumArguments()); |
114 | } |
115 | |
116 | void FunctionSignature::setArguments(const FunctionArgument::List &args) |
117 | { |
118 | m_arguments = args; |
119 | } |
120 | |
121 | FunctionArgument::List FunctionSignature::arguments() const |
122 | { |
123 | return m_arguments; |
124 | } |
125 | |
126 | bool FunctionSignature::isArityValid(const xsInteger arity) const |
127 | { |
128 | return arity >= m_minArgs && arity <= m_maxArgs; |
129 | } |
130 | |
131 | FunctionSignature::Arity FunctionSignature::minimumArguments() const |
132 | { |
133 | return m_minArgs; |
134 | } |
135 | |
136 | FunctionSignature::Arity FunctionSignature::maximumArguments() const |
137 | { |
138 | return m_maxArgs; |
139 | } |
140 | |
141 | SequenceType::Ptr FunctionSignature::returnType() const |
142 | { |
143 | return m_returnType; |
144 | } |
145 | |
146 | Expression::Properties FunctionSignature::properties() const |
147 | { |
148 | return m_props; |
149 | } |
150 | |
151 | Expression::ID FunctionSignature::id() const |
152 | { |
153 | return m_id; |
154 | } |
155 | |
156 | QT_END_NAMESPACE |
157 | |