--- parser3/src/include/pa_request.h 2001/03/18 14:45:26 1.59 +++ parser3/src/include/pa_request.h 2001/03/21 14:06:43 1.65 @@ -1,9 +1,11 @@ -/* - Parser +/** @file + Parser: request class decl. + Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com) + Author: Alexander Petrosyan (http://design.ru/paf) - $Id: pa_request.h,v 1.59 2001/03/18 14:45:26 paf Exp $ + $Id: pa_request.h,v 1.65 2001/03/21 14:06:43 paf Exp $ */ #ifndef PA_REQUEST_H @@ -20,6 +22,7 @@ #include "pa_vform.h" #include "pa_vrequest.h" #include "pa_vresponse.h" +#include "pa_vcookie.h" #ifndef NO_STRING_ORIGIN # define COMPILE_PARAMS \ @@ -40,11 +43,14 @@ class Temp_lang; +/// Main workhorse. class Request : public Pooled { friend Temp_lang; public: - - struct Info { + + /// some information from web server + class Info { + public: const char *document_root; const char *path_translated; const char *method; @@ -52,89 +58,103 @@ public: const char *uri; const char *content_type; size_t content_length; + const char *cookie; }; Request(Pool& apool, Info& ainfo, - String::Untaint_lang adefault_lang + String::Untaint_lang adefault_lang ///< all tainted data default untainting lang ); ~Request() {} - // global classes + /// global classes Hash& classes() { return fclasses; } - // core request processing - void core(Exception& system_exception, + /** + core request processing + + BEWARE: may throw exception to you: catch it! + */ + void core( const char *sys_auto_path1, - const char *sys_auto_path2); + const char *sys_auto_path2, + bool header_only); + /// executes ops void execute(const Array& ops); + /// compiles the file, maybe forcing it's class @a name and @a base_class. VStateless_class *use_file( const char *file, bool fail_on_read_problem=true, const String *name=0, VStateless_class *base_class=0); // core.C + /// compiles a @a source buffer VStateless_class *use_buf( const char *source, const char *file, VStateless_class *aclass=0, const String *name=0, VStateless_class *base_class=0); // core.C + /// processes any code-junction there may be inside of @a value Value& process( Value& value, const String *name=0, bool intercept_string=true); // execute.C - // write(const) = clean - void write(const String& astring) { - wcontext->write(astring, String::Untaint_lang::NO); - } - // appending, sure of clean string inside - void write_no_lang(String& astring) { - wcontext->write(astring, String::Untaint_lang::NO); - } - // appending string, passing language built into string being written - void write_pass_lang(String& astring) { - wcontext->write(astring, String::Untaint_lang::PASS_APPEND); + /// appending, sure of clean string inside + void write_no_lang(const String& astring) { + wcontext->write(astring, String::UL_NO); + } + /// appending string, passing language built into string being written + void write_pass_lang(const String& astring) { + wcontext->write(astring, String::UL_PASS_APPENDED); } - // appending possible string, assigning untaint language + /// appending possible string, assigning untaint language void write_assign_lang(Value& avalue) { wcontext->write(avalue, flang); } - // appending possible string, passing language built into string being written + /// appending possible string, passing language built into string being written void write_pass_lang(Value& avalue) { - wcontext->write(avalue, String::Untaint_lang::PASS_APPEND); + wcontext->write(avalue, String::UL_PASS_APPENDED); } - // appending sure value, that would be converted to clean string + /// appending sure value, that would be converted to clean string void write_no_lang(Value& avalue) { - wcontext->write(avalue, String::Untaint_lang::NO); + wcontext->write(avalue, String::UL_NO); } - // appending sure value, not VString + /// appending sure value, not VString void write_expr_result(Value& avalue) { wcontext->write(avalue); } - void fail_if_junction_(bool is, Value& value, const String& method_name, char *msg); + /// handy is-value-a-junction ensurer + void fail_if_junction_(bool is, Value& value, + const String& method_name, const char *msg); + /// returns relative to @a path path to @a file char *relative(const char *path, const char *file); + + /// returns an absolute @a path to relative @a name char *absolute(const char *name); public: - // + /// info from web server Info& info; - // default base + /// default base VClass ROOT; - // $env:fields here + /// $env:fields here VEnv env; - // $form:elements here + /// $form:elements here VForm form; - // $request:elements here + /// $request:elements here VRequest request; - // $response: + /// $response: VResponse response; + /// $cookie: + VCookie cookie; - // contexts + /// contexts Value *self, *root, *rcontext; + /// contexts WContext *wcontext; private: // core data @@ -180,9 +200,10 @@ private: // lang manipulation private: - void output_result(const String& body_string); + void output_result(const String& body_string, bool header_only); }; +/// Auto-object used for temporary changing Request::flang. class Temp_lang { Request& frequest; String::Untaint_lang saved_lang;