Diff for /parser3/src/main/pa_request.C between versions 1.245.2.12 and 1.245.2.18

version 1.245.2.12, 2003/02/03 11:55:33 version 1.245.2.18, 2003/02/14 17:33:45
Line 37  const char* ORIGINS_CONTENT_TYPE="text/p Line 37  const char* ORIGINS_CONTENT_TYPE="text/p
 // defines for globals  // defines for globals
   
 #define MAIN_METHOD_NAME "main"  #define MAIN_METHOD_NAME "main"
   #define AUTO_METHOD_NAME "auto"
   #define BODY_NAME "body"
   
 // globals  // globals
   
 StringPtr main_method_name(new String(MAIN_METHOD_NAME));  StringPtr main_method_name(new String(MAIN_METHOD_NAME));
   StringPtr auto_method_name(new String(AUTO_METHOD_NAME));
 StringPtr content_disposition_name(new String(CONTENT_DISPOSITION_NAME));  StringPtr content_disposition_name(new String(CONTENT_DISPOSITION_NAME));
 StringPtr content_disposition_value(new String(CONTENT_DISPOSITION_VALUE));  StringPtr content_disposition_value(new String(CONTENT_DISPOSITION_VALUE));
 StringPtr content_disposition_filename_name(new String(CONTENT_DISPOSITION_FILENAME_NAME));  StringPtr content_disposition_filename_name(new String(CONTENT_DISPOSITION_FILENAME_NAME));
   StringPtr body_name(new String(BODY_NAME));
   
 // defines for statics  // defines for statics
   
 #define CHARSETS_NAME "CHARSETS"  #define CHARSETS_NAME "CHARSETS"
 #define MAIN_CLASS_NAME "MAIN"  
 #define MIME_TYPES_NAME "MIME-TYPES"  #define MIME_TYPES_NAME "MIME-TYPES"
 #define ORIGINS_MODE_NAME "ORIGINS"  #define ORIGINS_MODE_NAME "ORIGINS"
 #define AUTO_FILE_NAME "auto.p"  
 #define CONF_METHOD_NAME "conf"  #define CONF_METHOD_NAME "conf"
 #define AUTO_METHOD_NAME "auto"  
 #define POST_PROCESS_METHOD_NAME "postprocess"  #define POST_PROCESS_METHOD_NAME "postprocess"
 #define BODY_NAME "body"  
 #define DOWNLOAD_NAME "download"  #define DOWNLOAD_NAME "download"
 #define CLASS_PATH_NAME "CLASS_PATH"  #define CLASS_PATH_NAME "CLASS_PATH"
   
Line 66  static StringPtr main_class_name(new Str Line 66  static StringPtr main_class_name(new Str
 static StringPtr mime_types_name(new String(MIME_TYPES_NAME));  static StringPtr mime_types_name(new String(MIME_TYPES_NAME));
 static StringPtr origins_mode_name(new String(ORIGINS_MODE_NAME));  static StringPtr origins_mode_name(new String(ORIGINS_MODE_NAME));
 static StringPtr conf_method_name(new String(CONF_METHOD_NAME));  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 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 download_name(new String(DOWNLOAD_NAME));
 static StringPtr class_path_name(new String(CLASS_PATH_NAME));  static StringPtr class_path_name(new String(CLASS_PATH_NAME));
   
Line 77  static StringPtr class_path_name(new Str Line 75  static StringPtr class_path_name(new Str
 // op.C  // op.C
 VStateless_classPtr VClassMAIN_create();  VStateless_classPtr VClassMAIN_create();
 // op.C  // op.C
 VHashPtr exception2vhash(const Exception& e);  VHashPtr exception2vhash(Pool& pool, const Exception& e);
   
 void lock_system_class(HashStringValue::key_type key, HashStringValue::value_type value, int) {  void lock_system_class(HashStringValue::key_type key, HashStringValue::value_type value, int) {
         if(VStateless_class *value_class=value->get_class())          if(VStateless_class *value_class=value->get_class())
Line 85  void lock_system_class(HashStringValue:: Line 83  void lock_system_class(HashStringValue::
 }  }
   
 //  //
 Request::Request(SAPI_Info& asapi_info, Request_info& arequest_info,   Request::Request(Pool& apool, SAPI_Info& asapi_info, Request_info& arequest_info, 
                                  uchar adefault_lang, bool status_allowed):                                   uchar adefault_lang, bool status_allowed):
           fpool(apool),
         sapi_info(asapi_info),          sapi_info(asapi_info),
         request_info(arequest_info),          request_info(arequest_info),
         fdefault_lang(adefault_lang), flang(adefault_lang),          fdefault_lang(adefault_lang), flang(adefault_lang),
Line 312  gettimeofday(&mt[2],NULL); Line 311  gettimeofday(&mt[2],NULL);
   
                 bool lorigins_mode=origins_mode();                  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);                          String::UL_UNSPECIFIED, lorigins_mode);
   
                 // extract response body                  // extract response body
Line 369  t[9]-t[3] Line 368  t[9]-t[3]
                                         problem_source->origin().file?problem_source->origin().file:"global",                                          problem_source->origin().file?problem_source->origin().file:"global",
                                         problem_source->origin().line,                                          problem_source->origin().line,
 #endif  #endif
                                         problem_source->cstr(),                                          problem_source->cstr().get(),
                                         e.comment(),                                          e.comment(),
                                         e.type()                                          e.type()
                                 );                                  );
Line 404  t[9]-t[3] Line 403  t[9]-t[3]
                                                 frame.set_self(main_class);                                                  frame.set_self(main_class);
   
                                                 // $exception                                                  // $exception
                                                 frame.store_param(exception2vhash(e));                                                  frame.store_param(exception2vhash(pool(), e));
                                                 // $stack[^table::set{name      origin}]                                                  // $stack[^table::set{name      origin}]
                                                 Table::columns_type stack_trace_columns;                                                  Table::columns_type stack_trace_columns;
                                                 *stack_trace_columns+=StringPtr(new String("name"));                                                  *stack_trace_columns+=StringPtr(new String("name"));
Line 453  t[9]-t[3] Line 452  t[9]-t[3]
                                                 );                                                  );
 #endif  #endif
                                         printed+=snprintf(buf+printed, MAX_STRING-printed, "'%s' ",                                           printed+=snprintf(buf+printed, MAX_STRING-printed, "'%s' ", 
                                                 problem_source->cstr());                                                  problem_source->cstr().get());
                                 }                                  }
                                 if(const char* comment=e.comment(true))                                  if(const char* comment=e.comment(true))
                                         printed+=snprintf(buf+printed, MAX_STRING-printed, "%s", comment);                                          printed+=snprintf(buf+printed, MAX_STRING-printed, "%s", comment);
Line 468  t[9]-t[3] Line 467  t[9]-t[3]
                         }                          }
   
                         VString body_vstring(body_string);                          VString body_vstring(body_string);
                         VFilePtr body_file=body_vstring.as_vfile();                          VFilePtr body_file=body_vstring.as_vfile(pool());
   
                         // ERROR. write it out                          // ERROR. write it out
                         output_result(body_file, header_only, false);                          output_result(body_file, header_only, false);
Line 483  VStateless_classPtr Request::use_file(VS Line 482  VStateless_classPtr Request::use_file(VS
                                                                         bool fail_on_read_problem, bool fail_on_file_absence) {                                                                          bool fail_on_read_problem, bool fail_on_file_absence) {
         // cyclic dependence check          // cyclic dependence check
         if(used_files.get(file_name))          if(used_files.get(file_name))
                 return 0;                  return VStateless_classPtr(0);
         used_files.put(file_name, true);          used_files.put(file_name, true);
   
         StringPtr file_spec;          StringPtr file_spec;
Line 520  VStateless_classPtr Request::use_file(VS Line 519  VStateless_classPtr Request::use_file(VS
   
         if(fail_on_read_problem && !fail_on_file_absence) // ignore file absence if asked for          if(fail_on_read_problem && !fail_on_file_absence) // ignore file absence if asked for
                 if(!entry_exists(file_spec))                  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))          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()));                  return use_buf(aclass, source, file_spec, file_spec->cstr(pool()));
         else          else
                 return 0;                  return VStateless_classPtr(0);
 }  }
   
   
Line 553  VStateless_classPtr Request::use_buf(VSt Line 552  VStateless_classPtr Request::use_buf(VSt
         execute_nonvirtual_method(cclass,           execute_nonvirtual_method(cclass, 
                 auto_method_name, vfilespec,                  auto_method_name, vfilespec,
                 0/*no result needed*/);                  0/*no result needed*/);
         return &cclass;          return VStateless_classPtr(&cclass);
 }  }
   
 StringPtr Request::relative(const char* apath, StringPtr relative_name) {  StringPtr Request::relative(const char* apath, StringPtr relative_name) {
Line 606  void Request::output_result(VFilePtr bod Line 605  void Request::output_result(VFilePtr bod
   
         // content-disposition          // content-disposition
         if(ValuePtr vfile_name=body_file->fields().get(name_name))          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);                          VHashPtr hash(new VHash);
                         HashStringValue &h=hash->hash(Exception::undefined_source);                          HashStringValue &h=hash->hash(Exception::undefined_source);
                         if(as_attachment)                          if(as_attachment)

Removed from v.1.245.2.12  
changed lines
  Added in v.1.245.2.18


E-mail: