Diff for /parser3/src/main/pa_request.C between versions 1.245.2.19 and 1.245.2.23

version 1.245.2.19, 2003/02/14 17:38:29 version 1.245.2.23, 2003/02/17 15:34:19
Line 77  VStateless_classPtr VClassMAIN_create(); Line 77  VStateless_classPtr VClassMAIN_create();
 // op.C  // op.C
 VHashPtr exception2vhash(Pool& pool, const Exception& e);  VHashPtr exception2vhash(Pool& pool, const Exception& e);
   
 void lock_system_class(HashStringValue::key_type key, HashStringValue::value_type value, int) {  
         if(VStateless_class *value_class=value->get_class())  
                 value_class->lock();  
 }  
   
 //  //
 Request::Request(Pool& apool, 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):
           // private
         fpool(apool),          fpool(apool),
           anti_endless_execute_recoursion(0),
   
           // public
           method_frame(0),
           rcontext(0),
           wcontext(0),
           flang(adefault_lang),
           fconnection(0),
           finterrupted(false),
   
           // public
   #ifdef RESOURCES_DEBUG
           sql_connect_time(0),
           sql_request_time(0),
   #endif  
   
           // public
         sapi_info(asapi_info),          sapi_info(asapi_info),
         request_info(arequest_info),          request_info(arequest_info),
         fdefault_lang(adefault_lang), flang(adefault_lang),  
   
         main_class(VClassMAIN_create()),  
         charsets(pool(), *UTF8_charset, *UTF8_charset, *UTF8_charset), // default charsets          charsets(pool(), *UTF8_charset, *UTF8_charset, *UTF8_charset), // default charsets
   
         response(new VResponse(fpool, arequest_info, charsets)),          main_class(VClassMAIN_create()),
         form(new VForm),          form(new VForm),
         mail(new VMail),          mail(new VMail),
         cookie(new VCookie)          response(new VResponse(fpool, arequest_info, charsets)),
           cookie(new VCookie),
   
           // private defaults
           fdefault_lang(adefault_lang), 
           // private mime types
           mime_types(0)
 {  {
         // maybe expire old caches          // maybe expire old caches
         cache_managers.maybe_expire();          cache_managers.maybe_expire();
Line 136  Request::Request(Pool& apool, SAPI_Info& Line 152  Request::Request(Pool& apool, SAPI_Info&
                 ValuePtr math(new VMail);                  ValuePtr math(new VMail);
                 classes().put(math->get_class()->base_class()->name(), math);                     classes().put(math->get_class()->base_class()->name(), math);   
         }          }
   
         // prevent system classes from modification [calling add_method]  
         // ^process[$string:CLASS]{@method} prohibited from now on...  
         classes().for_each(lock_system_class, 0);  
 }  }
   
 Request::~Request() {  Request::~Request() {
Line 209  struct timeval mt[10]; Line 221  struct timeval mt[10];
 gettimeofday(&mt[0],NULL);  gettimeofday(&mt[0],NULL);
 #endif  #endif
         try {          try {
                 char *auto_filespec=(char *)malloc(MAX_STRING);  
                   
                 // loading config                  // loading config
                 if(config_filespec) {                  if(config_filespec) {
                         StringPtr filespec(new String);                          StringPtr filespec(new String);
Line 301  gettimeofday(&mt[2],NULL); Line 311  gettimeofday(&mt[2],NULL);
                                 if(const Method *method=junction->method) {                                  if(const Method *method=junction->method) {
                                         // preparing to pass parameters to                                           // preparing to pass parameters to 
                                         //      @postprocess[data]                                          //      @postprocess[data]
                                         VMethodFrame frame(pool(), method->name, *junction, 0/*no parent*/);                                          VMethodFrame frame(pool(), method->name, *junction, 0/*no parent*/); frame.ref();
                                         frame.set_self(main_class);                                          frame.set_self(main_class);
   
                                         frame.store_param(body_vstring_before_post_process);                                          frame.store_param(body_vstring_before_post_process);
Line 399  t[9]-t[3] Line 409  t[9]-t[3]
                                         if(const Method *method=junction->method) {                                          if(const Method *method=junction->method) {
                                                 // preparing to pass parameters to                                                   // preparing to pass parameters to 
                                                 //      @unhandled_exception[exception;stack]                                                  //      @unhandled_exception[exception;stack]
                                                 VMethodFrame frame(pool(), method->name, *junction, 0/*no caller*/);                                                  VMethodFrame frame(pool(), method->name, *junction, 0/*no caller*/); frame.ref();
                                                 frame.set_self(main_class);                                                  frame.set_self(main_class);
   
                                                 // $exception                                                  // $exception
Line 551  VStateless_classPtr Request::use_buf(VSt Line 561  VStateless_classPtr Request::use_buf(VSt
         // locate and execute possible @auto[] static          // locate and execute possible @auto[] static
         execute_nonvirtual_method(cclass,           execute_nonvirtual_method(cclass, 
                 auto_method_name, vfilespec,                  auto_method_name, vfilespec,
                 0/*no result needed*/);                  false/*no result needed*/);
         return VStateless_classPtr(&cclass);          return VStateless_classPtr(&cclass);
 }  }
   

Removed from v.1.245.2.19  
changed lines
  Added in v.1.245.2.23


E-mail: