Annotation of parser3/src/classes/string.C, revision 1.239
1.24 paf 1: /** @file
2: Parser: @b string parser class.
3:
1.234 moko 4: Copyright (c) 2001-2017 Art. Lebedev Studio (http://www.artlebedev.com)
1.97 paf 5: Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru)
1.113 paf 6: */
1.24 paf 7:
1.43 paf 8: #include "classes.h"
1.126 paf 9: #include "pa_vmethod_frame.h"
10:
1.1 paf 11: #include "pa_request.h"
12: #include "pa_vdouble.h"
13: #include "pa_vint.h"
1.17 paf 14: #include "pa_vtable.h"
1.25 paf 15: #include "pa_vbool.h"
1.27 paf 16: #include "pa_string.h"
1.53 parser 17: #include "pa_sql_connection.h"
1.71 parser 18: #include "pa_dictionary.h"
1.119 paf 19: #include "pa_vmethod_frame.h"
1.174 misha 20: #include "pa_vregex.h"
1.189 misha 21: #include "pa_charsets.h"
1.1 paf 22:
1.239 ! moko 23: volatile const char * IDENT_STRING_C="$Id: string.C,v 1.238 2018/01/19 16:52:50 moko Exp $";
1.203 moko 24:
1.41 paf 25: // class
26:
1.126 paf 27: class MString: public Methoded {
1.41 paf 28: public:
1.126 paf 29: MString();
1.41 paf 30: };
1.1 paf 31:
1.126 paf 32: // global variable
33:
1.224 moko 34: DECLARE_CLASS_VAR(string, new MString);
1.126 paf 35:
1.196 moko 36: // void class, inherited from string and thus should be inited afterwards
37:
38: class MVoid: public Methoded {
39: public:
40: MVoid();
41: };
42:
43: // void global variable should be after string global variable
44:
1.224 moko 45: DECLARE_CLASS_VAR(void, new MVoid);
1.196 moko 46:
1.126 paf 47: // defines for statics
48:
49: #define MATCH_VAR_NAME "match"
1.162 misha 50: #define TRIM_START_OPTION "left"
51: #define TRIM_END_OPTION "right"
1.133 paf 52: #define TRIM_BOTH_OPTION "both"
1.126 paf 53:
1.189 misha 54: #define MODE_APPEND "append"
55:
1.220 moko 56: #define UNESCAPE_MODE_JS "js"
57: #define UNESCAPE_MODE_URI "uri"
58:
1.126 paf 59: // statics
60:
61: static const String match_var_name(MATCH_VAR_NAME);
62:
1.1 paf 63: // methods
64:
1.126 paf 65: static void _length(Request& r, MethodParams&) {
1.163 misha 66: double result=GET_SELF(r, VString).string().length(r.charsets.source());
1.233 moko 67: r.write(*new VDouble(result));
1.1 paf 68: }
69:
1.126 paf 70: static void _int(Request& r, MethodParams& params) {
71: const String& self_string=GET_SELF(r, VString).string();
1.72 parser 72: int converted;
1.206 moko 73:
74: if(self_string.is_empty()) {
1.144 paf 75: if(params.count()>0)
76: converted=params.as_int(0, "default must be int", r); // (default)
1.84 parser 77: else
1.206 moko 78: throw Exception(PARSER_RUNTIME, 0, "unable to convert empty string without default specified");
79: } else {
80: try {
81: converted=self_string.as_int();
82: } catch(...) { // convert problem
83: if(params.count()>0)
84: converted=params.as_int(0, "default must be int", r); // (default)
85: else
86: rethrow; // we have a problem when no default
87: }
1.72 parser 88: }
1.206 moko 89:
1.233 moko 90: r.write(*new VInt(converted));
1.1 paf 91: }
92:
1.126 paf 93: static void _double(Request& r, MethodParams& params) {
94: const String& self_string=GET_SELF(r, VString).string();
1.206 moko 95:
96: if(self_string.is_empty()) {
1.144 paf 97: if(params.count()>0)
1.233 moko 98: r.write(*new VDouble(params.as_double(0, "default must be double", r))); // (default)
1.84 parser 99: else
1.206 moko 100: throw Exception(PARSER_RUNTIME, 0, "unable to convert empty string without default specified");
101: } else {
102: try {
1.233 moko 103: r.write(*new VDouble(self_string.as_double()));
1.206 moko 104: } catch(...) { // convert problem
105: if(params.count()>0)
1.233 moko 106: r.write(*new VDouble(params.as_double(0, "default must be double", r))); // (default)
1.206 moko 107: else
108: rethrow; // we have a problem when no default
109: }
1.72 parser 110: }
1.1 paf 111: }
112:
1.151 misha 113: static void _bool(Request& r, MethodParams& params) {
114: const String& self_string=GET_SELF(r, VString).string();
115: bool converted;
1.206 moko 116: const char *str=self_string.cstr();
117:
118: if(self_string.is_empty()) {
119: if(params.count()>0)
120: converted=params.as_bool(0, "default must be bool", r); // (default)
121: else
122: throw Exception(PARSER_RUNTIME, 0, "unable to convert empty string without default specified");
1.207 moko 123: } else if( (str[0]=='T' || str[0]=='t') && (str[1]=='R' || str[1]=='r') && (str[2]=='U' || str[2]=='u') &&
1.206 moko 124: (str[3]=='E' || str[3]=='e') && str[4]==0 ) { // "true"
125: converted=true;
1.207 moko 126: } else if( (str[0]=='F' || str[0]=='f') && (str[1]=='A' || str[1]=='a') && (str[2]=='L' || str[2]=='l') &&
1.206 moko 127: (str[3]=='S' || str[3]=='s') && (str[4]=='E' || str[4]=='e') && str[5]==0 ) { // "false"
128: converted=false;
129: } else {
1.158 misha 130: try {
131: converted=self_string.as_bool();
1.206 moko 132: } catch(...) { // convert problem
133: if(params.count()>0)
134: converted=params.as_bool(0, "default must be bool", r); // (default)
135: else
136: rethrow; // we have a problem when no default
1.158 misha 137: }
1.151 misha 138: }
139:
1.233 moko 140: r.write(VBool::get(converted));
1.151 misha 141: }
142:
1.126 paf 143: /*not static*/void _string_format(Request& r, MethodParams& params) {
1.9 paf 144:
1.126 paf 145: Value& fmt_maybe_code=params[0];
1.95 paf 146: // for some time due to stupid {} in original design
1.99 paf 147: const String& fmt=r.process_to_string(fmt_maybe_code);
1.9 paf 148:
1.159 misha 149: const char* buf=format(r.get_self().as_double(), fmt.trim().cstrm());
1.63 parser 150:
1.233 moko 151: r.write(String(buf));
1.9 paf 152: }
1.11 paf 153:
1.126 paf 154: static void _left(Request& r, MethodParams& params) {
1.138 paf 155: ssize_t sn=params.as_int(0, "n must be int", r);
1.126 paf 156: const String& string=GET_SELF(r, VString).string();
1.233 moko 157: r.write(sn<0 ? string : string.mid(r.charsets.source(), 0, (size_t)sn));
1.15 paf 158: }
159:
1.126 paf 160: static void _right(Request& r, MethodParams& params) {
1.217 moko 161: ssize_t sn=params.as_int(0, "n must be int", r);
1.216 moko 162: if(sn>0){
163: size_t n=(size_t)sn;
164: const String& string=GET_SELF(r, VString).string();
165: size_t length=string.length(r.charsets.source());
1.233 moko 166: r.write(n<length ? string.mid(r.charsets.source(), length-n, length, length) : string);
1.216 moko 167: }
1.15 paf 168: }
169:
1.126 paf 170: static void _mid(Request& r, MethodParams& params) {
171: const String& string=GET_SELF(r, VString).string();
1.83 parser 172:
1.138 paf 173: ssize_t sbegin=params.as_int(0, "p must be int", r);
174: if(sbegin<0)
1.238 moko 175: throw Exception(PARSER_RUNTIME, 0, "p(%d) must be >=0", sbegin);
1.138 paf 176: size_t begin=(size_t)sbegin;
177:
178: size_t end;
1.164 misha 179: size_t length=0;
1.138 paf 180: if(params.count()>1) {
181: ssize_t sn=params.as_int(1, "n must be int", r);
182: if(sn<0)
1.238 moko 183: throw Exception(PARSER_RUNTIME, 0, "n(%d) must be >=0", sn);
1.138 paf 184: end=begin+(size_t)sn;
1.164 misha 185: } else {
186: length=string.length(r.charsets.source());
187: end=length;
188: }
1.163 misha 189:
1.233 moko 190: r.write(string.mid(r.charsets.source(), begin, end, length));
1.15 paf 191: }
192:
1.126 paf 193: static void _pos(Request& r, MethodParams& params) {
194: Value& substr=params.as_no_junction(0, "substr must not be code");
1.16 paf 195:
1.126 paf 196: const String& string=GET_SELF(r, VString).string();
1.165 misha 197: ssize_t offset=0;
198: if(params.count()>1){
199: offset=params.as_int(1, "n must be int", r);
200: if(offset<0)
1.227 moko 201: throw Exception(PARSER_RUNTIME, 0, "n(%d) must be >=0", offset);
1.165 misha 202: }
203:
1.233 moko 204: r.write(*new VInt((int)string.pos(r.charsets.source(), substr.as_string(), (size_t)offset)));
1.16 paf 205: }
206:
1.227 moko 207: static void split_list(MethodParams& params, int paramIndex, const String& string, ArrayString& result) {
1.126 paf 208: Value& delim_value=params.as_no_junction(paramIndex, "delimiter must not be code");
1.227 moko 209: string.split(result, 0, delim_value.as_string());
1.19 paf 210: }
211:
1.118 paf 212: #define SPLIT_LEFT 0x0001
213: #define SPLIT_RIGHT 0x0010
214: #define SPLIT_HORIZONTAL 0x0100
215: #define SPLIT_VERTICAL 0x1000
216:
1.126 paf 217: static int split_options(const String* options) {
1.118 paf 218: struct Split_option {
1.126 paf 219: const char* keyL;
220: const char* keyU;
1.118 paf 221: int setBit;
222: int checkBit;
223: } split_option[]={
224: {"l", "L", SPLIT_LEFT, SPLIT_RIGHT}, // 0xVHRL
225: {"r", "R", SPLIT_RIGHT, SPLIT_LEFT},
226: {"h", "H", SPLIT_HORIZONTAL, SPLIT_VERTICAL},
227: {"v", "V", SPLIT_VERTICAL, SPLIT_HORIZONTAL},
1.130 paf 228: {0, 0, 0, 0}
1.118 paf 229: };
230:
231: int result=0;
1.126 paf 232: if(options) {
1.118 paf 233: for(Split_option *o=split_option; o->keyL; o++)
1.126 paf 234: if(options->pos(o->keyL)!=STRING_NOT_FOUND
235: || (o->keyU && options->pos(o->keyU)!=STRING_NOT_FOUND)) {
1.118 paf 236: if(result & o->checkBit)
1.238 moko 237: throw Exception(PARSER_RUNTIME, options, "conflicting split options");
1.118 paf 238: result |= o->setBit;
239: }
240: }
241:
242: return result;
243: }
244:
1.156 misha 245: static Table& split_vertical(ArrayString& pieces, bool right, const String* column_name) {
1.126 paf 246: Table::columns_type columns(new ArrayString);
1.156 misha 247: *columns+=column_name;
1.19 paf 248:
1.126 paf 249: Table& table=*new Table(columns, pieces.count());
1.118 paf 250: if(right) { // right
1.126 paf 251: for(int i=pieces.count(); --i>=0; ) {
252: Table::element_type row(new ArrayString);
253: *row+=pieces[i];
254: table+=row;
1.118 paf 255: }
256: } else { // left
1.126 paf 257: Array_iterator<const String*> i(pieces);
1.118 paf 258: while(i.has_next()) {
1.126 paf 259: Table::element_type row(new ArrayString);
260: *row+=i.next();
261: table+=row;
1.118 paf 262: }
1.61 parser 263: }
1.118 paf 264:
1.126 paf 265: return table;
1.19 paf 266: }
267:
1.128 paf 268: static Table& split_horizontal(ArrayString& pieces, bool right) {
1.126 paf 269: Table& table=*new Table(Table::columns_type(0) /* nameless */);
270: Table::element_type row(new ArrayString(pieces.count()));
1.118 paf 271: if(right) { // right
1.131 paf 272: for(int i=pieces.count(); --i>=0; )
1.126 paf 273: *row+=pieces[i];
1.118 paf 274: } else { // left
1.126 paf 275: for(Array_iterator<const String*> i(pieces); i.has_next(); )
276: *row+=i.next();
1.118 paf 277: }
1.126 paf 278: table+=row;
1.118 paf 279:
1.126 paf 280: return table;
1.118 paf 281: }
282:
1.238 moko 283: static void split_with_options(Request& r, MethodParams& params, int bits) {
1.126 paf 284: const String& string=GET_SELF(r, VString).string();
1.176 misha 285: size_t params_count=params.count();
1.19 paf 286:
1.126 paf 287: ArrayString pieces;
1.128 paf 288: split_list(params, 0, string, pieces);
1.19 paf 289:
1.118 paf 290: if(!bits) {
1.126 paf 291: const String* options=0;
1.176 misha 292: if(params_count>1)
1.187 misha 293: options=¶ms.as_string(1, OPTIONS_MUST_NOT_BE_CODE);
1.118 paf 294: bits=split_options(options);
295: }
1.21 paf 296:
1.118 paf 297: bool right=(bits & SPLIT_RIGHT) != 0;
298: bool horizontal=(bits & SPLIT_HORIZONTAL) !=0;
1.156 misha 299:
300: const String* column_name=0;
1.176 misha 301: if(params_count>2){
1.156 misha 302: column_name=¶ms.as_string(2, COLUMN_NAME_MUST_BE_STRING);
1.178 misha 303: if (horizontal && !column_name->is_empty())
1.238 moko 304: throw Exception(PARSER_RUNTIME, column_name, "column name can't be specified with horisontal split");
1.156 misha 305: }
1.178 misha 306: if(!column_name || column_name->is_empty())
1.156 misha 307: column_name=new String("piece");
308:
309: Table& table=horizontal?split_horizontal(pieces, right):split_vertical(pieces, right, column_name);
1.17 paf 310:
1.233 moko 311: r.write(*new VTable(&table));
1.118 paf 312: }
1.126 paf 313: static void _split(Request& r, MethodParams& params) {
314: split_with_options(r, params, 0 /* maybe-determine from param #2 */);
1.118 paf 315: }
1.126 paf 316: static void _lsplit(Request& r, MethodParams& params) {
317: split_with_options(r, params, SPLIT_LEFT);
1.118 paf 318: }
1.126 paf 319: static void _rsplit(Request& r, MethodParams& params) {
320: split_with_options(r, params, SPLIT_RIGHT);
1.17 paf 321: }
322:
1.126 paf 323: static void search_action(Table& table, Table::element_type row, int, int, int, int, void *) {
1.28 paf 324: if(row)
325: table+=row;
1.27 paf 326: }
327:
1.74 parser 328: #ifndef DOXYGEN
1.27 paf 329: struct Replace_action_info {
1.181 misha 330: Request* request;
331: const String* src;
332: String* dest;
1.126 paf 333: VTable* vtable;
334: Value* replacement_code;
1.27 paf 335: };
1.74 parser 336: #endif
1.105 paf 337: /// @todo they can do $global[$result] there, getting pointer to later-invalid local var, kill this
1.238 moko 338: static void replace_action(Table& table, ArrayString* row, int prestart, int prefinish, int poststart, int postfinish, void *info) {
1.27 paf 339: Replace_action_info& ai=*static_cast<Replace_action_info *>(info);
1.31 paf 340: if(row) { // begin&middle
1.104 paf 341: // piece from last match['prestart'] to beginning of this match['prefinish']
342: if(prestart!=prefinish)
343: *ai.dest << ai.src->mid(prestart, prefinish);//ai.dest->APPEND_CONST("-");
1.51 parser 344: // store found parts in one-record VTable
1.126 paf 345: if(table.count()) // middle
1.32 paf 346: table.put(0, row);
347: else // begin
1.30 paf 348: table+=row;
1.181 misha 349:
1.30 paf 350: { // execute 'replacement_code' in 'table' context
1.181 misha 351: if(ai.replacement_code){
352: ai.vtable->set_table(table);
353: *ai.dest << ai.request->process_to_string(*ai.replacement_code);
354: }
1.29 paf 355: }
356: } else // end
1.104 paf 357: *ai.dest << ai.src->mid(poststart, postfinish);
1.27 paf 358: }
359:
1.126 paf 360: static void _match(Request& r, MethodParams& params) {
1.174 misha 361: size_t params_count=params.count();
362:
1.126 paf 363: Value& regexp=params.as_no_junction(0, "regexp must not be code");
1.187 misha 364: Value* options=(params_count>1)?¶ms.as_no_junction(1, OPTIONS_MUST_NOT_BE_CODE):0;
1.174 misha 365:
366: VRegex* vregex;
367: VRegexCleaner vrcleaner;
1.126 paf 368:
1.188 misha 369: if(Value* value=regexp.as(VREGEX_TYPE)){
1.174 misha 370: if(options && options->is_defined())
1.237 moko 371: throw Exception(PARSER_RUNTIME, 0, "you can not specify regex-object and options together");
1.174 misha 372: vregex=static_cast<VRegex*>(value);
373: } else {
1.237 moko 374: vregex=new VRegex(r.charsets.source(), ®exp.as_string(), (options) ? (&options->as_string()) : 0);
1.175 misha 375: vregex->study();
1.174 misha 376: vrcleaner.vregex=vregex;
377: }
1.126 paf 378:
379: const String& src=GET_SELF(r, VString).string();
1.152 misha 380: int matches_count=0;
1.174 misha 381:
382: if(params_count<3) { // search
1.237 moko 383: Table* table=src.match(vregex, search_action, 0, matches_count);
1.174 misha 384:
1.152 misha 385: if(table){
1.233 moko 386: r.write(*new VTable(table));
1.152 misha 387: } else {
1.233 moko 388: r.write(*new VInt(matches_count));
1.152 misha 389: }
390:
1.27 paf 391: } else { // replace
1.181 misha 392:
393: Value* replacement_code=0;
394: bool is_junction=false;
395:
396: Value* replacement=¶ms[2];
397: if(replacement->get_junction()){
398: replacement_code=replacement;
399: is_junction=true;
400: } else if(replacement->is_string()){
401: if(replacement->is_defined())
402: replacement_code=replacement;
403: } else if(!replacement->is_void())
1.238 moko 404: throw Exception(PARSER_RUNTIME, 0, "replacement option should be junction or string");
1.106 paf 405:
1.238 moko 406: Value* default_code=(params_count==4) ? ¶ms.as_junction(3, "default value must be code") : 0;
1.192 misha 407:
1.126 paf 408: String result;
409: VTable* vtable=new VTable;
1.130 paf 410: Replace_action_info info={
411: &r,
412: &src,
413: &result,
414: vtable,
1.181 misha 415: replacement_code
1.130 paf 416: };
1.181 misha 417:
1.191 misha 418: if(is_junction){
1.211 moko 419: Temp_value_element temp(r, *replacement_code->get_junction()->method_frame, match_var_name, vtable);
1.191 misha 420: src.match(vregex, replace_action, &info, matches_count);
421: } else {
422: src.match(vregex, replace_action, &info, matches_count);
423: }
1.181 misha 424:
1.192 misha 425: if(!matches_count && default_code)
426: r.process_write(*default_code);
427: else
1.233 moko 428: r.write(result);
1.27 paf 429: }
1.24 paf 430: }
431:
1.238 moko 432: static void change_case(Request& r, MethodParams&, String::Change_case_kind kind) {
1.126 paf 433: const String& src=GET_SELF(r, VString).string();
1.49 parser 434:
1.233 moko 435: r.write(src.change_case(r.charsets.source(), kind));
1.49 parser 436: }
1.126 paf 437: static void _upper(Request& r, MethodParams& params) {
438: change_case(r, params, String::CC_UPPER);
1.49 parser 439: }
1.126 paf 440: static void _lower(Request& r, MethodParams& params) {
441: change_case(r, params, String::CC_LOWER);
1.49 parser 442: }
443:
1.65 parser 444: #ifndef DOXYGEN
1.126 paf 445: class String_sql_event_handlers: public SQL_Driver_query_event_handlers {
446: const String& statement_string; const char* statement_cstr;
447: bool got_column;
1.65 parser 448: public:
1.126 paf 449: bool got_cell;
1.208 moko 450: const String* result;
1.126 paf 451: public:
452: String_sql_event_handlers(
453: const String& astatement_string, const char* astatement_cstr):
454: statement_string(astatement_string), statement_cstr(astatement_cstr),
455: got_column(false),
456: got_cell(false),
1.208 moko 457: result(&String::Empty) {}
1.65 parser 458:
1.128 paf 459: bool add_column(SQL_Error& error, const char* /*str*/, size_t /*length*/) {
1.124 paf 460: if(got_column) {
1.238 moko 461: error=SQL_Error(PARSER_RUNTIME, /*statement_string,*/ "result must contain exactly one column");
1.124 paf 462: return true;
463: }
1.65 parser 464: got_column=true;
1.124 paf 465: return false;
1.65 parser 466: }
1.124 paf 467: bool before_rows(SQL_Error& /*error*/ ) { /* ignore */ return false; }
468: bool add_row(SQL_Error& /*error*/) { /* ignore */ return false; }
1.210 moko 469: bool add_row_cell(SQL_Error& error, const char* str, size_t) {
1.124 paf 470: if(got_cell) {
1.238 moko 471: error=SQL_Error(PARSER_RUNTIME, /*statement_string,*/ "result must not contain more then one row");
1.124 paf 472: return true;
473: }
1.65 parser 474:
1.124 paf 475: try {
476: got_cell=true;
1.208 moko 477: result=new String(str, String::L_TAINTED /* no length as 0x00 can be inside */ );
1.124 paf 478: return false;
479: } catch(...) {
1.235 moko 480: error=SQL_Error("exception occurred in String_sql_event_handlers::add_row_cell");
1.124 paf 481: return true;
482: }
1.65 parser 483: }
484: };
485: #endif
1.239 ! moko 486:
1.141 paf 487: extern int marshal_binds(HashStringValue& hash, SQL_Driver::Placeholder*& placeholders);
488: extern void unmarshal_bind_updates(HashStringValue& hash, int placeholder_count, SQL_Driver::Placeholder* placeholders);
489:
1.204 moko 490: const String* sql_result_string(Request& r, MethodParams& params, Value*& default_code) {
1.126 paf 491: Value& statement=params.as_junction(0, "statement must be code");
1.53 parser 492:
1.141 paf 493: HashStringValue* bind=0;
1.160 misha 494: ulong limit=SQL_NO_LIMIT;
1.70 parser 495: ulong offset=0;
1.81 parser 496: default_code=0;
1.199 misha 497: if(params.count()>1)
1.205 misha 498: if(HashStringValue* options=params.as_hash(1, "sql options")) {
1.199 misha 499: int valid_options=0;
500: if(Value* vbind=options->get(sql_bind_name)) {
501: valid_options++;
502: bind=vbind->get_hash();
503: }
504: if(Value* vlimit=options->get(sql_limit_name)) {
505: valid_options++;
1.230 moko 506: limit=(ulong)r.process(*vlimit).as_double();
1.199 misha 507: }
508: if(Value* voffset=options->get(sql_offset_name)) {
509: valid_options++;
1.230 moko 510: offset=(ulong)r.process(*voffset).as_double();
1.199 misha 511: }
512: if((default_code=options->get(sql_default_name))) {
513: valid_options++;
514: }
515: if(valid_options!=options->count())
516: throw Exception(PARSER_RUNTIME, 0, CALLED_WITH_INVALID_OPTION);
1.200 misha 517: }
1.70 parser 518:
1.141 paf 519: SQL_Driver::Placeholder* placeholders=0;
520: uint placeholders_count=0;
521: if(bind)
522: placeholders_count=marshal_binds(*bind, placeholders);
523:
1.99 paf 524: const String& statement_string=r.process_to_string(statement);
1.232 moko 525: const char* statement_cstr=statement_string.untaint_cstr(String::L_SQL, r.connection());
1.183 misha 526:
1.126 paf 527: String_sql_event_handlers handlers(statement_string, statement_cstr);
1.160 misha 528:
1.126 paf 529: r.connection()->query(
1.140 paf 530: statement_cstr,
1.142 paf 531: placeholders_count, placeholders,
1.140 paf 532: offset, limit,
1.117 paf 533: handlers,
534: statement_string);
1.53 parser 535:
1.141 paf 536: if(bind)
537: unmarshal_bind_updates(*bind, placeholders_count, placeholders);
538:
1.65 parser 539: if(!handlers.got_cell)
540: return 0; // no lines, caller should return second param[default value]
1.62 parser 541:
1.208 moko 542: return handlers.result;
1.53 parser 543: }
544:
1.126 paf 545: static void _sql(Request& r, MethodParams& params) {
1.53 parser 546:
1.126 paf 547: Value* default_code;
1.204 moko 548: const String* string=sql_result_string(r, params, default_code);
1.62 parser 549: if(!string) {
1.81 parser 550: if(default_code) {
1.99 paf 551: string=&r.process_to_string(*default_code);
1.68 parser 552: } else
1.238 moko 553: throw Exception(PARSER_RUNTIME, 0, "produced no result, but no default option specified");
1.62 parser 554: }
1.100 paf 555:
1.233 moko 556: r.write(*string);
1.53 parser 557: }
558:
1.126 paf 559: static void _replace(Request& r, MethodParams& params) {
560: const String& src=GET_SELF(r, VString).string();
1.71 parser 561:
1.201 misha 562: if(params.count()==1) {
563: // ^string.replace[table]
1.205 misha 564: Table* table=params.as_table(0, "param");
1.201 misha 565: Dictionary dict(*table);
1.233 moko 566: r.write(src.replace(dict));
1.201 misha 567: } else {
568: // ^string.replace[from-string;to-string]
1.238 moko 569: Dictionary dict(params.as_string(0, "from must be string"), params.as_string(1, "to must be string"));
1.233 moko 570: r.write(src.replace(dict));
1.201 misha 571: }
1.71 parser 572:
573: }
1.79 parser 574:
1.126 paf 575: static void _save(Request& r, MethodParams& params) {
1.189 misha 576: bool do_append=false;
577: Charset* asked_charset=0;
578:
579: size_t file_name_index=0;
1.214 moko 580: if(params.count()>1) {
1.189 misha 581: if(HashStringValue* options=params.as_no_junction(1, "second parameter should be string or hash").get_hash()){
1.205 misha 582: // ^file.save[filespec;$.charset[] $.append(true)]
1.190 misha 583: int valid_options=0;
1.189 misha 584: if(Value* vcharset_name=options->get(PA_CHARSET_NAME)){
1.229 moko 585: asked_charset=&pa_charsets.get(vcharset_name->as_string());
1.189 misha 586: valid_options++;
587: }
588: if(Value* vappend=options->get(MODE_APPEND)){
589: do_append=vappend->as_bool();
590: valid_options++;
591: }
592: if(valid_options != options->count())
1.194 misha 593: throw Exception(PARSER_RUNTIME, 0, CALLED_WITH_INVALID_OPTION);
1.189 misha 594: } else {
1.205 misha 595: // ^file.save[append;filespec]
1.189 misha 596: const String& mode=params.as_string(0, "mode must be string");
597: if(mode==MODE_APPEND){
598: do_append=true;
599: file_name_index++;
600: } else
601: throw Exception(PARSER_RUNTIME,
602: &mode,
603: "unknown mode, must be 'append'");
604: }
1.214 moko 605: }
1.79 parser 606:
1.189 misha 607: const String& file_name=params.as_string(file_name_index, FILE_NAME_MUST_BE_STRING);
1.126 paf 608: const String& src=GET_SELF(r, VString).string();
1.79 parser 609:
1.209 moko 610: String::Body sbody=src.cstr_to_string_body_untaint(String::L_AS_IS, r.connection(false), &r.charsets);
1.87 paf 611:
1.79 parser 612: // write
1.189 misha 613: file_write(r.charsets, r.absolute(file_name), sbody.cstr(), sbody.length(), true, do_append, asked_charset);
1.79 parser 614: }
615:
1.126 paf 616: static void _normalize(Request& r, MethodParams&) {
617: const String& src=GET_SELF(r, VString).string();
618:
1.233 moko 619: r.write(src);
1.109 paf 620: }
621:
1.133 paf 622: static void _trim(Request& r, MethodParams& params) {
623: const String& src=GET_SELF(r, VString).string();
624:
625: String::Trim_kind kind=String::TRIM_BOTH;
1.176 misha 626: size_t params_count=params.count();
1.133 paf 627: const char* chars=0;
1.176 misha 628: if(params_count>0) {
629: const String& skind=params.as_string(0, "'where' must be string");
1.214 moko 630: if(!skind.is_empty()) {
1.162 misha 631: if(skind==TRIM_BOTH_OPTION)
632: kind=String::TRIM_BOTH;
633: else if(skind==TRIM_START_OPTION || skind=="start")
1.137 paf 634: kind=String::TRIM_START;
1.162 misha 635: else if(skind==TRIM_END_OPTION || skind=="end")
1.137 paf 636: kind=String::TRIM_END;
1.218 moko 637: else if(params_count==1)
638: chars=skind.cstr();
1.137 paf 639: else
1.238 moko 640: throw Exception(PARSER_RUNTIME, &skind, "'kind' must be one of " TRIM_START_OPTION ", " TRIM_BOTH_OPTION ", " TRIM_END_OPTION);
1.214 moko 641: }
1.133 paf 642:
1.176 misha 643: if(params_count>1) {
1.136 paf 644: const String& schars=params.as_string(1, "'chars' must be string");
1.178 misha 645: if(!schars.is_empty())
1.137 paf 646: chars=schars.cstr();
1.136 paf 647: }
1.133 paf 648: }
649:
1.233 moko 650: r.write(src.trim(kind, chars, &r.charsets.source()));
1.133 paf 651: }
652:
1.146 paf 653: static void _base64(Request& r, MethodParams& params) {
1.219 moko 654: if(&r.get_self() == string_class) {
1.202 misha 655: // decode: ^string:base64[encoded[;$.strict(true|false)]]
1.219 moko 656: const char* cstr=params.count() ? params.as_string(0, PARAMETER_MUST_BE_STRING).cstr() : "";
1.169 misha 657: char* decoded=0;
658: size_t length=0;
1.202 misha 659:
660: bool strict=false;
661: if(params.count() > 1)
662: if(HashStringValue* options=params.as_hash(1)) {
663: int valid_options=0;
664: if(Value* vstrict=options->get(BASE64_STRICT_OPTION_NAME)) {
1.230 moko 665: strict=r.process(*vstrict).as_bool();
1.202 misha 666: valid_options++;
667: }
668: if(valid_options!=options->count())
669: throw Exception(PARSER_RUNTIME, 0, CALLED_WITH_INVALID_OPTION);
670: }
671:
672: pa_base64_decode(cstr, strlen(cstr), decoded, length, strict);
1.169 misha 673: if(decoded && length){
674: if(memchr((const char*)decoded, 0, length))
1.238 moko 675: throw Exception(PARSER_RUNTIME, 0, "Invalid \\x00 character found while decode to string. Decode it to file instead.");
1.169 misha 676:
677: fix_line_breaks(decoded, length);
1.179 misha 678: if(length)
1.233 moko 679: r.write(*new String(decoded, String::L_TAINTED));
1.169 misha 680: }
1.147 paf 681: } else {
1.169 misha 682: // encode: ^str.base64[]
1.148 paf 683: VString& self=GET_SELF(r, VString);
684: const char* cstr=self.string().cstr();
1.147 paf 685: const char* encoded=pa_base64_encode(cstr, strlen(cstr));
1.233 moko 686: r.write(*new String(encoded, String::L_TAINTED/*once ?param=base64(something) was needed*/));
1.146 paf 687: }
688: }
689:
1.215 moko 690: static void _idna(Request& r, MethodParams& params) {
1.219 moko 691: if(&r.get_self() == string_class) {
1.215 moko 692: // decode: ^string:idna[encoded]
1.219 moko 693: const char* cstr=params.count() ? params.as_string(0, PARAMETER_MUST_BE_STRING).cstr() : "";
1.233 moko 694: r.write(*new String(pa_idna_decode(cstr, r.charsets.source()), String::L_TAINTED));
1.215 moko 695: } else {
696: // encode: ^str.idna[]
697: VString& self=GET_SELF(r, VString);
698: const char* cstr=self.string().cstr();
1.233 moko 699: r.write(*new String(pa_idna_encode(cstr, r.charsets.source()), String::L_TAINTED));
1.215 moko 700: }
701: }
702:
1.220 moko 703: static void _js_escape(Request& r, MethodParams&){
1.167 misha 704: const String& src=GET_SELF(r, VString).string();
1.233 moko 705: r.write(src.escape(r.charsets.source()));
1.167 misha 706: }
707:
1.220 moko 708: static void _js_unescape(Request& r, MethodParams& params){
1.167 misha 709: const String& src=params.as_string(0, PARAMETER_MUST_BE_STRING);
1.193 misha 710: if(const char* result=unescape_chars(src.cstr(), src.length(), &r.charsets.source(), true))
1.233 moko 711: r.write(*new String(result, String::L_TAINTED));
1.167 misha 712: }
713:
1.220 moko 714: static void _unescape(Request& r, MethodParams& params){
715: const String& mode=params.as_string(0, MODE_MUST_NOT_BE_CODE);
716: const String& src=params.as_string(1, PARAMETER_MUST_BE_STRING);
717:
718: Charset* from_charset=&r.charsets.client();
719:
720: if(params.count() > 2)
721: if(HashStringValue* options=params.as_hash(2)) {
722: int valid_options=0;
723: if(Value* vcharset_name=options->get(PA_CHARSET_NAME)){
1.229 moko 724: from_charset=&pa_charsets.get(vcharset_name->as_string());
1.220 moko 725: valid_options++;
726: }
727: if(valid_options!=options->count())
728: throw Exception(PARSER_RUNTIME, 0, CALLED_WITH_INVALID_OPTION);
729: }
730:
731: bool mode_js;
732: if(mode==UNESCAPE_MODE_JS){
733: mode_js=true;
734: } else if(mode==UNESCAPE_MODE_URI){
735: mode_js=false;
736: } else {
1.228 moko 737: throw Exception(PARSER_RUNTIME, &mode, "is invalid mode, must be either '" UNESCAPE_MODE_JS "' or '" UNESCAPE_MODE_URI "'");
1.220 moko 738: }
739:
740: const char* unescaped=unescape_chars(src.cstr(), src.length(), from_charset, mode_js);
741: if(*unescaped){
1.221 moko 742: const String* result=new String(Charset::transcode(unescaped, *from_charset, r.charsets.source()), String::L_TAINTED);
1.233 moko 743: r.write(*result);
1.220 moko 744: }
745: }
746:
1.225 moko 747: static void _contains(Request& r, MethodParams& params) {
748: // empty or whitespace string is hash compatible
749: GET_SELF(r, VString).get_element(params.as_string(0, "key must be string"));
750: // ignoring result as it allways null
1.233 moko 751: r.write(VBool::get(false));
1.225 moko 752: }
753:
1.41 paf 754: // constructor
755:
1.126 paf 756: MString::MString(): Methoded("string") {
1.1 paf 757: // ^string.length[]
1.41 paf 758: add_native_method("length", Method::CT_DYNAMIC, _length, 0, 0);
1.6 paf 759:
1.1 paf 760: // ^string.int[]
1.72 parser 761: // ^string.int(default)
762: add_native_method("int", Method::CT_DYNAMIC, _int, 0, 1);
1.1 paf 763: // ^string.double[]
1.72 parser 764: // ^string.double(default)
765: add_native_method("double", Method::CT_DYNAMIC, _double, 0, 1);
1.151 misha 766: // ^void.bool[]
767: // ^void.bool(default)
768: add_native_method("bool", Method::CT_DYNAMIC, _bool, 0, 1);
1.9 paf 769:
1.165 misha 770: // ^string.format[format]
1.41 paf 771: add_native_method("format", Method::CT_DYNAMIC, _string_format, 1, 1);
1.14 paf 772:
1.15 paf 773: // ^string.left(n)
1.41 paf 774: add_native_method("left", Method::CT_DYNAMIC, _left, 1, 1);
1.15 paf 775: // ^string.right(n)
1.41 paf 776: add_native_method("right", Method::CT_DYNAMIC, _right, 1, 1);
1.165 misha 777: // ^string.mid(p)
1.15 paf 778: // ^string.mid(p;n)
1.82 parser 779: add_native_method("mid", Method::CT_DYNAMIC, _mid, 1, 2);
1.16 paf 780:
781: // ^string.pos[substr]
1.165 misha 782: // ^string.pos[substr](n)
783: add_native_method("pos", Method::CT_DYNAMIC, _pos, 1, 2);
1.17 paf 784:
1.118 paf 785: // ^string.split[delim]
786: // ^string.split[delim][options]
1.156 misha 787: // ^string.split[delim][options][column name]
788: add_native_method("split", Method::CT_DYNAMIC, _split, 1, 3);
1.236 moko 789: // old names for backward compatibility
790: // ^string.lsplit[delim]
791: add_native_method("lsplit", Method::CT_DYNAMIC, _lsplit, 1, 1);
792: // ^string.rsplit[delim]
793: add_native_method("rsplit", Method::CT_DYNAMIC, _rsplit, 1, 1);
794:
1.32 paf 795: // ^string.match[regexp][options]
796: // ^string.match[regexp][options]{replacement-code}
1.192 misha 797: // ^string.match[regexp][options]{replacement-code}{code-if-nothing-is-found}
798: add_native_method("match", Method::CT_DYNAMIC, _match, 1, 4);
1.49 parser 799:
1.165 misha 800: // ^string.upper[]
1.49 parser 801: add_native_method("upper", Method::CT_DYNAMIC, _upper, 0, 0);
1.165 misha 802: // ^string.lower[]
1.49 parser 803: add_native_method("lower", Method::CT_DYNAMIC, _lower, 0, 0);
1.53 parser 804:
1.189 misha 805: // ^string:sql{query}
806: // ^string:sql{query}[options hash]
1.67 parser 807: add_native_method("sql", Method::CT_STATIC, _sql, 1, 2);
1.71 parser 808:
809: // ^string.replace[table]
1.201 misha 810: add_native_method("replace", Method::CT_DYNAMIC, _replace, 1, 2);
1.79 parser 811:
1.189 misha 812: // ^string.save[append][file]
813: // ^string.save[file]
814: // ^string.save[file][$.append(true) $.charset[...]]
1.87 paf 815: add_native_method("save", Method::CT_DYNAMIC, _save, 1, 2);
1.109 paf 816:
1.112 paf 817: // ^string.normalize[]
818: add_native_method("normalize", Method::CT_DYNAMIC, _normalize, 0, 0);
1.133 paf 819:
820: // ^string.trim[[start|both|end][;chars]]
821: add_native_method("trim", Method::CT_DYNAMIC, _trim, 0, 2);
1.139 paf 822:
1.146 paf 823: // ^string.base64[] << encode
1.215 moko 824: // ^string:base64[encoded string] << decode
1.202 misha 825: add_native_method("base64", Method::CT_ANY, _base64, 0, 2);
1.167 misha 826:
1.215 moko 827: // ^string.idna[] << encode
828: // ^string:idna[encoded string] << decode
829: add_native_method("idna", Method::CT_ANY, _idna, 0, 1);
830:
1.168 misha 831: // ^string.js-escape[]
1.220 moko 832: add_native_method("js-escape", Method::CT_DYNAMIC, _js_escape, 0, 0);
1.189 misha 833:
1.168 misha 834: // ^string:js-unescape[escaped%uXXXXstring]
1.220 moko 835: add_native_method("js-unescape", Method::CT_STATIC, _js_unescape, 1, 1);
836:
837: // ^string:unescape[js|uri;escaped;$.charset[...]]
838: add_native_method("unescape", Method::CT_STATIC, _unescape, 2, 3);
1.225 moko 839:
840: // ^string.contains[key] for hash compatibility
841: add_native_method("contains", Method::CT_DYNAMIC, _contains, 1, 1);
1.220 moko 842: }
E-mail: