--- parser3/src/main/pa_request.C 2003/02/03 11:55:33 1.245.2.12 +++ parser3/src/main/pa_request.C 2003/02/04 10:17:05 1.245.2.14 @@ -5,7 +5,7 @@ Author: Alexandr Petrosian (http://paf.design.ru) */ -static const char* IDENT_REQUEST_C="$Date: 2003/02/03 11:55:33 $"; +static const char* IDENT_REQUEST_C="$Date: 2003/02/04 10:17:05 $"; #include "pa_sapi.h" #include "pa_common.h" @@ -37,6 +37,7 @@ const char* ORIGINS_CONTENT_TYPE="text/p // defines for globals #define MAIN_METHOD_NAME "main" +#define BODY_NAME "body" // globals @@ -44,6 +45,7 @@ StringPtr main_method_name(new String(MA StringPtr content_disposition_name(new String(CONTENT_DISPOSITION_NAME)); StringPtr content_disposition_value(new String(CONTENT_DISPOSITION_VALUE)); StringPtr content_disposition_filename_name(new String(CONTENT_DISPOSITION_FILENAME_NAME)); +StringPtr body_name(new String(BODY_NAME)); // defines for statics @@ -55,7 +57,6 @@ StringPtr content_disposition_filename_n #define CONF_METHOD_NAME "conf" #define AUTO_METHOD_NAME "auto" #define POST_PROCESS_METHOD_NAME "postprocess" -#define BODY_NAME "body" #define DOWNLOAD_NAME "download" #define CLASS_PATH_NAME "CLASS_PATH" @@ -68,7 +69,6 @@ static StringPtr origins_mode_name(new S static StringPtr conf_method_name(new String(CONF_METHOD_NAME)); static StringPtr auto_method_name(new String(AUTO_METHOD_NAME)); static StringPtr post_process_method_name(new String(POST_PROCESS_METHOD_NAME)); -static StringPtr body_name(new String(BODY_NAME)); static StringPtr download_name(new String(DOWNLOAD_NAME)); static StringPtr class_path_name(new String(CLASS_PATH_NAME)); @@ -312,7 +312,7 @@ gettimeofday(&mt[2],NULL); bool lorigins_mode=origins_mode(); - VFilePtr body_file=body_vstring_after_post_process->as_vfile( + VFilePtr body_file=body_vstring_after_post_process->as_vfile(pool(), String::UL_UNSPECIFIED, lorigins_mode); // extract response body @@ -369,7 +369,7 @@ t[9]-t[3] problem_source->origin().file?problem_source->origin().file:"global", problem_source->origin().line, #endif - problem_source->cstr(), + problem_source->cstr().get(), e.comment(), e.type() ); @@ -453,7 +453,7 @@ t[9]-t[3] ); #endif printed+=snprintf(buf+printed, MAX_STRING-printed, "'%s' ", - problem_source->cstr()); + problem_source->cstr().get()); } if(const char* comment=e.comment(true)) printed+=snprintf(buf+printed, MAX_STRING-printed, "%s", comment); @@ -468,7 +468,7 @@ t[9]-t[3] } VString body_vstring(body_string); - VFilePtr body_file=body_vstring.as_vfile(); + VFilePtr body_file=body_vstring.as_vfile(pool()); // ERROR. write it out output_result(body_file, header_only, false); @@ -483,7 +483,7 @@ VStateless_classPtr Request::use_file(VS bool fail_on_read_problem, bool fail_on_file_absence) { // cyclic dependence check if(used_files.get(file_name)) - return 0; + return VStateless_classPtr(0); used_files.put(file_name, true); StringPtr file_spec; @@ -520,12 +520,12 @@ VStateless_classPtr Request::use_file(VS if(fail_on_read_problem && !fail_on_file_absence) // ignore file absence if asked for if(!entry_exists(file_spec)) - return 0; + return VStateless_classPtr(0); if(const char *source=file_read_text(pool(), charsets.source(), file_spec, fail_on_read_problem)) return use_buf(aclass, source, file_spec, file_spec->cstr(pool())); else - return 0; + return VStateless_classPtr(0); } @@ -553,7 +553,7 @@ VStateless_classPtr Request::use_buf(VSt execute_nonvirtual_method(cclass, auto_method_name, vfilespec, 0/*no result needed*/); - return &cclass; + return VStateless_classPtr(&cclass); } StringPtr Request::relative(const char* apath, StringPtr relative_name) { @@ -606,7 +606,7 @@ void Request::output_result(VFilePtr bod // content-disposition if(ValuePtr vfile_name=body_file->fields().get(name_name)) - if(*vfile_name->get_string(&Pool())!=NONAME_DAT) { + if(*vfile_name->get_string(&fpool)!=NONAME_DAT) { VHashPtr hash(new VHash); HashStringValue &h=hash->hash(Exception::undefined_source); if(as_attachment)