--- parser3/src/include/pa_string.h 2001/03/23 13:08:09 1.49 +++ parser3/src/include/pa_string.h 2001/03/25 10:14:38 1.53 @@ -5,7 +5,7 @@ Author: Alexander Petrosyan (http://design.ru/paf) - $Id: pa_string.h,v 1.49 2001/03/23 13:08:09 paf Exp $ + $Id: pa_string.h,v 1.53 2001/03/25 10:14:38 paf Exp $ */ #ifndef PA_STRING_H @@ -18,26 +18,36 @@ #include "pa_pool.h" #include "pa_types.h" +/** + $MAIN:html-typo table elements must enlarge string not more that that + that's a tradeoff - otherwise we'd have to scan string twice: + - first for buffer length + - second for replacements themselves +*/ #define UNTAINT_TIMES_BIGGER 10 #ifndef NO_STRING_ORIGIN # define STRING_APPEND_PARAMS \ const char *src, size_t size, \ - bool tainted, \ + String::Untaint_lang lang, \ const char *file, uint line /// appends clean piece to String @see String::real_append -# define APPEND(src, size, file, line) real_append(src, size, false, file, line) +# define APPEND(src, size, file, line) \ + real_append(src, size, String::UL_NO, file, line) /// appends tainted piece to String @see String::real_append -# define APPEND_TAINTED(src, size, file, line) real_append(src, size, true, file, line) +# define APPEND_TAINTED(src, size, file, line) \ + real_append(src, size, String::UL_YES, file, line) #else # define STRING_APPEND_PARAMS \ const char *src, \ size_t size, \ - bool tainted + String::Untaint_lang lang /// appends clean piece to String @see String::real_append -# define APPEND(src, size, file, line) real_append(src, size, false) +# define APPEND(src, size, file, line) \ + real_append(src, size, String::UL_NO) /// appends tainted piece to String @see String::real_append -# define APPEND_TAINTED(src, size, file, line) real_append(src, size, true) +# define APPEND_TAINTED(src, size, file, line) \ + real_append(src, size, String::UL_YES) #endif /// handy: appends const char* piece to String @see String::real_append #define APPEND_CONST(src) APPEND(src, 0, 0, 0) @@ -98,7 +108,12 @@ public: String(const String& src); size_t size() const { return fsize; } /// convert to C string - char *cstr() const; + char *cstr() const { + char *result=(char *)malloc(size()*UNTAINT_TIMES_BIGGER+1); + char *eol=store_to(result); + *eol=0; + return result; + } /** append fragment @see APPEND, APPEND_TAINTED, APPEND_CONST */ @@ -116,7 +131,23 @@ public: } bool operator != (const String& src) const { return cmp(src)!=0; } - bool operator == (const char* b_ptr) const; + /** + @param partial + returns partial match status. + - -1: strings too different + - 0: full match + - 1: means @c this starts @c src + - 2: means @src starts @this + */ + int cmp(const char* src_ptr, int& partial, size_t src_size=0) const; + bool operator == (const char* src_ptr) const { + size_t src_size=src_ptr?strlen(src_ptr):0; + if(size() != src_size) + return false; + int partial; // unused + return cmp(src_ptr, partial, src_size)==0; + } + /** appends other String. @@ -179,6 +210,7 @@ private: } void expand(); void set_lang(Chunk::Row *row, Untaint_lang lang, bool forced, size_t size); + char *String::store_to(char *dest) const; private: //disabled