Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 :
21 : #include <math.h>
22 :
23 : #include <rtl/math.hxx>
24 : #include "sbcomp.hxx"
25 : #include "expr.hxx"
26 :
27 :
28 0 : SbiExprNode::SbiExprNode()
29 : {
30 0 : pLeft = NULL;
31 0 : pRight = NULL;
32 0 : pWithParent = NULL;
33 0 : pGen = NULL;
34 0 : eNodeType = SbxDUMMY;
35 0 : eType = SbxVARIANT;
36 0 : eTok = NIL;
37 0 : bError = false;
38 0 : }
39 :
40 0 : SbiExprNode::SbiExprNode( SbiParser* p, SbiExprNode* l, SbiToken t, SbiExprNode* r )
41 : {
42 0 : BaseInit( p );
43 :
44 0 : pLeft = l;
45 0 : pRight = r;
46 0 : eTok = t;
47 0 : nVal = 0;
48 0 : eType = SbxVARIANT; // Nodes are always Variant
49 0 : eNodeType = SbxNODE;
50 0 : }
51 :
52 0 : SbiExprNode::SbiExprNode( SbiParser* p, double n, SbxDataType t )
53 : {
54 0 : BaseInit( p );
55 :
56 0 : eType = t;
57 0 : eNodeType = SbxNUMVAL;
58 0 : nVal = n;
59 0 : }
60 :
61 0 : SbiExprNode::SbiExprNode( SbiParser* p, const OUString& rVal )
62 : {
63 0 : BaseInit( p );
64 :
65 0 : eType = SbxSTRING;
66 0 : eNodeType = SbxSTRVAL;
67 0 : aStrVal = rVal;
68 0 : }
69 :
70 0 : SbiExprNode::SbiExprNode( SbiParser* p, const SbiSymDef& r, SbxDataType t, SbiExprList* l )
71 : {
72 0 : BaseInit( p );
73 :
74 0 : eType = ( t == SbxVARIANT ) ? r.GetType() : t;
75 0 : eNodeType = SbxVARVAL;
76 0 : aVar.pDef = (SbiSymDef*) &r;
77 0 : aVar.pPar = l;
78 0 : aVar.pvMorePar = NULL;
79 0 : aVar.pNext= NULL;
80 0 : }
81 :
82 : // #120061 TypeOf
83 0 : SbiExprNode::SbiExprNode( SbiParser* p, SbiExprNode* l, sal_uInt16 nId )
84 : {
85 0 : BaseInit( p );
86 :
87 0 : pLeft = l;
88 0 : eType = SbxBOOL;
89 0 : eNodeType = SbxTYPEOF;
90 0 : nTypeStrId = nId;
91 0 : }
92 :
93 : // new <type>
94 0 : SbiExprNode::SbiExprNode( SbiParser* p, sal_uInt16 nId )
95 : {
96 0 : BaseInit( p );
97 :
98 0 : eType = SbxOBJECT;
99 0 : eNodeType = SbxNEW;
100 0 : nTypeStrId = nId;
101 0 : }
102 :
103 : // From 1995-12-17, auxiliary function for Ctor for the uniform initialisation
104 0 : void SbiExprNode::BaseInit( SbiParser* p )
105 : {
106 0 : pGen = &p->aGen;
107 0 : eTok = NIL;
108 0 : pLeft = NULL;
109 0 : pRight = NULL;
110 0 : pWithParent = NULL;
111 0 : bError = false;
112 0 : }
113 :
114 0 : SbiExprNode::~SbiExprNode()
115 : {
116 0 : delete pLeft;
117 0 : delete pRight;
118 0 : if( IsVariable() )
119 : {
120 0 : delete aVar.pPar;
121 0 : delete aVar.pNext;
122 0 : SbiExprListVector* pvMorePar = aVar.pvMorePar;
123 0 : if( pvMorePar )
124 : {
125 0 : SbiExprListVector::iterator it;
126 0 : for( it = pvMorePar->begin() ; it != pvMorePar->end() ; ++it )
127 0 : delete *it;
128 0 : delete pvMorePar;
129 : }
130 : }
131 0 : }
132 :
133 0 : SbiSymDef* SbiExprNode::GetVar()
134 : {
135 0 : if( eNodeType == SbxVARVAL )
136 0 : return aVar.pDef;
137 : else
138 0 : return NULL;
139 : }
140 :
141 0 : SbiSymDef* SbiExprNode::GetRealVar()
142 : {
143 0 : SbiExprNode* p = GetRealNode();
144 0 : if( p )
145 0 : return p->GetVar();
146 : else
147 0 : return NULL;
148 : }
149 :
150 : // From 1995-12-18
151 0 : SbiExprNode* SbiExprNode::GetRealNode()
152 : {
153 0 : if( eNodeType == SbxVARVAL )
154 : {
155 0 : SbiExprNode* p = this;
156 0 : while( p->aVar.pNext )
157 0 : p = p->aVar.pNext;
158 0 : return p;
159 : }
160 : else
161 0 : return NULL;
162 : }
163 :
164 : // This method transform the type, if it fits into the Integer range
165 :
166 0 : bool SbiExprNode::IsIntConst()
167 : {
168 0 : if( eNodeType == SbxNUMVAL )
169 : {
170 0 : if( eType >= SbxINTEGER && eType <= SbxDOUBLE )
171 : {
172 : double n;
173 0 : if( nVal >= SbxMININT && nVal <= SbxMAXINT && modf( nVal, &n ) == 0 )
174 : {
175 0 : nVal = (double) (short) nVal;
176 0 : eType = SbxINTEGER;
177 0 : return true;
178 : }
179 : }
180 : }
181 0 : return false;
182 : }
183 :
184 0 : bool SbiExprNode::IsNumber()
185 : {
186 0 : return eNodeType == SbxNUMVAL;
187 : }
188 :
189 0 : bool SbiExprNode::IsVariable()
190 : {
191 0 : return eNodeType == SbxVARVAL;
192 : }
193 :
194 0 : bool SbiExprNode::IsLvalue()
195 : {
196 0 : return IsVariable();
197 : }
198 :
199 : // Identify of the depth of a tree
200 :
201 0 : short SbiExprNode::GetDepth()
202 : {
203 0 : if( IsOperand() ) return 0;
204 : else
205 : {
206 0 : short d1 = pLeft->GetDepth();
207 0 : short d2 = pRight->GetDepth();
208 0 : return( (d1 < d2 ) ? d2 : d1 ) + 1;
209 : }
210 : }
211 :
212 :
213 : // Adjustment of a tree:
214 : // 1. Constant Folding
215 : // 2. Type-Adjustment
216 : // 3. Conversion of the operans into Strings
217 : // 4. Lifting of the composite- and error-bits
218 :
219 0 : void SbiExprNode::Optimize()
220 : {
221 0 : FoldConstants();
222 0 : CollectBits();
223 0 : }
224 :
225 : // Lifting of the error-bits
226 :
227 0 : void SbiExprNode::CollectBits()
228 : {
229 0 : if( pLeft )
230 : {
231 0 : pLeft->CollectBits();
232 0 : bError = bError || pLeft->bError;
233 : }
234 0 : if( pRight )
235 : {
236 0 : pRight->CollectBits();
237 0 : bError = bError || pRight->bError;
238 : }
239 0 : }
240 :
241 : // If a twig can be converted, True will be returned. In this case
242 : // the result is in the left twig.
243 :
244 0 : void SbiExprNode::FoldConstants()
245 : {
246 0 : if( IsOperand() || eTok == LIKE ) return;
247 0 : if( pLeft )
248 0 : pLeft->FoldConstants();
249 0 : if( pRight )
250 : {
251 0 : pRight->FoldConstants();
252 0 : if( pLeft->IsConstant() && pRight->IsConstant()
253 0 : && pLeft->eNodeType == pRight->eNodeType )
254 : {
255 0 : CollectBits();
256 0 : if( eTok == CAT )
257 : // CAT affiliate also two numbers!
258 0 : eType = SbxSTRING;
259 0 : if( pLeft->eType == SbxSTRING )
260 : // No Type Mismatch!
261 0 : eType = SbxSTRING;
262 0 : if( eType == SbxSTRING )
263 : {
264 0 : OUString rl( pLeft->GetString() );
265 0 : OUString rr( pRight->GetString() );
266 0 : delete pLeft; pLeft = NULL;
267 0 : delete pRight; pRight = NULL;
268 0 : if( eTok == PLUS || eTok == CAT )
269 : {
270 0 : eTok = CAT;
271 : // Linking:
272 0 : aStrVal = rl;
273 0 : aStrVal += rr;
274 0 : eType = SbxSTRING;
275 0 : eNodeType = SbxSTRVAL;
276 : }
277 : else
278 : {
279 0 : eType = SbxDOUBLE;
280 0 : eNodeType = SbxNUMVAL;
281 0 : int eRes = rr.compareTo( rl );
282 0 : switch( eTok )
283 : {
284 : case EQ:
285 0 : nVal = ( eRes == 0 ) ? SbxTRUE : SbxFALSE;
286 0 : break;
287 : case NE:
288 0 : nVal = ( eRes != 0 ) ? SbxTRUE : SbxFALSE;
289 0 : break;
290 : case LT:
291 0 : nVal = ( eRes < 0 ) ? SbxTRUE : SbxFALSE;
292 0 : break;
293 : case GT:
294 0 : nVal = ( eRes > 0 ) ? SbxTRUE : SbxFALSE;
295 0 : break;
296 : case LE:
297 0 : nVal = ( eRes <= 0 ) ? SbxTRUE : SbxFALSE;
298 0 : break;
299 : case GE:
300 0 : nVal = ( eRes >= 0 ) ? SbxTRUE : SbxFALSE;
301 0 : break;
302 : default:
303 0 : pGen->GetParser()->Error( SbERR_CONVERSION );
304 0 : bError = true;
305 0 : break;
306 : }
307 0 : }
308 : }
309 : else
310 : {
311 0 : double nl = pLeft->nVal;
312 0 : double nr = pRight->nVal;
313 0 : long ll = 0, lr = 0;
314 0 : long llMod = 0, lrMod = 0;
315 0 : if( ( eTok >= AND && eTok <= IMP )
316 0 : || eTok == IDIV || eTok == MOD )
317 : {
318 : // Integer operations
319 0 : bool err = false;
320 0 : if( nl > SbxMAXLNG ) err = true, nl = SbxMAXLNG;
321 0 : else if( nl < SbxMINLNG ) err = true, nl = SbxMINLNG;
322 0 : if( nr > SbxMAXLNG ) err = true, nr = SbxMAXLNG;
323 0 : else if( nr < SbxMINLNG ) err = true, nr = SbxMINLNG;
324 0 : ll = (long) nl; lr = (long) nr;
325 0 : llMod = (long) (nl < 0 ? nl - 0.5 : nl + 0.5);
326 0 : lrMod = (long) (nr < 0 ? nr - 0.5 : nr + 0.5);
327 0 : if( err )
328 : {
329 0 : pGen->GetParser()->Error( SbERR_MATH_OVERFLOW );
330 0 : bError = true;
331 : }
332 : }
333 0 : bool bBothInt = ( pLeft->eType < SbxSINGLE
334 0 : && pRight->eType < SbxSINGLE );
335 0 : delete pLeft; pLeft = NULL;
336 0 : delete pRight; pRight = NULL;
337 0 : nVal = 0;
338 0 : eType = SbxDOUBLE;
339 0 : eNodeType = SbxNUMVAL;
340 0 : bool bCheckType = false;
341 0 : switch( eTok )
342 : {
343 : case EXPON:
344 0 : nVal = pow( nl, nr ); break;
345 : case MUL:
346 0 : bCheckType = true;
347 0 : nVal = nl * nr; break;
348 : case DIV:
349 0 : if( !nr )
350 : {
351 0 : pGen->GetParser()->Error( SbERR_ZERODIV ); nVal = HUGE_VAL;
352 0 : bError = true;
353 0 : } else nVal = nl / nr;
354 0 : break;
355 : case PLUS:
356 0 : bCheckType = true;
357 0 : nVal = nl + nr; break;
358 : case MINUS:
359 0 : bCheckType = true;
360 0 : nVal = nl - nr; break;
361 : case EQ:
362 0 : nVal = ( nl == nr ) ? SbxTRUE : SbxFALSE;
363 0 : eType = SbxINTEGER; break;
364 : case NE:
365 0 : nVal = ( nl != nr ) ? SbxTRUE : SbxFALSE;
366 0 : eType = SbxINTEGER; break;
367 : case LT:
368 0 : nVal = ( nl < nr ) ? SbxTRUE : SbxFALSE;
369 0 : eType = SbxINTEGER; break;
370 : case GT:
371 0 : nVal = ( nl > nr ) ? SbxTRUE : SbxFALSE;
372 0 : eType = SbxINTEGER; break;
373 : case LE:
374 0 : nVal = ( nl <= nr ) ? SbxTRUE : SbxFALSE;
375 0 : eType = SbxINTEGER; break;
376 : case GE:
377 0 : nVal = ( nl >= nr ) ? SbxTRUE : SbxFALSE;
378 0 : eType = SbxINTEGER; break;
379 : case IDIV:
380 0 : if( !lr )
381 : {
382 0 : pGen->GetParser()->Error( SbERR_ZERODIV ); nVal = HUGE_VAL;
383 0 : bError = true;
384 0 : } else nVal = ll / lr;
385 0 : eType = SbxLONG; break;
386 : case MOD:
387 0 : if( !lr )
388 : {
389 0 : pGen->GetParser()->Error( SbERR_ZERODIV ); nVal = HUGE_VAL;
390 0 : bError = true;
391 0 : } else nVal = llMod % lrMod;
392 0 : eType = SbxLONG; break;
393 : case AND:
394 0 : nVal = (double) ( ll & lr ); eType = SbxLONG; break;
395 : case OR:
396 0 : nVal = (double) ( ll | lr ); eType = SbxLONG; break;
397 : case XOR:
398 0 : nVal = (double) ( ll ^ lr ); eType = SbxLONG; break;
399 : case EQV:
400 0 : nVal = (double) ( ~ll ^ lr ); eType = SbxLONG; break;
401 : case IMP:
402 0 : nVal = (double) ( ~ll | lr ); eType = SbxLONG; break;
403 0 : default: break;
404 : }
405 :
406 0 : if( !::rtl::math::isFinite( nVal ) )
407 0 : pGen->GetParser()->Error( SbERR_MATH_OVERFLOW );
408 :
409 : // Recover the data type to kill rounding error
410 0 : if( bCheckType && bBothInt
411 0 : && nVal >= SbxMINLNG && nVal <= SbxMAXLNG )
412 : {
413 : // Decimal place away
414 0 : long n = (long) nVal;
415 0 : nVal = n;
416 0 : eType = ( n >= SbxMININT && n <= SbxMAXINT )
417 0 : ? SbxINTEGER : SbxLONG;
418 : }
419 : }
420 : }
421 : }
422 0 : else if( pLeft && pLeft->IsNumber() )
423 : {
424 0 : nVal = pLeft->nVal;
425 0 : delete pLeft;
426 0 : pLeft = NULL;
427 0 : eType = SbxDOUBLE;
428 0 : eNodeType = SbxNUMVAL;
429 0 : switch( eTok )
430 : {
431 : case NEG:
432 0 : nVal = -nVal; break;
433 : case NOT: {
434 : // Integer operation!
435 0 : bool err = false;
436 0 : if( nVal > SbxMAXLNG ) err = true, nVal = SbxMAXLNG;
437 0 : else if( nVal < SbxMINLNG ) err = true, nVal = SbxMINLNG;
438 0 : if( err )
439 : {
440 0 : pGen->GetParser()->Error( SbERR_MATH_OVERFLOW );
441 0 : bError = true;
442 : }
443 0 : nVal = (double) ~((long) nVal);
444 0 : eType = SbxLONG;
445 0 : } break;
446 0 : default: break;
447 : }
448 : }
449 0 : if( eNodeType == SbxNUMVAL )
450 : {
451 : // Potentially convolve in INTEGER (because of better opcode)?
452 0 : if( eType == SbxSINGLE || eType == SbxDOUBLE )
453 : {
454 : double x;
455 0 : if( nVal >= SbxMINLNG && nVal <= SbxMAXLNG
456 0 : && !modf( nVal, &x ) )
457 0 : eType = SbxLONG;
458 : }
459 0 : if( eType == SbxLONG && nVal >= SbxMININT && nVal <= SbxMAXINT )
460 0 : eType = SbxINTEGER;
461 : }
462 : }
463 :
464 :
465 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|