--- parser3/src/classes/hash.C 2005/08/26 12:01:38 1.76 +++ parser3/src/classes/hash.C 2007/05/18 12:44:22 1.80 @@ -5,7 +5,7 @@ Author: Alexandr Petrosian (http://paf.design.ru) */ -static const char * const IDENT_HASH_C="$Date: 2005/08/26 12:01:38 $"; +static const char * const IDENT_HASH_C="$Date: 2007/05/18 12:44:22 $"; #include "classes.h" #include "pa_vmethod_frame.h" @@ -34,6 +34,10 @@ public: // Methoded DECLARE_CLASS_VAR(hash, new MHash, 0); +// externs + +extern String cycle_data_name; + // methods #ifndef DOXYGEN @@ -69,7 +73,7 @@ public: } bool before_rows(SQL_Error& error) { if(columns.count()<1) { - error=SQL_Error("parser.runtime", "no columns"); + error=SQL_Error(PARSER_RUNTIME, "no columns"); return true; } only_one_column=columns.count()==1; @@ -96,7 +100,7 @@ public: row_hash->put(*columns[column_index], new VString(cell)); if(duplicate & !distinct) { - error=SQL_Error("parser.runtime", "duplicate key"); + error=SQL_Error(PARSER_RUNTIME, "duplicate key"); return true; } @@ -127,10 +131,18 @@ static void _create_or_add(Request& r, M HashStringValue* self_hash=&(self.hash()); if(src==self_hash) // same: doing nothing return; - src->for_each(copy_all_overwrite_to, self_hash); + src->for_each(copy_all_overwrite_to, self_hash); if(VHash* vhash_src=static_cast(vsrc.as(VHASH_TYPE, false))) - self.set_default(vhash_src->get_default()); + { + if(Value* vdefault=vhash_src->get_default()) + { + if(vdefault->is_defined()) + { + self.set_default(vdefault); + } + } + } } } } @@ -149,7 +161,7 @@ static void _sub(Request& r, MethodParam self->clear(); return; } - src->for_each(remove_key_from, self); + src->for_each(remove_key_from, self); } } @@ -165,7 +177,7 @@ static void _union(Request& r, MethodPar // dest += b Value& vsrc=params.as_no_junction(0, "param must be hash"); if(HashStringValue* src=vsrc.get_hash()) - src->for_each(copy_all_dontoverwrite_to, result.get_hash()); + src->for_each(copy_all_dontoverwrite_to, result.get_hash()); // return result r.write_no_lang(result); @@ -190,7 +202,7 @@ static void _intersection(Request& r, Me Value& vb=params.as_no_junction(0, "param must be hash"); if(HashStringValue* b=vb.get_hash()) { Copy_intersection_to_info info={b, result.get_hash()}; - GET_SELF(r, VHash).hash().for_each(copy_intersection_to, &info); + GET_SELF(r, VHash).hash().for_each(copy_intersection_to, &info); } // return result @@ -209,7 +221,7 @@ static void _intersects(Request& r, Meth Value& vb=params.as_no_junction(0, "param must be hash"); if(HashStringValue* b=vb.get_hash()) - result=GET_SELF(r, VHash).hash().first_that(intersects, b)!=0; + result=GET_SELF(r, VHash).hash().first_that(intersects, b)!=0; // return result r.write_no_lang(*new VBool(result)); @@ -253,11 +265,11 @@ static void _sql(Request& r, MethodParam distinct=r.process_to_value(*vdistinct).as_bool(); } if(valid_options!=options->count()) - throw Exception("parser.runtime", + throw Exception(PARSER_RUNTIME, 0, "called with invalid option"); } else - throw Exception("parser.runtime", + throw Exception(PARSER_RUNTIME, 0, "options must be hash"); } @@ -307,7 +319,7 @@ static void _keys(Request& r, MethodPara *columns+=keys_column_name; Table* table=new Table(columns); - GET_SELF(r, VHash).hash().for_each(keys_collector, table); + GET_SELF(r, VHash).hash().for_each(keys_collector, table); r.write_no_lang(*new VTable(table)); } @@ -321,6 +333,12 @@ static void _delete(Request& r, MethodPa GET_SELF(r, VHash).hash().remove(params.as_string(0, "key must be string")); } +static void _contain(Request& r, MethodParams& params) { + + bool result = GET_SELF(r, VHash).hash().contain(params.as_string(0, "key must be string")); + r.write_no_lang(*new VBool(result)); +} + #ifndef DOXYGEN struct Foreach_info { Request *r; @@ -333,7 +351,7 @@ struct Foreach_info { bool need_delim; }; #endif -static void one_foreach_cycle( +static bool one_foreach_cycle( HashStringValue::key_type akey, HashStringValue::value_type avalue, Foreach_info *info) { @@ -343,6 +361,7 @@ static void one_foreach_cycle( ncontext.put_element(ncontext, *info->value_var_name, avalue, false); StringOrValue sv_processed=info->r->process(*info->body_code); + Request::Skip lskip=info->r->get_skip(); info->r->set_skip(Request::SKIP_NOTHING); const String* s_processed=sv_processed.get_string(); if(info->delim_maybe_code && s_processed && s_processed->length()) { // delimiter set and we have body if(info->need_delim) // need delim & iteration produced string? @@ -350,8 +369,13 @@ static void one_foreach_cycle( info->need_delim=true; } info->r->write_pass_lang(sv_processed); + + return lskip==Request::SKIP_BREAK; } static void _foreach(Request& r, MethodParams& params) { + Temp_hash_value + cycle_data_setter(r.classes_conf, cycle_data_name, /*any not null flag*/&r); + Foreach_info info={ &r, ¶ms.as_string(0, "key-var name must be string"), @@ -365,7 +389,7 @@ static void _foreach(Request& r, MethodP VHash& self=GET_SELF(r, VHash); HashStringValue& hash=self.hash(); VHash_lock lock(self); - hash.for_each(one_foreach_cycle, &info); + hash.first_that(one_foreach_cycle, &info); } // constructor @@ -388,7 +412,10 @@ MHash::MHash(): Methoded("hash") // ^a.delete[key] add_native_method("delete", Method::CT_DYNAMIC, _delete, 1, 1); - // ^hash:sql[query][options hash] + // ^a.contain[key] + add_native_method("contain", Method::CT_DYNAMIC, _contain, 1, 1); + + // ^hash::sql[query][options hash] add_native_method("sql", Method::CT_DYNAMIC, _sql, 1, 2); // ^hash._keys[[column name]]