--- parser3/src/targets/cgi/parser3.C 2001/03/14 08:50:05 1.5 +++ parser3/src/targets/cgi/parser3.C 2001/03/14 09:12:06 1.9 @@ -3,7 +3,7 @@ Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com) Author: Alexander Petrosyan (http://design.ru/paf) - $Id: parser3.C,v 1.5 2001/03/14 08:50:05 paf Exp $ + $Id: parser3.C,v 1.9 2001/03/14 09:12:06 paf Exp $ */ #ifdef HAVE_CONFIG_H @@ -23,10 +23,12 @@ #include "pa_globals.h" #include "pa_request.h" #include "pa_common.h" +#include "vform_fields_fill.h" Pool pool; // global pool #ifdef WIN32 +# if MSVC // intercept global system errors LONG WINAPI TopLevelExceptionFilter ( struct _EXCEPTION_POINTERS *ExceptionInfo @@ -51,18 +53,9 @@ LONG WINAPI TopLevelExceptionFilter ( return EXCEPTION_EXECUTE_HANDLER; // never reached } +# endif #endif -void fill_vform_fields(Pool& pool, bool cgi, Hash& fields) { - String& ename=*new(pool) String(pool); - ename.APPEND_CONST("test"); - - String& evalue=*new(pool) String(pool); - evalue.APPEND_TAINTED("", 0, "form", 0); - - fields.put(ename, new(pool) VString(evalue)); -} - int main(int argc, char *argv[]) { // were we started as CGI? bool cgi= @@ -75,32 +68,33 @@ int main(int argc, char *argv[]) { PTRY { // global try // must be first in PTRY{}PCATCH #ifdef WIN32 +# if MSVC SetUnhandledExceptionFilter(&TopLevelExceptionFilter); //TODO: initSocks(); +# endif #endif - fill_globals(pool); + globals_init(pool); - Pool request_pool; // request pool // TODO: ifdef WIN32 flip \\ to / const char *document_root="Y:/parser3/src/"; const char *page_filespec="Y:/parser3/src/test.p"; // prepare to process request - Request request(request_pool, + Request request(Pool(), cgi ? String::Untaint_lang::HTML_TYPO : String::Untaint_lang::NO, document_root, page_filespec ); // fill user passed forms - fill_vform_fields(pool, cgi, request.form_class.fields()); + vform_fields_fill(pool, cgi, request.form_class.fields()); // some root-controlled location char *sys_auto_path1; #ifdef WIN32 sys_auto_path1=(char *)pool.malloc(MAX_STRING); - GetWindowsDirectory(sys_auto_path1, MAX_STRING-1/*for \*/); + GetWindowsDirectory(sys_auto_path1, MAX_STRING); strcat(sys_auto_path1, "\\"); #else sys_auto_path1=getenv("HOME"); @@ -108,8 +102,8 @@ int main(int argc, char *argv[]) { // beside by binary char *sys_auto_path2=(char *)pool.malloc(MAX_STRING); - strncpy(sys_auto_path2, argv[0], MAX_STRING-20); // filespec of my binary - rsplit(sys_auto_path2, '\\'); rsplit(sys_auto_path2, '/'); // strip filename + strncpy(sys_auto_path2, argv[0], MAX_STRING); // filespec of my binary + rsplit(sys_auto_path2, PATH_DELIMITER_CHAR); // strip filename // process the request result=request.core( @@ -120,9 +114,11 @@ int main(int argc, char *argv[]) { // must be last in PTRY{}PCATCH #ifdef WIN32 +# if MSVC SetUnhandledExceptionFilter(0); +# endif #endif - } PCATCH(e) { // global problem, such as out of memory when creating Request + } PCATCH(e) { // global problem @globals fill @Request create @prepare to .core() result=0; strcpy(error, e.comment()); }