[f450f2f] | 1 | //
|
---|
| 2 | // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
|
---|
| 3 | //
|
---|
| 4 | // The contents of this file are covered under the licence agreement in the
|
---|
| 5 | // file "LICENCE" distributed with Cforall.
|
---|
| 6 | //
|
---|
| 7 | // string -- variable-length, mutable run of text, with value semantics
|
---|
| 8 | //
|
---|
| 9 | // Author : Michael L. Brooks
|
---|
| 10 | // Created On : Fri Sep 03 11:00:00 2021
|
---|
[bc9f84a] | 11 | // Last Modified By : Peter A. Buhr
|
---|
[829a955] | 12 | // Last Modified On : Mon Sep 15 10:26:35 2025
|
---|
| 13 | // Update Count : 394
|
---|
[f450f2f] | 14 | //
|
---|
| 15 |
|
---|
[d03a386] | 16 | #define _COMPILING_STRING_CFA_
|
---|
| 17 |
|
---|
[f450f2f] | 18 | #include "string.hfa"
|
---|
| 19 | #include "string_res.hfa"
|
---|
| 20 | #include <stdlib.hfa>
|
---|
| 21 |
|
---|
[accc9df9] | 22 | #pragma GCC visibility push(default)
|
---|
[f450f2f] | 23 |
|
---|
| 24 | /*
|
---|
| 25 | Implementation Principle: typical operation translates to the equivalent
|
---|
| 26 | operation on `inner`. Exceptions are implementing new RAII pattern for value
|
---|
| 27 | semantics and some const-hell handling.
|
---|
| 28 | */
|
---|
| 29 |
|
---|
| 30 | ////////////////////////////////////////////////////////
|
---|
| 31 | // string RAII
|
---|
| 32 |
|
---|
| 33 | // private (not in header)
|
---|
[e8b3717] | 34 | static void ?{}( string & s, string_res & src, size_t start, size_t len ) {
|
---|
[4223317] | 35 | (s.inner) { malloc() };
|
---|
| 36 | ?{}( *s.inner, src, SHARE_EDITS, start, len );
|
---|
[f450f2f] | 37 | }
|
---|
| 38 |
|
---|
[479fbe3] | 39 | void ?{}( string & s ) {
|
---|
[4223317] | 40 | (s.inner) { malloc() };
|
---|
| 41 | ?{}( *s.inner );
|
---|
[479fbe3] | 42 | }
|
---|
| 43 |
|
---|
[d03a386] | 44 | PBOOST void ?{}( string & s, string c ) { // c is a memcpy of the real src string
|
---|
[4223317] | 45 | (s.inner) { malloc() };
|
---|
| 46 | ?{}( *s.inner, *c.inner, COPY_VALUE );
|
---|
[f450f2f] | 47 | }
|
---|
| 48 |
|
---|
[570e7ad] | 49 | void ?{}( string & s, string s2, size_t maxlen ) {
|
---|
[4223317] | 50 | (s.inner) { malloc() };
|
---|
| 51 | ?{}( *s.inner, *s2.inner, COPY_VALUE, maxlen );
|
---|
[7abc3de] | 52 | }
|
---|
| 53 |
|
---|
[570e7ad] | 54 | void ?{}( string & s, char c ) {
|
---|
[4223317] | 55 | (s.inner) { malloc() };
|
---|
| 56 | ?{}( *s.inner, c );
|
---|
[f450f2f] | 57 | }
|
---|
| 58 |
|
---|
[479fbe3] | 59 | void ?{}( string & s, const char * c ) {
|
---|
[4223317] | 60 | (s.inner) { malloc() };
|
---|
| 61 | ?{}( *s.inner, c );
|
---|
[479fbe3] | 62 | }
|
---|
| 63 |
|
---|
[4dab7e8] | 64 | void ?{}( string & s, const char * c, size_t size ) {
|
---|
[4223317] | 65 | (s.inner) { malloc() };
|
---|
| 66 | ?{}( *s.inner, c, size );
|
---|
[f450f2f] | 67 | }
|
---|
| 68 |
|
---|
[570e7ad] | 69 | void ?{}( string & s, signed long int rhs ) {
|
---|
[4223317] | 70 | (s.inner) { malloc() };
|
---|
| 71 | ?{}( *s.inner, rhs );
|
---|
[f2898df] | 72 | }
|
---|
| 73 |
|
---|
| 74 | void ?{}( string & s, size_t rhs ) {
|
---|
[4223317] | 75 | (s.inner) { malloc() };
|
---|
| 76 | ?{}( *s.inner, rhs );
|
---|
[f2898df] | 77 | }
|
---|
| 78 |
|
---|
| 79 | void ?{}( string & s, double rhs ) {
|
---|
[4223317] | 80 | (s.inner) { malloc() };
|
---|
| 81 | ?{}( *s.inner, rhs );
|
---|
[f2898df] | 82 | }
|
---|
| 83 |
|
---|
| 84 | void ?{}( string & s, long double rhs ) {
|
---|
[4223317] | 85 | (s.inner) { malloc() };
|
---|
| 86 | ?{}( *s.inner, rhs );
|
---|
[f2898df] | 87 | }
|
---|
| 88 |
|
---|
| 89 | void ?{}( string & s, double _Complex rhs ) {
|
---|
[4223317] | 90 | (s.inner) { malloc() };
|
---|
| 91 | ?{}( *s.inner, rhs );
|
---|
[f2898df] | 92 | }
|
---|
| 93 |
|
---|
| 94 | void ?{}( string & s, long double _Complex rhs ) {
|
---|
[4223317] | 95 | (s.inner) { malloc() };
|
---|
| 96 | ?{}( *s.inner, rhs );
|
---|
[f2898df] | 97 | }
|
---|
| 98 |
|
---|
[681e12f] | 99 | void ^?{}( string & s ) {
|
---|
[4223317] | 100 | ^(*s.inner){};
|
---|
| 101 | free( s.inner );
|
---|
| 102 | s.inner = 0p;
|
---|
[f450f2f] | 103 | }
|
---|
| 104 |
|
---|
| 105 | ////////////////////////////////////////////////////////
|
---|
| 106 | // Alternate construction: request shared edits
|
---|
| 107 |
|
---|
[8c2723f] | 108 | string_Share ?`share( string & s ) {
|
---|
[4223317] | 109 | string_Share ret = { &s };
|
---|
| 110 | return ret;
|
---|
[f450f2f] | 111 | }
|
---|
| 112 |
|
---|
[8c2723f] | 113 | void ?{}( string & s, string_Share src ) {
|
---|
[4223317] | 114 | ?{}( s, *src.s->inner, 0, src.s->inner->Handle.lnth );
|
---|
[f450f2f] | 115 | }
|
---|
| 116 |
|
---|
| 117 | ////////////////////////////////////////////////////////
|
---|
| 118 | // Assignment
|
---|
| 119 |
|
---|
[d03a386] | 120 | PBOOST string & ?=?( string & s, string c ) {
|
---|
[4223317] | 121 | (*s.inner) = (*c.inner);
|
---|
| 122 | return s;
|
---|
[906d8fa] | 123 | }
|
---|
[f450f2f] | 124 |
|
---|
[b1eefe50] | 125 | string & ?=?( string & s, const char * val ) {
|
---|
[4223317] | 126 | (*s.inner) = val;
|
---|
| 127 | return s;
|
---|
[f450f2f] | 128 | }
|
---|
| 129 |
|
---|
[b1eefe50] | 130 | string & ?=?( string & s, char val ) {
|
---|
[4223317] | 131 | (*s.inner) = val;
|
---|
| 132 | return s;
|
---|
[b1eefe50] | 133 | }
|
---|
| 134 |
|
---|
[4dab7e8] | 135 | string & assign( string & s, const string & c, size_t n ) {
|
---|
[4223317] | 136 | assign( *s.inner, *c.inner, n );
|
---|
| 137 | return s;
|
---|
[e891349] | 138 | }
|
---|
[b1eefe50] | 139 |
|
---|
[4dab7e8] | 140 | string & assign( string & s, const char * c, size_t n ) {
|
---|
[4223317] | 141 | assign( *s.inner, c, n );
|
---|
| 142 | return s;
|
---|
[e891349] | 143 | }
|
---|
| 144 |
|
---|
[570e7ad] | 145 | string & ?=?( string & s, signed long int rhs ) {
|
---|
[4223317] | 146 | (*s.inner) = rhs;
|
---|
| 147 | return s;
|
---|
[f2898df] | 148 | }
|
---|
| 149 |
|
---|
| 150 | string & ?=?( string & s, size_t rhs ) {
|
---|
[4223317] | 151 | (*s.inner) = rhs;
|
---|
| 152 | return s;
|
---|
[f2898df] | 153 | }
|
---|
| 154 |
|
---|
| 155 | string & ?=?( string & s, double rhs ) {
|
---|
[4223317] | 156 | (*s.inner) = rhs;
|
---|
| 157 | return s;
|
---|
[f2898df] | 158 | }
|
---|
| 159 |
|
---|
| 160 | string & ?=?( string & s, long double rhs ) {
|
---|
[4223317] | 161 | (*s.inner) = rhs;
|
---|
| 162 | return s;
|
---|
[f2898df] | 163 | }
|
---|
| 164 |
|
---|
| 165 | string & ?=?( string & s, double _Complex rhs ) {
|
---|
[4223317] | 166 | (*s.inner) = rhs;
|
---|
| 167 | return s;
|
---|
[f2898df] | 168 | }
|
---|
| 169 |
|
---|
| 170 | string & ?=?( string & s, long double _Complex rhs ) {
|
---|
[4223317] | 171 | (*s.inner) = rhs;
|
---|
| 172 | return s;
|
---|
[f2898df] | 173 | }
|
---|
[f450f2f] | 174 |
|
---|
[5ad6f0d] | 175 | ////////////////////////////////////////////////////////
|
---|
[829a955] | 176 | // C-style
|
---|
| 177 |
|
---|
| 178 | // safe conversion from string to char *
|
---|
| 179 | char * strncpy( char * dst, string & src, size_t n ) {
|
---|
| 180 | size_t l = min( n - 1, len( src ) ); // ensure null terminated
|
---|
| 181 | for ( i; l ) dst[i] = src[i];
|
---|
| 182 | dst[l] = '\0';
|
---|
| 183 | return dst;
|
---|
| 184 | }
|
---|
| 185 | char * ?=?( char *& dst, string & src ) {
|
---|
| 186 | dst = aalloc( len( src ) + 1 ); // ensure null terminated
|
---|
| 187 | for ( i; len( src ) ) dst[i] = src[i];
|
---|
| 188 | dst[len(src)] = '\0';
|
---|
| 189 | return dst;
|
---|
| 190 | }
|
---|
| 191 | void ?{}( char *& dst, string & src ) {
|
---|
| 192 | dst = aalloc( len( src ) + 1 ); // ensure null terminated
|
---|
| 193 | for ( i; len( src ) ) dst[i] = src[i];
|
---|
| 194 | dst[len(src)] = '\0';
|
---|
| 195 | }
|
---|
[5ad6f0d] | 196 |
|
---|
| 197 | size_t strnlen( const string & s, size_t maxlen ) { return min( len( s ), maxlen ); }
|
---|
| 198 |
|
---|
[f450f2f] | 199 | ////////////////////////////////////////////////////////
|
---|
[d32679d5] | 200 | // Input-Output
|
---|
[f450f2f] | 201 |
|
---|
[3f631d6] | 202 | forall( ostype & | basic_ostream( ostype ) ) {
|
---|
| 203 | ostype & ?|?( ostype & out, string s ) {
|
---|
| 204 | return out | (*s.inner); // print internal string_res
|
---|
| 205 | }
|
---|
[f450f2f] | 206 |
|
---|
[ae0c1c3] | 207 | void ?|?( ostype & out, string s ) with ( basic_ostream_table ) {
|
---|
[3f631d6] | 208 | (ostype &)(out | (*s.inner)); ends( out );
|
---|
| 209 | }
|
---|
[34c6e1e6] | 210 |
|
---|
[3f631d6] | 211 | ostype & ?|?( ostype & os, _Ostream_Manip(string) f ) {
|
---|
| 212 | size_t l = len( f.val );
|
---|
| 213 | char cstr[l + 1]; // room for null terminator
|
---|
| 214 | for ( i; l ) cstr[i] = f.val[i]; // copy string
|
---|
| 215 | cstr[l] = '\0'; // terminate
|
---|
| 216 | _Ostream_Manip(const char *) cf @= { cstr, f.wd, f.pc, f.base, {f.all} };
|
---|
| 217 | return os | cf | nonl;
|
---|
| 218 | } // ?|?
|
---|
[34c6e1e6] | 219 |
|
---|
[ae0c1c3] | 220 | void ?|?( ostype & os, _Ostream_Manip(string) f ) with ( basic_ostream_table ) {
|
---|
[3f631d6] | 221 | (ostype &)(os | f); ends( os );
|
---|
| 222 | }
|
---|
[d32679d5] | 223 | }
|
---|
| 224 |
|
---|
[3f631d6] | 225 | forall( istype & | basic_istream( istype ) ) {
|
---|
| 226 | istype & ?|?( istype & in, string & s ) {
|
---|
| 227 | return in | (*s.inner); // read to internal string_res
|
---|
| 228 | }
|
---|
| 229 |
|
---|
[30548de] | 230 | istype & ?|?( istype & is, _Istream_Squote f ) {
|
---|
| 231 | _Istream_Rquote f2 = { { f.sstr.s.inner, (_Istream_str_base)f.sstr } };
|
---|
[3f631d6] | 232 | return is | f2;
|
---|
| 233 | } // ?|?
|
---|
| 234 |
|
---|
| 235 | istype & ?|?( istype & is, _Istream_Sstr f ) {
|
---|
| 236 | // _Istream_Rstr f2 = {f.sstr.s.inner, (_Istream_str_base)f.sstr};
|
---|
| 237 | _Istream_Rstr f2 = {f.s.inner, (_Istream_str_base)f};
|
---|
| 238 | return is | f2;
|
---|
| 239 | } // ?|?
|
---|
| 240 | }
|
---|
[7e1dbd7] | 241 |
|
---|
[f450f2f] | 242 | ////////////////////////////////////////////////////////
|
---|
| 243 | // Slicing
|
---|
| 244 |
|
---|
[4223317] | 245 | string ?()( string & s, ssize_t start, ssize_t len ) {
|
---|
[829a955] | 246 | if ( start < 0 ) start += len( s );
|
---|
| 247 | if ( len < 0 ) { len = -len; start -= len - 1; }
|
---|
| 248 | if ( start < 0 || start >= len( s ) ) return (string){ "" };
|
---|
[ee70ff5] | 249 | if ( start + len > len( s ) ) len = len( s ) - start;
|
---|
[4223317] | 250 | string ret = { *s.inner, start, len };
|
---|
| 251 | return ret`share;
|
---|
[f450f2f] | 252 | }
|
---|
| 253 |
|
---|
[4223317] | 254 | string ?()( string & s, ssize_t start ) {
|
---|
[ee70ff5] | 255 | if ( start < 0 ) { start += len( s ); }
|
---|
| 256 | string ret = { *s.inner, start, len( s ) - start };
|
---|
[4223317] | 257 | return ret`share;
|
---|
[bc9f84a] | 258 | }
|
---|
| 259 |
|
---|
[f450f2f] | 260 | ////////////////////////////////////////////////////////
|
---|
| 261 | // Concatenation
|
---|
| 262 |
|
---|
[4dab7e8] | 263 | void ?+=?( string & s, char c ) {
|
---|
[4223317] | 264 | (*s.inner) += c;
|
---|
[f450f2f] | 265 | }
|
---|
| 266 |
|
---|
[c4f8c4bf] | 267 | PBOOST void ?+=?( string & s, string s2 ) {
|
---|
[4223317] | 268 | (*s.inner) += (*s2.inner);
|
---|
[f450f2f] | 269 | }
|
---|
| 270 |
|
---|
[4dab7e8] | 271 | void append( string & s, const string & s2, size_t maxlen ) {
|
---|
[4223317] | 272 | append( (*s.inner), (*s2.inner), maxlen );
|
---|
[e891349] | 273 | }
|
---|
| 274 |
|
---|
[4dab7e8] | 275 | void ?+=?( string & s, const char * c ) {
|
---|
[4223317] | 276 | (*s.inner) += c;
|
---|
[f450f2f] | 277 | }
|
---|
| 278 |
|
---|
[4dab7e8] | 279 | void append( string & s, const char * buffer, size_t bsize ) {
|
---|
[4223317] | 280 | append( (*s.inner), buffer, bsize );
|
---|
[e891349] | 281 | }
|
---|
| 282 |
|
---|
[570e7ad] | 283 | string ?+?( string s, char c ) {
|
---|
[4223317] | 284 | string ret = s;
|
---|
| 285 | ret += c;
|
---|
| 286 | return ret;
|
---|
[4dab7e8] | 287 | }
|
---|
| 288 |
|
---|
[570e7ad] | 289 | string ?+?( char c, string s ) {
|
---|
[96a11655] | 290 | string ret = c;
|
---|
| 291 | ret += s;
|
---|
[4223317] | 292 | return ret;
|
---|
[f450f2f] | 293 | }
|
---|
| 294 |
|
---|
[d03a386] | 295 | PBOOST string ?+?( string s, string s2 ) {
|
---|
[4223317] | 296 | string ret = s;
|
---|
| 297 | ret += s2;
|
---|
| 298 | return ret;
|
---|
[f450f2f] | 299 | }
|
---|
| 300 |
|
---|
[4dab7e8] | 301 | string ?+?( const char * s, char c ) {
|
---|
[4223317] | 302 | string ret = s;
|
---|
| 303 | ret += c;
|
---|
| 304 | return ret;
|
---|
[4dab7e8] | 305 | }
|
---|
| 306 |
|
---|
| 307 | string ?+?( char c, const char * s ) {
|
---|
[4223317] | 308 | string ret = c;
|
---|
| 309 | ret += s;
|
---|
| 310 | return ret;
|
---|
[4dab7e8] | 311 | }
|
---|
| 312 |
|
---|
| 313 | string ?+?( const char * s1, const char * s2 ) {
|
---|
[4223317] | 314 | string ret = s1;
|
---|
| 315 | ret += s2;
|
---|
| 316 | return ret;
|
---|
[4dab7e8] | 317 | }
|
---|
| 318 |
|
---|
[570e7ad] | 319 | string ?+?( const char * s1, string s2 ) {
|
---|
[4223317] | 320 | string ret = s1;
|
---|
| 321 | ret += s2;
|
---|
| 322 | return ret;
|
---|
[f450f2f] | 323 | }
|
---|
| 324 |
|
---|
[570e7ad] | 325 | string ?+?( string s, const char * c ) {
|
---|
[4223317] | 326 | string ret = s;
|
---|
| 327 | ret += c;
|
---|
| 328 | return ret;
|
---|
[f450f2f] | 329 | }
|
---|
| 330 |
|
---|
[ee70ff5] | 331 | string ?+?( char c1, char c2 ) {
|
---|
| 332 | string ret = c1;
|
---|
| 333 | ret += c2;
|
---|
| 334 | return ret;
|
---|
| 335 | }
|
---|
| 336 |
|
---|
[f450f2f] | 337 | ////////////////////////////////////////////////////////
|
---|
| 338 | // Repetition
|
---|
| 339 |
|
---|
[570e7ad] | 340 | void ?*=?( string & s, strmul_factor_t factor ) {
|
---|
[4223317] | 341 | (*s.inner) *= factor;
|
---|
[f450f2f] | 342 | }
|
---|
| 343 |
|
---|
[d03a386] | 344 | PBOOST string ?*?( string s, strmul_factor_t factor ) {
|
---|
[4223317] | 345 | string ret = s;
|
---|
| 346 | ret *= factor;
|
---|
| 347 | return ret;
|
---|
[479fbe3] | 348 | }
|
---|
| 349 |
|
---|
[570e7ad] | 350 | string ?*?( char c, strmul_factor_t factor ) {
|
---|
[4223317] | 351 | string ret = c;
|
---|
| 352 | ret *= factor;
|
---|
| 353 | return ret;
|
---|
[f450f2f] | 354 | }
|
---|
| 355 |
|
---|
[570e7ad] | 356 | string ?*?( const char * s, strmul_factor_t factor ) {
|
---|
[4223317] | 357 | string ret = s;
|
---|
| 358 | ret *= factor;
|
---|
| 359 | return ret;
|
---|
[f450f2f] | 360 | }
|
---|
| 361 |
|
---|
| 362 | ////////////////////////////////////////////////////////
|
---|
| 363 | // Character access
|
---|
| 364 |
|
---|
[4dab7e8] | 365 | char ?[?]( const string & s, size_t index ) {
|
---|
[4223317] | 366 | return (*s.inner)[index];
|
---|
[f450f2f] | 367 | }
|
---|
| 368 |
|
---|
[4dab7e8] | 369 | string ?[?]( string & s, size_t index ) {
|
---|
[4223317] | 370 | string ret = { *s.inner, index, 1 };
|
---|
| 371 | return ret`share;
|
---|
[f450f2f] | 372 | }
|
---|
| 373 |
|
---|
[5ad6f0d] | 374 | ////////////////////////////////////////////////////////
|
---|
| 375 | // Comparison
|
---|
| 376 |
|
---|
| 377 | #define STRNCPY_FMT "**** Error **** strncpy: maximum length %zu is greater than string lengths %zd or %zd."
|
---|
| 378 |
|
---|
| 379 | int strncmp( const string & s1, const string & s2, size_t maxlen ) {
|
---|
| 380 | if ( maxlen > len( s1 ) || maxlen > len( s2 ) ) {
|
---|
| 381 | abort( STRNCPY_FMT, maxlen, len( s1 ), len( s2 ) );
|
---|
| 382 | } // if
|
---|
| 383 | return strcmp$( s1.inner->Handle.s, maxlen, s2.inner->Handle.s, maxlen );
|
---|
| 384 | }
|
---|
| 385 |
|
---|
| 386 | int strncmp( const string & s1, const char * s2, size_t maxlen ) {
|
---|
| 387 | size_t s2len = len( s2 );
|
---|
| 388 | if ( maxlen > len( s1 ) || maxlen > s2len ) {
|
---|
| 389 | abort( STRNCPY_FMT, maxlen, len( s1 ), s2len );
|
---|
| 390 | } // if
|
---|
| 391 | return strcmp$( s1.inner->Handle.s, maxlen, s2, maxlen );
|
---|
| 392 | }
|
---|
| 393 |
|
---|
| 394 | int strncmp( const char * s1, const string & s2, size_t maxlen ) {
|
---|
| 395 | size_t s1len = len( s1 );
|
---|
| 396 | if ( maxlen > s1len || maxlen > len( s2 ) ) {
|
---|
| 397 | abort( STRNCPY_FMT, maxlen, s1len, len( s2 ) );
|
---|
| 398 | } // if
|
---|
| 399 | return strcmp$( s1, maxlen, s2.inner->Handle.s, maxlen );
|
---|
| 400 | }
|
---|
| 401 |
|
---|
[f450f2f] | 402 | ////////////////////////////////////////////////////////
|
---|
| 403 | // Search
|
---|
| 404 |
|
---|
[4dab7e8] | 405 | bool contains( const string & s, char ch ) {
|
---|
[4223317] | 406 | return contains( *s.inner, ch );
|
---|
[f450f2f] | 407 | }
|
---|
| 408 |
|
---|
[9018dcf] | 409 | size_t find( const string & s, size_t start, size_t len, const string & key, size_t kstart, size_t klen ) {
|
---|
[ed5023d1] | 410 | if ( start < 0 ) { start += len( s ); }
|
---|
| 411 | if ( len < 0 ) { len = -len; start -= len; }
|
---|
| 412 | if ( start >= len( s ) ) return 0;
|
---|
| 413 | if ( start + len > len( s ) ) len = len( s ) - start;
|
---|
| 414 |
|
---|
| 415 | if ( kstart < 0 ) { kstart += len( key ); }
|
---|
| 416 | if ( klen < 0 ) { klen = -klen; kstart -= klen; }
|
---|
| 417 | if ( kstart >= len( key ) ) return 0;
|
---|
| 418 | if ( kstart + klen > len( key ) ) klen = len( key ) - kstart;
|
---|
[9018dcf] | 419 |
|
---|
[ed5023d1] | 420 | return findFrom( *s.inner, start, *key.inner );
|
---|
[f450f2f] | 421 | }
|
---|
| 422 |
|
---|
[9018dcf] | 423 | size_t find( const string & s, char key ) {
|
---|
[ed5023d1] | 424 | return find( *s.inner, key );
|
---|
[f450f2f] | 425 | }
|
---|
| 426 |
|
---|
[9018dcf] | 427 | size_t find( const string & s, const string & key ) {
|
---|
[ed5023d1] | 428 | return find( *s.inner, *key.inner );
|
---|
[f450f2f] | 429 | }
|
---|
| 430 |
|
---|
[9018dcf] | 431 | size_t find( const string & s, const char * key ) {
|
---|
[ed5023d1] | 432 | return find( *s.inner, key );
|
---|
[f450f2f] | 433 | }
|
---|
| 434 |
|
---|
[9018dcf] | 435 | size_t find( const string & s, const char * key, size_t keysize ) {
|
---|
[ed5023d1] | 436 | return find( *s.inner, key, keysize );
|
---|
[08ed947] | 437 | }
|
---|
| 438 |
|
---|
[9018dcf] | 439 | size_t find( const string & s, size_t start, char key ) {
|
---|
[ed5023d1] | 440 | return findFrom( *s.inner, start, key );
|
---|
[08ed947] | 441 | }
|
---|
| 442 |
|
---|
[9018dcf] | 443 | size_t find( const string & s, size_t start, const char * key ) {
|
---|
[ed5023d1] | 444 | return findFrom( *s.inner, start, key );
|
---|
[08ed947] | 445 | }
|
---|
| 446 |
|
---|
[9018dcf] | 447 | size_t find( const string & s, size_t start, const char * key, size_t keysize ) {
|
---|
[ed5023d1] | 448 | return findFrom( *s.inner, start, key, keysize );
|
---|
[08ed947] | 449 | }
|
---|
| 450 |
|
---|
[ed5023d1] | 451 | bool includes( const string & s, const string & mask ) {
|
---|
| 452 | return includes( *s.inner, *mask.inner );
|
---|
[f450f2f] | 453 | }
|
---|
| 454 |
|
---|
[ed5023d1] | 455 | bool includes( const string & s, const char * mask ) {
|
---|
| 456 | return includes( *s.inner, mask );
|
---|
[f450f2f] | 457 | }
|
---|
| 458 |
|
---|
[ed5023d1] | 459 | bool includes( const string & s, const char * mask, size_t masksize ) {
|
---|
| 460 | return includes( *s.inner, mask, masksize );
|
---|
[f450f2f] | 461 | }
|
---|
| 462 |
|
---|
[4dab7e8] | 463 | bool startsWith( const string & s, const string & prefix ) {
|
---|
[4223317] | 464 | return startsWith( *s.inner, *prefix.inner );
|
---|
[f450f2f] | 465 | }
|
---|
| 466 |
|
---|
[4dab7e8] | 467 | bool startsWith( const string & s, const char * prefix ) {
|
---|
[4223317] | 468 | return startsWith( *s.inner, prefix );
|
---|
[f450f2f] | 469 | }
|
---|
| 470 |
|
---|
[4dab7e8] | 471 | bool startsWith( const string & s, const char * prefix, size_t prefixsize ) {
|
---|
[4223317] | 472 | return startsWith( *s.inner, prefix, prefixsize );
|
---|
[f450f2f] | 473 | }
|
---|
| 474 |
|
---|
[4dab7e8] | 475 | bool endsWith( const string & s, const string & suffix ) {
|
---|
[4223317] | 476 | return endsWith( *s.inner, *suffix.inner );
|
---|
[f450f2f] | 477 | }
|
---|
| 478 |
|
---|
[4dab7e8] | 479 | bool endsWith( const string & s, const char * suffix ) {
|
---|
[4223317] | 480 | return endsWith( *s.inner, suffix );
|
---|
[f450f2f] | 481 | }
|
---|
| 482 |
|
---|
[4dab7e8] | 483 | bool endsWith( const string & s, const char * suffix, size_t suffixsize ) {
|
---|
[4223317] | 484 | return endsWith( *s.inner, suffix, suffixsize );
|
---|
[f450f2f] | 485 | }
|
---|
| 486 |
|
---|
| 487 |
|
---|
| 488 | ///////////////////////////////////////////////////////////////////////////
|
---|
| 489 | // charclass, include, exclude
|
---|
| 490 |
|
---|
[4dab7e8] | 491 | void ?{}( charclass & s, const string & chars ) {
|
---|
[4223317] | 492 | (s.inner) { malloc() };
|
---|
| 493 | ?{}( *s.inner, *(const string_res *)chars.inner );
|
---|
[f450f2f] | 494 | }
|
---|
| 495 |
|
---|
[681e12f] | 496 | void ?{}( charclass & s, const char * chars ) {
|
---|
[4223317] | 497 | (s.inner) { malloc() };
|
---|
| 498 | ?{}( *s.inner, chars );
|
---|
[f450f2f] | 499 | }
|
---|
| 500 |
|
---|
[681e12f] | 501 | void ?{}( charclass & s, const char * chars, size_t charssize ) {
|
---|
[4223317] | 502 | (s.inner) { malloc() };
|
---|
| 503 | ?{}( *s.inner, chars, charssize );
|
---|
[f450f2f] | 504 | }
|
---|
| 505 |
|
---|
[681e12f] | 506 | void ^?{}( charclass & s ) {
|
---|
[4223317] | 507 | ^(*s.inner){};
|
---|
| 508 | free( s.inner );
|
---|
| 509 | s.inner = 0p;
|
---|
[f450f2f] | 510 | }
|
---|
| 511 |
|
---|
[9018dcf] | 512 | size_t exclude( const string & s, const charclass & mask ) {
|
---|
[4223317] | 513 | return exclude( *s.inner, *mask.inner );
|
---|
[f450f2f] | 514 | }
|
---|
| 515 |
|
---|
[9018dcf] | 516 | size_t include( const string & s, const charclass & mask ) {
|
---|
[4223317] | 517 | return include( *s.inner, *mask.inner );
|
---|
[f450f2f] | 518 | }
|
---|
| 519 |
|
---|
[5ad6f0d] | 520 | size_t include( const string & s, int (*f)( int ) ) {
|
---|
[9018dcf] | 521 | size_t l = len( s );
|
---|
| 522 | for ( i; l ) {
|
---|
| 523 | if ( ! f( s[i] ) ) return i;
|
---|
| 524 | } // for
|
---|
| 525 | return l;
|
---|
| 526 | }
|
---|
| 527 |
|
---|
[5ad6f0d] | 528 | size_t exclude( const string & s, int (*f)( int ) ) {
|
---|
| 529 | size_t l = len( s );
|
---|
| 530 | for ( i; l ) {
|
---|
| 531 | if ( f( s[i] ) ) return i;
|
---|
| 532 | } // for
|
---|
| 533 | return l;
|
---|
| 534 | }
|
---|
| 535 |
|
---|
| 536 | string replace( const string & s, const string & from, const string & to ) {
|
---|
[9018dcf] | 537 | ssize_t pos;
|
---|
| 538 | string r;
|
---|
| 539 |
|
---|
| 540 | pos = find( s, from );
|
---|
| 541 | if ( pos < len( s ) ) {
|
---|
| 542 | r = s( 0, pos ) + to + replace( s( pos + (ssize_t)len( from ) ), from, to );
|
---|
| 543 | } else {
|
---|
| 544 | r = s;
|
---|
| 545 | } // if
|
---|
| 546 | return r;
|
---|
| 547 | }
|
---|
| 548 |
|
---|
| 549 | string translate( const string & s, int (*f)( int ) ) {
|
---|
| 550 | string r = s;
|
---|
| 551 | size_t l = len( r );
|
---|
| 552 | for ( i; l ) {
|
---|
| 553 | r[i] = (char)f( r[i] );
|
---|
| 554 | } // for
|
---|
| 555 | return r;
|
---|
[f450f2f] | 556 | }
|
---|