cb5667cd3195a20c8a82169e5e0da67dca5da403
[profile/ivi/qtdeclarative.git] / src / declarative / qml / parser / qdeclarativejsengine_p.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: http://www.qt-project.org/
6 **
7 ** This file is part of the QtDeclarative module of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include "qdeclarativejsengine_p.h"
43 #include "qdeclarativejsglobal_p.h"
44
45 #include <qnumeric.h>
46 #include <QHash>
47 #include <QDebug>
48
49 QT_QML_BEGIN_NAMESPACE
50
51 namespace QDeclarativeJS {
52
53 static int toDigit(char c)
54 {
55     if ((c >= '0') && (c <= '9'))
56         return c - '0';
57     else if ((c >= 'a') && (c <= 'z'))
58         return 10 + c - 'a';
59     else if ((c >= 'A') && (c <= 'Z'))
60         return 10 + c - 'A';
61     return -1;
62 }
63
64 double integerFromString(const char *buf, int size, int radix)
65 {
66     if (size == 0)
67         return qSNaN();
68
69     double sign = 1.0;
70     int i = 0;
71     if (buf[0] == '+') {
72         ++i;
73     } else if (buf[0] == '-') {
74         sign = -1.0;
75         ++i;
76     }
77
78     if (((size-i) >= 2) && (buf[i] == '0')) {
79         if (((buf[i+1] == 'x') || (buf[i+1] == 'X'))
80             && (radix < 34)) {
81             if ((radix != 0) && (radix != 16))
82                 return 0;
83             radix = 16;
84             i += 2;
85         } else {
86             if (radix == 0) {
87                 radix = 8;
88                 ++i;
89             }
90         }
91     } else if (radix == 0) {
92         radix = 10;
93     }
94
95     int j = i;
96     for ( ; i < size; ++i) {
97         int d = toDigit(buf[i]);
98         if ((d == -1) || (d >= radix))
99             break;
100     }
101     double result;
102     if (j == i) {
103         if (!qstrcmp(buf, "Infinity"))
104             result = qInf();
105         else
106             result = qSNaN();
107     } else {
108         result = 0;
109         double multiplier = 1;
110         for (--i ; i >= j; --i, multiplier *= radix)
111             result += toDigit(buf[i]) * multiplier;
112     }
113     result *= sign;
114     return result;
115 }
116
117 double integerFromString(const QString &str, int radix)
118 {
119     QByteArray ba = str.trimmed().toLatin1();
120     return integerFromString(ba.constData(), ba.size(), radix);
121 }
122
123
124 Engine::Engine()
125     : _lexer(0)
126 { }
127
128 Engine::~Engine()
129 { }
130
131 void Engine::setCode(const QString &code)
132 { _code = code; }
133
134 void Engine::addComment(int pos, int len, int line, int col)
135 { if (len > 0) _comments.append(QDeclarativeJS::AST::SourceLocation(pos, len, line, col)); }
136
137 QList<QDeclarativeJS::AST::SourceLocation> Engine::comments() const
138 { return _comments; }
139
140 Lexer *Engine::lexer() const
141 { return _lexer; }
142
143 void Engine::setLexer(Lexer *lexer)
144 { _lexer = lexer; }
145
146 MemoryPool *Engine::pool()
147 { return &_pool; }
148
149 QStringRef Engine::newStringRef(const QString &text)
150 {
151     const int pos = _extraCode.length();
152     _extraCode += text;
153     return _extraCode.midRef(pos, text.length());
154 }
155
156 QStringRef Engine::newStringRef(const QChar *chars, int size)
157 { return newStringRef(QString(chars, size)); }
158
159 } // end of namespace QDeclarativeJS
160
161 QT_QML_END_NAMESPACE