--- parser3/src/classes/file.C 2001/05/04 10:42:35 1.36 +++ parser3/src/classes/file.C 2001/07/11 15:02:09 1.40 @@ -5,8 +5,9 @@ Author: Alexander Petrosyan (http://design.ru/paf) - $Id: file.C,v 1.36 2001/05/04 10:42:35 paf Exp $ + $Id: file.C,v 1.40 2001/07/11 15:02:09 parser Exp $ */ +static const char *RCSId="$Id: file.C,v 1.40 2001/07/11 15:02:09 parser Exp $"; #include "classes.h" #include "pa_request.h" @@ -14,6 +15,7 @@ #include "pa_table.h" #include "pa_vint.h" #include "pa_exec.h" +#include "pa_vdate.h" // consts @@ -43,7 +45,7 @@ const int FIND_MONKEY_MAX_HOPS=10; // methods static void _save(Request& r, const String&, MethodParams *params) { - Value& vfile_name=params->get_no_junction(0, "file name must not be code"); + Value& vfile_name=params->as_no_junction(0, "file name must not be code"); // save static_cast(r.self)->save(r.absolute(vfile_name.as_string())); @@ -51,7 +53,7 @@ static void _save(Request& r, const Stri static void _delete(Request& r, const String&, MethodParams *params) { Pool& pool=r.pool(); - Value& vfile_name=params->get_no_junction(0, "file name must not be code"); + Value& vfile_name=params->as_no_junction(0, "file name must not be code"); // unlink file_delete(pool, r.absolute(vfile_name.as_string())); @@ -59,7 +61,7 @@ static void _delete(Request& r, const St static void _find(Request& r, const String& method_name, MethodParams *params) { Pool& pool=r.pool(); - Value& vfile_name=params->get_no_junction(0, "file name must not be code"); + Value& vfile_name=params->as_no_junction(0, "file name must not be code"); const String &lfile_name=vfile_name.as_string(); @@ -83,14 +85,14 @@ static void _find(Request& r, const Stri // not found if(params->size()==2) { - Value& not_found_code=params->get_junction(1, "not-found param must be code"); + Value& not_found_code=params->as_junction(1, "not-found param must be code"); r.write_pass_lang(r.process(not_found_code)); } } static void _load(Request& r, const String& method_name, MethodParams *params) { Pool& pool=r.pool(); - Value& vfile_name=params->get_no_junction(0, "file name must not be code"); + Value& vfile_name=params->as_no_junction(0, "file name must not be code"); const String& lfile_name=vfile_name.as_string(); @@ -106,13 +108,22 @@ static void _load(Request& r, const Stri static void _stat(Request& r, const String& method_name, MethodParams *params) { Pool& pool=r.pool(); - Value& vfile_name=params->get_no_junction(0, "file name must not be code"); + Value& vfile_name=params->as_no_junction(0, "file name must not be code"); const String& lfile_name=vfile_name.as_string(); - size_t size=file_size(r.absolute(lfile_name)); + size_t size; + time_t atime, mtime, ctime; + file_stat(r.absolute(lfile_name), + size, + atime, mtime, ctime); - static_cast(r.self)->set(true/*tainted*/, 0/*no bytes*/, size); + VFile& vfile=*static_cast(r.self); + vfile.set(true/*tainted*/, 0/*no bytes*/, size); + Hash& ff=vfile.fields(); + ff.put(*new(pool) String(pool, "adate"), new(pool) VDate(pool, atime)); + ff.put(*new(pool) String(pool, "mdate"), new(pool) VDate(pool, mtime)); + ff.put(*new(pool) String(pool, "cdate"), new(pool) VDate(pool, ctime)); } static void append_env_pair(const Hash::Key& key, Hash::Val *value, void *info) { @@ -132,7 +143,7 @@ static void pass_cgi_header_attribute(Ar static void _cgi(Request& r, const String& method_name, MethodParams *params) { Pool& pool=r.pool(); - Value& vfile_name=params->get_no_junction(0, "file name must not be code"); + Value& vfile_name=params->as_no_junction(0, "file name must not be code"); const String& script_name=r.absolute(vfile_name.as_string()); @@ -181,7 +192,7 @@ static void _cgi(Request& r, const Strin #endif if(params->size()>1) { - Value& venv=params->get_no_junction(1, "env must not be code"); + Value& venv=params->as_no_junction(1, "env must not be code"); if(Hash *user_env=venv.get_hash()) user_env->for_each(append_env_pair, &env); else