2007-01-05 02:13:39 +00:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
if ( !defined( 'MEDIAWIKI' ) ) {
|
|
|
|
|
die( 'This file is a MediaWiki extension, it is not a valid entry point' );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Character classes
|
|
|
|
|
define( 'EXPR_WHITE_CLASS', " \t\r\n" );
|
|
|
|
|
define( 'EXPR_NUMBER_CLASS', '0123456789.' );
|
|
|
|
|
|
|
|
|
|
// Token types
|
|
|
|
|
define( 'EXPR_WHITE', 1 );
|
|
|
|
|
define( 'EXPR_NUMBER', 2 );
|
|
|
|
|
define( 'EXPR_NEGATIVE', 3 );
|
|
|
|
|
define( 'EXPR_POSITIVE', 4 );
|
|
|
|
|
define( 'EXPR_PLUS', 5 );
|
|
|
|
|
define( 'EXPR_MINUS', 6 );
|
|
|
|
|
define( 'EXPR_TIMES', 7 );
|
|
|
|
|
define( 'EXPR_DIVIDE', 8 );
|
|
|
|
|
define( 'EXPR_MOD', 9 );
|
|
|
|
|
define( 'EXPR_OPEN', 10 );
|
|
|
|
|
define( 'EXPR_CLOSE', 11 );
|
|
|
|
|
define( 'EXPR_AND', 12 );
|
|
|
|
|
define( 'EXPR_OR', 13 );
|
|
|
|
|
define( 'EXPR_NOT', 14 );
|
|
|
|
|
define( 'EXPR_EQUALITY', 15 );
|
|
|
|
|
define( 'EXPR_LESS', 16 );
|
|
|
|
|
define( 'EXPR_GREATER', 17 );
|
|
|
|
|
define( 'EXPR_LESSEQ', 18 );
|
|
|
|
|
define( 'EXPR_GREATEREQ', 19 );
|
|
|
|
|
define( 'EXPR_NOTEQ', 20 );
|
|
|
|
|
define( 'EXPR_ROUND', 21 );
|
2008-03-28 11:59:12 +00:00
|
|
|
|
define( 'EXPR_EXPONENT', 22 );
|
* (bug 13216 ) Add trigonometrical functions sin, cos, tan, asin, acos, atan and exp, ln, abs, floor, trunc, ceil, ^, and the constants pi and e.
This should help to avoid complicate templates which simulates these functions for geocoding purposes.
Patch by Rene Kijewski
2008-04-23 15:08:39 +00:00
|
|
|
|
define( 'EXPR_SINE', 23 );
|
|
|
|
|
define( 'EXPR_COSINE', 24 );
|
|
|
|
|
define( 'EXPR_TANGENS', 25 );
|
|
|
|
|
define( 'EXPR_ARCSINE', 26 );
|
|
|
|
|
define( 'EXPR_ARCCOS', 27 );
|
|
|
|
|
define( 'EXPR_ARCTAN', 28 );
|
|
|
|
|
define( 'EXPR_EXP', 29 );
|
|
|
|
|
define( 'EXPR_LN', 30 );
|
|
|
|
|
define( 'EXPR_ABS', 31 );
|
|
|
|
|
define( 'EXPR_FLOOR', 32 );
|
|
|
|
|
define( 'EXPR_TRUNC', 33 );
|
|
|
|
|
define( 'EXPR_CEIL', 34 );
|
|
|
|
|
define( 'EXPR_POW', 35 );
|
|
|
|
|
define( 'EXPR_PI', 36 );
|
2007-01-05 02:13:39 +00:00
|
|
|
|
|
|
|
|
|
class ExprError extends Exception {
|
|
|
|
|
public function __construct($msg, $parameter = ''){
|
2008-01-13 01:06:28 +00:00
|
|
|
|
wfLoadExtensionMessages( 'ParserFunctions' );
|
2007-11-19 15:37:49 +00:00
|
|
|
|
$this->message = '<strong class="error">' . wfMsgForContent( "pfunc_expr_$msg", htmlspecialchars( $parameter ) ) . '</strong>';
|
2007-01-05 02:13:39 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class ExprParser {
|
|
|
|
|
var $maxStackSize = 100;
|
|
|
|
|
|
2008-01-13 01:06:28 +00:00
|
|
|
|
var $precedence = array(
|
2007-01-05 02:13:39 +00:00
|
|
|
|
EXPR_NEGATIVE => 10,
|
|
|
|
|
EXPR_POSITIVE => 10,
|
* (bug 13216 ) Add trigonometrical functions sin, cos, tan, asin, acos, atan and exp, ln, abs, floor, trunc, ceil, ^, and the constants pi and e.
This should help to avoid complicate templates which simulates these functions for geocoding purposes.
Patch by Rene Kijewski
2008-04-23 15:08:39 +00:00
|
|
|
|
EXPR_EXPONENT => 10,
|
|
|
|
|
EXPR_SINE => 9,
|
|
|
|
|
EXPR_COSINE => 9,
|
|
|
|
|
EXPR_TANGENS => 9,
|
|
|
|
|
EXPR_ARCSINE => 9,
|
|
|
|
|
EXPR_ARCCOS => 9,
|
|
|
|
|
EXPR_ARCTAN => 9,
|
|
|
|
|
EXPR_EXP => 9,
|
|
|
|
|
EXPR_LN => 9,
|
|
|
|
|
EXPR_ABS => 9,
|
|
|
|
|
EXPR_FLOOR => 9,
|
|
|
|
|
EXPR_TRUNC => 9,
|
|
|
|
|
EXPR_CEIL => 9,
|
2007-01-05 02:13:39 +00:00
|
|
|
|
EXPR_NOT => 9,
|
* (bug 13216 ) Add trigonometrical functions sin, cos, tan, asin, acos, atan and exp, ln, abs, floor, trunc, ceil, ^, and the constants pi and e.
This should help to avoid complicate templates which simulates these functions for geocoding purposes.
Patch by Rene Kijewski
2008-04-23 15:08:39 +00:00
|
|
|
|
EXPR_POW => 8,
|
|
|
|
|
EXPR_TIMES => 7,
|
|
|
|
|
EXPR_DIVIDE => 7,
|
|
|
|
|
EXPR_MOD => 7,
|
2007-01-05 02:13:39 +00:00
|
|
|
|
EXPR_PLUS => 6,
|
|
|
|
|
EXPR_MINUS => 6,
|
|
|
|
|
EXPR_ROUND => 5,
|
|
|
|
|
EXPR_EQUALITY => 4,
|
|
|
|
|
EXPR_LESS => 4,
|
|
|
|
|
EXPR_GREATER => 4,
|
|
|
|
|
EXPR_LESSEQ => 4,
|
|
|
|
|
EXPR_GREATEREQ => 4,
|
|
|
|
|
EXPR_NOTEQ => 4,
|
|
|
|
|
EXPR_AND => 3,
|
|
|
|
|
EXPR_OR => 2,
|
* (bug 13216 ) Add trigonometrical functions sin, cos, tan, asin, acos, atan and exp, ln, abs, floor, trunc, ceil, ^, and the constants pi and e.
This should help to avoid complicate templates which simulates these functions for geocoding purposes.
Patch by Rene Kijewski
2008-04-23 15:08:39 +00:00
|
|
|
|
EXPR_PI => 0,
|
2007-01-05 02:13:39 +00:00
|
|
|
|
EXPR_OPEN => -1,
|
2008-03-28 11:59:12 +00:00
|
|
|
|
EXPR_CLOSE => -1,
|
2007-01-05 02:13:39 +00:00
|
|
|
|
);
|
|
|
|
|
|
2007-01-06 20:56:46 +00:00
|
|
|
|
var $names = array(
|
2007-01-05 02:13:39 +00:00
|
|
|
|
EXPR_NEGATIVE => '-',
|
|
|
|
|
EXPR_POSITIVE => '+',
|
|
|
|
|
EXPR_NOT => 'not',
|
|
|
|
|
EXPR_TIMES => '*',
|
|
|
|
|
EXPR_DIVIDE => '/',
|
|
|
|
|
EXPR_MOD => 'mod',
|
|
|
|
|
EXPR_PLUS => '+',
|
|
|
|
|
EXPR_MINUS => '-',
|
|
|
|
|
EXPR_ROUND => 'round',
|
|
|
|
|
EXPR_EQUALITY => '=',
|
|
|
|
|
EXPR_LESS => '<',
|
|
|
|
|
EXPR_GREATER => '>',
|
|
|
|
|
EXPR_LESSEQ => '<=',
|
|
|
|
|
EXPR_GREATEREQ => '>=',
|
|
|
|
|
EXPR_NOTEQ => '<>',
|
|
|
|
|
EXPR_AND => 'and',
|
|
|
|
|
EXPR_OR => 'or',
|
2008-03-28 11:59:12 +00:00
|
|
|
|
EXPR_EXPONENT => 'e',
|
* (bug 13216 ) Add trigonometrical functions sin, cos, tan, asin, acos, atan and exp, ln, abs, floor, trunc, ceil, ^, and the constants pi and e.
This should help to avoid complicate templates which simulates these functions for geocoding purposes.
Patch by Rene Kijewski
2008-04-23 15:08:39 +00:00
|
|
|
|
EXPR_SINE => 'sin',
|
|
|
|
|
EXPR_COSINE => 'cos',
|
|
|
|
|
EXPR_TANGENS => 'tan',
|
|
|
|
|
EXPR_ARCSINE => 'asin',
|
|
|
|
|
EXPR_ARCCOS => 'acos',
|
|
|
|
|
EXPR_ARCTAN => 'atan',
|
|
|
|
|
EXPR_LN => 'ln',
|
|
|
|
|
EXPR_EXP => 'exp',
|
|
|
|
|
EXPR_ABS => 'abs',
|
|
|
|
|
EXPR_FLOOR => 'floor',
|
|
|
|
|
EXPR_TRUNC => 'trunc',
|
|
|
|
|
EXPR_CEIL => 'ceil',
|
|
|
|
|
EXPR_POW => '^',
|
|
|
|
|
EXPR_PI => 'pi',
|
2007-01-05 02:13:39 +00:00
|
|
|
|
);
|
2007-01-06 20:56:46 +00:00
|
|
|
|
|
2007-01-05 02:13:39 +00:00
|
|
|
|
|
|
|
|
|
var $words = array(
|
|
|
|
|
'mod' => EXPR_MOD,
|
|
|
|
|
'and' => EXPR_AND,
|
|
|
|
|
'or' => EXPR_OR,
|
|
|
|
|
'not' => EXPR_NOT,
|
|
|
|
|
'round' => EXPR_ROUND,
|
2008-03-28 11:59:12 +00:00
|
|
|
|
'div' => EXPR_DIVIDE,
|
|
|
|
|
'e' => EXPR_EXPONENT,
|
* (bug 13216 ) Add trigonometrical functions sin, cos, tan, asin, acos, atan and exp, ln, abs, floor, trunc, ceil, ^, and the constants pi and e.
This should help to avoid complicate templates which simulates these functions for geocoding purposes.
Patch by Rene Kijewski
2008-04-23 15:08:39 +00:00
|
|
|
|
'sin' => EXPR_SINE,
|
|
|
|
|
'cos' => EXPR_COSINE,
|
|
|
|
|
'tan' => EXPR_TANGENS,
|
|
|
|
|
'asin' => EXPR_ARCSINE,
|
|
|
|
|
'acos' => EXPR_ARCCOS,
|
|
|
|
|
'atan' => EXPR_ARCTAN,
|
|
|
|
|
'exp' => EXPR_EXP,
|
|
|
|
|
'ln' => EXPR_LN,
|
|
|
|
|
'abs' => EXPR_ABS,
|
|
|
|
|
'trunc' => EXPR_TRUNC,
|
|
|
|
|
'floor' => EXPR_FLOOR,
|
|
|
|
|
'ceil' => EXPR_CEIL,
|
|
|
|
|
'pi' => EXPR_PI,
|
2007-01-05 02:13:39 +00:00
|
|
|
|
);
|
|
|
|
|
|
2009-02-01 03:56:24 +00:00
|
|
|
|
/**
|
|
|
|
|
* Checks if $expr is an integer within one part in 10^10.
|
|
|
|
|
* If so, recast as integer and return, else return $expr unchanged.
|
|
|
|
|
*
|
|
|
|
|
* Explicit checking for round-off errors should eliminate
|
|
|
|
|
* many bugs associated with floating point conversion to integers.
|
|
|
|
|
*/
|
|
|
|
|
function checkInteger( $expr ) {
|
|
|
|
|
$intval = (int)$expr;
|
|
|
|
|
|
|
|
|
|
if( $expr >= 0 ) {
|
|
|
|
|
if( $expr - $intval > 0.9999999999 ) { $intval += 1; }
|
|
|
|
|
} else {
|
|
|
|
|
if( $expr - $intval < -0.9999999999 ) { $intval -= 1; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( abs( $intval - $expr ) < 0.0000000001 ) {
|
|
|
|
|
return $intval;
|
|
|
|
|
} else {
|
|
|
|
|
return $expr;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2007-01-05 02:13:39 +00:00
|
|
|
|
/**
|
|
|
|
|
* Evaluate a mathematical expression
|
|
|
|
|
*
|
|
|
|
|
* The algorithm here is based on the infix to RPN algorithm given in
|
|
|
|
|
* http://montcs.bloomu.edu/~bobmon/Information/RPN/infix2rpn.shtml
|
|
|
|
|
* It's essentially the same as Dijkstra's shunting yard algorithm.
|
|
|
|
|
*/
|
|
|
|
|
function doExpression( $expr ) {
|
|
|
|
|
$operands = array();
|
|
|
|
|
$operators = array();
|
|
|
|
|
|
|
|
|
|
# Unescape inequality operators
|
2008-09-12 22:06:58 +00:00
|
|
|
|
$expr = strtr( $expr, array( '<' => '<', '>' => '>',
|
|
|
|
|
'−' => '-', '−' => '-' ) );
|
2007-01-06 20:56:46 +00:00
|
|
|
|
|
2007-01-05 02:13:39 +00:00
|
|
|
|
$p = 0;
|
|
|
|
|
$end = strlen( $expr );
|
|
|
|
|
$expecting = 'expression';
|
|
|
|
|
|
|
|
|
|
while ( $p < $end ) {
|
|
|
|
|
if ( count( $operands ) > $this->maxStackSize || count( $operators ) > $this->maxStackSize ) {
|
|
|
|
|
throw new ExprError('stack_exhausted');
|
|
|
|
|
}
|
|
|
|
|
$char = $expr[$p];
|
|
|
|
|
$char2 = substr( $expr, $p, 2 );
|
2007-01-06 20:56:46 +00:00
|
|
|
|
|
2007-01-05 02:13:39 +00:00
|
|
|
|
// Mega if-elseif-else construct
|
2008-01-13 01:06:28 +00:00
|
|
|
|
// Only binary operators fall through for processing at the bottom, the rest
|
2007-01-05 02:13:39 +00:00
|
|
|
|
// finish their processing and continue
|
|
|
|
|
|
|
|
|
|
// First the unlimited length classes
|
2007-01-06 20:56:46 +00:00
|
|
|
|
|
2007-01-05 02:13:39 +00:00
|
|
|
|
if ( false !== strpos( EXPR_WHITE_CLASS, $char ) ) {
|
|
|
|
|
// Whitespace
|
|
|
|
|
$p += strspn( $expr, EXPR_WHITE_CLASS, $p );
|
|
|
|
|
continue;
|
|
|
|
|
} elseif ( false !== strpos( EXPR_NUMBER_CLASS, $char ) ) {
|
|
|
|
|
// Number
|
|
|
|
|
if ( $expecting != 'expression' ) {
|
|
|
|
|
throw new ExprError('unexpected_number');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Find the rest of it
|
|
|
|
|
$length = strspn( $expr, EXPR_NUMBER_CLASS, $p );
|
|
|
|
|
// Convert it to float, silently removing double decimal points
|
|
|
|
|
$operands[] = floatval( substr( $expr, $p, $length ) );
|
|
|
|
|
$p += $length;
|
|
|
|
|
$expecting = 'operator';
|
|
|
|
|
continue;
|
|
|
|
|
} elseif ( ctype_alpha( $char ) ) {
|
|
|
|
|
// Word
|
|
|
|
|
// Find the rest of it
|
|
|
|
|
$remaining = substr( $expr, $p );
|
|
|
|
|
if ( !preg_match( '/^[A-Za-z]*/', $remaining, $matches ) ) {
|
|
|
|
|
// This should be unreachable
|
|
|
|
|
throw new ExprError('preg_match_failure');
|
|
|
|
|
}
|
|
|
|
|
$word = strtolower( $matches[0] );
|
|
|
|
|
$p += strlen( $word );
|
|
|
|
|
|
|
|
|
|
// Interpret the word
|
|
|
|
|
if ( !isset( $this->words[$word] ) ){
|
|
|
|
|
throw new ExprError('unrecognised_word', $word);
|
|
|
|
|
}
|
|
|
|
|
$op = $this->words[$word];
|
* (bug 13216 ) Add trigonometrical functions sin, cos, tan, asin, acos, atan and exp, ln, abs, floor, trunc, ceil, ^, and the constants pi and e.
This should help to avoid complicate templates which simulates these functions for geocoding purposes.
Patch by Rene Kijewski
2008-04-23 15:08:39 +00:00
|
|
|
|
switch( $op ) {
|
|
|
|
|
// constant
|
|
|
|
|
case EXPR_EXPONENT:
|
|
|
|
|
if ( $expecting != 'expression' ) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
$operands[] = exp(1);
|
|
|
|
|
$expecting = 'operator';
|
|
|
|
|
continue 2;
|
|
|
|
|
case EXPR_PI:
|
|
|
|
|
if ( $expecting != 'expression' ) {
|
|
|
|
|
throw new ExprError( 'unexpected_number' );
|
|
|
|
|
}
|
|
|
|
|
$operands[] = pi();
|
|
|
|
|
$expecting = 'operator';
|
|
|
|
|
continue 2;
|
2007-01-05 02:13:39 +00:00
|
|
|
|
// Unary operator
|
|
|
|
|
case EXPR_NOT:
|
* (bug 13216 ) Add trigonometrical functions sin, cos, tan, asin, acos, atan and exp, ln, abs, floor, trunc, ceil, ^, and the constants pi and e.
This should help to avoid complicate templates which simulates these functions for geocoding purposes.
Patch by Rene Kijewski
2008-04-23 15:08:39 +00:00
|
|
|
|
case EXPR_SINE:
|
|
|
|
|
case EXPR_COSINE:
|
|
|
|
|
case EXPR_TANGENS:
|
|
|
|
|
case EXPR_ARCSINE:
|
|
|
|
|
case EXPR_ARCCOS:
|
|
|
|
|
case EXPR_ARCTAN:
|
|
|
|
|
case EXPR_EXP:
|
|
|
|
|
case EXPR_LN:
|
|
|
|
|
case EXPR_ABS:
|
|
|
|
|
case EXPR_FLOOR:
|
|
|
|
|
case EXPR_TRUNC:
|
|
|
|
|
case EXPR_CEIL:
|
2007-01-06 20:56:46 +00:00
|
|
|
|
if ( $expecting != 'expression' ) {
|
* (bug 13216 ) Add trigonometrical functions sin, cos, tan, asin, acos, atan and exp, ln, abs, floor, trunc, ceil, ^, and the constants pi and e.
This should help to avoid complicate templates which simulates these functions for geocoding purposes.
Patch by Rene Kijewski
2008-04-23 15:08:39 +00:00
|
|
|
|
throw new ExprError( 'unexpected_operator', $word );
|
2007-01-05 02:13:39 +00:00
|
|
|
|
}
|
|
|
|
|
$operators[] = $op;
|
|
|
|
|
continue 2;
|
|
|
|
|
}
|
|
|
|
|
// Binary operator, fall through
|
|
|
|
|
$name = $word;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Next the two-character operators
|
2007-01-06 20:56:46 +00:00
|
|
|
|
|
2007-01-05 02:13:39 +00:00
|
|
|
|
elseif ( $char2 == '<=' ) {
|
|
|
|
|
$name = $char2;
|
|
|
|
|
$op = EXPR_LESSEQ;
|
|
|
|
|
$p += 2;
|
|
|
|
|
} elseif ( $char2 == '>=' ) {
|
|
|
|
|
$name = $char2;
|
|
|
|
|
$op = EXPR_GREATEREQ;
|
|
|
|
|
$p += 2;
|
|
|
|
|
} elseif ( $char2 == '<>' || $char2 == '!=' ) {
|
|
|
|
|
$name = $char2;
|
|
|
|
|
$op = EXPR_NOTEQ;
|
|
|
|
|
$p += 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Finally the single-character operators
|
2008-03-28 11:59:12 +00:00
|
|
|
|
|
2007-01-05 02:13:39 +00:00
|
|
|
|
elseif ( $char == '+' ) {
|
|
|
|
|
++$p;
|
|
|
|
|
if ( $expecting == 'expression' ) {
|
|
|
|
|
// Unary plus
|
|
|
|
|
$operators[] = EXPR_POSITIVE;
|
|
|
|
|
continue;
|
|
|
|
|
} else {
|
|
|
|
|
// Binary plus
|
|
|
|
|
$op = EXPR_PLUS;
|
|
|
|
|
}
|
|
|
|
|
} elseif ( $char == '-' ) {
|
|
|
|
|
++$p;
|
|
|
|
|
if ( $expecting == 'expression' ) {
|
|
|
|
|
// Unary minus
|
|
|
|
|
$operators[] = EXPR_NEGATIVE;
|
|
|
|
|
continue;
|
|
|
|
|
} else {
|
|
|
|
|
// Binary minus
|
|
|
|
|
$op = EXPR_MINUS;
|
|
|
|
|
}
|
|
|
|
|
} elseif ( $char == '*' ) {
|
|
|
|
|
$name = $char;
|
|
|
|
|
$op = EXPR_TIMES;
|
|
|
|
|
++$p;
|
|
|
|
|
} elseif ( $char == '/' ) {
|
|
|
|
|
$name = $char;
|
|
|
|
|
$op = EXPR_DIVIDE;
|
|
|
|
|
++$p;
|
* (bug 13216 ) Add trigonometrical functions sin, cos, tan, asin, acos, atan and exp, ln, abs, floor, trunc, ceil, ^, and the constants pi and e.
This should help to avoid complicate templates which simulates these functions for geocoding purposes.
Patch by Rene Kijewski
2008-04-23 15:08:39 +00:00
|
|
|
|
} elseif ( $char == '^' ) {
|
|
|
|
|
$name = $char;
|
|
|
|
|
$op = EXPR_POW;
|
|
|
|
|
++$p;
|
2007-01-05 02:13:39 +00:00
|
|
|
|
} elseif ( $char == '(' ) {
|
|
|
|
|
if ( $expecting == 'operator' ) {
|
|
|
|
|
throw new ExprError('unexpected_operator', '(');
|
|
|
|
|
}
|
|
|
|
|
$operators[] = EXPR_OPEN;
|
|
|
|
|
++$p;
|
|
|
|
|
continue;
|
|
|
|
|
} elseif ( $char == ')' ) {
|
|
|
|
|
$lastOp = end( $operators );
|
|
|
|
|
while ( $lastOp && $lastOp != EXPR_OPEN ) {
|
|
|
|
|
$this->doOperation( $lastOp, $operands );
|
|
|
|
|
array_pop( $operators );
|
|
|
|
|
$lastOp = end( $operators );
|
|
|
|
|
}
|
|
|
|
|
if ( $lastOp ) {
|
|
|
|
|
array_pop( $operators );
|
|
|
|
|
} else {
|
|
|
|
|
throw new ExprError('unexpected_closing_bracket');
|
|
|
|
|
}
|
|
|
|
|
$expecting = 'operator';
|
|
|
|
|
++$p;
|
|
|
|
|
continue;
|
|
|
|
|
} elseif ( $char == '=' ) {
|
|
|
|
|
$name = $char;
|
|
|
|
|
$op = EXPR_EQUALITY;
|
|
|
|
|
++$p;
|
|
|
|
|
} elseif ( $char == '<' ) {
|
|
|
|
|
$name = $char;
|
|
|
|
|
$op = EXPR_LESS;
|
|
|
|
|
++$p;
|
|
|
|
|
} elseif ( $char == '>' ) {
|
|
|
|
|
$name = $char;
|
|
|
|
|
$op = EXPR_GREATER;
|
|
|
|
|
++$p;
|
|
|
|
|
} else {
|
2007-08-31 14:08:16 +00:00
|
|
|
|
throw new ExprError('unrecognised_punctuation', UtfNormal::cleanUp( $char ));
|
2007-01-05 02:13:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Binary operator processing
|
|
|
|
|
if ( $expecting == 'expression' ) {
|
|
|
|
|
throw new ExprError('unexpected_operator', $name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Shunting yard magic
|
|
|
|
|
$lastOp = end( $operators );
|
|
|
|
|
while ( $lastOp && $this->precedence[$op] <= $this->precedence[$lastOp] ) {
|
|
|
|
|
$this->doOperation( $lastOp, $operands );
|
|
|
|
|
array_pop( $operators );
|
|
|
|
|
$lastOp = end( $operators );
|
|
|
|
|
}
|
|
|
|
|
$operators[] = $op;
|
|
|
|
|
$expecting = 'expression';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Finish off the operator array
|
|
|
|
|
while ( $op = array_pop( $operators ) ) {
|
|
|
|
|
if ( $op == EXPR_OPEN ) {
|
|
|
|
|
throw new ExprError('unclosed_bracket');
|
|
|
|
|
}
|
2007-01-06 20:56:46 +00:00
|
|
|
|
$this->doOperation( $op, $operands );
|
2007-01-05 02:13:39 +00:00
|
|
|
|
}
|
2007-01-06 20:56:46 +00:00
|
|
|
|
|
2007-01-05 02:13:39 +00:00
|
|
|
|
return implode( "<br />\n", $operands );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function doOperation( $op, &$stack ) {
|
|
|
|
|
switch ( $op ) {
|
|
|
|
|
case EXPR_NEGATIVE:
|
|
|
|
|
if ( count( $stack ) < 1 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$arg = array_pop( $stack );
|
|
|
|
|
$stack[] = -$arg;
|
|
|
|
|
break;
|
|
|
|
|
case EXPR_POSITIVE:
|
|
|
|
|
if ( count( $stack ) < 1 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
break;
|
|
|
|
|
case EXPR_TIMES:
|
|
|
|
|
if ( count( $stack ) < 2 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$right = array_pop( $stack );
|
|
|
|
|
$left = array_pop( $stack );
|
|
|
|
|
$stack[] = $left * $right;
|
|
|
|
|
break;
|
|
|
|
|
case EXPR_DIVIDE:
|
|
|
|
|
if ( count( $stack ) < 2 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$right = array_pop( $stack );
|
|
|
|
|
$left = array_pop( $stack );
|
|
|
|
|
if ( $right == 0 ) throw new ExprError('division_by_zero', $this->names[$op]);
|
|
|
|
|
$stack[] = $left / $right;
|
|
|
|
|
break;
|
|
|
|
|
case EXPR_MOD:
|
|
|
|
|
if ( count( $stack ) < 2 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$right = array_pop( $stack );
|
|
|
|
|
$left = array_pop( $stack );
|
|
|
|
|
if ( $right == 0 ) throw new ExprError('division_by_zero', $this->names[$op]);
|
2009-02-01 03:56:24 +00:00
|
|
|
|
$stack[] = $this->checkInteger( $left ) % $this->checkInteger( $right );
|
2007-01-05 02:13:39 +00:00
|
|
|
|
break;
|
|
|
|
|
case EXPR_PLUS:
|
|
|
|
|
if ( count( $stack ) < 2 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$right = array_pop( $stack );
|
|
|
|
|
$left = array_pop( $stack );
|
|
|
|
|
$stack[] = $left + $right;
|
|
|
|
|
break;
|
|
|
|
|
case EXPR_MINUS:
|
|
|
|
|
if ( count( $stack ) < 2 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$right = array_pop( $stack );
|
|
|
|
|
$left = array_pop( $stack );
|
|
|
|
|
$stack[] = $left - $right;
|
|
|
|
|
break;
|
|
|
|
|
case EXPR_AND:
|
|
|
|
|
if ( count( $stack ) < 2 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$right = array_pop( $stack );
|
|
|
|
|
$left = array_pop( $stack );
|
|
|
|
|
$stack[] = ( $left && $right ) ? 1 : 0;
|
|
|
|
|
break;
|
|
|
|
|
case EXPR_OR:
|
|
|
|
|
if ( count( $stack ) < 2 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$right = array_pop( $stack );
|
|
|
|
|
$left = array_pop( $stack );
|
|
|
|
|
$stack[] = ( $left || $right ) ? 1 : 0;
|
|
|
|
|
break;
|
|
|
|
|
case EXPR_EQUALITY:
|
|
|
|
|
if ( count( $stack ) < 2 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$right = array_pop( $stack );
|
|
|
|
|
$left = array_pop( $stack );
|
2009-02-01 03:56:24 +00:00
|
|
|
|
$stack[] = ( $this->checkInteger( $left ) == $this->checkInteger( $right ) ) ? 1 : 0;
|
2007-01-05 02:13:39 +00:00
|
|
|
|
break;
|
|
|
|
|
case EXPR_NOT:
|
|
|
|
|
if ( count( $stack ) < 1 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$arg = array_pop( $stack );
|
|
|
|
|
$stack[] = (!$arg) ? 1 : 0;
|
|
|
|
|
break;
|
|
|
|
|
case EXPR_ROUND:
|
|
|
|
|
if ( count( $stack ) < 2 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$digits = intval( array_pop( $stack ) );
|
|
|
|
|
$value = array_pop( $stack );
|
2009-02-01 03:56:24 +00:00
|
|
|
|
$stack[] = round( $this->checkInteger( $value ), $digits );
|
2007-01-05 02:13:39 +00:00
|
|
|
|
break;
|
|
|
|
|
case EXPR_LESS:
|
|
|
|
|
if ( count( $stack ) < 2 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$right = array_pop( $stack );
|
|
|
|
|
$left = array_pop( $stack );
|
2009-02-01 03:56:24 +00:00
|
|
|
|
$stack[] = ( $this->checkInteger( $left ) < $this->checkInteger( $right ) ) ? 1 : 0;
|
2007-01-05 02:13:39 +00:00
|
|
|
|
break;
|
|
|
|
|
case EXPR_GREATER:
|
|
|
|
|
if ( count( $stack ) < 2 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$right = array_pop( $stack );
|
|
|
|
|
$left = array_pop( $stack );
|
2009-02-01 03:56:24 +00:00
|
|
|
|
$stack[] = ( $this->checkInteger( $left ) > $this->checkInteger( $right ) ) ? 1 : 0;
|
2007-01-05 02:13:39 +00:00
|
|
|
|
break;
|
|
|
|
|
case EXPR_LESSEQ:
|
|
|
|
|
if ( count( $stack ) < 2 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$right = array_pop( $stack );
|
|
|
|
|
$left = array_pop( $stack );
|
2009-02-01 03:56:24 +00:00
|
|
|
|
$stack[] = ( $this->checkInteger( $left ) <= $this->checkInteger( $right ) ) ? 1 : 0;
|
2007-01-05 02:13:39 +00:00
|
|
|
|
break;
|
|
|
|
|
case EXPR_GREATEREQ:
|
|
|
|
|
if ( count( $stack ) < 2 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$right = array_pop( $stack );
|
|
|
|
|
$left = array_pop( $stack );
|
2009-02-01 03:56:24 +00:00
|
|
|
|
$stack[] = ( $this->checkInteger( $left ) >= $this->checkInteger( $right ) ) ? 1 : 0;
|
2007-01-05 02:13:39 +00:00
|
|
|
|
break;
|
|
|
|
|
case EXPR_NOTEQ:
|
|
|
|
|
if ( count( $stack ) < 2 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$right = array_pop( $stack );
|
|
|
|
|
$left = array_pop( $stack );
|
2009-02-01 03:56:24 +00:00
|
|
|
|
$stack[] = ( $this->checkInteger( $left ) != $this->checkInteger( $right ) ) ? 1 : 0;
|
2007-01-05 02:13:39 +00:00
|
|
|
|
break;
|
2008-03-28 11:59:12 +00:00
|
|
|
|
case EXPR_EXPONENT:
|
|
|
|
|
if ( count( $stack ) < 2 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$right = array_pop( $stack );
|
|
|
|
|
$left = array_pop( $stack );
|
2009-02-01 03:56:24 +00:00
|
|
|
|
$stack[] = $left * pow(10, $this->checkInteger( $right ) );
|
2008-03-28 11:59:12 +00:00
|
|
|
|
break;
|
* (bug 13216 ) Add trigonometrical functions sin, cos, tan, asin, acos, atan and exp, ln, abs, floor, trunc, ceil, ^, and the constants pi and e.
This should help to avoid complicate templates which simulates these functions for geocoding purposes.
Patch by Rene Kijewski
2008-04-23 15:08:39 +00:00
|
|
|
|
case EXPR_SINE:
|
|
|
|
|
if ( count( $stack ) < 1 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$arg = array_pop( $stack );
|
|
|
|
|
$stack[] = sin($arg);
|
|
|
|
|
break;
|
|
|
|
|
case EXPR_COSINE:
|
|
|
|
|
if ( count( $stack ) < 1 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$arg = array_pop( $stack );
|
|
|
|
|
$stack[] = cos($arg);
|
|
|
|
|
break;
|
|
|
|
|
case EXPR_TANGENS:
|
|
|
|
|
if ( count( $stack ) < 1 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$arg = array_pop( $stack );
|
|
|
|
|
$stack[] = tan($arg);
|
|
|
|
|
break;
|
|
|
|
|
case EXPR_ARCSINE:
|
|
|
|
|
if ( count( $stack ) < 1 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$arg = array_pop( $stack );
|
|
|
|
|
if ( $arg < -1 || $arg > 1 ) throw new ExprError('invalid_argument', $this->names[$op] );
|
|
|
|
|
$stack[] = asin($arg);
|
|
|
|
|
break;
|
|
|
|
|
case EXPR_ARCCOS:
|
|
|
|
|
if ( count( $stack ) < 1 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$arg = array_pop( $stack );
|
|
|
|
|
if ( $arg < -1 || $arg > 1 ) throw new ExprError('invalid_argument', $this->names[$op] );
|
|
|
|
|
$stack[] = acos($arg);
|
|
|
|
|
break;
|
|
|
|
|
case EXPR_ARCTAN:
|
|
|
|
|
if ( count( $stack ) < 1 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$arg = array_pop( $stack );
|
|
|
|
|
$stack[] = atan($arg);
|
|
|
|
|
break;
|
|
|
|
|
case EXPR_EXP:
|
|
|
|
|
if ( count( $stack ) < 1 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$arg = array_pop( $stack );
|
|
|
|
|
$stack[] = exp($arg);
|
|
|
|
|
break;
|
|
|
|
|
case EXPR_LN:
|
|
|
|
|
if ( count( $stack ) < 1 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$arg = array_pop( $stack );
|
|
|
|
|
if ( $arg <= 0 ) throw new ExprError('invalid_argument_ln', $this->names[$op]);
|
|
|
|
|
$stack[] = log($arg);
|
|
|
|
|
break;
|
|
|
|
|
case EXPR_ABS:
|
|
|
|
|
if ( count( $stack ) < 1 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$arg = array_pop( $stack );
|
|
|
|
|
$stack[] = abs($arg);
|
|
|
|
|
break;
|
|
|
|
|
case EXPR_FLOOR:
|
|
|
|
|
if ( count( $stack ) < 1 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$arg = array_pop( $stack );
|
2009-02-01 03:56:24 +00:00
|
|
|
|
$stack[] = floor( $this->checkInteger( $arg ) );
|
* (bug 13216 ) Add trigonometrical functions sin, cos, tan, asin, acos, atan and exp, ln, abs, floor, trunc, ceil, ^, and the constants pi and e.
This should help to avoid complicate templates which simulates these functions for geocoding purposes.
Patch by Rene Kijewski
2008-04-23 15:08:39 +00:00
|
|
|
|
break;
|
|
|
|
|
case EXPR_TRUNC:
|
|
|
|
|
if ( count( $stack ) < 1 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$arg = array_pop( $stack );
|
2009-02-01 03:56:24 +00:00
|
|
|
|
$stack[] = (int)( $this->checkInteger( $arg ) );
|
* (bug 13216 ) Add trigonometrical functions sin, cos, tan, asin, acos, atan and exp, ln, abs, floor, trunc, ceil, ^, and the constants pi and e.
This should help to avoid complicate templates which simulates these functions for geocoding purposes.
Patch by Rene Kijewski
2008-04-23 15:08:39 +00:00
|
|
|
|
break;
|
|
|
|
|
case EXPR_CEIL:
|
|
|
|
|
if ( count( $stack ) < 1 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$arg = array_pop( $stack );
|
2009-02-01 03:56:24 +00:00
|
|
|
|
$stack[] = ceil( $this->checkInteger( $arg ) );
|
* (bug 13216 ) Add trigonometrical functions sin, cos, tan, asin, acos, atan and exp, ln, abs, floor, trunc, ceil, ^, and the constants pi and e.
This should help to avoid complicate templates which simulates these functions for geocoding purposes.
Patch by Rene Kijewski
2008-04-23 15:08:39 +00:00
|
|
|
|
break;
|
|
|
|
|
case EXPR_POW:
|
|
|
|
|
if ( count( $stack ) < 2 ) throw new ExprError('missing_operand', $this->names[$op]);
|
|
|
|
|
$right = array_pop( $stack );
|
|
|
|
|
$left = array_pop( $stack );
|
|
|
|
|
if ( false === ($stack[] = pow($left, $right)) ) throw new ExprError('division_by_zero', $this->names[$op]);
|
|
|
|
|
break;
|
2007-01-05 02:13:39 +00:00
|
|
|
|
default:
|
|
|
|
|
// Should be impossible to reach here.
|
|
|
|
|
throw new ExprError('unknown_error');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|