| 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
|
|---|
| 11 | // Last Modified By : Peter A. Buhr
|
|---|
| 12 | // Last Modified On : Tue Feb 6 20:59:18 2024
|
|---|
| 13 | // Update Count : 118
|
|---|
| 14 | //
|
|---|
| 15 |
|
|---|
| 16 | #pragma once
|
|---|
| 17 |
|
|---|
| 18 | #include <fstream.hfa>
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 | // in string_res.hfa
|
|---|
| 22 | struct string_res;
|
|---|
| 23 | struct charclass_res;
|
|---|
| 24 |
|
|---|
| 25 | struct string {
|
|---|
| 26 | string_res * inner;
|
|---|
| 27 | };
|
|---|
| 28 |
|
|---|
| 29 | // Getters
|
|---|
| 30 | size_t size(const string & s);
|
|---|
| 31 | static inline size_t strlen(const string & s) { return size( s ); }
|
|---|
| 32 |
|
|---|
| 33 | // RAII, assignment
|
|---|
| 34 | void ?{}(string & s); // empty string
|
|---|
| 35 | void ?{}(string & s, const string & s2);
|
|---|
| 36 | void ?{}(string & s, const string & s2, size_t maxlen);
|
|---|
| 37 | void ?{}(string & s, string & s2);
|
|---|
| 38 |
|
|---|
| 39 | void ?{}(string & s, char);
|
|---|
| 40 | void ?{}(string & s, const char * c); // copy from string literal (NULL-terminated)
|
|---|
| 41 | void ?{}(string & s, const char * c, size_t size); // copy specific length from buffer
|
|---|
| 42 |
|
|---|
| 43 | void ?{}( string & s, ssize_t rhs );
|
|---|
| 44 | void ?{}( string & s, size_t rhs );
|
|---|
| 45 | void ?{}( string & s, double rhs );
|
|---|
| 46 | void ?{}( string & s, long double rhs );
|
|---|
| 47 | void ?{}( string & s, double _Complex rhs );
|
|---|
| 48 | void ?{}( string & s, long double _Complex rhs );
|
|---|
| 49 |
|
|---|
| 50 | string & ?=?(string & s, const string & c);
|
|---|
| 51 | string & ?=?(string & s, string & c);
|
|---|
| 52 | string & ?=?(string & s, const char * c); // copy from "literal"
|
|---|
| 53 | string & ?=?(string & s, char c); // copy from 'l'
|
|---|
| 54 | string & assign(string & s, const string & c, size_t n);
|
|---|
| 55 | string & assign(string & s, const char * c, size_t n);
|
|---|
| 56 |
|
|---|
| 57 | static inline string & strcpy(string & s, const char * c) { s = c; return s; }
|
|---|
| 58 | static inline string & strncpy(string & s, const char * c, size_t n) { assign( s, c, n); return s; }
|
|---|
| 59 | static inline string & strcpy(string & s, const string & c) { s = c; return s; }
|
|---|
| 60 | static inline string & strncpy(string & s, const string & c, size_t n) { assign(s, c, n); return s; }
|
|---|
| 61 |
|
|---|
| 62 | string & ?=?( string & s, ssize_t rhs );
|
|---|
| 63 | string & ?=?( string & s, size_t rhs );
|
|---|
| 64 | string & ?=?( string & s, double rhs );
|
|---|
| 65 | string & ?=?( string & s, long double rhs );
|
|---|
| 66 | string & ?=?( string & s, double _Complex rhs );
|
|---|
| 67 | string & ?=?( string & s, long double _Complex rhs );
|
|---|
| 68 |
|
|---|
| 69 | void ^?{}(string & s);
|
|---|
| 70 |
|
|---|
| 71 | // Alternate construction: request shared edits
|
|---|
| 72 | struct string_WithSharedEdits {
|
|---|
| 73 | string * s;
|
|---|
| 74 | };
|
|---|
| 75 | string_WithSharedEdits ?`shareEdits( string & s );
|
|---|
| 76 | void ?{}( string & s, string_WithSharedEdits src );
|
|---|
| 77 |
|
|---|
| 78 | // IO Operator
|
|---|
| 79 | ofstream & ?|?(ofstream & out, const string & s);
|
|---|
| 80 | void ?|?(ofstream & out, const string & s);
|
|---|
| 81 | ifstream & ?|?(ifstream & in, string & s);
|
|---|
| 82 |
|
|---|
| 83 | static inline {
|
|---|
| 84 | _Ostream_Manip(string) bin( string s ) { return (_Ostream_Manip(string))@{ s, 1, 0, 'b', { .all : 0 } }; }
|
|---|
| 85 | _Ostream_Manip(string) oct( string s ) { return (_Ostream_Manip(string))@{ s, 1, 0, 'o', { .all : 0 } }; }
|
|---|
| 86 | _Ostream_Manip(string) hex( string s ) { return (_Ostream_Manip(string))@{ s, 1, 0, 'x', { .all : 0 } }; }
|
|---|
| 87 | _Ostream_Manip(string) wd( unsigned int w, string s ) { return (_Ostream_Manip(string))@{ s, w, 0, 's', { .all : 0 } }; }
|
|---|
| 88 | _Ostream_Manip(string) wd( unsigned int w, unsigned int pc, string s ) { return (_Ostream_Manip(string))@{ s, w, pc, 's', { .flags.pc : true } }; }
|
|---|
| 89 | _Ostream_Manip(string) & wd( unsigned int w, _Ostream_Manip(string) & fmt ) { fmt.wd = w; return fmt; }
|
|---|
| 90 | _Ostream_Manip(string) & wd( unsigned int w, unsigned int pc, _Ostream_Manip(string) & fmt ) { fmt.wd = w; fmt.pc = pc; fmt.flags.pc = true; return fmt; }
|
|---|
| 91 | _Ostream_Manip(string) & left( _Ostream_Manip(string) & fmt ) { fmt.flags.left = true; return fmt; }
|
|---|
| 92 | _Ostream_Manip(string) & nobase( _Ostream_Manip(string) & fmt ) { fmt.flags.nobsdp = true; return fmt; }
|
|---|
| 93 | } // distribution
|
|---|
| 94 | ofstream & ?|?( ofstream & os, _Ostream_Manip(string) f );
|
|---|
| 95 | void ?|?( ofstream & os, _Ostream_Manip(string) );
|
|---|
| 96 |
|
|---|
| 97 | struct _Istream_Swidth {
|
|---|
| 98 | string & s;
|
|---|
| 99 | inline _Istream_str_base;
|
|---|
| 100 | }; // _Istream_Swidth
|
|---|
| 101 |
|
|---|
| 102 | struct _Istream_Squoted {
|
|---|
| 103 | _Istream_Swidth sstr;
|
|---|
| 104 | }; // _Istream_Squoted
|
|---|
| 105 |
|
|---|
| 106 | struct _Istream_Sstr {
|
|---|
| 107 | string & s;
|
|---|
| 108 | inline _Istream_str_base;
|
|---|
| 109 | // _Istream_Swidth sstr;
|
|---|
| 110 | }; // _Istream_Sstr
|
|---|
| 111 |
|
|---|
| 112 | static inline {
|
|---|
| 113 | // read width does not include null terminator
|
|---|
| 114 | _Istream_Swidth wdi( unsigned int rwd, string & s ) { return (_Istream_Swidth)@{ .s : s, { {.scanset : 0p}, .wd : rwd, {.flags.rwd : true} } }; }
|
|---|
| 115 | _Istream_Sstr getline( string & s, const char delimiter = '\n' ) {
|
|---|
| 116 | // return (_Istream_Sstr)@{ { .s : s, { {.delimiters : { delimiter, '\0' } }, .wd : -1, {.flags.delimiter : true} } } };
|
|---|
| 117 | return (_Istream_Sstr)@{ .s : s, { {.delimiters : { delimiter, '\0' } }, .wd : -1, {.flags.delimiter : true} } };
|
|---|
| 118 | }
|
|---|
| 119 | _Istream_Sstr & getline( _Istream_Swidth & f, const char delimiter = '\n' ) {
|
|---|
| 120 | f.delimiters[0] = delimiter; f.delimiters[1] = '\0'; f.flags.delimiter = true; return (_Istream_Sstr &)f;
|
|---|
| 121 | }
|
|---|
| 122 | _Istream_Squoted quoted( string & s, const char Ldelimiter = '\"', const char Rdelimiter = '\0' ) {
|
|---|
| 123 | return (_Istream_Squoted)@{ { .s : s, { {.delimiters : { Ldelimiter, Rdelimiter, '\0' }}, .wd : -1, {.flags.rwd : true} } } };
|
|---|
| 124 | }
|
|---|
| 125 | _Istream_Squoted & quoted( _Istream_Swidth & f, const char Ldelimiter = '"', const char Rdelimiter = '\0' ) {
|
|---|
| 126 | f.delimiters[0] = Ldelimiter; f.delimiters[1] = Rdelimiter; f.delimiters[2] = '\0';
|
|---|
| 127 | return (_Istream_Squoted &)f;
|
|---|
| 128 | }
|
|---|
| 129 | // _Istream_Sstr incl( const char scanset[], string & s ) { return (_Istream_Sstr)@{ { .s : s, { {.scanset : scanset}, .wd : -1, {.flags.inex : false} } } }; }
|
|---|
| 130 | _Istream_Sstr incl( const char scanset[], string & s ) { return (_Istream_Sstr)@{ .s : s, { {.scanset : scanset}, .wd : -1, {.flags.inex : false} } }; }
|
|---|
| 131 | _Istream_Sstr & incl( const char scanset[], _Istream_Swidth & f ) { f.scanset = scanset; f.flags.inex = false; return (_Istream_Sstr &)f; }
|
|---|
| 132 | // _Istream_Sstr excl( const char scanset[], string & s ) { return (_Istream_Sstr)@{ { .s : s, { {.scanset : scanset}, .wd : -1, {.flags.inex : true} } } }; }
|
|---|
| 133 | _Istream_Sstr excl( const char scanset[], string & s ) { return (_Istream_Sstr)@{ .s : s, { {.scanset : scanset}, .wd : -1, {.flags.inex : true} } }; }
|
|---|
| 134 | _Istream_Sstr & excl( const char scanset[], _Istream_Swidth & f ) { f.scanset = scanset; f.flags.inex = true; return (_Istream_Sstr &)f; }
|
|---|
| 135 | // _Istream_Sstr ignore( string & s ) { return (_Istream_Sstr)@{ { .s : s, { {.scanset : 0p}, .wd : -1, {.flags.ignore : true} } } }; }
|
|---|
| 136 | _Istream_Sstr ignore( string & s ) { return (_Istream_Sstr)@{ .s : s, { {.scanset : 0p}, .wd : -1, {.flags.ignore : true} } }; }
|
|---|
| 137 | _Istream_Sstr & ignore( _Istream_Swidth & f ) { f.flags.ignore = true; return (_Istream_Sstr &)f; }
|
|---|
| 138 | _Istream_Squoted & ignore( _Istream_Squoted & f ) { f.sstr.flags.ignore = true; return (_Istream_Squoted &)f; }
|
|---|
| 139 | // _Istream_Sstr & ignore( _Istream_Sstr & f ) { f.sstr.flags.ignore = true; return (_Istream_Sstr &)f; }
|
|---|
| 140 | _Istream_Sstr & ignore( _Istream_Sstr & f ) { f.flags.ignore = true; return (_Istream_Sstr &)f; }
|
|---|
| 141 | } // distribution
|
|---|
| 142 | ifstream & ?|?( ifstream & is, _Istream_Squoted f );
|
|---|
| 143 | ifstream & ?|?( ifstream & is, _Istream_Sstr f );
|
|---|
| 144 | static inline ifstream & ?|?( ifstream & is, _Istream_Swidth f ) { return is | *(_Istream_Sstr *)&f; }
|
|---|
| 145 |
|
|---|
| 146 | // Concatenation
|
|---|
| 147 | void ?+=?(string & s, char c); // append a character
|
|---|
| 148 | void ?+=?(string & s, const string & s2); // append-concatenate to first string
|
|---|
| 149 | void append(string & s, const string & s2, size_t maxlen); // append-concatenate to first string, up to maxlen
|
|---|
| 150 | void ?+=?(string & s, const char * s2); // append-concatenate NULL-terminated string to first string
|
|---|
| 151 | void append(string & s, const char * buffer, size_t bsize); // append-concatenate given range to first string
|
|---|
| 152 |
|
|---|
| 153 | string ?+?(const string & s, char c); // add a character to a copy of the string
|
|---|
| 154 | string ?+?(const string & s, const string & s2); // copy and concatenate both strings
|
|---|
| 155 | string ?+?(const char * s1, const char * s2); // copy and concatenate both strings
|
|---|
| 156 | string ?+?(const string & s, const char * c); // copy and concatenate with NULL-terminated string
|
|---|
| 157 |
|
|---|
| 158 | static inline string & strcat(string & s, const string & s2) { s += s2; return s; }
|
|---|
| 159 | static inline string & strcat(string & s, const char * c) { s += c; return s; }
|
|---|
| 160 | static inline string & strncat(string & s, const string & s2, size_t maxlen) { append(s, s2, maxlen); return s; }
|
|---|
| 161 | static inline string & strncat(string & s, const char * buffer, size_t bsize) { append(s, buffer, bsize); return s; }
|
|---|
| 162 |
|
|---|
| 163 | // Repetition
|
|---|
| 164 | string ?*?(const string & s, size_t factor);
|
|---|
| 165 | void ?*=?(string & s, size_t factor);
|
|---|
| 166 | string ?*?(char c, size_t factor);
|
|---|
| 167 | string ?*?(const char *s, size_t factor);
|
|---|
| 168 |
|
|---|
| 169 | // Character access
|
|---|
| 170 | char ?[?](const string & s, size_t index);
|
|---|
| 171 | string ?[?](string & s, size_t index); // mutable length-1 slice of original
|
|---|
| 172 | //char codePointAt(const string & s, size_t index); // to revisit under Unicode
|
|---|
| 173 |
|
|---|
| 174 | // Comparisons
|
|---|
| 175 | int strcmp (const string &, const string &);
|
|---|
| 176 | bool ?==?(const string &, const string &);
|
|---|
| 177 | bool ?!=?(const string &, const string &);
|
|---|
| 178 | bool ?>? (const string &, const string &);
|
|---|
| 179 | bool ?>=?(const string &, const string &);
|
|---|
| 180 | bool ?<=?(const string &, const string &);
|
|---|
| 181 | bool ?<? (const string &, const string &);
|
|---|
| 182 |
|
|---|
| 183 | int strcmp (const string &, const char *);
|
|---|
| 184 | bool ?==?(const string &, const char *);
|
|---|
| 185 | bool ?!=?(const string &, const char *);
|
|---|
| 186 | bool ?>? (const string &, const char *);
|
|---|
| 187 | bool ?>=?(const string &, const char *);
|
|---|
| 188 | bool ?<=?(const string &, const char *);
|
|---|
| 189 | bool ?<? (const string &, const char *);
|
|---|
| 190 |
|
|---|
| 191 | int strcmp (const char *, const string &);
|
|---|
| 192 | bool ?==?(const char *, const string &);
|
|---|
| 193 | bool ?!=?(const char *, const string &);
|
|---|
| 194 | bool ?>? (const char *, const string &);
|
|---|
| 195 | bool ?>=?(const char *, const string &);
|
|---|
| 196 | bool ?<=?(const char *, const string &);
|
|---|
| 197 | bool ?<? (const char *, const string &);
|
|---|
| 198 |
|
|---|
| 199 |
|
|---|
| 200 | // Slicing
|
|---|
| 201 | string ?()( string & s, size_t start, size_t len ); // TODO const?
|
|---|
| 202 | string ?()( string & s, size_t start);
|
|---|
| 203 |
|
|---|
| 204 | // String search
|
|---|
| 205 | bool contains(const string & s, char ch); // single character
|
|---|
| 206 |
|
|---|
| 207 | int find(const string & s, char search);
|
|---|
| 208 | int find(const string & s, const string & search);
|
|---|
| 209 | int find(const string & s, const char * search);
|
|---|
| 210 | int find(const string & s, const char * search, size_t searchsize);
|
|---|
| 211 |
|
|---|
| 212 | int findFrom(const string & s, size_t fromPos, char search);
|
|---|
| 213 | int findFrom(const string & s, size_t fromPos, const string & search);
|
|---|
| 214 | int findFrom(const string & s, size_t fromPos, const char * search);
|
|---|
| 215 | int findFrom(const string & s, size_t fromPos, const char * search, size_t searchsize);
|
|---|
| 216 |
|
|---|
| 217 | bool includes(const string & s, const string & search);
|
|---|
| 218 | bool includes(const string & s, const char * search);
|
|---|
| 219 | bool includes(const string & s, const char * search, size_t searchsize);
|
|---|
| 220 |
|
|---|
| 221 | bool startsWith(const string & s, const string & prefix);
|
|---|
| 222 | bool startsWith(const string & s, const char * prefix);
|
|---|
| 223 | bool startsWith(const string & s, const char * prefix, size_t prefixsize);
|
|---|
| 224 |
|
|---|
| 225 | bool endsWith(const string & s, const string & suffix);
|
|---|
| 226 | bool endsWith(const string & s, const char * suffix);
|
|---|
| 227 | bool endsWith(const string & s, const char * suffix, size_t suffixsize);
|
|---|
| 228 |
|
|---|
| 229 | // Modifiers
|
|---|
| 230 | void padStart(string & s, size_t n);
|
|---|
| 231 | void padStart(string & s, size_t n, char padding);
|
|---|
| 232 | void padEnd(string & s, size_t n);
|
|---|
| 233 | void padEnd(string & s, size_t n, char padding);
|
|---|
| 234 |
|
|---|
| 235 |
|
|---|
| 236 | struct charclass {
|
|---|
| 237 | charclass_res * inner;
|
|---|
| 238 | };
|
|---|
| 239 |
|
|---|
| 240 | void ?{}( charclass & ) = void;
|
|---|
| 241 | void ?{}( charclass &, charclass) = void;
|
|---|
| 242 | charclass ?=?( charclass &, charclass) = void;
|
|---|
| 243 |
|
|---|
| 244 | void ?{}( charclass &, const string & chars);
|
|---|
| 245 | void ?{}( charclass &, const char * chars );
|
|---|
| 246 | void ?{}( charclass &, const char * chars, size_t charssize );
|
|---|
| 247 | void ^?{}( charclass & );
|
|---|
| 248 |
|
|---|
| 249 | int include(const string & s, const charclass & mask);
|
|---|
| 250 |
|
|---|
| 251 | int exclude(const string & s, const charclass & mask);
|
|---|
| 252 |
|
|---|
| 253 | /*
|
|---|
| 254 | What to do with?
|
|---|
| 255 | StrRet include(string & s, const charclass & mask);
|
|---|
| 256 | StrRet exclude(string & s, const charclass & mask);
|
|---|
| 257 | */
|
|---|