--- parser3/src/include/pa_request.h 2001/02/21 17:36:30 1.7 +++ parser3/src/include/pa_request.h 2016/11/29 14:32:32 1.243 @@ -1,110 +1,534 @@ -/* - $Id: pa_request.h,v 1.7 2001/02/21 17:36:30 paf Exp $ +/** @file + Parser: request class decl. + + Copyright (c) 2001-2015 Art. Lebedev Studio (http://www.artlebedev.com) + Author: Alexandr Petrosian (http://paf.design.ru) */ #ifndef PA_REQUEST_H #define PA_REQUEST_H +#define IDENT_PA_REQUEST_H "$Id: pa_request.h,v 1.243 2016/11/29 14:32:32 moko Exp $" + #include "pa_pool.h" -#include "pa_exception.h" #include "pa_hash.h" #include "pa_wcontext.h" #include "pa_value.h" #include "pa_stack.h" +#include "pa_request_info.h" +#include "pa_request_charsets.h" +#include "pa_sapi.h" + +// consts + +const size_t pseudo_file_no__process=1; + +// forwards + +class Temp_lang; +class Methoded; +class VMethodFrame; +class VMail; +class VForm; +class VResponse; +class VCookie; +class VStateless_class; +class VConsole; + +extern int pa_execute_recoursion_limit; +extern int pa_loop_limit; + +/// Main workhorse. +class Request: public PA_Object { + friend class Temp_lang; + friend class Temp_connection; + friend class Temp_request_self; + friend class Temp_value_element; + friend class Request_context_saver; + friend class Exception_trace; -#define MAIN_METHOD_NAME "main" +public: + class Trace { + const String* fname; + Operation::Origin forigin; + public: + Trace(): fname(0) {} + void clear() { fname=0; } + + Trace(const String* aname, const Operation::Origin aorigin): + fname(aname), forigin(aorigin) {} + + const String* name() const { return fname; } + const Operation::Origin origin() const { return forigin; } + }; + + enum Skip { + SKIP_NOTHING, + SKIP_BREAK, + SKIP_CONTINUE + }; -#ifndef NO_STRING_ORIGIN -# define COMPILE_PARAMS char *source, char *file -# define COMPILE(source, file) real_compile(source, file) -#else -# define COMPILE_PARAMS char *source -# define COMPILE(source, file) real_compile(source) -#endif +private: + Pool fpool; +public: + Pool& pool() { return fpool; } + +private: + union StackItem { + Value* fvalue; + ArrayOperation* fops; + VMethodFrame* fmethod_frame; + public: + Value& value() const { return *fvalue; } + const String& string() const { + return fvalue->as_string(); + } + ArrayOperation& ops() const { return *fops; } + VMethodFrame& method_frame() const { return *fmethod_frame; } + + /// needed to fill unused Array entries + StackItem() {} + StackItem(Value& avalue): fvalue(&avalue) {} + StackItem(ArrayOperation& aops): fops(&aops) {} + StackItem(VMethodFrame& amethod_frame): fmethod_frame(&amethod_frame) {} + }; + + class Exception_trace: public Stack { + size_t fbottom; + public: + Exception_trace(): fbottom(0) {} + + size_t bottom_index() { return fbottom; } + void set_bottom_index(size_t abottom) { fbottom=abottom; } + element_type bottom_value() { return get(bottom_index()); } + + void clear() { + fused=fbottom=0; + } + + bool is_empty() { + return fused==fbottom; + } + }; + + ///@{ core data + + /// classes + HashString fclasses; + + /// already used files to avoid cyclic uses + HashString used_files; + HashString searched_along_class_path; + /// list of all used files, Operation::file_no = index to it + Array file_list; + + /// endless execute(execute(... preventing counter + int anti_endless_execute_recoursion; + + ///@} + + /// execution stack + Stack stack; -class Local_request_exception; + /// exception stack trace + Exception_trace exception_trace; +public: + + bool allow_class_replace; + + //@{ request processing status + /// contexts + VMethodFrame* method_frame; + Value* rcontext; + WContext* wcontext; + /// current language + String::Language flang; + /// current connection + SQL_Connection* fconnection; + //@} + /// interrupted flag, raised on signals [SIGPIPE] + bool finterrupted; + Skip fskip; + int fin_cycle; -class Request : public Pooled { - friend Local_request_exception; public: + uint register_file(String::Body file_spec); + + struct Exception_details { + const Operation::Origin origin; + const String* problem_source; + VHash& vhash; + Exception_details(const Operation::Origin aorigin, const String* aproblem_source, VHash& avhash): origin(aorigin), problem_source(aproblem_source), vhash(avhash) {} + }; + Exception_details get_details(const Exception& e); + const char* get_exception_cstr(const Exception& e, Exception_details& details); + + /// @see Stack::wipe_unused + void wipe_unused_execution_stack() { + stack.wipe_unused(); + } + +#ifdef RESOURCES_DEBUG + /// measures + double sql_connect_time; + double sql_request_time; +#endif + + Request(SAPI_Info& asapi_info, Request_info& arequest_info, + String::Language adefault_lang ///< all tainted data default untainting lang + ); + ~Request(); + + /// global classes + HashString& classes() { return fclasses; } + VStateless_class* get_class(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 config_fail_on_read_problem, bool header_only); + + /// executes ops + void execute(ArrayOperation& ops); // execute.C + + template void call(Frame& frame){ + VMethodFrame *saved_method_frame=method_frame; + Value* saved_rcontext=rcontext; + WContext *saved_wcontext=wcontext; + + rcontext=wcontext=method_frame=&frame; + + frame.call(*this); + + wcontext=saved_wcontext; + rcontext=saved_rcontext; + method_frame=saved_method_frame; + } + + template void call_write(Frame& frame){ + VMethodFrame *saved_method_frame=method_frame; + Value* saved_rcontext=rcontext; + + rcontext=method_frame=&frame; + + frame.call(*this); + + rcontext=saved_rcontext; + method_frame=saved_method_frame; + } + + Value& construct(VStateless_class &class_value, const Method &method); + + /// execute ops with anti-recoursion check + void recoursion_checked_execute(ArrayOperation& ops) { + if(++anti_endless_execute_recoursion==pa_execute_recoursion_limit) { + anti_endless_execute_recoursion=0; // give @exception a chance + throw Exception(PARSER_RUNTIME, 0, "call canceled - endless recursion detected"); + } + execute(ops); // execute it + anti_endless_execute_recoursion--; + } + + /// + void use_file_directly(VStateless_class& aclass, const String& file_spec, bool fail_on_read_problem=true, bool fail_on_file_absence=true); + + /// compiles the file, maybe forcing it's class @a name and @a base_class. + void use_file(VStateless_class& aclass, const String& file_name, const String* use_filespec); + + /// for @USE only, calls ^use (which may be user-defined) + void use_file(const String& file_name, const String* use_filespec, Operation::Origin origin); + + /// compiles a @a source buffer + void use_buf(VStateless_class& aclass, const char* source, const String* main_alias, uint file_no, int line_no_offset=0); + + /// processes any code-junction there may be inside of @a value + Value& process_getter(Junction& junction); // execute.C + Value& process(Value& input_value); // execute.C + void process_write(Value& input_value); // execute.C + + //@{ convinient helpers + const String& process_to_string(Value& input_value) { + return process(input_value).as_string(); + } + //@} + const String* get_method_filespec(const Method* method); // execute.C + const String* get_used_filespec(uint file_no); - Request(Pool& apool) : Pooled(apool), - fpool(apool), - stack(apool), - fclasses(apool) - { + /// appending string with it's languages + inline void write(const String& astring) { + wcontext->write(astring); } - ~Request() {} + + /// in [] and {} appending string if get_string is not null, else appending value + /// in () appending string if is_string, else appending value + inline void write(Value& avalue) { + wcontext->write_as_string(avalue); + } + + /// allways appending value + inline void write_value(Value& avalue) { + wcontext->write(avalue); + } + + /// returns relative to @a path path to @a file + const String& relative(const char* apath, const String& relative_name); - // IMPORTANT: don't use without Local_request_exception - Exception& exception() { return *fexception; } + /// returns an absolute @a path to relative @a name + const String& absolute(const String& relative_name); - // global classes - Hash& classes() { return fclasses; } + /// returns the mime type of 'user_file_name' + const String& mime_type_of(const String* file_name); - // core request processing - void core(); + /// returns the mime type of 'user_file_name_cstr' + const String& mime_type_of(const char* user_file_name_cstr); + + /// returns current SQL connection if any + SQL_Connection* connection(bool fail_on_error=true) { + if(fail_on_error && !fconnection) + throw Exception(PARSER_RUNTIME, 0, "outside of 'connect' operator"); + return fconnection; + } + + void set_interrupted(bool ainterrupted) { finterrupted=ainterrupted; } + bool get_interrupted() { return finterrupted; } -private: // core data + void set_skip(Skip askip) { fskip=askip; } + Skip get_skip() { return fskip; } - // classes - Hash fclasses; + void set_in_cycle(int adelta) { fin_cycle+=adelta; } + bool get_in_cycle() { return fin_cycle>0; } - // contexts - Value *root, *self, *rcontext; - WContext *wcontext; +public: - // execution stack - Stack stack; + /// info from web server + Request_info& request_info; + + /// info about ServerAPI + SAPI_Info& sapi_info; + + /// source, client, mail charsets + Request_charsets charsets; -private: // core.C + /// 'MAIN' class conglomerat & operators are methods of this class + VStateless_class& main_class; + /// $form:elements + VForm& form; + /// $mail + VMail& mail; + /// $response:elements + VResponse& response; + /// $cookie:elements + VCookie& cookie; + /// $console + VConsole& console; + + /// classes configured data + HashString classes_conf; + +public: // status read methods + + VMethodFrame *get_method_frame() { return method_frame; } + Value& get_self(); + +#define GET_SELF(request, type) (static_cast(request.get_self())) + + /// public for ^reflection:copy[] + void put_element(Value& ncontext, const String& name, Value* value); + + /// for @main[] + const String* execute_virtual_method(Value& aself, const String& method_name); + + //{ for @conf[filespec] and @auto[filespec] and parser://method/call + const String* execute_method(Value& aself, const Method& method, Value* optional_param, bool do_return_string); + + struct Execute_nonvirtual_method_result { + const String* string; + Method* method; + Execute_nonvirtual_method_result(): string(0), method(0) {} + }; + + Execute_nonvirtual_method_result execute_nonvirtual_method(VStateless_class& aclass, const String& method_name, VString* optional_param, bool do_return_string); + //} + +#ifdef XML +public: // charset helpers + + /// @see Charset::transcode + xmlChar* transcode(const String& s); + /// @see Charset::transcode + xmlChar* transcode(const String::Body s); + /// @see Charset::transcode + const String& transcode(const xmlChar* s); - Array& load_and_compile_RUN(); - VClass *construct_class(String& name, Array& compiled_methods); - char *execute_MAIN(VClass *class_RUN); +#endif + +private: + + /// already executed some @conf method + bool configure_admin_done; + + void configure_admin(VStateless_class& conf_class); + + void configure(); private: // compile.C - Array& real_compile(COMPILE_PARAMS); + ArrayClass& compile(VStateless_class* aclass, const char* source, const String* main_alias, uint file_no, int line_no_offset); private: // execute.C - void execute(Array& ops); + Value& get_element(Value& ncontext, const String& name); +#ifdef FEATURE_GET_ELEMENT4CALL + Value& get_element4call(Value& ncontext, const String& name); +#endif + +private: // defaults + + const String::Language fdefault_lang; + +private: // mime types -protected: + /// $MAIN:MIME-TYPES + Table *mime_types; - // all request' objects are allocated in this pool - Pool& fpool; +private: // lang manipulation - // exception replacement mechanism is protected from direct usage - // Local_request_exception object enforces paired set/restore - Exception *set_exception(Exception *e){ - Exception *r=fexception; - fexception=e; - return r; + String::Language set_lang(String::Language alang) { + String::Language result=flang; + flang=alang; + return result; } - void restore_exception(Exception *e) { - fexception=e; + void restore_lang(String::Language alang) { + flang=alang; + } + +private: // connection manipulation + + SQL_Connection* set_connection(SQL_Connection* aconnection) { + SQL_Connection* result=fconnection; + fconnection=aconnection; + return result; + } + void restore_connection(SQL_Connection* aconnection) { + fconnection=aconnection; } private: - // current request's exception object - Exception *fexception; + void output_result(VFile* body_file, bool header_only, bool as_attachment); +}; + +/// Auto-object used to save request context across ^try body +class Request_context_saver { + Request& fr; + + /// exception stack trace + size_t exception_trace_top; + size_t exception_trace_bottom; + /// execution stack + size_t stack; + uint anti_endless_execute_recoursion; + /// contexts + VMethodFrame* method_frame; + Value* rcontext; + WContext* wcontext; + /// current language + String::Language flang; + /// current connection + SQL_Connection* fconnection; + +public: + Request_context_saver(Request& ar) : + fr(ar), + exception_trace_top(ar.exception_trace.top_index()), + exception_trace_bottom(ar.exception_trace.bottom_index()), + stack(ar.stack.top_index()), + anti_endless_execute_recoursion(ar.anti_endless_execute_recoursion), + method_frame(ar.method_frame), + rcontext(ar.rcontext), + wcontext(ar.wcontext), + flang(ar.flang), + fconnection(ar.fconnection) {} + void restore() { + fr.exception_trace.set_top_index(exception_trace_top); + fr.exception_trace.set_bottom_index(exception_trace_bottom); + fr.stack.set_top_index(stack); + fr.anti_endless_execute_recoursion=anti_endless_execute_recoursion; + fr.method_frame=method_frame, fr.rcontext=rcontext; fr.wcontext=wcontext; + fr.flang=flang; + fr.fconnection=fconnection; + } +}; + +/// Auto-object used for temporary changing Request::fconnection. +class Temp_connection { + Request& frequest; + SQL_Connection* saved_connection; +public: + Temp_connection(Request& arequest, SQL_Connection* aconnection) : + frequest(arequest), + saved_connection(arequest.set_connection(aconnection)) { + } + ~Temp_connection() { + frequest.restore_connection(saved_connection); + } +}; + +/// Auto-object used for break out of cycle check +class InCycle { + Request& frequest; +public: + InCycle(Request& arequest) : frequest(arequest) { + frequest.set_in_cycle(1); + } + ~InCycle() { + frequest.set_in_cycle(-1); + } +}; +/// Auto-object used for temporary changing Request::allow_class_replace. +class Temp_class_replace { + Request& frequest; +public: + Temp_class_replace(Request& arequest, bool avalue) : frequest(arequest){ + frequest.allow_class_replace=avalue; + } + ~Temp_class_replace() { + frequest.allow_class_replace=false; + } }; -class Local_request_exception { - Request request; - Exception *saved_exception; +/// Auto-object used for temporarily substituting/removing elements +class Temp_value_element { + Request& frequest; + Value& fwhere; + const String& fname; + Value* saved; public: - Local_request_exception(Request& arequest, Exception& exception) : - request(arequest), - saved_exception(arequest.set_exception(&exception)) {} - ~Local_request_exception() { request.restore_exception(saved_exception); } + Temp_value_element(Request& arequest, Value& awhere, const String& aname, Value* awhat); + ~Temp_value_element(); }; -// core func -void core(); +// defines for externs + +#define EXCEPTION_HANDLED_PART_NAME "handled" + + +// externs + +extern const String main_method_name; +extern const String auto_method_name; + +extern const String exception_type_part_name; +extern const String exception_source_part_name; +extern const String exception_comment_part_name; +extern const String exception_handled_part_name; + +// defines for statics + +#define MAIN_CLASS_NAME "MAIN" +#define AUTO_FILE_NAME "auto.p" #endif