--- parser3/src/main/pa_dictionary.C 2001/08/01 12:08:40 1.1 +++ parser3/src/main/pa_dictionary.C 2003/10/03 09:40:57 1.19 @@ -1,41 +1,69 @@ /** @file Parser: dictionary class impl. - Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com) - - Author: Alexander Petrosyan (http://design.ru/paf) + Copyright (c) 2001-2003 ArtLebedev Group (http://www.artlebedev.com) + Author: Alexandr Petrosian (http://paf.design.ru) */ -static const char *RCSId="$Id: pa_dictionary.C,v 1.1 2001/08/01 12:08:40 parser Exp $"; + +static const char* IDENT_DICTIONARY_C="$Date: 2003/10/03 09:40:57 $"; #include "pa_dictionary.h" +#include "pa_exception.h" +// could not make this static: gcc complains "prev decl was extern" +void pa_dictionary_add_first(Table::element_type row, Dictionary* self) { + // get a=>b values + const String* a=row->get(0); + // empty 'a' check + if(a->is_empty()) { + throw Exception("parser.runtime", + 0, //&a, + "dictionary table 'from' column elements must not be empty"); + } + const String* b; + if(row->count()>1) { // are there any b? + b=row->get(1); + if(b->is_empty()) + b=0; + } else + b=0; + + // record simplier 'a' for quick comparisons in 'starts' extremely-tight-callback + self->substs+=Dictionary::Subst(a->cstr(), b); + + unsigned char c=(unsigned char)a->first_char(); + if(!self->starting_line_of[c]) + self->starting_line_of[c]=self->constructor_line; -static void add_first(Array::Item *value, void *info) { - Dictionary& self=*static_cast(info); - self.first[(unsigned char)static_cast(value)->get_string(0)->first_char()]=true; + self->constructor_line++; } - -Dictionary::Dictionary(Table& atable) : Pooled(atable.pool()), table(atable) { - // clear firsts - memset(first, sizeof(first), 0); +Dictionary::Dictionary(Table& atable): substs(atable.count()) { + // clear starting_lines + memset(starting_line_of, 0, sizeof(starting_line_of)); // grab first letters of first column of a table - table.for_each(add_first, this); + constructor_line=1; atable.for_each(pa_dictionary_add_first, this); } -static bool starts(Array::Item *value, const void *info) { - Array *row=static_cast(value); - const char *src=static_cast(info); - - int partial; - row->get_string(0)->cmp(partial, src); - return - partial==0 || // full match - partial==1; // typo left column starts 'src' -} +#ifndef DOXYGEN +struct First_that_begins_info { + int line; + const char* str; +}; +#endif +static bool starts(Dictionary::Subst subst, First_that_begins_info* info) { + // skip irrelevant lines + if(info->line>1) { + --info->line; + return 0; + } -void* Dictionary::first_that_starts(const char *src) const { - if(first[(unsigned char)*src]) - return table.first_that(starts, src); - else + return strncmp(subst.from, info->str, subst.from_length)==0; +} +Dictionary::Subst Dictionary::first_that_begins(const char* str) const { + First_that_begins_info info; + if(info.line=starting_line_of[(unsigned char)*str]) { + info.str=str; + return substs.first_that(starts, &info); + } else return 0; }