--- parser3/src/classes/double.C 2005/08/26 11:12:45 1.59 +++ parser3/src/classes/double.C 2026/01/06 16:36:38 1.78 @@ -1,18 +1,19 @@ /** @file Parser: @b double parser class. - Copyright (c) 2001-2005 ArtLebedev Group (http://www.artlebedev.com) - Author: Alexandr Petrosian (http://paf.design.ru) + Copyright (c) 2001-2024 Art. Lebedev Studio (http://www.artlebedev.com) + Authors: Konstantin Morshnev , Alexandr Petrosian */ -static const char * const IDENT_DOUBLE_C="$Date: 2005/08/26 11:12:45 $"; - #include "classes.h" #include "pa_vmethod_frame.h" #include "pa_request.h" #include "pa_vdouble.h" #include "pa_vint.h" +#include "pa_vbool.h" + +volatile const char * IDENT_DOUBLE_C="$Id: double.C,v 1.78 2026/01/06 16:36:38 moko Exp $" IDENT_PA_VDOUBLE_H; // externs @@ -23,32 +24,27 @@ void _string_format(Request& r, MethodPa class MDouble: public Methoded { public: MDouble(); -public: // Methoded - bool used_directly() { return true; } }; // global variable -DECLARE_CLASS_VAR(double, new MDouble, 0); +DECLARE_CLASS_VAR(double, new MDouble); // methods -static void _int(Request& r, MethodParams& params) { - // just checking (default) syntax validity, never really using it here, just for string.int compatibility - if(params.count()>0) - params.as_int(0, "default must be int", r); - +static void _int(Request& r, MethodParams&) { VDouble& vdouble=GET_SELF(r, VDouble); - r.write_no_lang(*new VInt(vdouble.as_int())); + r.write(*new VInt(vdouble.as_wint())); } -static void _double(Request& r, MethodParams& params) { - // just checking (default) syntax validity, never really using it here, just for string.doube compatibility - if(params.count()>0) - params.as_double(0, "default must be double", r); +static void _double(Request& r, MethodParams&) { + VDouble& vdouble=GET_SELF(r, VDouble); + r.write(*new VDouble(vdouble.as_double())); +} +static void _bool(Request& r, MethodParams&) { VDouble& vdouble=GET_SELF(r, VDouble); - r.write_no_lang(*new VDouble(vdouble.as_double())); + r.write(VBool::get(vdouble.as_bool())); } typedef void (*vdouble_op_func_ptr)(VDouble& vdouble, double param); @@ -57,13 +53,11 @@ static void __inc(VDouble& vdouble, doub static void __dec(VDouble& vdouble, double param) { vdouble.inc(-param); } static void __mul(VDouble& vdouble, double param) { vdouble.mul(param); } static void __div(VDouble& vdouble, double param) { vdouble.div(param); } -static void __mod(VDouble& vdouble, double param) { vdouble.mod((int)param); } +static void __mod(VDouble& vdouble, double param) { vdouble.mod(param); } -static void vdouble_op(Request& r, MethodParams& params, - vdouble_op_func_ptr func) { +static void vdouble_op(Request& r, MethodParams& params, vdouble_op_func_ptr func) { VDouble& vdouble=GET_SELF(r, VDouble); - double param=params.count()? - params.as_double(0, "param must be double", r):1/*used in inc/dec*/; + double param=params.count() ? params.as_double(0, "param must be double", r) : 1/*used in inc/dec*/; (*func)(vdouble, param); } @@ -74,35 +68,34 @@ static void _div(Request& r, MethodParam static void _mod(Request& r, MethodParams& params) { vdouble_op(r, params, &__mod); } // from string.C -extern -const String* sql_result_string(Request& r, MethodParams& params, - HashStringValue*& options, Value*& default_code); +extern const String* sql_result_string(Request& r, MethodParams& params, Value*& default_code); static void _sql(Request& r, MethodParams& params) { double val; - HashStringValue* options; Value* default_code; - if(const String* string=sql_result_string(r, params, options, default_code)) + if(const String* string=sql_result_string(r, params, default_code)) val=string->as_double(); else if(default_code) - val=r.process_to_value(*default_code).as_double(); + val=r.process(*default_code).as_double(); else { - throw Exception("parser.runtime", - 0, - "produced no result, but no default option specified"); + throw Exception(PARSER_RUNTIME, 0, "produced no result, but no default option specified"); } - r.write_no_lang(*new VDouble(val)); + r.write(*new VDouble(val)); } // constructor MDouble::MDouble(): Methoded("double") { // ^double.int[] + // ^double.int[default for ^string.int compatibility] add_native_method("int", Method::CT_DYNAMIC, _int, 0, 1); - // ^double.double[] + // ^double.double[default for ^string.double compatibility] add_native_method("double", Method::CT_DYNAMIC, _double, 0, 1); + // ^double.bool[] + // ^double.bool[default for ^string.bool compatibility] + add_native_method("bool", Method::CT_DYNAMIC, _bool, 0, 1); // ^double.inc[] // ^double.inc[offset]