/** @file
Parser: parser @b operators.
Copyright (c) 2001, 2002 ArtLebedev Group (http://www.artlebedev.com)
Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru)
$Id: op.C,v 1.71 2002/02/08 08:30:10 paf Exp $
*/
#include "classes.h"
#include "pa_common.h"
#include "pa_request.h"
#include "pa_vint.h"
#include "pa_sql_connection.h"
// limits
#define MAX_LOOPS 10000
// defines
#define OP_CLASS_NAME "OP"
// class
class MOP : public Methoded {
public:
MOP(Pool& pool);
public: // Methoded
bool used_directly() { return true; }
void configure_user(Request& r);
private:
String main_sql_name;
String main_sql_drivers_name;
};
// methods
static void _if(Request& r, const String&, MethodParams *params) {
Value& condition_code=params->as_junction(0, "condition must be expression");
bool condition=r.process(condition_code,
0/*no name*/,
false/*don't intercept string*/).as_bool();
if(condition)
r.write_pass_lang(r.process(params->as_junction(1, "'then' parameter must be code")));
else if(params->size()>2)
r.write_pass_lang(r.process(params->as_junction(2, "'else' parameter must be code")));
}
static void _untaint(Request& r, const String& method_name, MethodParams *params) {
Pool& pool=r.pool();
uchar lang;
if(params->size()==1)
lang=String::UL_AS_IS; // mark as simply 'tainted'. useful in html from sql
else {
const String& lang_name=params->as_string(0, "lang must be string");
lang=untaint_lang_name2enum->get_int(lang_name);
if(!lang)
throw Exception(0, 0,
&lang_name,
"invalid taint language");
}
{
Value& vbody=params->as_junction(params->size()-1, "body must be code");
Temp_lang temp_lang(r, lang); // set temporarily specified ^untaint[language;
r.write_pass_lang(r.process(vbody)); // process marking tainted with that lang
}
}
static void _taint(Request& r, const String&, MethodParams *params) {
Pool& pool=r.pool();
uchar lang;
if(params->size()==1)
lang=String::UL_TAINTED; // mark as simply 'tainted'. useful in table:set
else {
const String& lang_name=params->as_string(0, "lang must be string");
lang=untaint_lang_name2enum->get_int(lang_name);
if(!lang)
throw Exception(0, 0,
&lang_name,
"invalid taint language");
}
{
Value& vbody=params->as_no_junction(params->size()-1, "body must not be code");
String result(r.pool());
result.append(
vbody.as_string(), // process marking tainted with that lang
lang, true); // force result language to specified
r.write_pass_lang(result);
}
}
static void _process(Request& r, const String& method_name, MethodParams *params) {
// calculate pseudo file name of processed chars
// would be something like "/some/file(4) process"
char place[MAX_STRING];
#ifndef NO_STRING_ORIGIN
const Origin& origin=method_name.origin();
snprintf(place, MAX_STRING, "%s(%d) %s",
origin.file, 1+origin.line,
method_name.cstr());
#else
strncpy(place, method_name.cstr(), MAX_STRING-1); place[MAX_STRING-1]=0;
#endif
VStateless_class& self_class=*r.self->get_class();
{
// temporary zero @main so to maybe-replace it in processed code
Temp_method temp_method_main(self_class, *main_method_name, 0);
// temporary zero @auto so it wouldn't be auto-called in Request::use_buf
Temp_method temp_method_auto(self_class, *auto_method_name, 0);
// evaluate source to process
const String& source=
r.process(params->as_junction(0, "body must be code")).as_string();
// process source code, append processed methods to 'self' class
// maybe-define new @main
r.use_buf(
source.cstr(String::UL_UNSPECIFIED, r.connection(0)),
place,
&self_class);
// maybe-execute @main[]
if(const Method *method=self_class.get_method(*main_method_name)) {
// execute!
r.execute(*method->parser_code);
}
}
}
static void _rem(Request& r, const String&, MethodParams *params) {
params->as_junction(0, "body must be code");
}
static void _while(Request& r, const String& method_name, MethodParams *params) {
Pool& pool=r.pool();
Value& vcondition=params->as_junction(0, "condition must be expression");
Value& body=params->as_junction(1, "body must be code");
// while...
int endless_loop_count=0;
while(true) {
if(++endless_loop_count>=MAX_LOOPS) // endless loop?
throw Exception(0, 0,
&method_name,
"endless loop detected");
bool condition=
r.process(
vcondition,
0/*no name*/,
false/*don't intercept string*/).as_bool();
if(!condition) // ...condition is true
break;
// write processed body
r.write_pass_lang(r.process(body));
}
}
static void _use(Request& r, const String& method_name, MethodParams *params) {
Value& vfile=params->as_no_junction(0, "file name must not be code");
r.use_file(vfile.as_string());
}
static void _for(Request& r, const String& method_name, MethodParams *params) {
Pool& pool=r.pool();
const String& var_name=params->as_string(0, "var name must be string");
int from=params->as_int(1, "from must be int", r);
int to=params->as_int(2, "to must be int", r);
Value& body_code=params->as_junction(3, "body must be code");
Value *delim_maybe_code=params->size()>4?¶ms->get(4):0;
if(to-from>=MAX_LOOPS) // too long loop?
throw Exception(0, 0,
&method_name,
"endless loop detected");
bool need_delim=false;
VInt *vint=new(pool) VInt(pool, 0);
for(int i=from; i<=to; i++) {
vint->set_int(i);
r.root->put_element(var_name, vint);
Value& processed_body=r.process(body_code);
if(delim_maybe_code) { // delimiter set?
const String *string=processed_body.get_string();
if(need_delim && string && string->size()) // need delim & iteration produced string?
r.write_pass_lang(r.process(*delim_maybe_code));
need_delim=true;
}
r.write_pass_lang(processed_body);
}
}
static void _eval(Request& r, const String& method_name, MethodParams *params) {
Value& expr=params->as_junction(0, "need expression");
// evaluate expresion
Value *result=r.process(expr,
0/*no name YET*/,
true/*don't intercept string*/).as_expr_result();
if(params->size()>1) {
Value& fmt=params->as_no_junction(1, "fmt must not be code");
Pool& pool=r.pool();
String& string=*new(pool) String(pool);
string.APPEND_CONST(format(pool, result->as_double(), fmt.as_string().cstr()));
result=new(pool) VString(string);
}
result->set_name(method_name);
r.write_no_lang(*result);
}
static void _error(Request& r, const String& method_name, MethodParams *params) {
Pool& pool=r.pool();
const String& serror=params->as_string(0, "message must be string");
throw Exception(0, 0,
&method_name,
"%s", serror.cstr());
}
/// @todo rewrite ugly code with try/try to autoobject TempConnection
static void _connect(Request& r, const String& method_name, MethodParams *params) {
Pool& pool=r.pool();
#ifdef RESOURCES_DEBUG
struct timeval mt[2];
#endif
Value& url=params->as_no_junction(0, "url must not be code");
Value& body_code=params->as_junction(1, "body must be code");
Table *protocol2driver_and_client=
static_cast<Table *>(r.classes_conf.get(r.OP.name()));
#ifdef RESOURCES_DEBUG
//measure:before
gettimeofday(&mt[0],NULL);
#endif
// connect
SQL_Connection_ptr connection=SQL_driver_manager->get_connection(
url.as_string(), method_name, protocol2driver_and_client);
#ifdef RESOURCES_DEBUG
//measure:after connect
gettimeofday(&mt[1],NULL);
double t[2];
for(int i=0;i<2;i++)
t[i]=mt[i].tv_sec+mt[i].tv_usec/1000000.0;
r.sql_connect_time+=t[1]-t[0];
#endif
Temp_connection temp_connection(r, connection.get());
// execute body
try {
r.write_assign_lang(r.process(body_code));
} catch(...) { // process/commit problem
connection->mark_to_rollback();
/*re*/throw;
}
}
#ifndef DOXYGEN
struct Switch_data {
Value *searching;
Value *found;
Value *_default;
};
#endif
static void _switch(Request& r, const String&, MethodParams *params) {
void *backup=r.classes_conf.get(*switch_data_name);
Switch_data data={&r.process(params->get(0))};
r.classes_conf.put(*switch_data_name, &data);
r.process(params->as_junction(1, "switch cases must be code")); // and ignore result
r.classes_conf.put(*switch_data_name, backup);
if(Value *code=data.found ? data.found : data._default)
r.write_pass_lang(r.process(*code));
}
static void _case(Request& r, const String& method_name, MethodParams *params) {
Pool& pool=r.pool();
Switch_data *data=static_cast<Switch_data *>(r.classes_conf.get(*switch_data_name));
if(!data)
throw Exception(0, 0,
&method_name,
"without switch");
int count=params->size();
Value *code=¶ms->as_junction(--count, "case result must be code");
for(int i=0; i<count; i++) {
Value& value=r.process(params->get(i));
if(value.as_string() == *case_default_value) {
data->_default=code;
break;
}
bool matches;
if(data->searching->is_string())
matches=data->searching->as_string() == value.as_string();
else
matches=data->searching->as_double() == value.as_double();
if(matches) {
data->found=code;
break;
}
}
}
// cache--
// consts
const int DATA_STRING_SERIALIZED_VERSION=0x0001;
// helper types
#ifndef DOXYGEN
struct Data_string_serialized_prolog {
int version;
};
#endif
void cache_delete(const String& file_spec) {
file_delete(file_spec, false/*fail_on_read_problem*/);
}
#ifndef DOXYGEN
struct Locked_process_and_cache_put_action_info {
Request *r;
Value *body;
};
#endif
static void locked_process_and_cache_put_action(int f, void *context) {
Locked_process_and_cache_put_action_info& info=
*static_cast<Locked_process_and_cache_put_action_info *>(context);
// body->process
info.body=&info.r->process(*info.body);
// result->string
const String& data_string=info.body->as_string();
// string -serialize> buffer
void *data; size_t data_size;
data_string.serialize(
sizeof(Data_string_serialized_prolog),
data, data_size);
Data_string_serialized_prolog& prolog=
*static_cast<Data_string_serialized_prolog *>(data);
prolog.version=DATA_STRING_SERIALIZED_VERSION;
// buffer -write> file
write(f, data, data_size);
}
Value *locked_process_and_cache_put(Request& r,
Value& body_code,
const String& file_spec) {
Locked_process_and_cache_put_action_info info={
&r,
&body_code,
};
return file_write_action_under_lock(
file_spec,
"cache_put", locked_process_and_cache_put_action, &info,
false/*as_text*/,
false/*do_append*/,
false/*block*/) ? info.body : 0;
}
String *cache_get(Pool& pool, const String& file_spec) {
void* data; size_t data_size;
if(!file_read(pool, file_spec,
data, data_size,
false/*as_text*/,
false/*fail_on_read_problem*/)
|| !data_size/* ignore reads which are empty due to
non-unary open+lockEX conflict with lockSH */)
return 0;
Data_string_serialized_prolog& prolog=
*static_cast<Data_string_serialized_prolog *>(data);
if(data_size<sizeof(Data_string_serialized_prolog))
throw Exception(0, 0,
&file_spec,
"bad cached file (size=%d), too short (minsize=%d)",
data_size, sizeof(Data_string_serialized_prolog));
if(prolog.version!=DATA_STRING_SERIALIZED_VERSION)
throw Exception(0, 0,
&file_spec,
"data string version 0x%04X not equal to 0x%04X, recreate file",
prolog.version, DATA_STRING_SERIALIZED_VERSION);
String& result=*new(pool) String(pool);
result.deserialize(
sizeof(Data_string_serialized_prolog),
data, data_size, file_spec.cstr());
return &result;
}
static void _cache(Request& r, const String& method_name, MethodParams *params) {
Pool& pool=r.pool();
// file_spec, expires, body code
const String &file_spec=r.absolute(params->as_string(0, "filespec must be string"));
if(params->size()==1) { // delete
cache_delete(file_spec);
return;
}
time_t lifespan=(time_t)params->as_double(1, "lifespan must be number", r);
Value& body_code=params->as_junction(2, "body must be code");
if(lifespan) { // 'lifespan' specified? try cached copy...
size_t size;
time_t atime, mtime, ctime;
// hence we don't hope to have unary create/lockEX
// we need some plan to live in a life like that, so...
// worst races plan:
// A B
// open
// |open
// lockSH
// |nonblocking-lockEX fails
// unlockSH
// close, cache_get returns 0
// open
// nonblocking-lockEX succeeds; process, write, close
// |retry1: open
// ...
// |lockSH succeeds; ...
// {file_spec} modification time
for(int retry=0; retry<2; retry++) {
if(file_stat(file_spec, size, atime, mtime, ctime, false/*no exception on error*/)) // exists?
if(time(0)-mtime > lifespan) // expired
cache_delete(file_spec);
else // not expired
if(String *cached_body=cache_get(pool, file_spec)) { // have cached copy?
// write it out
r.write_assign_lang(*cached_body);
// happy with it
return;
}
// non-blocked lock; process; cache it
if(Value *processed_body=locked_process_and_cache_put(r, body_code, file_spec)) {
// write it out
r.write_assign_lang(*processed_body);
// happy with it
return;
} else { // somebody writing result right now
pa_sleep(0, 500000); // waiting half a second
retry=0; // prolonging our wait, than could cache_get it, without processing body_code
}
}
throw Exception(0, 0,
&file_spec,
"locking problem");
} else {
// 'lifespan'=0, forget cached copy
cache_delete(file_spec);
// process
Value& processed_body=r.process(body_code);
// write it out
r.write_assign_lang(processed_body);
// happy with it
return;
}
// never reached
}
// constructor
MOP::MOP(Pool& apool) : Methoded(apool),
main_sql_name(apool, MAIN_SQL_NAME),
main_sql_drivers_name(apool, MAIN_SQL_DRIVERS_NAME)
{
set_name(*NEW String(pool(), OP_CLASS_NAME));
// ^if(condition){code-when-true}
// ^if(condition){code-when-true}{code-when-false}
add_native_method("if", Method::CT_ANY, _if, 2, 3);
// ^untaint[as-is|uri|sql|js|html|html-typo]{code}
add_native_method("untaint", Method::CT_ANY, _untaint, 1, 2);
// ^taint[as-is|uri|sql|js|html|html-typo]{code}
add_native_method("taint", Method::CT_ANY, _taint, 1, 2);
// ^process[code]
add_native_method("process", Method::CT_ANY, _process, 1, 1);
// ^rem{code}
add_native_method("rem", Method::CT_ANY, _rem, 1, 10000);
// ^while(condition){code}
add_native_method("while", Method::CT_ANY, _while, 2, 2);
// ^use[file]
add_native_method("use", Method::CT_ANY, _use, 1, 1);
// ^for[i](from-number;to-number-inclusive){code}[delim]
add_native_method("for", Method::CT_ANY, _for, 3+1, 3+1+1);
// ^eval(expr)
// ^eval(expr)[format]
add_native_method("eval", Method::CT_ANY, _eval, 1, 2);
// ^error[msg]
add_native_method("error", Method::CT_ANY, _error, 1, 1);
// ^connect[protocol://user:pass@host[:port]/database]{code with ^sql-s}
add_native_method("connect", Method::CT_ANY, _connect, 2, 2);
// ^cache[file_spec] delete cache
// ^cache[file_spec](time){code} time=0 no cache
add_native_method("cache", Method::CT_ANY, _cache, 1, 3);
// switch
// ^switch[value]{cases}
add_native_method("switch", Method::CT_ANY, _switch, 2, 2);
// ^case[value]{code}
add_native_method("case", Method::CT_ANY, _case, 2, 10000);
}
// constructor & configurator
Methoded *MOP_create(Pool& pool) {
return new(pool) MOP(pool);
}
void MOP::configure_user(Request& r) {
Pool& pool=r.pool();
// $MAIN:SQL.drivers
if(Value *sql=r.main_class->get_element(main_sql_name))
if(Value *element=sql->get_element(main_sql_drivers_name))
if(Table *protocol2library=element->get_table())
r.classes_conf.put(name(), protocol2library);
}
E-mail: