--- parser3/src/classes/table.C 2001/05/11 17:45:10 1.80 +++ parser3/src/classes/table.C 2001/07/02 13:24:32 1.88 @@ -4,9 +4,8 @@ Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com) Author: Alexander Petrosyan (http://design.ru/paf) - - $Id: table.C,v 1.80 2001/05/11 17:45:10 parser Exp $ */ +static const char *RCSId="$Id: table.C,v 1.88 2001/07/02 13:24:32 parser Exp $"; #include "pa_config_includes.h" @@ -246,7 +245,7 @@ static void store_column_item_to_hash(Ar if(const String *column_item=ri.table->item(column_name)) value=new(*ri.pool) VString(*column_item); else - value=new(*ri.pool) VUnknown(*ri.pool); + value=new(*ri.pool) VVoid(*ri.pool); ri.hash->put(column_name, value); } static void _record(Request& r, const String& method_name, MethodParams *) { @@ -505,7 +504,7 @@ static void _sql(Request& r, const Strin &sql_column_count, &sql_columns, &sql_row_count, &sql_rows); } - PCATCH(e) { // connect/process problem + PCATCH(e) { // query problem rethrow_me=e; need_rethrow=true; } PEND_CATCH @@ -525,20 +524,19 @@ static void _sql(Request& r, const Strin Table& table=*new(pool) Table(pool, &method_name, &table_columns); - { - for(unsigned long r=0; r(r.self)->set_table(table); } +static void _columns(Request& r, const String& method_name, MethodParams *) { + Pool& pool=r.pool(); + + Array& result_columns=*new(pool) Array(pool); + result_columns+=new(pool) String(pool, "name"); + Table& result_table=*new(pool) Table(pool, &method_name, &result_columns); + + Table& source_table=static_cast(r.self)->table(); + if(const Array *source_columns=source_table.columns()) { + int size=source_columns->quick_size(); + for(int i=0; iquick_get(i); + result_table+=&result_row; + } + } + + VTable& result=*new(pool) VTable(pool, &result_table); + result.set_name(method_name); + r.write_no_lang(result); +} + // constructor MTable::MTable(Pool& apool) : Methoded(apool) { @@ -684,6 +704,9 @@ MTable::MTable(Pool& apool) : Methoded(a // ^table:dir[path] // ^table:dir[path][regexp] add_native_method("dir", Method::CT_DYNAMIC, _dir, 1, 2); + + // ^table:columns[] + add_native_method("columns", Method::CT_DYNAMIC, _columns, 0, 0); } // global variable