--- parser3/src/classes/table.C 2001/03/30 05:51:12 1.40 +++ parser3/src/classes/table.C 2001/04/02 09:29:12 1.42 @@ -5,7 +5,7 @@ Author: Alexander Petrosyan (http://design.ru/paf) - $Id: table.C,v 1.40 2001/03/30 05:51:12 paf Exp $ + $Id: table.C,v 1.42 2001/04/02 09:29:12 paf Exp $ */ #include "pa_config_includes.h" @@ -20,7 +20,7 @@ VStateless_class *table_class; // methods - +/// @todo now remove CONFIG untaint, make pos() searches in String static void set_or_load( Request& r, const String& method_name, Array *params, @@ -87,12 +87,9 @@ static void set_or_load( // replace any previous table value static_cast(r.self)->set_table(table); } - - static void _set(Request& r, const String& method_name, Array *params) { set_or_load(r, method_name, params, false); } - static void _load(Request& r, const String& method_name, Array *params) { set_or_load(r, method_name, params, true); } @@ -356,6 +353,67 @@ static void _flip(Request& r, const Stri vtable.set_table(new_table); } +/// @todo now require \t to be clean [UL_NO] +static void _append(Request& r, const String& method_name, Array *params) { + Pool& pool=r.pool(); + // data is last parameter + Value *value=static_cast(params->get(0)); + // forcing [this body type] + r.fail_if_junction_(true, *value, method_name, "body must not be junction"); + + const String& string=static_cast(value)->as_string(); + + // parse cells + Array& row=*new(pool) Array(pool); + size_t pos_after=0; + int pos_before; + while((pos_before=string.pos("\t", pos_after))>=0) { + row+=&string.piece(pos_after, pos_before); + pos_after=pos_before+1/*\t*/; + } + // last piece + if(pos_after(r.self)->table()+=&row; +} + +static void _join(Request& r, const String& method_name, Array *params) { + Pool& pool=r.pool(); + + Value *value=static_cast(params->get(0)); + // forcing [this table ref type] + r.fail_if_junction_(true, *value, method_name, "table ref must not be junction"); + + Table *maybe_src=value->get_table(); + if(!maybe_src) + RTHROW(0, 0, + &method_name, + "source is not a table"); + + Table& src=*maybe_src; + Table& dest=static_cast(r.self)->table(); + if(&src == &dest) + RTHROW(0, 0, + &method_name, + "source and destination are same table"); + + if(const Array *dest_columns=dest.columns()) { // dest is named + int saved_src_current=src.current(); + for(int src_row=0; src_rowsize(); dest_column++) + dest_row+=src.item(*dest_columns->get_string(dest_column)); + dest+=&dest_row; + } + src.set_current(saved_src_current); + } else { // dest is nameless + for(int src_row=0; src_row