--- parser3/src/include/pa_request.h 2020/12/15 17:10:31 1.258 +++ parser3/src/include/pa_request.h 2024/09/16 23:22:52 1.264 @@ -1,14 +1,14 @@ /** @file Parser: request class decl. - Copyright (c) 2001-2020 Art. Lebedev Studio (http://www.artlebedev.com) - Author: Alexandr Petrosian (http://paf.design.ru) + Copyright (c) 2001-2023 Art. Lebedev Studio (http://www.artlebedev.com) + Authors: Konstantin Morshnev , Alexandr Petrosian */ #ifndef PA_REQUEST_H #define PA_REQUEST_H -#define IDENT_PA_REQUEST_H "$Id: pa_request.h,v 1.258 2020/12/15 17:10:31 moko Exp $" +#define IDENT_PA_REQUEST_H "$Id: pa_request.h,v 1.264 2024/09/16 23:22:52 moko Exp $" #include "pa_pool.h" #include "pa_hash.h" @@ -125,12 +125,14 @@ private: element_type bottom_value() { return get(bottom_index()); } void clear() { - fused=fbottom=0; + fsize=fbottom=0; } bool is_empty() { - return fused==fbottom; + return fsize==fbottom; } + + Table &table(Request &r); }; ///@{ core data @@ -206,13 +208,14 @@ public: /// global classes HashString& classes() { return fclasses; } VStateless_class* get_class(const String& name); + VStateless_class& get_class_ref(const String& name); void put_class(VStateless_class *aclass){ classes().put(aclass->type(), aclass); } /** core request processing BEWARE: may throw exception to you: catch it! */ - void core(const char* config_filespec, bool header_only, const String& amain_method_name = main_method_name); + void core(const char* config_filespec, bool header_only, const String& amain_method_name = main_method_name, const String* amain_class_name = NULL); /// executes ops void execute(ArrayOperation& ops); // execute.C @@ -366,6 +369,7 @@ public: // status read methods //{ for @conf[filespec] and @auto[filespec] bool execute_method_if_exists(VStateless_class& aclass, const String& method_name, Value* optional_param); + bool execute_auto_method_if_exists(VStateless_class& aclass, const String& method_name, Value* optional_param); //}