--- parser3/src/main/pa_table.C 2003/04/14 11:23:41 1.53.2.10.2.7 +++ parser3/src/main/pa_table.C 2007/04/23 10:30:32 1.62 @@ -1,11 +1,11 @@ /** @file Parser: table class. - Copyright (c) 2001-2003 ArtLebedev Group (http://www.artlebedev.com) + Copyright (c) 2001-2005 ArtLebedev Group (http://www.artlebedev.com) Author: Alexandr Petrosian (http://paf.design.ru) */ -static const char* IDENT_TABLE_C="$Date: 2003/04/14 11:23:41 $"; +static const char * const IDENT_TABLE_C="$Date: 2007/04/23 10:30:32 $"; #include "pa_table.h" @@ -19,7 +19,6 @@ Table::Table(columns_type acolumns, size name2number(new name2number_hash_class) { if(fcolumns) { - size_t fcolumns_count=fcolumns->count(); size_t number=1; for(Array_iterator i(*fcolumns); i.has_next(); ) { const String& name=*i.next(); @@ -42,7 +41,7 @@ int Table::column_name2index(const Strin if(fcolumns) {// named int result=name2number->get(column_name)-1; // -1 = column not found if(bark && result<0) - throw Exception("parser.runtime", + throw Exception(PARSER_RUNTIME, &column_name, "column not found"); return result; @@ -53,7 +52,7 @@ int Table::column_name2index(const Strin const String* Table::item(size_t column) { if(valid(fcurrent)) { element_type row=get(fcurrent); - if(column>=0 && columncount()) // proper index? + if(columncount()) // proper index? return row->get(column); } return 0; // it's OK we don't have row|column, just return nothing @@ -65,17 +64,15 @@ struct Locate_int_string_info { const String* value; }; #endif -bool locate_int_string(Table& self, void* ainfo) { - Locate_int_string_info& info=*static_cast(ainfo); - - const String *item_value=self.item(info.column); - return item_value && *item_value==*info.value; +bool locate_int_string(Table& self, Locate_int_string_info* info) { + const String *item_value=self.item(info->column); + return item_value && *item_value==*info->value; } bool Table::locate(int column, const String& value, Table::Action_options& options) { Locate_int_string_info info={column, &value}; - return locate(locate_int_string, &info, options); + return table_first_that(locate_int_string, &info, options); } bool Table::locate(const String& column, const String& value,