--- parser3/src/include/pa_table.h 2001/01/29 20:10:32 1.2 +++ parser3/src/include/pa_table.h 2001/03/12 20:55:15 1.13 @@ -1,9 +1,13 @@ /* - $Id: pa_table.h,v 1.2 2001/01/29 20:10:32 paf Exp $ + Parser + Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com) + Author: Alexander Petrosyan (http://design.ru/paf) + + $Id: pa_table.h,v 1.13 2001/03/12 20:55:15 paf Exp $ */ /* - hence most of tables are "named", no need to uptimize unnamed onces + hence most of tables are "named", no need to uptimize nameless onces */ @@ -19,32 +23,42 @@ class Table : public Array { public: - // request I'm processed on - Request& request; + Table(Pool& apool, + const String& asource, + Array *acolumns, + int initial_rows=CR_INITIAL_ROWS_DEFAULT); - // the base origin of table data - Origin origin; + // the source of table's data + const String& source() { return fsource; } - int current; + const Array *columns() { return fcolumns; } - // columns - Array *columns; + void set_current(int acurrent) { fcurrent=acurrent; } + int get_current() { return fcurrent; } - Table(Request& request, - char *afile, uint aline, - Array *acolumns, - int initial_rows=CR_INITIAL_ROWS_DEFAULT); + const String *item(const String& column_name); - char *item(int column_index); - char *item(String column_name); +private: -protected: + // the base origin of table's data + const String& fsource; // column name->number lookup table Hash name2number; - Array *at(int index); + // current row + int fcurrent; + + // columns + Array *fcolumns; + + bool valid(int index) { return index>=0 && index