--- parser3/src/include/pa_table.h 2001/01/29 15:56:03 1.1 +++ parser3/src/include/pa_table.h 2001/03/12 20:55:15 1.13 @@ -1,31 +1,64 @@ /* - $Id: pa_table.h,v 1.1 2001/01/29 15:56:03 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 nameless onces */ + #ifndef PA_TABLE_H #define PA_TABLE_H #include "pa_types.h" #include "pa_array.h" #include "pa_hash.h" +#include "pa_string.h" +#include "pa_request.h" class Table : public Array { public: - // the base origin of table data - Origin origin; + Table(Pool& apool, + const String& asource, + Array *acolumns, + int initial_rows=CR_INITIAL_ROWS_DEFAULT); + + // the source of table's data + const String& source() { return fsource; } + + const Array *columns() { return fcolumns; } - // columns order - Array *columns_order; + void set_current(int acurrent) { fcurrent=acurrent; } + int get_current() { return fcurrent; } + + const String *item(const String& column_name); + +private: + + // the base origin of table's data + const String& fsource; // column name->number lookup table - // hence most of tables are "named", no need to uptimize unnamed onces Hash name2number; - Table(Pool *apool, - char *afile, uint aline, - Array *acolumns, - int initial_rows=CR_INITIAL_ROWS_DEFAULT); + // current row + int fcurrent; + + // columns + Array *fcolumns; + + bool valid(int index) { return index>=0 && index