--- parser3/src/classes/table.C 2001/03/27 13:47:29 1.31 +++ 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.31 2001/03/27 13:47:29 paf Exp $ + $Id: table.C,v 1.35 2001/03/27 17:12:22 paf Exp $ */ #include "pa_config_includes.h" @@ -169,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 { @@ -241,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