--- parser3/src/classes/math.C 2004/07/28 14:38:20 1.39 +++ parser3/src/classes/math.C 2006/11/14 17:24:49 1.44 @@ -1,14 +1,14 @@ /** @file Parser: @b math parser class. - Copyright(c) 2001-2004 ArtLebedev Group(http://www.artlebedev.com) + Copyright(c) 2001-2005 ArtLebedev Group(http://www.artlebedev.com) Author: Alexandr Petrosian (http://paf.design.ru) portions from gen_uuid.c, Copyright (C) 1996, 1997, 1998, 1999 Theodore Ts'o. */ -static const char * const IDENT_MATH_C="$Date: 2004/07/28 14:38:20 $"; +static const char * const IDENT_MATH_C="$Date: 2006/11/14 17:24:49 $"; #include "pa_vmethod_frame.h" #include "pa_common.h" @@ -164,8 +164,7 @@ static inline int _random(uint top) { } static void _random(Request& r, MethodParams& params) { - Value& range=params.as_junction(0, "range must be expression"); - double top=r.process_to_value(range).as_double(); + double top=params.as_double(0, "range must be expression", r); if(top<=0 || top>MAX_UINT) throw Exception("parser.runtime", 0, @@ -181,9 +180,8 @@ static double degrees(double param) { re static double radians(double param) { return param /180 *PI; } static void math1(Request& r, MethodParams& params, math1_func_ptr func) { - Value& param=params.as_junction(0, "parameter must be expression"); - - double result=func(r.process_to_value(param).as_double()); + double param=params.as_double(0, "parameter must be expression", r); + double result=func(param); r.write_no_lang(*new VDouble(result)); } @@ -208,12 +206,9 @@ MATH1(sqrt); typedef double (*math2_func_ptr)(double, double); static void math2(Request& r, MethodParams& params, math2_func_ptr func) { - Value& a=params.as_junction(0, "parameter must be expression"); - Value& b=params.as_junction(1, "parameter must be expression"); - - double result=func( - r.process_to_value(a).as_double(), - r.process_to_value(b).as_double()); + double a=params.as_double(0, "parameter must be expression", r); + double b=params.as_double(1, "parameter must be expression", r); + double result=func(a, b); r.write_no_lang(*new VDouble(result)); } @@ -286,27 +281,9 @@ static void _crypt(Request& r, MethodPar } } -static const char* hex_string(unsigned char* bytes, size_t size, bool upcase) { - char *bytes_hex=new(PointerFreeGC) char [size*2/*byte->hh*/+1/*for zero-teminator*/]; - unsigned char *src=bytes; - unsigned char *end=bytes+size; - char *dest=bytes_hex; - - static const char *hex=upcase?"0123456789ABCDEF":"0123456789abcdef"; - - for(; src