Annotation of parser3/src/classes/table.C, revision 1.108

1.20      paf         1: /** @file
1.47      paf         2:        Parser: @b table parser class.
1.20      paf         3: 
1.1       paf         4:        Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com)
1.20      paf         5: 
1.1       paf         6:        Author: Alexander Petrosyan <paf@design.ru> (http://design.ru/paf)
                      7: */
1.108   ! parser      8: static const char *RCSId="$Id: table.C,v 1.107 2001/08/28 10:33:32 parser Exp $"; 
1.1       paf         9: 
1.105     parser     10: #include "classes.h"
1.24      paf        11: #include "pa_config_includes.h"
1.16      paf        12: #include "pa_common.h"
1.1       paf        13: #include "pa_request.h"
                     14: #include "pa_vtable.h"
1.6       paf        15: #include "pa_vint.h"
1.51      paf        16: #include "pa_sql_connection.h"
1.72      paf        17: #include "pa_vbool.h"
1.1       paf        18: 
1.66      paf        19: // defines
1.1       paf        20: 
1.66      paf        21: #define TABLE_CLASS_NAME "table"
                     22: 
                     23: // class
                     24: 
                     25: class MTable : public Methoded {
                     26: public: // VStateless_class
                     27:        Value *create_new_value(Pool& pool) { return new(pool) VTable(pool); }
                     28: 
                     29: public:
                     30:        MTable(Pool& pool);
1.70      paf        31: 
                     32: public: // Methoded
1.66      paf        33:        bool used_directly() { return true; }
                     34: };
1.1       paf        35: 
                     36: // methods
1.66      paf        37: 
1.61      paf        38: static void _set(Request& r, const String& method_name, MethodParams *params) {
1.1       paf        39:        Pool& pool=r.pool();
                     40:        // data is last parameter
1.90      parser     41:        Value& vdata=params->as_junction(params->size()-1, "body must be code");
1.44      paf        42: 
1.45      paf        43:        Temp_lang temp_lang(r, String::UL_PASS_APPENDED);
1.61      paf        44:        const String& data=r.process(vdata).as_string();
1.44      paf        45: 
                     46:        size_t pos_after=0;
                     47:        // parse columns
                     48:        Array *columns;
                     49:        if(params->size()==2) {
                     50:                columns=0;
1.21      paf        51:        } else {
1.44      paf        52:                columns=new(pool) Array(pool);
                     53: 
                     54:                Array head(pool);
                     55:                data.split(head, &pos_after, "\n", 1, String::UL_CLEAN, 1);
                     56:                if(head.size())
                     57:                        head.get_string(0)->split(*columns, 0, "\t", 1, String::UL_CLEAN);
                     58:        }
                     59: 
                     60:        Table& table=*new(pool) Table(pool, &method_name, columns);
                     61:        // parse cells
                     62:        Array rows(pool);
                     63:        data.split(rows, &pos_after, "\n", 1, String::UL_CLEAN);
1.98      parser     64:        Array_iter i(rows);
                     65:        while(i.has_next()) {
1.44      paf        66:                Array& row=*new(pool) Array(pool);
1.98      parser     67:                const String& string=*i.next_string();
1.44      paf        68:                // remove empty lines
                     69:                if(!string.size())
                     70:                        continue;
                     71: 
                     72:                string.split(row, 0, "\t", 1, String::UL_CLEAN);
                     73:                table+=&row;
1.17      paf        74:        }
1.1       paf        75: 
1.44      paf        76:        // replace any previous table value
                     77:        static_cast<VTable *>(r.self)->set_table(table);
                     78: }
                     79: 
1.61      paf        80: static void _load(Request& r, const String& method_name, MethodParams *params) {
1.44      paf        81:        Pool& pool=r.pool();
                     82:        // filename is last parameter
1.90      parser     83:        Value& vfilename=params->as_no_junction(params->size()-1, 
1.61      paf        84:                "file name must not be code");
1.44      paf        85: 
                     86:        // loading text
1.61      paf        87:        char *data=file_read_text(pool, r.absolute(vfilename.as_string()));
1.44      paf        88: 
1.1       paf        89:        // parse columns
                     90:        Array *columns;
                     91: #ifndef NO_STRING_ORIGIN
                     92:        const Origin& origin=method_name.origin();
1.2       paf        93:        const char *file=origin.file;
1.1       paf        94:        uint line=origin.line;
                     95: #endif
                     96:        if(params->size()==2) {
                     97:                columns=0;
                     98:        } else {
                     99:                columns=new(pool) Array(pool);
                    100: 
                    101:                if(char *row_chars=getrow(&data)) 
                    102:                        do {
                    103:                                String *name=new(pool) String(pool);
1.45      paf       104:                                name->APPEND_TAINTED(lsplit(&row_chars, '\t'), 0, file, line++);
1.1       paf       105:                                *columns+=name;
                    106:                        } while(row_chars);
                    107:        }
                    108: 
                    109:        // parse cells
1.27      paf       110:        Table& table=*new(pool) Table(pool, &method_name, columns);
1.1       paf       111:        char *row_chars;
                    112:        while(row_chars=getrow(&data)) {
1.28      paf       113:                if(!*row_chars) // remove empty lines
                    114:                        continue;
1.1       paf       115:                Array *row=new(pool) Array(pool);
                    116:                while(char *cell_chars=lsplit(&row_chars, '\t')) {
                    117:                        String *cell=new(pool) String(pool);
1.44      paf       118:                        cell->APPEND_TAINTED(cell_chars, 0, file, line);
1.1       paf       119:                        *row+=cell;
                    120:                }
1.107     parser    121: #ifndef NO_STRING_ORIGIN
1.1       paf       122:                line++;
1.107     parser    123: #endif
1.1       paf       124:                table+=row;
                    125:        };
                    126: 
                    127:        // replace any previous table value
1.18      paf       128:        static_cast<VTable *>(r.self)->set_table(table);
1.1       paf       129: }
1.2       paf       130: 
1.91      parser    131: static Table *fill_month_days(Request& r, 
                    132:                                                          const String& method_name, MethodParams *params, bool rus){
                    133:        Pool& pool=r.pool();
                    134:        Table *result=new(pool) Table(pool, &method_name, 0/*&columns*/);
                    135: 
                    136:     int year=params->as_int(1, r);
                    137:     int month=max(1, min(params->as_int(2, r), 12)) -1;
                    138: 
                    139:     tm tmIn={0, 0, 0, 1, month, year-1900};
                    140:     time_t t=mktime(&tmIn);
                    141:        if(t<0)
                    142:                PTHROW(0, 0, 
                    143:                        &method_name, 
                    144:                        "invalid date");
                    145:     tm *tmOut=localtime(&t);
                    146: 
                    147:     int weekDay1=tmOut->tm_wday;
                    148:        if(rus) 
                    149:                weekDay1=weekDay1?weekDay1-1:6; //sunday last
                    150:     int monthDays=getMonthDays(year, month);
                    151:     
                    152:     for(int _day=1-weekDay1; _day<=monthDays;) {
                    153:                Array& row=*new(pool) Array(pool, 7);
                    154:        for(int wday=0; wday<7; wday++, _day++) {
1.93      parser    155:                String *cell=new(pool) String(pool);
1.91      parser    156:                        if(_day>=1 && _day<=monthDays) {
1.106     parser    157:                                char *buf=(char *)pool.malloc(2+1); 
1.93      parser    158:                                cell->APPEND_CLEAN(buf, sprintf(buf, "%02d", _day), 
                    159:                                        method_name.origin().file, method_name.origin().line);
                    160:             }
1.91      parser    161:                        row+=cell;            
                    162:         }
                    163:        *result+=&row;
                    164:     }
                    165:     
                    166:     return result;
                    167: }
                    168: 
                    169: static Table *fill_week_days(Request& r, 
                    170:                                                         const String& method_name, MethodParams *params, bool rus){
                    171:        Pool& pool=r.pool();
                    172:        Array& columns=*new(pool) Array(pool, 4);
                    173:        columns+=new(pool) String(pool, "year");
                    174:        columns+=new(pool) String(pool, "month");
                    175:        columns+=new(pool) String(pool, "day");
                    176:        columns+=new(pool) String(pool, "weekday");
                    177:        Table *result=new(pool) Table(pool, &method_name, &columns);
                    178: 
                    179:     int year=params->as_int(1, r);
                    180:     int month=max(1, min(params->as_int(2, r), 12)) -1;
                    181:     int day=params->as_int(3, r);
                    182:     
                    183:     tm tmIn={0, 0, 18, day, month, year-1900};
                    184:     time_t t=mktime(&tmIn);
                    185:        if(t<0)
                    186:                PTHROW(0, 0, 
                    187:                        &method_name, 
                    188:                        "invalid date");
                    189:     tm *tmOut=localtime(&t);
                    190:     
                    191:     int baseWeekDay=tmOut->tm_wday;
                    192:        if(rus) 
                    193:                baseWeekDay=baseWeekDay?baseWeekDay-1:6; //sunday last
                    194: 
                    195:     t-=baseWeekDay*SECS_PER_DAY;
                    196: 
                    197:     for(int curWeekDay=0; curWeekDay<7; curWeekDay++, t+=SECS_PER_DAY) {
                    198:         tm *tmOut=localtime(&t);
                    199:                Array& row=*new(pool) Array(pool, 4);
1.93      parser    200: #define WDFILL(size, value) { \
1.106     parser    201:                char *buf=(char *)pool.malloc(size+1); \
1.93      parser    202:                String *cell=new(pool) String(pool); \
                    203:                cell->APPEND_CLEAN(buf, sprintf(buf, "%0"#size"d", value), \
                    204:                        method_name.origin().file, \
                    205:                        method_name.origin().line); \
                    206:                row+=cell; \
                    207:                }
                    208:                WDFILL(4, 1900+tmOut->tm_year);
                    209:                WDFILL(2, 1+tmOut->tm_mon);
                    210:                WDFILL(2, tmOut->tm_mday);
                    211:                WDFILL(2, tmOut->tm_wday);
1.91      parser    212:         *result+=&row;
                    213:     }
                    214:     
                    215:     return result;
                    216: }
                    217: 
                    218: static void _calendar(Request& r, const String& method_name, MethodParams *params) {
                    219:        Pool& pool=r.pool();
                    220: 
1.92      parser    221:        const String& what=params->as_string(0, "format must be strig");
1.91      parser    222:        bool rus=false;
1.92      parser    223:        if(what=="rus")
1.91      parser    224:                rus=true;
1.92      parser    225:        else if(what=="eng")
1.91      parser    226:                rus=false;
                    227:        else
                    228:                PTHROW(0, 0, 
                    229:                        &what, 
                    230:                        "must be rus|eng");
                    231: 
                    232:        Table *result=0;
                    233:        if(params->size()==1+2) 
                    234:                result=fill_month_days(r, method_name, params, rus);
                    235:        else // 1+3
                    236:                result=fill_week_days(r, method_name, params, rus);
                    237: 
                    238:        // replace any previous table value
                    239:        static_cast<VTable *>(r.self)->set_table(*result);
                    240: }
                    241: 
                    242: 
                    243: 
                    244: 
1.61      paf       245: static void _save(Request& r, const String& method_name, MethodParams *params) {
1.22      paf       246:        Pool& pool=r.pool();
1.90      parser    247:        Value& vtable_name=params->as_no_junction(params->size()-1, 
1.61      paf       248:                "file name must not be code");
1.22      paf       249: 
1.31      paf       250:        Table& table=static_cast<VTable *>(r.self)->table();
                    251: 
                    252:        String sdata(pool);
                    253:        if(params->size()==1) { // not nameless=named output
                    254:                // write out names line
                    255:                if(table.columns()) { // named table
1.98      parser    256:                        Array_iter i(*table.columns());
                    257:                        while(i.has_next()) {
                    258:                                sdata.append(*i.next_string(), //*static_cast<String *>(table.columns()->quick_get(column)), 
                    259:                                        String::UL_TABLE);
                    260:                                if(i.has_next())
1.31      paf       261:                                        sdata.APPEND_CONST("\t");
                    262:                        }
                    263:                } else { // nameless table
1.98      parser    264:                        if(int lsize=table.size()?static_cast<Array *>(table.get(0))->size():0)
1.31      paf       265:                                for(int column=0; column<lsize; column++) {
1.106     parser    266:                                        char *cindex_tab=(char *)pool.malloc(MAX_NUMBER);
1.31      paf       267:                                        snprintf(cindex_tab, MAX_NUMBER, "%d\t", column);
                    268:                                        sdata.APPEND_CONST(cindex_tab);
                    269:                                }
                    270:                        else
                    271:                                sdata.APPEND_CONST("empty nameless table");
                    272:                }
                    273:                sdata.APPEND_CONST("\n");
                    274:        }
                    275:        // data lines
1.98      parser    276:        Array_iter i(table);
                    277:        while(i.has_next()) {
                    278:                Array_iter c(*static_cast<Array *>(i.next()));
                    279:                while(c.has_next()) {
                    280:                        sdata.append(*c.next_string(), //*static_cast<String *>(row->quick_get(column)), 
                    281:                                String::UL_TABLE);
                    282:                        if(c.has_next())
1.31      paf       283:                                sdata.APPEND_CONST("\t");
                    284:                }
                    285:                sdata.APPEND_CONST("\n");
                    286:        }
                    287: 
                    288:        // write
1.61      paf       289:        file_write(pool, r.absolute(vtable_name.as_string()), 
1.48      paf       290:                sdata.cstr(), sdata.size(), true);
1.22      paf       291: }
                    292: 
1.93      parser    293: static void _count(Request& r, const String& method_name, MethodParams *) {
1.6       paf       294:        Pool& pool=r.pool();
1.18      paf       295:        Value& value=*new(pool) VInt(pool, static_cast<VTable *>(r.self)->table().size());
1.93      parser    296:        value.set_name(method_name);
1.15      paf       297:        r.write_no_lang(value);
1.6       paf       298: }
                    299: 
1.61      paf       300: static void _line(Request& r, const String& method_name, MethodParams *) {
1.6       paf       301:        Pool& pool=r.pool();
1.37      paf       302:        Value& value=*new(pool) VInt(pool, 1+static_cast<VTable *>(r.self)->table().current());
1.93      parser    303:        value.set_name(method_name);
1.15      paf       304:        r.write_no_lang(value);
1.6       paf       305: }
                    306: 
1.61      paf       307: static void _offset(Request& r, const String& method_name, MethodParams *params) {
1.6       paf       308:        Pool& pool=r.pool();
1.18      paf       309:        Table& table=static_cast<VTable *>(r.self)->table();
1.74      paf       310:        if(params->size()) {
1.90      parser    311:                Value& offset_expr=params->as_junction(0, "offset must be expression");
1.80      parser    312:                table.shift(r.process(offset_expr).as_int());
1.74      paf       313:        } else {
1.37      paf       314:                Value& value=*new(pool) VInt(pool, table.current());
1.93      parser    315:                value.set_name(method_name);
1.15      paf       316:                r.write_no_lang(value);
1.6       paf       317:        }
                    318: }
                    319: 
1.61      paf       320: static void _menu(Request& r, const String& method_name, MethodParams *params) {
1.90      parser    321:        Value& body_code=params->as_junction(0, "body must be code");
1.7       paf       322:        
1.61      paf       323:        Value *delim_code=params->size()==2?&params->get(1):0;
1.7       paf       324: 
1.64      paf       325:        VTable& vtable=*static_cast<VTable *>(r.self);
                    326:        Table& table=vtable.table();
1.7       paf       327:        bool need_delim=false;
1.99      parser    328:        int saved_current=table.current();
                    329:        int size=table.size();
                    330:        for(int row=0; row<size; row++) {
1.22      paf       331:                table.set_current(row);
1.7       paf       332: 
1.12      paf       333:                Value& processed_body=r.process(body_code);
1.7       paf       334:                if(delim_code) { // delimiter set?
                    335:                        const String *string=processed_body.get_string();
                    336:                        if(need_delim && string && string->size()) // need delim & iteration produced string?
                    337:                                r.write_pass_lang(r.process(*delim_code));
                    338:                        need_delim=true;
                    339:                }
                    340:                r.write_pass_lang(processed_body);
                    341:        }
1.99      parser    342:        table.set_current(saved_current);
1.7       paf       343: }
                    344: 
1.61      paf       345: static void _empty(Request& r, const String& method_name, MethodParams *params) {
1.75      paf       346:        Pool& pool=r.pool();
1.18      paf       347:        Table& table=static_cast<VTable *>(r.self)->table();
1.75      paf       348:        
                    349:        r.write_no_lang(*new(pool) VBool(pool, table.size()==0));
1.8       paf       350: }
1.15      paf       351: 
1.74      paf       352: /// used by table: _hash / table_row_to_hash
                    353: struct Row_info {
                    354:        Table *table;
                    355:        int key_field;
                    356:        Array *value_fields;
                    357:        Hash *hash;
                    358: };
                    359: static void table_row_to_hash(Array::Item *value, void *info) {
                    360:        Array& row=*static_cast<Array *>(value);
                    361:        Row_info& ri=*static_cast<Row_info *>(info);
                    362:        Pool& pool=ri.table->pool();
                    363: 
1.76      paf       364:        if(ri.key_field<row.size()) {
                    365:                VHash& result=*new(pool) VHash(pool);
                    366:                Hash& hash=*result.get_hash();
1.74      paf       367:                for(int i=0; i<ri.value_fields->size(); i++) {
                    368:                        int value_field=ri.value_fields->get_int(i);
                    369:                        if(value_field<row.size())
                    370:                                hash.put(
1.91      parser    371:                                        *ri.table->columns()->get_string(value_field), 
1.74      paf       372:                                        new(pool) VString(*row.get_string(value_field)));
                    373:                }
                    374:                
1.77      paf       375:                ri.hash->put(*row.get_string(ri.key_field), &result);
1.74      paf       376:        }
                    377: }
                    378: static void _hash(Request& r, const String& method_name, MethodParams *params) {
1.97      parser    379:        Pool& pool=r.pool();
1.74      paf       380:        Table& table=static_cast<VTable *>(r.self)->table();
1.97      parser    381:        Value& result=*new(pool) VHash(pool);
1.74      paf       382:        if(const Array *columns=table.columns()) 
                    383:                if(columns->size()>1) {
                    384: 
1.90      parser    385:                        const String& key_field_name=params->as_no_junction(0, 
1.74      paf       386:                                "key field name must not be code").as_string();
                    387:                        int key_field=table.column_name2index(key_field_name, true);
                    388:                        int value_fields_count=params->size()-1;
                    389:                        bool value_fields_by_params=value_fields_count!=0;
                    390:                        if(!value_fields_by_params)
                    391:                                value_fields_count=columns->size()-1; // all columns except key
                    392:                        Array value_fields(pool, value_fields_count);
                    393:                        if(value_fields_by_params) {
                    394:                                for(int i=1; i<params->size(); i++) {
1.91      parser    395:                                        const String& value_field_name=params->as_no_junction(i, 
1.74      paf       396:                                                "value field name must not be code").as_string();
                    397:                                        value_fields+=table.column_name2index(value_field_name, true);
                    398:                                }
                    399:                        } else { // by all columns except key
                    400:                                for(int i=0; i<columns->size(); i++)
                    401:                                        if(i!=key_field)
                    402:                                                value_fields+=i;
                    403:                        }
                    404: 
                    405:                        // integers: key_field & value_fields
                    406:                        Row_info row_info={&table, key_field, &value_fields, result.get_hash()};
                    407:                        table.for_each(table_row_to_hash, &row_info);
                    408:                }
1.97      parser    409:        result.set_name(method_name);
                    410:        r.write_no_lang(result);
1.74      paf       411: }
                    412: 
                    413: /// used by table: _sort / sort_cmp_string|sort_cmp_double
1.78      paf       414: struct Table_seq_item {
1.34      paf       415:        Array *row;
                    416:        union {
                    417:                char *c_str;
                    418:                double d;
                    419:        } value;
1.32      paf       420: };
1.34      paf       421: static int sort_cmp_string(const void *a, const void *b) {
                    422:        return strcmp(
1.78      paf       423:                static_cast<const Table_seq_item *>(a)->value.c_str, 
                    424:                static_cast<const Table_seq_item *>(b)->value.c_str
1.34      paf       425:        );
                    426: }
                    427: static int sort_cmp_double(const void *a, const void *b) {
1.78      paf       428:        double va=static_cast<const Table_seq_item *>(a)->value.d;
                    429:        double vb=static_cast<const Table_seq_item *>(b)->value.d;
1.34      paf       430:        if(va<vb)
                    431:                return -1;
                    432:        else if(va>vb)
                    433:                return +1;
                    434:        else 
                    435:                return 0;
                    436: }
1.61      paf       437: static void _sort(Request& r, const String& method_name, MethodParams *params) {
1.101     parser    438:        Pool& pool=r.pool();
1.90      parser    439:        Value& key_maker=params->as_junction(0, "key-maker must be code");
1.61      paf       440: 
1.102     parser    441:        bool reverse=params->size()==2/*..[desc|asc|]*/?
1.103     parser    442:                reverse=params->as_no_junction(1, "order must not be code").as_string()=="desc":
1.104     parser    443:                false; // default=asc
1.32      paf       444: 
1.101     parser    445:        Table& old_table=static_cast<VTable *>(r.self)->table();
                    446:        Table& new_table=*new(pool) Table(pool, &method_name, old_table.columns());
1.34      paf       447: 
1.101     parser    448:        Table_seq_item *seq=(Table_seq_item *)pool.malloc(sizeof(Table_seq_item)*old_table.size());
1.34      paf       449:        int i;
                    450: 
                    451:        // calculate key values
                    452:        bool key_values_are_strings=true;
1.101     parser    453:        // save 'current'
                    454:        int saved_current=old_table.current();
                    455:        for(i=0; i<old_table.size(); i++) {
                    456:                old_table.set_current(i);
1.32      paf       457:                // calculate key value
1.101     parser    458:                seq[i].row=(MethodParams *)old_table.get(i);
1.34      paf       459:                Value& value=*r.process(key_maker).as_expr_result(true/*return string as-is*/);
                    460:                if(i==0) // determining key values type by first one
                    461:                        key_values_are_strings=value.is_string();
                    462: 
                    463:                if(key_values_are_strings)
                    464:                        seq[i].value.c_str=value.as_string().cstr();
                    465:                else
                    466:                        seq[i].value.d=value.as_double();
1.32      paf       467:        }
1.101     parser    468:        // restore 'current'
                    469:        old_table.set_current(saved_current);
1.32      paf       470:        // sort keys
1.101     parser    471:        _qsort(seq, old_table.size(), sizeof(Table_seq_item), 
1.34      paf       472:                key_values_are_strings?sort_cmp_string:sort_cmp_double);
1.32      paf       473: 
1.34      paf       474:        // reorder table as they require in 'seq'
1.101     parser    475:        for(i=0; i<old_table.size(); i++)
                    476:                new_table+=seq[reverse?old_table.size()-1-i:i].row;
1.32      paf       477: 
1.101     parser    478:        r.write_no_lang(*new(pool) VTable(pool, &new_table));
1.32      paf       479: }
                    480: 
1.61      paf       481: static void _locate(Request& r, const String& method_name, MethodParams *params) {
1.72      paf       482:        Pool& pool=r.pool();
                    483: 
1.36      paf       484:        VTable& vtable=*static_cast<VTable *>(r.self);
                    485:        Table& table=vtable.table();
1.72      paf       486:        Value& result=*new(pool) VBool(pool, table.locate(
1.91      parser    487:                params->get(0).as_string(), 
1.72      paf       488:                params->get(1).as_string()));
                    489:        result.set_name(method_name);
                    490:        r.write_no_lang(result);
1.37      paf       491: }
                    492: 
1.61      paf       493: static void _flip(Request& r, const String& method_name, MethodParams *params) {
1.39      paf       494:        Pool& pool=r.pool();
                    495:        VTable& vtable=*static_cast<VTable *>(r.self);
                    496: 
                    497:        Table& old_table=*vtable.get_table();
                    498:        Table& new_table=*new(pool) Table(pool, &method_name, 0/*nameless*/);
                    499:        if(old_table.size())
                    500:                if(int old_cols=old_table.at(0).size()) 
                    501:                        for(int column=0; column<old_cols; column++) {
                    502:                                Array& new_row=*new(pool) Array(pool, old_table.size());
                    503:                                for(int i=0; i<old_table.size(); i++) {
                    504:                                        const Array& old_row=old_table.at(i);
                    505:                                        new_row+=column<old_row.size()?old_row.get(column):empty_string;
                    506:                                }
                    507:                                new_table+=&new_row;
                    508:                        }
                    509: 
1.99      parser    510:        r.write_no_lang(*new(pool) VTable(pool, &new_table));
1.39      paf       511: }
                    512: 
1.61      paf       513: static void _append(Request& r, const String& method_name, MethodParams *params) {
1.41      paf       514:        Pool& pool=r.pool();
                    515:        // data is last parameter
1.61      paf       516:        const String& string=
1.90      parser    517:                r.process(params->as_junction(0, "body must be code")).as_string();
1.41      paf       518: 
                    519:        // parse cells
                    520:        Array& row=*new(pool) Array(pool);
1.46      paf       521:        string.split(row, 0, "\t", 1, String::UL_CLEAN);
1.41      paf       522: 
1.66      paf       523:        VTable& vtable=*static_cast<VTable *>(r.self);
                    524:        vtable.table()+=&row;
1.41      paf       525: }
                    526: 
1.61      paf       527: static void _join(Request& r, const String& method_name, MethodParams *params) {
1.42      paf       528:        Pool& pool=r.pool();
                    529: 
1.90      parser    530:        Table *maybe_src=params->as_no_junction(0, "table ref must not be code").get_table();
1.42      paf       531:        if(!maybe_src)
1.91      parser    532:                PTHROW(0, 0, 
                    533:                        &method_name, 
1.42      paf       534:                        "source is not a table");
                    535: 
                    536:        Table& src=*maybe_src;
                    537:        Table& dest=static_cast<VTable *>(r.self)->table();
                    538:        if(&src == &dest)
1.91      parser    539:                PTHROW(0, 0, 
                    540:                        &method_name, 
1.42      paf       541:                        "source and destination are same table");
                    542: 
                    543:        if(const Array *dest_columns=dest.columns()) { // dest is named
                    544:                int saved_src_current=src.current();
                    545:                for(int src_row=0; src_row<src.size(); src_row++) {
                    546:                        src.set_current(src_row);
                    547:                        Array& dest_row=*new(pool) Array(pool);
                    548:                        for(int dest_column=0; dest_column<dest_columns->size(); dest_column++) 
                    549:                                dest_row+=src.item(*dest_columns->get_string(dest_column));
                    550:                        dest+=&dest_row;
                    551:                }
                    552:                src.set_current(saved_src_current);
                    553:        } else { // dest is nameless
                    554:                for(int src_row=0; src_row<src.size(); src_row++)
                    555:                        dest+=&src.at(src_row);
                    556:        }
                    557: }
                    558: 
1.94      parser    559: #ifndef DOXYGEN
                    560: class Table_sql_event_handlers : public SQL_Driver_query_event_handlers {
                    561: public:
                    562:        Table_sql_event_handlers(Pool& apool, const String& amethod_name,
                    563:                const String& astatement_string, const char *astatement_cstr) :
                    564:                pool(apool), 
                    565:                method_name(amethod_name),
                    566:                statement_string(astatement_string),
                    567:                statement_cstr(astatement_cstr),
                    568:                columns(*new(pool) Array(pool)),
                    569:                row(0), row_index(0),
                    570:                table(0)
                    571:        {
                    572:        }
                    573: 
                    574:        void add_column(void *ptr, size_t size) {
                    575:                String *column=new(pool) String(pool);
                    576:                column->APPEND_TAINTED(
                    577:                        (const char *)ptr, size, 
                    578:                        statement_cstr, 0);
                    579:                columns+=column;
                    580:        }
                    581:        void before_rows() { 
                    582:                table=new(pool) Table(pool, &method_name, &columns);
                    583:        }
                    584:        void add_row() {
                    585:                (*table)+=(row=new(pool) Array(pool));
                    586:        }
                    587:        void add_row_cell(void *ptr, size_t size) {
                    588:                String *cell=new(pool) String(pool);
                    589:                if(size)
                    590:                        cell->APPEND_TAINTED(
                    591:                                (const char *)ptr, size, 
                    592:                                statement_cstr, row_index++);
                    593:                (*row)+=cell;
                    594:        }
                    595: 
                    596: private:
                    597:        Pool& pool;
                    598:        const String& method_name;
                    599:        const String& statement_string; const char *statement_cstr;
                    600:        Array& columns;
                    601:        Array *row;
                    602:        uint row_index;
                    603: public:
                    604:        Table *table;
                    605: };
                    606: #endif
1.61      paf       607: static void _sql(Request& r, const String& method_name, MethodParams *params) {
1.49      paf       608:        Pool& pool=r.pool();
                    609: 
                    610:        if(!r.connection)
1.91      parser    611:                PTHROW(0, 0, 
                    612:                        &method_name, 
1.49      paf       613:                        "without connect");
                    614: 
1.90      parser    615:        Value& statement=params->as_junction(0, "statement must be code");
1.49      paf       616: 
1.53      paf       617:        ulong limit=0;
1.100     parser    618:        ulong offset=0;
1.49      paf       619:        if(params->size()>1) {
1.100     parser    620:                Value& options_param=params->as_no_junction(1, "options must be hash, not code");
                    621:                if(Hash *options=options_param.get_hash()) {
                    622:                        if(Value *vlimit=(Value *)options->get(*sql_limit_name))
                    623:                                limit=(ulong)r.process(*vlimit).as_double();
                    624:                        if(Value *voffset=(Value *)options->get(*sql_offset_name))
                    625:                                offset=(ulong)r.process(*voffset).as_double();
                    626:                } else
                    627:                        PTHROW(0, 0,
                    628:                                &method_name,
                    629:                                "options must be hash");
1.49      paf       630:        }
                    631: 
1.54      paf       632:        Temp_lang temp_lang(r, String::UL_SQL);
                    633:        const String& statement_string=r.process(statement).as_string();
1.55      paf       634:        const char *statement_cstr=
                    635:                statement_string.cstr(String::UL_UNSPECIFIED, r.connection);
1.94      parser    636:        Table_sql_event_handlers handlers(pool, method_name,
                    637:                statement_string, statement_cstr);
1.52      paf       638:        bool need_rethrow=false; Exception rethrow_me;
1.108   ! parser    639:                PTRY {
1.52      paf       640:                r.connection->query(
1.91      parser    641:                        statement_cstr, offset, limit, 
1.94      parser    642:                        handlers);
1.52      paf       643:        }
1.82      parser    644:        PCATCH(e) { // query problem
1.52      paf       645:                rethrow_me=e;  need_rethrow=true;
                    646:        }
                    647:        PEND_CATCH
                    648:        if(need_rethrow)
1.91      parser    649:                PTHROW(rethrow_me.type(), rethrow_me.code(), 
1.53      paf       650:                        &statement_string, // setting more specific source [were url]
1.52      paf       651:                        rethrow_me.comment());
1.96      parser    652: 
                    653:        Table *result=
                    654:                handlers.table?handlers.table: // query resulted in table? return it
                    655:                new(pool) Table(pool, &method_name, 0); // query returned no table, fake it
1.49      paf       656: 
                    657:        // replace any previous table value
1.96      parser    658:        static_cast<VTable *>(r.self)->set_table(*result);
1.49      paf       659: }
                    660: 
1.88      parser    661: static void _columns(Request& r, const String& method_name, MethodParams *) {
                    662:        Pool& pool=r.pool();
                    663: 
                    664:        Array& result_columns=*new(pool) Array(pool);
1.89      parser    665:        result_columns+=new(pool) String(pool, "column");
1.88      parser    666:        Table& result_table=*new(pool) Table(pool, &method_name, &result_columns);
                    667: 
                    668:        Table& source_table=static_cast<VTable *>(r.self)->table();
                    669:        if(const Array *source_columns=source_table.columns()) {
1.98      parser    670:                Array_iter i(*source_columns);
                    671:                while(i.has_next()) {
1.88      parser    672:                        Array& result_row=*new(pool) Array(pool);
1.98      parser    673:                        result_row+=i.next();
1.88      parser    674:                        result_table+=&result_row;
                    675:                }
                    676:        }
                    677: 
                    678:        VTable& result=*new(pool) VTable(pool, &result_table);
                    679:        result.set_name(method_name);
                    680:        r.write_no_lang(result);
                    681: }
                    682: 
1.66      paf       683: // constructor
                    684: 
                    685: MTable::MTable(Pool& apool) : Methoded(apool) {
                    686:        set_name(*NEW String(pool(), TABLE_CLASS_NAME));
                    687: 
1.49      paf       688:        // ^table:set{data}
                    689:        // ^table:set[nameless]{data}
1.66      paf       690:        add_native_method("set", Method::CT_DYNAMIC, _set, 1, 2);
1.2       paf       691: 
1.49      paf       692:        // ^table:load[file]  
                    693:        // ^table:load[nameless;file]
1.66      paf       694:        add_native_method("load", Method::CT_DYNAMIC, _load, 1, 2);
1.91      parser    695: 
                    696:        // ^table:calendar[month|montheng;year;month]  
                    697:        // ^table:calendar[week|weekeng;year;month;day]
                    698:        add_native_method("calendar", Method::CT_DYNAMIC, _calendar, 3, 4);
1.22      paf       699: 
                    700:        // ^table.save[file]  
                    701:        // ^table.save[nameless;file]
1.66      paf       702:        add_native_method("save", Method::CT_DYNAMIC, _save, 1, 2);
1.6       paf       703: 
                    704:        // ^table.count[]
1.66      paf       705:        add_native_method("count", Method::CT_DYNAMIC, _count, 0, 0);
1.6       paf       706: 
                    707:        // ^table.line[]
1.66      paf       708:        add_native_method("line", Method::CT_DYNAMIC, _line, 0, 0);
1.6       paf       709: 
1.10      paf       710:        // ^table.offset[]  
                    711:        // ^table.offset[offset]
1.66      paf       712:        add_native_method("offset", Method::CT_DYNAMIC, _offset, 0, 1);
1.7       paf       713: 
1.10      paf       714:        // ^table.menu{code}  
                    715:        // ^table.menu{code}[delim]
1.66      paf       716:        add_native_method("menu", Method::CT_DYNAMIC, _menu, 1, 2);
1.8       paf       717: 
1.75      paf       718:        // ^table.empty[]
                    719:        add_native_method("empty", Method::CT_DYNAMIC, _empty, 0, 0);
1.74      paf       720: 
1.79      paf       721:        // ^table:hash[key field name]
                    722:        // ^table:hash[key field name][value field name;...]
1.74      paf       723:        add_native_method("hash", Method::CT_DYNAMIC, _hash, 1, 1000);
1.32      paf       724: 
1.102     parser    725:        // ^table.sort{string-key-maker} ^table.sort{string-key-maker}[desc|asc]
                    726:        // ^table.sort(numeric-key-maker) ^table.sort(numeric-key-maker)[desc|asc]
1.66      paf       727:        add_native_method("sort", Method::CT_DYNAMIC, _sort, 1, 2);
1.8       paf       728: 
1.36      paf       729:        // ^table.locate[field;value]
1.66      paf       730:        add_native_method("locate", Method::CT_DYNAMIC, _locate, 2, 2);
1.39      paf       731: 
                    732:        // ^table.flip[]
1.66      paf       733:        add_native_method("flip", Method::CT_DYNAMIC, _flip, 0, 0);
1.41      paf       734: 
                    735:        // ^table.append{r{tab}e{tab}c{tab}o{tab}r{tab}d}
1.66      paf       736:        add_native_method("append", Method::CT_DYNAMIC, _append, 1, 1);
1.42      paf       737: 
                    738:        // ^table.join[table]
1.66      paf       739:        add_native_method("join", Method::CT_DYNAMIC, _join, 1, 1);
1.49      paf       740: 
                    741: 
1.100     parser    742:        // ^table:sql[query]
                    743:        // ^table:sql[query][$.limit(1) $.offset(2)]
                    744:        add_native_method("sql", Method::CT_DYNAMIC, _sql, 1, 2);
1.88      parser    745: 
                    746:        // ^table:columns[]
                    747:        add_native_method("columns", Method::CT_DYNAMIC, _columns, 0, 0);
1.66      paf       748: }
                    749: 
                    750: // global variable
                    751: 
                    752: Methoded *table_class;
                    753: 
                    754: // creator
                    755: 
                    756: Methoded *MTable_create(Pool& pool) {
                    757:        return table_class=new(pool) MTable(pool);
1.40      paf       758: }

E-mail: