Annotation of parser3/src/main/pa_request.C, revision 1.431

1.54      paf         1: /** @file
1.55      paf         2:        Parser: request class main part. @see compile.C and execute.C.
                      3: 
1.429     moko        4:        Copyright (c) 2001-2024 Art. Lebedev Studio (http://www.artlebedev.com)
1.418     moko        5:        Authors: Konstantin Morshnev <moko@design.ru>, Alexandr Petrosian <paf@design.ru>
1.218     paf         6: */
1.55      paf         7: 
1.69      paf         8: #include "pa_sapi.h"
1.53      paf         9: #include "pa_common.h"
1.372     moko       10: #include "pa_os.h"
1.1       paf        11: #include "pa_request.h"
1.3       paf        12: #include "pa_wwrapper.h"
                     13: #include "pa_vclass.h"
1.31      paf        14: #include "pa_globals.h"
1.30      paf        15: #include "pa_vint.h"
1.297     misha      16: #include "pa_vmethod_frame.h"
1.32      paf        17: #include "pa_types.h"
1.248     paf        18: #include "pa_venv.h"
                     19: #include "pa_vmath.h"
                     20: #include "pa_vstatus.h"
                     21: #include "pa_vrequest.h"
1.78      paf        22: #include "pa_vtable.h"
1.90      paf        23: #include "pa_vfile.h"
1.147     parser     24: #include "pa_dictionary.h"
1.208     paf        25: #include "pa_charset.h"
1.186     paf        26: #include "pa_charsets.h"
1.248     paf        27: #include "pa_cache_managers.h"
1.402     moko       28: #include "pa_http.h"
1.248     paf        29: #include "pa_vmail.h"
                     30: #include "pa_vform.h"
                     31: #include "pa_vcookie.h"
                     32: #include "pa_vresponse.h"
                     33: #include "pa_vmemory.h"
1.253     paf        34: #include "pa_vconsole.h"
1.267     paf        35: #include "pa_vdate.h"
1.424     moko       36: #include "pa_varray.h"
1.159     parser     37: 
1.431   ! moko       38: volatile const char * IDENT_PA_REQUEST_C="$Id: pa_request.C,v 1.430 2024/11/10 00:28:42 moko Exp $" IDENT_PA_REQUEST_H IDENT_PA_REQUEST_CHARSETS_H IDENT_PA_REQUEST_INFO_H IDENT_PA_VCONSOLE_H;
1.329     moko       39: 
1.248     paf        40: // consts
                     41: 
1.269     paf        42: #define UNHANDLED_EXCEPTION_METHOD_NAME "unhandled_exception"
1.207     paf        43: 
1.82      paf        44: /// content type of response when no $MAIN:defaults.content-type defined
1.248     paf        45: const char* DEFAULT_CONTENT_TYPE="text/html";
                     46: 
1.425     moko       47: const uint LOOP_LIMIT=100000;
                     48: const uint ARRAY_LIMIT=1000000;
1.427     moko       49: const uint EXECUTE_RECURSION_LIMIT=1000;
1.390     moko       50: const uint HTTPD_TIMEOUT=4;
1.369     moko       51: const size_t FILE_SIZE_LIMIT=512*1024*1024;
1.361     moko       52: 
1.248     paf        53: // defines for globals
                     54: 
                     55: #define MAIN_METHOD_NAME "main"
                     56: #define AUTO_METHOD_NAME "auto"
1.364     moko       57: #define USE_METHOD_NAME "use"
1.309     misha      58: #define AUTOUSE_METHOD_NAME "autouse"
1.364     moko       59: 
1.248     paf        60: #define EXCEPTION_TYPE_PART_NAME "type"
                     61: #define EXCEPTION_SOURCE_PART_NAME "source"
                     62: #define EXCEPTION_COMMENT_PART_NAME "comment"
                     63: 
1.364     moko       64: #define ORIGIN_KEY "origin"
                     65: 
1.248     paf        66: // globals
                     67: 
                     68: const String main_method_name(MAIN_METHOD_NAME);
                     69: const String auto_method_name(AUTO_METHOD_NAME);
1.364     moko       70: static const String use_method_name(USE_METHOD_NAME);
                     71: static const String autouse_method_name(AUTOUSE_METHOD_NAME);
1.311     misha      72: 
1.248     paf        73: const String exception_type_part_name(EXCEPTION_TYPE_PART_NAME);
                     74: const String exception_source_part_name(EXCEPTION_SOURCE_PART_NAME);
                     75: const String exception_comment_part_name(EXCEPTION_COMMENT_PART_NAME);
                     76: const String exception_handled_part_name(EXCEPTION_HANDLED_PART_NAME);
                     77: 
1.364     moko       78: static const String origin_key(ORIGIN_KEY);
                     79: 
1.369     moko       80: int pa_loop_limit=LOOP_LIMIT;
1.425     moko       81: int pa_array_limit=ARRAY_LIMIT;
1.427     moko       82: int pa_execute_recursion_limit=EXECUTE_RECURSION_LIMIT;
1.390     moko       83: int pa_httpd_timeout=HTTPD_TIMEOUT;
1.369     moko       84: size_t pa_file_size_limit=FILE_SIZE_LIMIT;
1.361     moko       85: 
1.248     paf        86: // defines for statics
                     87: 
                     88: #define MIME_TYPES_NAME "MIME-TYPES"
                     89: #define CLASS_PATH_NAME "CLASS_PATH"
                     90: 
1.344     moko       91: #define DOWNLOAD_NAME_UPPER "DOWNLOAD"
                     92: #define BODY_NAME_UPPER "BODY"
                     93: 
1.248     paf        94: // statics
                     95: 
                     96: static const String main_class_name(MAIN_CLASS_NAME);
                     97: static const String mime_types_name(MIME_TYPES_NAME);
1.395     moko       98: static const String class_path_name(CLASS_PATH_NAME);
1.361     moko       99: 
1.395     moko      100: static const String charsets_name("CHARSETS");
                    101: static const String strict_vars_name("STRICT-VARS");
                    102: static const String prototype_name("OBJECT-PROTOTYPE");
1.415     moko      103: static const String getter_protected_name("CLASS-GETTER-PROTECTED");
                    104: static const String locals_name("LOCALS");
1.395     moko      105: static const String limits_name("LIMITS");
                    106: static const String loop_limit_name("max_loop");
1.425     moko      107: static const String array_limit_name("max_array_size");
1.427     moko      108: static const String recursion_limit_name("max_recursion");
1.395     moko      109: static const String file_size_limit_name("max_file_size");
                    110: static const String lock_wait_timeout_name("lock_wait_timeout");
                    111: static const String httpd_name("HTTPD");
                    112: static const String httpd_timeout_name("timeout");
1.402     moko      113: static const String httpd_mode_name("mode");
1.395     moko      114: 
                    115: static const String conf_method_name("conf");
                    116: static const String post_process_method_name("postprocess");
                    117: static const String response_body_file_name("file");
1.248     paf       118: 
1.344     moko      119: static const String download_name_upper(DOWNLOAD_NAME_UPPER);
                    120: static const String body_name_upper(BODY_NAME_UPPER);
                    121: 
                    122: // more static
                    123: 
                    124: static const String content_type_name_upper(HTTP_CONTENT_TYPE_UPPER);
                    125: static const String content_disposition_name_upper(CONTENT_DISPOSITION_UPPER);
1.392     moko      126: static const String content_disposition_inline(CONTENT_DISPOSITION_INLINE);
1.344     moko      127: static const String content_disposition_attachment(CONTENT_DISPOSITION_ATTACHMENT);
                    128: 
1.420     moko      129: const String content_disposition_filename_name(CONTENT_DISPOSITION_FILENAME_NAME);
                    130: const String content_disposition_filename_name_asterisk("filename*");
                    131: 
1.248     paf       132: // defines
1.82      paf       133: 
1.344     moko      134: #define CHARSET_NAME_UPPER "CHARSET"
                    135: #define LAST_MODIFIED_NAME_UPPER "LAST-MODIFIED"
                    136: 
1.233     paf       137: // op.C
1.248     paf       138: VStateless_class& VClassMAIN_create();
1.123     paf       139: 
1.157     parser    140: //
1.408     moko      141: Request::Request(SAPI_Info& asapi_info, Request_info& arequest_info, String::Language adefault_lang):
1.248     paf       142:        // private
1.427     moko      143:        anti_endless_execute_recursion(0),
1.248     paf       144: 
                    145:        // public
1.335     moko      146:        allow_class_replace(false),
1.248     paf       147:        method_frame(0),
                    148:        rcontext(0),
                    149:        wcontext(0),
                    150:        flang(adefault_lang),
1.191     paf       151:        fconnection(0),
1.371     moko      152:        fin_cycle(0),
1.307     misha     153:        fskip(SKIP_NOTHING),
1.248     paf       154: 
                    155:        // public
1.257     paf       156:        request_info(arequest_info),
1.248     paf       157:        sapi_info(asapi_info),
1.359     moko      158:        charsets(pa_UTF8_charset, pa_UTF8_charset, pa_UTF8_charset), // default charsets
1.248     paf       159: 
                    160:        main_class(VClassMAIN_create()),
1.260     paf       161:        form(*new VForm(charsets, arequest_info)),
1.248     paf       162:        mail(*new VMail),
                    163:        response(*new VResponse(arequest_info, charsets)),
1.298     misha     164:        cookie(*new VCookie(charsets, arequest_info)),
1.285     misha     165:        console(*new VConsole),
1.248     paf       166: 
                    167:        // private
                    168:        configure_admin_done(false),
                    169: 
                    170:        // private defaults
                    171:        fdefault_lang(adefault_lang), 
                    172:        // private mime types
                    173:        mime_types(0)
1.157     parser    174: {
1.261     paf       175:        pa_register_thread_request(*this);
                    176: 
1.248     paf       177:        // file_no=0 => unknown
1.347     moko      178:        file_list+="UNKNOWN";
                    179:        file_list+="-body of process-"; // pseudo_file_no__process
1.186     paf       180: 
1.178     paf       181:        // maybe expire old caches
1.264     paf       182:        cache_managers->maybe_expire();
1.178     paf       183:        
1.157     parser    184:        /// directly used
1.233     paf       185:        // MAIN class, operators
1.353     moko      186:        put_class(&main_class);
1.157     parser    187:        // classes:
                    188:        // table, file, random, mail, image, ...
1.248     paf       189:        methoded_array().register_directly_used(*this);
1.157     parser    190: 
                    191:        /// methodless
1.354     moko      192: 
1.157     parser    193:        // env class
1.353     moko      194:        put_class(new VEnv(asapi_info));
1.175     paf       195:        // status class
1.353     moko      196:        put_class(new VStatus());
1.157     parser    197:        // request class
1.353     moko      198:        put_class(new VRequest(arequest_info, charsets, form, asapi_info));
1.157     parser    199:        // cookie class
1.353     moko      200:        put_class(&cookie);
1.253     paf       201:        // console class
1.353     moko      202:        put_class(&console);
1.354     moko      203: 
1.157     parser    204:        /// methoded
1.354     moko      205: 
1.157     parser    206:        // response class
1.353     moko      207:        put_class(&response);
1.157     parser    208:        // form class
1.353     moko      209:        put_class(&form);
1.213     paf       210:        // mail class
1.353     moko      211:        put_class(&mail);
1.157     parser    212:        // math class
1.353     moko      213:        put_class(new VMath);
1.248     paf       214:        // memory class
1.353     moko      215:        put_class(new VMemory);
1.117     paf       216: }
1.192     paf       217: 
                    218: Request::~Request() {
                    219: #ifdef XML
                    220:        // if for some strange reason xml generic errors failed to be reported, free them up
1.248     paf       221:        if(const char* xml_generic_errors=xmlGenericErrors()) {
                    222:                SAPI::log(sapi_info, "warning: unreported xmlGenericErrors: %s", xml_generic_errors);
1.341     moko      223:                pa_free((void *)xml_generic_errors);
1.192     paf       224:        }
                    225: #endif
                    226: }
1.236     paf       227: 
1.248     paf       228: Value& Request::get_self() { return method_frame/*always have!*/->self(); }
1.192     paf       229: 
1.355     moko      230: VStateless_class* Request::get_class(const String& name){
                    231:        VStateless_class* result=classes().get(name);
1.313     misha     232:        if(!result)
1.375     moko      233:                if(const Method *method=main_class.get_element_method(autouse_method_name)){
1.364     moko      234:                        Value *vname=new VString(name);
                    235:                        CONSTRUCTOR_FRAME_ACTION(*method, 0 /*no parent*/, main_class, {
                    236:                                frame.store_params(&vname, 1);
                    237:                                // we don't need the result
                    238:                                call(frame);
                    239:                        });
                    240:                        result=classes().get(name);
                    241:                }
1.309     misha     242:        return result;
                    243: }
                    244: 
1.411     moko      245: VStateless_class& Request::get_class_ref(const String& name){
                    246:        VStateless_class* result=get_class(name);
                    247:        if(!result)
                    248:                throw Exception(PARSER_RUNTIME, &name, "class is undefined");
                    249:        return *result;
                    250: }
                    251: 
1.424     moko      252: bool Request::add_class(const char* atype, VStateless_class *aclass){
                    253:        if(!allow_class_replace){
                    254:                if(!classes().put_dont_replace(atype, aclass))
                    255:                        return true;
                    256:                if(strcmp(atype, VARRAY_TYPE))
                    257:                        return false;
                    258:        }
                    259:        classes().put(atype, aclass);
                    260:        return true;
                    261: }
                    262: 
1.356     moko      263: static void load_charset(HashStringValue::key_type akey, HashStringValue::value_type avalue, Request_charsets* charsets) {
1.359     moko      264:        pa_charsets.load_charset(*charsets, akey, avalue->as_string());
1.208     paf       265: }
1.356     moko      266: 
1.395     moko      267: 
                    268: #define CONF_OPTION(config, name, code, exception_name)                \
                    269:        if(config)                                              \
                    270:                if(Value* option=config->get_element(name)) {   \
                    271:                        if(option->is_evaluated_expr()) {       \
                    272:                                code;                           \
                    273:                        } else                                  \
1.415     moko      274:                                throw Exception(PARSER_RUNTIME, 0, "$MAIN:" exception_name, name.cstr()); \
1.395     moko      275:                }
                    276: 
1.248     paf       277: void Request::configure_admin(VStateless_class& conf_class) {
1.208     paf       278:        if(configure_admin_done)
1.356     moko      279:                throw Exception(PARSER_RUNTIME, 0, "parser already configured");
1.208     paf       280:        configure_admin_done=true;
                    281:        
1.227     paf       282:        // charsets must only be specified in method_frame config
1.208     paf       283:        // so that users would not interfere
                    284: 
                    285:        /* $MAIN:CHARSETS[
                    286:                        $.charsetname1[/full/path/to/charset/file.cfg]
                    287:                        ...
                    288:                ]
                    289:        */
1.308     misha     290:        if(Value* vcharsets=conf_class.get_element(charsets_name)) {
1.342     moko      291:                if(!vcharsets->is_string()) {
1.248     paf       292:                        if(HashStringValue* charsets=vcharsets->get_hash())
1.281     paf       293:                                charsets->for_each<Request_charsets*>(load_charset, &this->charsets);
1.240     paf       294:                        else
1.415     moko      295:                                throw Exception(PARSER_RUNTIME, 0, "$MAIN:%s must be hash", charsets_name.cstr());
1.342     moko      296:                }
1.208     paf       297:        }
                    298: 
1.330     moko      299: #ifdef STRICT_VARS
1.332     moko      300:        VVoid::strict_vars=false;
1.330     moko      301:        if(Value* strict_vars=conf_class.get_element(strict_vars_name)) {
                    302:                if(strict_vars->is_bool())
                    303:                        VVoid::strict_vars=strict_vars->as_bool();
1.357     moko      304:                else
1.415     moko      305:                        throw Exception(PARSER_RUNTIME, 0, "$MAIN:%s must be bool", strict_vars_name.cstr());
1.357     moko      306:        }
                    307: #endif
                    308: 
                    309: #ifdef OBJECT_PROTOTYPE
                    310:        VClass::prototype=true;
                    311:        if(Value* prototype=conf_class.get_element(prototype_name)) {
                    312:                if(prototype->is_bool())
                    313:                        VClass::prototype=prototype->as_bool();
                    314:                else
1.415     moko      315:                        throw Exception(PARSER_RUNTIME, 0, "$MAIN:%s must be bool", prototype_name.cstr());
1.330     moko      316:        }
                    317: #endif
                    318: 
1.415     moko      319: #ifdef CLASS_GETTER_UNPROTECTED
                    320:        VClass::getter_protected=true;
                    321:        if(Value* getter_protected=conf_class.get_element(getter_protected_name)) {
                    322:                if(getter_protected->is_bool())
                    323:                        VClass::getter_protected=getter_protected->as_bool();
                    324:                else
                    325:                        throw Exception(PARSER_RUNTIME, 0, "$MAIN:%s must be bool", getter_protected_name.cstr());
                    326:        }
                    327: #endif
                    328: 
                    329:        VStateless_class::gall_vars_local=false;
                    330:        if(Value* locals=conf_class.get_element(locals_name)) {
                    331:                if(locals->is_bool()){
                    332:                        VStateless_class::gall_vars_local=locals->as_bool();
                    333:                        main_class.set_all_vars_local();
                    334:                } else
                    335:                        throw Exception(PARSER_RUNTIME, 0, "$MAIN:%s must be bool", locals_name.cstr());
                    336:        }
                    337: 
1.362     moko      338:        Value* limits=conf_class.get_element(limits_name);
                    339: 
1.361     moko      340:        pa_loop_limit=LOOP_LIMIT;
1.395     moko      341:        CONF_OPTION(limits, loop_limit_name, {
                    342:                pa_loop_limit=option->as_int();
                    343:                if(pa_loop_limit==0) pa_loop_limit=INT_MAX;
                    344:        }, "LIMITS.%s must be int");
1.361     moko      345: 
1.425     moko      346:        pa_array_limit=ARRAY_LIMIT;
                    347:        CONF_OPTION(limits, array_limit_name, {
                    348:                pa_array_limit=option->as_int();
                    349:                if(pa_array_limit==0) pa_array_limit=INT_MAX;
                    350:        }, "LIMITS.%s must be int");
                    351: 
1.427     moko      352:        pa_execute_recursion_limit=EXECUTE_RECURSION_LIMIT;
                    353:        CONF_OPTION(limits, recursion_limit_name, {
                    354:                pa_execute_recursion_limit=option->as_int();
                    355:                if(pa_execute_recursion_limit==0) pa_execute_recursion_limit=INT_MAX;
1.395     moko      356:        }, "LIMITS.%s must be int");
1.390     moko      357: 
1.369     moko      358:        pa_file_size_limit=FILE_SIZE_LIMIT;
1.395     moko      359:        CONF_OPTION(limits, file_size_limit_name, {
                    360:                double limit=option->as_double();
                    361:                if(limit >= (double)SSIZE_MAX)
1.426     moko      362:                        throw Exception(PARSER_RUNTIME, 0, "$MAIN:LIMITS.%s must be less than %.15g", file_size_limit_name.cstr(), (double)SSIZE_MAX);
1.395     moko      363:                pa_file_size_limit=(size_t)limit;
                    364:                if(pa_file_size_limit==0)
                    365:                        pa_file_size_limit=SSIZE_MAX;
                    366:        }, "LIMITS.%s must be number");
1.361     moko      367: 
1.372     moko      368:        pa_lock_attempts=PA_LOCK_ATTEMPTS;
1.395     moko      369:        CONF_OPTION(limits, lock_wait_timeout_name, {
                    370:                double limit=option->as_double();
                    371:                if(limit >= 3600*24)
1.426     moko      372:                        throw Exception(PARSER_RUNTIME, 0, "$MAIN:LIMITS.%s must be less than %d", lock_wait_timeout_name.cstr(), 3600*24);
1.395     moko      373:                pa_lock_attempts=(unsigned int)(limit*2)+1;
                    374:        }, "LIMITS.%s must be number");
                    375: 
                    376:        Value* httpd=conf_class.get_element(httpd_name);
                    377: 
                    378:        pa_httpd_timeout=HTTPD_TIMEOUT;
                    379:        CONF_OPTION(httpd, httpd_timeout_name, {
                    380:                pa_httpd_timeout=option->as_int();
                    381:                if(pa_httpd_timeout==0) pa_httpd_timeout=INT_MAX;
                    382:        }, "HTTPD.%s must be int");
1.372     moko      383: 
1.403     moko      384:        if(httpd)
                    385:                if(Value* option=httpd->get_element( httpd_mode_name)) {
                    386:                        if(option->get_junction())
1.415     moko      387:                                throw Exception(PARSER_RUNTIME, 0, "$MAIN:HTTPD:mode must be string");
1.403     moko      388:                        HTTPD_Server::set_mode(option->as_string());
                    389:                }
1.402     moko      390: 
1.227     paf       391:        // configure method_frame options
1.208     paf       392:        //      until someone with less privileges have overriden them
1.248     paf       393:        methoded_array().configure_admin(*this);
1.208     paf       394: }
1.150     parser    395: 
1.349     moko      396: const char* Request::get_exception_cstr(const Exception& e, Request::Exception_details& details) {
                    397: 
1.269     paf       398: #define PA_URI_FORMAT "%s: "
1.349     moko      399: #define PA_COMMENT_TYPE_FORMAT "%s [%s]"
                    400: 
1.269     paf       401: #define PA_ORIGIN_FILE_POS_FORMAT "%s(%d:%d): "
                    402: #define PA_SOURCE_FORMAT "'%s' "
1.349     moko      403: 
                    404: #define PA_ORIGIN_FILE_POS_VALUE file_list[details.origin.file_no].cstr(), 1+details.origin.line, 1+details.origin.col,
                    405: #define PA_SOURCE_VALUE details.problem_source->cstr(),
                    406: 
                    407: #define EXCEPTION_CSTR(f1,v1,f2,v2) \
                    408:                        snprintf(result, MAX_STRING, \
                    409:                                PA_URI_FORMAT \
                    410:                                f1 f2 \
                    411:                                PA_COMMENT_TYPE_FORMAT, \
                    412:                                request_info.uri, \
                    413:                                v1 v2 \
                    414:                                e.comment(), e.type() \
                    415:                        );
                    416: 
1.269     paf       417:        char* result=new(PointerFreeGC) char[MAX_STRING];
                    418: 
                    419:        if(details.problem_source) { // do we know the guy?
1.349     moko      420:                if(details.origin.file_no) // do whe know where he came from?
                    421:                        EXCEPTION_CSTR(PA_ORIGIN_FILE_POS_FORMAT, PA_ORIGIN_FILE_POS_VALUE, PA_SOURCE_FORMAT, PA_SOURCE_VALUE)
                    422:                else
                    423:                        EXCEPTION_CSTR(PA_SOURCE_FORMAT, PA_SOURCE_VALUE,,)
                    424:        } else {
                    425:                if(details.origin.file_no) // do whe know where he came from?
                    426:                        EXCEPTION_CSTR(PA_ORIGIN_FILE_POS_FORMAT, PA_ORIGIN_FILE_POS_VALUE,,)
                    427:                else
                    428:                        EXCEPTION_CSTR(,,,)
                    429:        }
1.269     paf       430: 
                    431:        return result;
                    432: }
1.272     paf       433: 
1.407     moko      434: Table &Request::Exception_trace::table(Request &r){
                    435:        // $stack[^table::create{name   file    lineno  colno}]
                    436:        Table::columns_type stack_trace_columns(new ArrayString);
                    437:        *stack_trace_columns+=new String("name");
                    438:        *stack_trace_columns+=new String("file");
                    439:        *stack_trace_columns+=new String("lineno");
                    440:        *stack_trace_columns+=new String("colno");
                    441:        Table& stack_trace=*new Table(stack_trace_columns);
                    442: 
                    443:        if(!is_empty()/*signed!*/)
                    444:                for(size_t i=bottom_index(); i<top_index(); i++) {
                    445:                        Trace trace=get(i);
                    446:                        Table::element_type row(new ArrayString);
                    447: 
                    448:                        *row+=trace.name(); // name column
                    449:                        Operation::Origin origin=trace.origin();
                    450:                        if(origin.file_no) {
                    451:                                *row+=new String(r.file_list[origin.file_no], String::L_TAINTED); // 'file' column
1.422     moko      452:                                *row+=new String(pa_uitoa(1+origin.line), String::L_CLEAN); // 'lineno' column
                    453:                                *row+=new String(pa_uitoa(1+origin.col), String::L_CLEAN); // 'colno' column
1.407     moko      454:                        }
                    455:                        stack_trace+=row;
                    456:                }
                    457: 
                    458:        return stack_trace;
                    459: }
                    460: 
1.272     paf       461: void Request::configure() {
                    462:        // configure admin options if not configured yet
                    463:        if(!configure_admin_done)
                    464:                configure_admin(main_class);
                    465: 
                    466:        // configure not-admin=user options
                    467:        methoded_array().configure_user(*this);
                    468: 
                    469:        // $MAIN:MIME-TYPES
1.308     misha     470:        if(Value* element=main_class.get_element(mime_types_name))
1.272     paf       471:                if(Table *table=element->get_table())
1.395     moko      472:                        mime_types=table;
1.272     paf       473: }
1.408     moko      474: 
1.64      paf       475: /**
                    476:        load MAIN class, execute @main.
                    477:        MAIN class consists of all the auto.p files we'd manage to find
                    478:        plus
                    479:        the file user requested us to process
                    480:        all located classes become children of one another,
                    481:        composing class we name 'MAIN'
1.180     paf       482: 
                    483:        @test log stack trace
                    484: 
1.64      paf       485: */
1.412     moko      486: void Request::core(const char* config_filespec, bool header_only, const String &amain_method_name, const String* amain_class_name) {
1.169     parser    487:        try {
1.211     paf       488:                // loading config
1.384     moko      489:                if(config_filespec)
1.387     moko      490:                        use_file_directly(*new String(config_filespec));
1.8       paf       491: 
1.338     moko      492:                // filling mail received
                    493:                mail.fill_received(*this);
                    494: 
1.272     paf       495:                try {
                    496:                        // compile requested file
1.389     moko      497:                        if(request_info.path_translated)
                    498:                                use_file_directly(*new String(request_info.path_translated, String::L_TAINTED), true, true /* load auto.p files */);
1.272     paf       499:                        configure();
                    500:                } catch(...) {
                    501:                        configure(); // configure anyway, useful in @unhandled_exception [say, if they would want to mail by SMTP something]
                    502:                        rethrow;
                    503:                }
1.25      paf       504: 
1.412     moko      505:                VStateless_class& main = amain_class_name ? get_class_ref(*amain_class_name) : main_class;
1.25      paf       506:                // execute @main[]
1.412     moko      507:                const String* body_string=amain_method_name.is_empty() ? &String::Empty : execute_method(main, amain_method_name);
1.41      paf       508:                if(!body_string)
1.412     moko      509:                        throw Exception(PARSER_RUNTIME, &amain_method_name, "method not found in class %s", main.type());
1.79      paf       510: 
1.250     paf       511:                // extract response body
1.344     moko      512:                Value* body_value=response.fields().get(download_name_upper); // $response:download?
1.430     moko      513:                bool as_attachment=body_value!=0;
1.250     paf       514:                if(!body_value)
1.344     moko      515:                        body_value=response.fields().get(body_name_upper); // $response:body
1.250     paf       516:                if(!body_value)
                    517:                        body_value=new VString(*body_string); // just result of ^main[]
                    518: 
1.119     paf       519:                // @postprocess
1.383     moko      520:                if(const Method *method=main_class.get_method(post_process_method_name)) {
                    521:                        METHOD_FRAME_ACTION(*method, 0 /*no parent*/, main_class, {
                    522:                                frame.store_params(&body_value, 1);
                    523:                                call(frame);
                    524:                                body_value=&frame.result();
                    525:                        });
                    526:                }
1.90      paf       527: 
1.430     moko      528:                // can throw exceptions while handling $response:download[]
                    529:                output_result(body_value->as_vfile(flang, &charsets), header_only, as_attachment);
1.171     parser    530:        } catch(const Exception& e) { // request handling problem
1.258     paf       531: 
1.431   ! moko      532:                // we're returning not result, but error explanation
        !           533:                Request::Exception_details details=get_details(e);
        !           534:                const char* exception_cstr=get_exception_cstr(e, details);
        !           535: 
        !           536:                // reset language to default
        !           537:                flang=fdefault_lang;
        !           538:                // reset response
        !           539:                response.fields().clear();
        !           540:                SAPI::clear_headers(sapi_info);
1.407     moko      541: 
1.431   ! moko      542:                // this is what we'd return in $response:body
        !           543:                const String* body_string=0;
1.407     moko      544: 
1.431   ! moko      545:                try {
1.407     moko      546:                        // maybe we'd be lucky enough as to report an error in a gracefull way...
                    547:                        if(const Method *method=main_class.get_method(*new String(UNHANDLED_EXCEPTION_METHOD_NAME))) {
                    548:                                // preparing parameters to @unhandled_exception[exception;stack]
                    549: 
                    550:                                Table& stack_trace=exception_trace.table(*this);
                    551:                                exception_trace.clear(); // forget all about previous life, in case there would be error inside of this method, error handled would not be mislead by old stack contents (see extract_origin)
                    552: 
                    553:                                Value *params[]={&details.vhash, new VTable(&stack_trace)};
                    554:                                METHOD_FRAME_ACTION(*method, 0 /*no caller*/, main_class, {
                    555:                                        frame.store_params(params, 2);
                    556:                                        call(frame);
                    557:                                        body_string=&frame.result().as_string();
                    558:                                });
                    559:                        }
1.383     moko      560: 
1.407     moko      561:                        // conditionally log it
                    562:                        Value* vhandled=details.vhash.hash().get(exception_handled_part_name);
                    563:                        if(!vhandled || !vhandled->as_bool()) {
                    564:                                SAPI::log(sapi_info, "%s", exception_cstr);
                    565:                        }
1.431   ! moko      566:                } catch(const Exception& e) { // exception in @unhandled_exception
        !           567:                        Request::Exception_details details=get_details(e);
        !           568:                        // logging both initial and new exceptions
        !           569:                        SAPI::log(sapi_info, "%s", exception_cstr);
        !           570:                        SAPI::log(sapi_info, "Exception in @unhandled_exception at %s", get_exception_cstr(e, details));
        !           571:                        SAPI::send_error(sapi_info, "Exception in @unhandled_exception, details are available in Parser error log.");
        !           572:                        return;
        !           573:                }
1.383     moko      574: 
1.431   ! moko      575:                if(body_string) {  // could report an error beautifully?
        !           576:                        VString body_vstring(*body_string);
        !           577:                        output_result(body_vstring.as_vfile(flang, &charsets), header_only, false);
        !           578:                } else {
        !           579:                        // doing that ugly
        !           580:                        SAPI::send_error(sapi_info, exception_cstr, strcmp(e.type(), "file.missing") ? "500" : "404");
1.268     paf       581:                }
1.1       paf       582:        }
                    583: }
                    584: 
1.266     paf       585: uint Request::register_file(String::Body file_spec) {
1.248     paf       586:        file_list+=file_spec;
                    587:        return file_list.count()-1;
                    588: }
                    589: 
1.387     moko      590: void Request::use_file_directly(const String& file_spec, bool fail_on_file_absence, bool with_auto_p) {
1.73      paf       591:        // cyclic dependence check
1.318     misha     592:        if(used_files.get(file_spec))
1.248     paf       593:                return;
1.318     misha     594:        used_files.put(file_spec, true);
                    595: 
1.385     moko      596:        if(!fail_on_file_absence && !entry_exists(file_spec)) // ignore file absence if asked for
                    597:                return;
1.318     misha     598: 
1.386     moko      599:        if(with_auto_p) {
                    600:                // loading auto.p files from document_root/.. 
                    601:                // to the one beside requested file.
                    602:                // all assigned bases from upper dir
                    603:                const char* target=file_spec.cstr();
                    604: 
                    605:                // all relative paths are calculated from main document
                    606:                request_info.path_translated=target;
                    607: 
                    608:                const char* after=target;
                    609:                size_t drlen=strlen(request_info.document_root);
                    610:                if(memcmp(after, request_info.document_root, drlen)==0) {
                    611:                        after+=drlen;
                    612:                        if(after[-1]=='/') 
                    613:                                --after;
                    614:                }
                    615: 
                    616:                while(const char* before=strchr(after, '/')) {
                    617:                        String& sfile_spec=*new String;
                    618:                        if(after!=target) {
                    619:                                sfile_spec.append_strdup(target, before-target, String::L_CLEAN);
                    620:                                sfile_spec << "/" AUTO_FILE_NAME;
                    621: 
1.387     moko      622:                                use_file_directly(sfile_spec, false /*ignore absence, sole user*/);
1.386     moko      623:                        }
                    624:                        for(after=before+1;*after=='/';after++);
                    625:                }
                    626:        }
                    627: 
1.385     moko      628:        if(const char* source=file_read_text(charsets, file_spec, true))
1.387     moko      629:                use_buf(main_class, source, 0, register_file(file_spec));
1.318     misha     630: }
                    631: 
                    632: 
1.387     moko      633: void Request::use_file(const String& file_name, const String* use_filespec/*absolute*/, bool with_auto_p) {
1.326     misha     634:        if(file_name.is_empty())
1.366     moko      635:                throw Exception(PARSER_RUNTIME, 0, "usage failed - no filename was specified");
1.326     misha     636: 
1.318     misha     637:        const String* filespec=0;
                    638: 
                    639:        if(file_name.first_char()=='/') //absolute path? [no need to scan MAIN:CLASS_PATH]
1.388     moko      640:                filespec=&full_disk_path(file_name);
1.318     misha     641:        else if(use_filespec){ // search in current dir first
1.331     misha     642:                size_t last_slash_pos=use_filespec->strrpbrk("/");
                    643:                if(last_slash_pos!=STRING_NOT_FOUND)
                    644:                        filespec=file_exist(use_filespec->mid(0, last_slash_pos), file_name); // found in current dir?
1.318     misha     645:        }
                    646: 
                    647:        if(!filespec){
                    648:                // prevent multiple scan CLASS_PATH for searching one file
                    649:                if(searched_along_class_path.get(file_name))
                    650:                        return;
                    651:                searched_along_class_path.put(file_name, true);
1.308     misha     652:                if(Value* element=main_class.get_element(class_path_name)) {
1.233     paf       653:                        if(element->is_string()) {
1.388     moko      654:                                filespec=file_exist(full_disk_path(element->as_string()), file_name); // found at class_path?
1.233     paf       655:                        } else if(Table *table=element->get_table()) {
1.318     misha     656:                                for(size_t i=table->count(); i--; ) {
1.248     paf       657:                                        const String& path=*(*table->get(i))[0];
1.388     moko      658:                                        if(filespec=file_exist(full_disk_path(path), file_name))
1.233     paf       659:                                                break; // found along class_path
                    660:                                }
                    661:                        } else
1.366     moko      662:                                throw Exception(PARSER_RUNTIME, 0, "$" CLASS_PATH_NAME " must be string or table");
1.318     misha     663:                        if(!filespec)
1.415     moko      664:                                throw Exception(PARSER_RUNTIME, &file_name, "not found along $MAIN:" CLASS_PATH_NAME);
1.318     misha     665:                } else 
1.415     moko      666:                        throw Exception(PARSER_RUNTIME, &file_name, "usage failed - no $MAIN:" CLASS_PATH_NAME " were specified");
1.148     parser    667:        }
1.230     paf       668: 
1.387     moko      669:        use_file_directly(*filespec, true, with_auto_p);
1.16      paf       670: }
                    671: 
1.364     moko      672: void Request::use_file(const String& file_name, const String* use_filespec/*absolute*/, Operation::Origin origin) {
1.349     moko      673:        static String use("USE");
                    674:        try {
1.364     moko      675:                static VHash* voptions=new VHash();
1.376     moko      676:                if(const Method *method=main_class.get_method(use_method_name)){
1.364     moko      677:                        Value *params[]={new VString(file_name), voptions};
                    678:                        voptions->hash().put(origin_key, new VString(*use_filespec));
                    679: 
                    680:                        CONSTRUCTOR_FRAME_ACTION(*method, 0 /*no parent*/, main_class, {
                    681:                                frame.store_params(params, 2);
                    682:                                // we don't need the result
                    683:                                call(frame);
                    684:                        });
                    685:                }
1.349     moko      686:        } catch (...) {
                    687:                exception_trace.push(Trace(&use, origin));
                    688:                rethrow;
                    689:        }
                    690: }
1.208     paf       691: 
1.358     moko      692: void Request::use_buf(VStateless_class& aclass, const char* source, const String* main_alias, uint file_no, int line_no_offset) {
                    693:        // temporary zero @conf to avoid it second execution
1.248     paf       694:        Temp_method temp_method_conf(aclass, conf_method_name, 0);
1.358     moko      695:        // temporary zero @auto to avoid it second execution
1.248     paf       696:        Temp_method temp_method_auto(aclass, auto_method_name, 0);
1.233     paf       697: 
1.295     misha     698:        // compile loaded classes
                    699:        ArrayClass& cclasses=compile(&aclass, source, main_alias, file_no, line_no_offset);
1.212     paf       700: 
1.248     paf       701:        VString* vfilespec=
                    702:                new VString(*new String(file_list[file_no], String::L_TAINTED));
1.295     misha     703: 
                    704:        for(size_t i=0; i<cclasses.count(); i++){
                    705:                VStateless_class& cclass=*cclasses.get(i);
1.296     misha     706: 
                    707:                // locate and execute possible @conf[] static
1.382     moko      708:                if(execute_method_if_exists(cclass, conf_method_name, vfilespec))
1.295     misha     709:                        configure_admin(cclass/*, executed.method->name*/);
                    710: 
                    711:                // locate and execute possible @auto[] static
1.419     moko      712:                execute_auto_method_if_exists(cclass, auto_method_name, vfilespec);
1.336     moko      713: 
                    714:                cclass.enable_default_setter();
1.295     misha     715:        }
1.19      paf       716: }
                    717: 
1.248     paf       718: const String& Request::relative(const char* apath, const String& relative_name) {
1.341     moko      719:        char *hpath=pa_strdup(apath);
1.248     paf       720:        String& result=*new String;
                    721:        if(rsplit(hpath, '/')) // if something/splitted
1.217     paf       722:                result << hpath << "/";
1.248     paf       723:        result << relative_name;
                    724:        return result;
1.19      paf       725: }
                    726: 
1.388     moko      727: const String& Request::full_disk_path(const String& relative_name) {
1.217     paf       728:        if(relative_name.first_char()=='/') {
1.341     moko      729:                String& result=*new String(pa_strdup(request_info.document_root));
1.104     paf       730:                result << relative_name;
1.19      paf       731:                return result;
1.389     moko      732:        }
1.421     moko      733:        if(relative_name.starts_with("http://") || relative_name.starts_with("parser://")
1.247     paf       734: #ifdef WIN32
1.389     moko      735:                || relative_name.pos(":")==1  // DRIVE:
                    736:                || relative_name.starts_with("\\\\") // UNC1
                    737:                || relative_name.starts_with("//") // UNC2
1.247     paf       738: #endif
1.389     moko      739:                )
                    740:                return relative_name;
                    741: 
                    742:        return relative(request_info.path_translated ? request_info.path_translated : request_info.document_root, relative_name);
1.1       paf       743: }
1.45      paf       744: 
1.267     paf       745: #ifndef DOXYGEN
                    746: class Add_header_attribute_info
                    747: {
                    748: public:
                    749:        Add_header_attribute_info(Request& ar) : r(ar), add_last_modified(true) {}
                    750:        Request& r;
                    751:        bool add_last_modified;
                    752: };
                    753: #endif
1.344     moko      754: static void add_header_attribute(HashStringValue::key_type name, HashStringValue::value_type value, Add_header_attribute_info* info) {
                    755:        if(name==BODY_NAME_UPPER || name==DOWNLOAD_NAME_UPPER || name==CHARSET_NAME_UPPER)
1.101     paf       756:                return;
1.290     misha     757:        
1.345     moko      758:        if(name==LAST_MODIFIED_NAME_UPPER)
                    759:                info->add_last_modified=false;
                    760: 
1.316     misha     761:        const char* aname=String(name, String::L_URI).untaint_and_transcode_cstr(String::L_URI, &info->r.charsets);
1.101     paf       762: 
1.267     paf       763:        SAPI::add_header_attribute(info->r.sapi_info,
1.345     moko      764:                        aname,
1.316     misha     765:                        attributed_meaning_to_string(*value, String::L_URI, false).untaint_and_transcode_cstr(String::L_URI, &info->r.charsets)
1.303     misha     766:                );
1.267     paf       767: }
                    768: 
1.366     moko      769: static void output_sole_piece(Request& r, bool header_only, VFile& body_file, Value* body_file_content_type) {
1.267     paf       770:        // transcode text body when "text/*" or simple result
                    771:        String::C output(body_file.value_ptr(), body_file.value_size());
                    772:        if(!body_file_content_type/*vstring.as_vfile*/ || body_file_content_type->as_string().pos("text/")==0)
1.366     moko      773:                output=Charset::transcode(output, r.charsets.source(), r.charsets.client());
1.267     paf       774: 
1.311     misha     775:        // prepare header: Content-Length
1.428     moko      776:        SAPI::add_header_attribute(r.sapi_info, HTTP_CONTENT_LENGTH, pa_uitoa(output.length));
1.267     paf       777: 
                    778:        // send header
1.430     moko      779:        SAPI::send_headers(r.sapi_info);
1.267     paf       780:        
                    781:        // send body
                    782:        if(!header_only)
                    783:                SAPI::send_body(r.sapi_info, output.str, output.length);
                    784: }
                    785: 
                    786: #ifndef DOXYGEN
                    787: struct Range
                    788: {
1.396     moko      789:        uint64_t start;
                    790:        uint64_t end;
1.267     paf       791: };
                    792: #endif
1.396     moko      793: 
                    794: #define UNSET ((uint64_t)-1)
                    795: 
1.313     misha     796: static void parse_range(const String* s, Array<Range> &ar) {
1.267     paf       797:        const char *p = s->cstr();
                    798:        if(s->starts_with("bytes="))
                    799:                p += 6;
                    800:        Range r;
                    801:        while(*p){
1.396     moko      802:                r.start = UNSET;
                    803:                r.end = UNSET;
1.401     moko      804: 
                    805:                while(*p==' ' || *p=='\t') p++;
                    806: 
1.267     paf       807:                if(*p >= '0' && *p <= '9'){
1.416     moko      808:                        const char *n=p;
1.401     moko      809:                        while(*p>='0' && *p<='9') p++;
1.416     moko      810:                        r.start = pa_atoul(pa_strdup(n, p-n));
1.267     paf       811:                }
1.401     moko      812: 
                    813:                while(*p==' ' || *p=='\t') p++;
                    814: 
1.267     paf       815:                if(*p++ != '-') break;
1.401     moko      816: 
                    817:                while(*p==' ' || *p=='\t') p++;
                    818: 
1.267     paf       819:                if(*p >= '0' && *p <= '9'){
1.416     moko      820:                        const char *n=p;
1.401     moko      821:                        while(*p>='0' && *p<='9') p++;
1.416     moko      822:                        r.end = pa_atoul(pa_strdup(n, p-n));
1.267     paf       823:                }
1.401     moko      824: 
                    825:                while(*p==' ' || *p=='\t') p++;
                    826: 
                    827:                if(*p)
                    828:                        if(*p++ != ',') break;
                    829: 
1.267     paf       830:                ar += r;
                    831:        }
1.101     paf       832: }
1.267     paf       833: 
1.400     moko      834: struct Send_range_action_info {
                    835:        Request *r;
                    836:        uint64_t offset;
                    837:        uint64_t part_length;
                    838: };
                    839: 
                    840: static void send_range(struct stat& /*finfo*/, int f, const String& /*file_spec*/, void *context){
                    841:        Send_range_action_info &info = *(Send_range_action_info*)context;
                    842: 
1.430     moko      843:        SAPI::send_headers(info.r->sapi_info);
1.400     moko      844:        pa_lseek(f, info.offset, SEEK_SET);
                    845: 
                    846:        const size_t BUFSIZE = 128*0x400;
                    847:        char buf[BUFSIZE];
                    848:        do{
                    849:                size_t to_read = info.part_length < BUFSIZE ? (size_t)info.part_length : BUFSIZE;
                    850:                size_t to_write = file_block_read(f, buf, to_read);
                    851: 
                    852:                if(to_write == 0)
                    853:                        break;
                    854: 
                    855:                size_t size = SAPI::send_body(info.r->sapi_info, buf, to_write);
                    856:                if(size != to_write)
                    857:                        break;
                    858: 
                    859:                info.part_length -= to_write;
                    860:        } while (info.part_length);
                    861: }
                    862: 
1.396     moko      863: static void output_pieces(Request& r, bool header_only, const String& filename, uint64_t content_length, Value& date, bool add_last_modified) {
1.315     misha     864:        SAPI::add_header_attribute(r.sapi_info, "accept-ranges", "bytes");
1.270     paf       865: 
1.339     moko      866:        const char *range = SAPI::Env::get(r.sapi_info, "HTTP_RANGE");
1.396     moko      867:        uint64_t offset=0;
                    868:        uint64_t part_length=content_length;
1.401     moko      869: 
                    870:        if(range && content_length){
1.267     paf       871:                Array<Range> ar;
                    872:                parse_range(new String(range), ar);
1.396     moko      873:                int count = ar.count();
1.267     paf       874:                if(count == 1){
                    875:                        Range &rg = ar.get_ref(0);
1.401     moko      876: 
                    877:                        if(rg.start == UNSET && rg.end == UNSET)
                    878:                                return SAPI::send_error(r.sapi_info, "", "416");
                    879: 
1.396     moko      880:                        if(rg.start == UNSET && rg.end != UNSET){
1.401     moko      881:                                if(rg.end > content_length)
                    882:                                        rg.end = content_length;
1.404     moko      883:                                rg.start = content_length - rg.end;
                    884:                                rg.end =  content_length-1;
1.401     moko      885:                        } else if(rg.start != UNSET && rg.end == UNSET){
                    886:                                if(rg.start >= content_length)
                    887:                                        return SAPI::send_error(r.sapi_info, "", "416");
1.267     paf       888:                                rg.end = content_length-1;
1.401     moko      889:                        } else {
                    890:                                if(rg.start >= content_length || rg.start > rg.end)
                    891:                                        return SAPI::send_error(r.sapi_info, "", "416");
                    892:                                if(rg.end >= content_length)
                    893:                                        rg.end = content_length-1;
1.267     paf       894:                        }
1.401     moko      895: 
                    896:                        offset = rg.start;
                    897:                        part_length = rg.end-rg.start+1;
                    898: 
1.400     moko      899:                        char buf[MAX_STRING];
                    900:                        snprintf(buf, MAX_STRING, "bytes %.15g-%.15g/%.15g", (double)rg.start, (double)rg.end, (double)content_length);
1.401     moko      901:                        SAPI::add_header_attribute(r.sapi_info, HTTP_STATUS, "206");
1.315     misha     902:                        SAPI::add_header_attribute(r.sapi_info, "content-range", buf);
1.401     moko      903:                } else {
1.410     moko      904:                        return SAPI::send_error(r.sapi_info, count ? "Multiple ranges are not supported" : "Invalid range", count ? "501" : "400");
1.267     paf       905:                }
                    906:        }
                    907: 
1.428     moko      908:        SAPI::add_header_attribute(r.sapi_info, HTTP_CONTENT_LENGTH, pa_uitoa(part_length));
1.267     paf       909: 
1.314     misha     910:        if(add_last_modified)
1.315     misha     911:                SAPI::add_header_attribute(r.sapi_info, "last-modified", attributed_meaning_to_string(date, String::L_AS_IS, true).cstr());
1.314     misha     912: 
1.414     moko      913:        if(header_only){
1.430     moko      914:                SAPI::send_headers(r.sapi_info);
1.414     moko      915:        } else {
1.400     moko      916:                Send_range_action_info info = { &r, offset, part_length};
                    917:                file_read_action_under_lock(r.full_disk_path(filename), "send", send_range, &info);
1.267     paf       918:        }
                    919: }
                    920: 
1.248     paf       921: void Request::output_result(VFile* body_file, bool header_only, bool as_attachment) {
1.51      paf       922:        // header: cookies
1.248     paf       923:        cookie.output_result(sapi_info);
1.51      paf       924:        
1.394     moko      925:        // $.file and $.name (when body is real vfile)
                    926:        Value* vfile = body_file->fields().get(response_body_file_name);
                    927:        Value* vname = body_file->fields().get(name_name);
                    928: 
                    929:        const String* sfile = vfile ? &vfile->as_string() : NULL;
                    930:        const String* sname = vname ? &vname->as_string() : NULL;
                    931: 
                    932:        if(sname && *sname == NONAME_DAT)
                    933:                sname = NULL;
1.92      paf       934: 
1.409     moko      935:        // Content-Disposition, use $.name[<empty>] to avoid
1.394     moko      936:        const String* disposition_name = sname ? sname->is_empty() ? NULL : sname : sfile;
                    937:        if(disposition_name) {
1.420     moko      938:                String& filename = *new String(pa_filename(disposition_name->cstr()), String::L_URI);
                    939:                String& filename_asterisk = *new String(charsets.client().NAME(), String::L_CLEAN) << (*new String("''")) << filename;
                    940: 
1.394     moko      941:                VHash& hash=*new VHash();
                    942:                hash.hash().put(value_name, new VString(as_attachment ? content_disposition_attachment : content_disposition_inline));
1.420     moko      943:                hash.hash().put(content_disposition_filename_name, new VString(filename));
                    944:                hash.hash().put(content_disposition_filename_name_asterisk, new VString(filename_asterisk));
1.394     moko      945:                response.fields().put(content_disposition_name_upper, &hash);
                    946:        }
1.267     paf       947: 
1.394     moko      948:        // _file_ content-type might be specified
                    949:        Value* body_file_content_type = body_file->fields().get(content_type_name);
                    950:        if(!body_file_content_type){
                    951:                const String* scontent_name = sname && !sname->is_empty() ? sname : sfile;
                    952:                if(scontent_name)
                    953:                        body_file_content_type = new VString(mime_type_of(scontent_name->cstr()));
1.267     paf       954:        }
                    955: 
1.312     misha     956:        // set Content-Type
1.314     misha     957:        if(body_file_content_type) {
                    958:                // body file content type
1.344     moko      959:                response.fields().put(content_type_name_upper, body_file_content_type);
1.314     misha     960:        } else {
                    961:                // default content type
1.344     moko      962:                response.fields().put_dont_replace(content_type_name_upper, new VString(*new String(DEFAULT_CONTENT_TYPE)));
1.314     misha     963:        }
1.312     misha     964: 
1.314     misha     965:        // prepare header: $response:fields without :body, :download and :charset
1.267     paf       966:        Add_header_attribute_info info(*this);
1.281     paf       967:        response.fields().for_each<Add_header_attribute_info*>(add_header_attribute, &info);
1.50      paf       968: 
1.394     moko      969:        if(sfile) {
1.314     misha     970:                // $response:[download|body][$.file[filespec]] -- optput specified file
1.367     moko      971:                uint64_t content_length=0;
1.267     paf       972:                time_t atime=0, mtime=0, ctime=0;
1.394     moko      973:                file_stat(full_disk_path(*sfile), content_length, atime, mtime, ctime);
1.267     paf       974: 
                    975:                VDate* vdate=0;
                    976:                if(Value* v=body_file->fields().get("mdate")) {
1.423     moko      977:                        vdate=dynamic_cast<VDate*>(v);
                    978:                        if(!vdate)
1.286     misha     979:                                throw Exception(PARSER_RUNTIME, 0, "mdate must be a date");
1.267     paf       980:                }
                    981:                if(!vdate)
1.346     moko      982:                        vdate=new VDate((pa_time_t)mtime);
1.62      paf       983: 
1.399     moko      984:                output_pieces(*this, header_only, *sfile, content_length, *vdate, info.add_last_modified);
1.267     paf       985:        } else {
1.314     misha     986:                if(body_file_content_type)
                    987:                        if(HashStringValue *hash=body_file_content_type->get_hash())
                    988:                                body_file_content_type=hash->get(value_name);
                    989: 
1.366     moko      990:                output_sole_piece(*this, header_only, *body_file, body_file_content_type);
1.267     paf       991:        }
1.50      paf       992: }
1.104     paf       993: 
1.328     misha     994: const String& Request::mime_type_of(const String* file_name) {
                    995:        return mime_type_of(file_name?file_name->taint_cstr(String::L_FILE_SPEC):0);
                    996: }
                    997: 
1.248     paf       998: const String& Request::mime_type_of(const char* user_file_name_cstr) {
1.104     paf       999:        if(mime_types)
1.248     paf      1000:                if(const char* cext=strrchr(user_file_name_cstr, '.')) {
                   1001:                        String sext(++cext);
1.246     paf      1002:                        Table::Action_options options;
1.342     moko     1003:                        if(mime_types->locate(0, sext.change_case(charsets.source(), String::CC_LOWER), options)) {
1.313     misha    1004:                                if(const String* result=mime_types->item(1))
                   1005:                                        return *result;
1.104     paf      1006:                                else
1.395     moko     1007:                                        throw Exception(PARSER_RUNTIME, 0, MIME_TYPES_NAME " table column elements must not be empty");
1.342     moko     1008:                        }
1.104     paf      1009:                }
1.248     paf      1010: 
                   1011:        return *new String("application/octet-stream");
                   1012: }
                   1013: 
1.365     moko     1014: const String* Request::get_used_filespec(uint file_no){
1.318     misha    1015:        if(file_no < file_list.count())
                   1016:                return new String(file_list[file_no], String::L_TAINTED);
                   1017:        return 0;
                   1018: }
                   1019: 
1.248     paf      1020: #ifdef XML
1.280     paf      1021: xmlChar* Request::transcode(const String& s) {
1.248     paf      1022:        return charsets.source().transcode(s);
                   1023: }
                   1024: 
1.280     paf      1025: xmlChar* Request::transcode(const String::Body s) {
1.248     paf      1026:        return charsets.source().transcode(s);
                   1027: }
                   1028: 
1.280     paf      1029: const String& Request::transcode(const xmlChar* s) {
1.248     paf      1030:        return charsets.source().transcode(s);
1.233     paf      1031: }
1.248     paf      1032: #endif
                   1033: 
1.349     moko     1034: Request::Exception_details Request::get_details(const Exception& e) {
                   1035:        const String* problem_source=e.problem_source();
                   1036:        VHash& vhash=*new VHash;  HashStringValue& hash=vhash.hash();
                   1037:        Operation::Origin origin={0, 0, 0};
1.248     paf      1038: 
1.349     moko     1039:        if(!exception_trace.is_empty()) {
                   1040:                Trace bottom=exception_trace.bottom_value();
1.350     moko     1041:                origin=bottom.origin();
                   1042:                if(!problem_source) { // we don't know who trigged the bug
                   1043:                        problem_source=bottom.name(); // we usually know source of next-from-throw-point exception did that
                   1044:                        exception_trace.set_bottom_index(exception_trace.bottom_index()+1);
                   1045:                } else if (bottom.name()==problem_source) { // it is that same guy?
1.349     moko     1046:                        exception_trace.set_bottom_index(exception_trace.bottom_index()+1); // throw away that trace
                   1047:                } else {
                   1048:                        // stack top contains not us, leaving intact to help ^throw
1.279     paf      1049:                }
1.248     paf      1050:        }
                   1051: 
                   1052:        // $.type
                   1053:        if(const char* type=e.type(true))
                   1054:                hash.put(exception_type_part_name, new VString(*new String(type)));
                   1055: 
                   1056:        // $.source
1.349     moko     1057:        if(problem_source)
                   1058:                hash.put(exception_source_part_name, new VString(*new String(*problem_source, String::L_TAINTED)));
1.248     paf      1059: 
1.349     moko     1060:        // $.file $.lineno $.colno
                   1061:        if(origin.file_no){
1.347     moko     1062:                hash.put("file", new VString(*new String(file_list[origin.file_no], String::L_TAINTED)));
                   1063:                hash.put("lineno", new VInt(1+origin.line));
                   1064:                hash.put("colno", new VInt(1+origin.col));
1.248     paf      1065:        }
                   1066: 
                   1067:        // $.comment
                   1068:        if(const char* comment=e.comment(true))
1.349     moko     1069:                hash.put(exception_comment_part_name, new VString(*new String(comment, String::L_TAINTED)));
1.248     paf      1070: 
                   1071:        // $.handled(0)
1.299     misha    1072:        hash.put(exception_handled_part_name, &VBool::get(false));
1.233     paf      1073: 
1.349     moko     1074:        return Request::Exception_details(origin, problem_source, vhash);
1.133     parser   1075: }
1.337     moko     1076: 
                   1077: Temp_value_element::Temp_value_element(Request& arequest, Value& awhere, const String& aname, Value* awhat) :
                   1078:        frequest(arequest),
                   1079:        fwhere(awhere),
                   1080:        fname(aname),
                   1081:        saved(awhere.get_element(aname))
                   1082: {
                   1083:        Junction* junction;
                   1084:        if(saved && (junction=saved->get_junction()) && junction->is_getter)
                   1085:                saved=0;
                   1086:        frequest.put_element(fwhere, aname, awhat);
                   1087: }
                   1088: 
                   1089: Temp_value_element::~Temp_value_element() {
                   1090:        frequest.put_element(fwhere, fname, saved ? saved : VVoid::get());
                   1091: }

E-mail: