--- parser3/src/classes/table.C 2001/03/26 10:36:52 1.30 +++ parser3/src/classes/table.C 2001/03/27 17:12:22 1.35 @@ -5,7 +5,7 @@ Author: Alexander Petrosyan (http://design.ru/paf) - $Id: table.C,v 1.30 2001/03/26 10:36:52 paf Exp $ + $Id: table.C,v 1.35 2001/03/27 17:12:22 paf Exp $ */ #include "pa_config_includes.h" @@ -110,9 +110,45 @@ static void _save(Request& r, const Stri lfile_name.append(vfile_name->as_string(), String::UL_FILE_NAME, true); - static_cast(r.self)->table().save( - params->size()==2/*nameless save*/, - r.absolute(lfile_name)); + Table& table=static_cast(r.self)->table(); + + String sdata(pool); + if(params->size()==1) { // not nameless=named output + // write out names line + if(table.columns()) { // named table + for(int column=0; columnsize(); column++) { + if(column) + sdata.APPEND_CONST("\t"); + sdata.append(*static_cast(table.columns()->quick_get(column)), + String::UL_TABLE); + } + } else { // nameless table + int lsize=table.size()?static_cast(table.get(0))->size():0; + if(lsize) + for(int column=0; column(table.quick_get(index)); + for(int column=0; columnsize(); column++) { + if(column) + sdata.APPEND_CONST("\t"); + sdata.append(*static_cast(row->quick_get(column)), + String::UL_TABLE); + } + sdata.APPEND_CONST("\n"); + } + + // write + file_write(pool, r.absolute(lfile_name), sdata.cstr(), sdata.size(), true); } static void _count(Request& r, const String&, Array *) { @@ -133,7 +169,7 @@ static void _offset(Request& r, const St if(params->size()) { if(int size=table.size()) { int offset= - (int)r.process(*static_cast(params->get(0))).get_double(); + (int)r.process(*static_cast(params->get(0))).as_double(); table.set_current((table.get_current()+offset+size)%size); } } else { @@ -205,6 +241,79 @@ static void _record(Request& r, const St } } +struct Seq_item { + Array *row; + union { + char *c_str; + double d; + } value; +}; +static int sort_cmp_string(const void *a, const void *b) { + return strcmp( + static_cast(a)->value.c_str, + static_cast(b)->value.c_str + ); +} +static int sort_cmp_double(const void *a, const void *b) { + double va=static_cast(a)->value.d; + double vb=static_cast(b)->value.d; + if(vavb) + return +1; + else + return 0; +} +static void _sort(Request& r, const String& method_name, Array *params) { + Value& key_maker=*(Value *)params->get(0); + // forcing ^sort{this} ^sort(or this) param type + r.fail_if_junction_(false, key_maker, method_name, "key-maker must be junction"); + + bool reverse; + if(params->size()==2) { // ..[asc|desc] + Value& order=*(Value *)params->get(1); + // forcing ..[this param-type] + r.fail_if_junction_(true, order, method_name, "order must not be junction"); + reverse=order.as_string()=="desc"; + } else + reverse=false; + + Table& table=static_cast(r.self)->table(); + + // anything to sort? + if(!table.size()) + return; + + Seq_item *seq=(Seq_item *)malloc(sizeof(Seq_item)*table.size()); + int i; + + // calculate key values + bool key_values_are_strings=true; + for(i=0; i