--- parser3/src/classes/form.C 2001/10/19 12:43:29 1.18 +++ parser3/src/classes/form.C 2002/07/01 14:00:36 1.24 @@ -1,10 +1,10 @@ /** @file Parser: @b form parser class. - Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com) - Author: Alexander Petrosyan (http://design.ru/paf) + Copyright (c) 2001, 2002 ArtLebedev Group (http://www.artlebedev.com) + Author: Alexandr Petrosian (http://paf.design.ru) - $Id: form.C,v 1.18 2001/10/19 12:43:29 parser Exp $ + $Id: form.C,v 1.24 2002/07/01 14:00:36 paf Exp $ */ #include "classes.h" @@ -16,8 +16,6 @@ const size_t MAX_POST_SIZE_DEFAULT=10*0x // defines -#define FORM_CLASS_NAME "form" - #define LIMITS_NAME "LIMITS" #define MAX_POST_SIZE_NAME "post_max_size" @@ -39,11 +37,9 @@ private: // constructor & configurator -MForm::MForm(Pool& apool) : Methoded(apool), +MForm::MForm(Pool& apool) : Methoded(apool, "form"), max_post_size_name(apool, MAX_POST_SIZE_NAME), - limits_name(apool, LIMITS_NAME) -{ - set_name(*NEW String(pool(), FORM_CLASS_NAME)); + limits_name(apool, LIMITS_NAME) { } void MForm::configure_admin(Request& r) { @@ -57,15 +53,15 @@ void MForm::configure_admin(Request& r) size_t max_post_size=value?value:MAX_POST_SIZE_DEFAULT; if(r.info.content_length>max_post_size) - throw Exception(0, 0, + throw Exception("parser.runtime", 0, "posted content_length(%u) > max_post_size(%u)", - r.post_size, max_post_size); + r.content_length, max_post_size); if(r.info.content_length<0) - throw Exception(0, 0, + throw Exception(0, 0, "posted content_length(%u) < 0", - r.post_size); + r.content_length); // read POST data if(r.info.content_length) { @@ -73,7 +69,7 @@ void MForm::configure_admin(Request& r) r.post_size=SAPI::read_post(pool, r.post_data, r.info.content_length); } if(r.post_size!=r.info.content_length) - throw Exception(0, 0, + throw Exception(0, 0, "post_size(%u)!=content_length(%u)", r.post_size, r.info.content_length);