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 : Sun Jan 14 12:03:46 2024
|
---|
13 | // Update Count : 81
|
---|
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 | void ?|?( ifstream & in, string & s );
|
---|
83 |
|
---|
84 | static inline {
|
---|
85 | _Ostream_Manip(string) bin( string s ) { return (_Ostream_Manip(string))@{ s, 1, 0, 'b', { .all : 0 } }; }
|
---|
86 | _Ostream_Manip(string) oct( string s ) { return (_Ostream_Manip(string))@{ s, 1, 0, 'o', { .all : 0 } }; }
|
---|
87 | _Ostream_Manip(string) hex( string s ) { return (_Ostream_Manip(string))@{ s, 1, 0, 'x', { .all : 0 } }; }
|
---|
88 | _Ostream_Manip(string) wd( unsigned int w, string s ) { return (_Ostream_Manip(string))@{ s, w, 0, 's', { .all : 0 } }; }
|
---|
89 | _Ostream_Manip(string) wd( unsigned int w, unsigned int pc, string s ) { return (_Ostream_Manip(string))@{ s, w, pc, 's', { .flags.pc : true } }; }
|
---|
90 | _Ostream_Manip(string) & wd( unsigned int w, _Ostream_Manip(string) & fmt ) { fmt.wd = w; return fmt; }
|
---|
91 | _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; }
|
---|
92 | _Ostream_Manip(string) & left( _Ostream_Manip(string) & fmt ) { fmt.flags.left = true; return fmt; }
|
---|
93 | _Ostream_Manip(string) & nobase( _Ostream_Manip(string) & fmt ) { fmt.flags.nobsdp = true; return fmt; }
|
---|
94 | } // distribution
|
---|
95 | ofstream & ?|?( ofstream & os, _Ostream_Manip(string) f );
|
---|
96 | void ?|?( ofstream & os, _Ostream_Manip(string) );
|
---|
97 |
|
---|
98 | struct _Istream_Sstr {
|
---|
99 | string & s;
|
---|
100 | inline _Istream_str_base;
|
---|
101 | }; // _Istream_Sstr
|
---|
102 |
|
---|
103 | static inline {
|
---|
104 | // read width does not include null terminator
|
---|
105 | _Istream_Sstr wdi( unsigned int rwd, string & s ) { return (_Istream_Sstr)@{ s, {{0p}, rwd, {.flags.rwd : true}} }; }
|
---|
106 | _Istream_Sstr getline( string & s, const char delimiter = '\n' ) {
|
---|
107 | return (_Istream_Sstr)@{ s, {{.delimiters : { delimiter, '\0' } }, -1, {.flags.delimiter : true, .flags.inex : true}} };
|
---|
108 | }
|
---|
109 | _Istream_Sstr & getline( _Istream_Sstr & fmt, const char delimiter = '\n' ) {
|
---|
110 | fmt.delimiters[0] = delimiter; fmt.delimiters[1] = '\0'; fmt.flags.delimiter = true; fmt.flags.inex = true; return fmt;
|
---|
111 | }
|
---|
112 | _Istream_Sstr incl( const char scanset[], string & s ) { return (_Istream_Sstr)@{ s, {{scanset}, -1, {.flags.inex : false}} }; }
|
---|
113 | _Istream_Sstr & incl( const char scanset[], _Istream_Sstr & fmt ) { fmt.scanset = scanset; fmt.flags.inex = false; return fmt; }
|
---|
114 | _Istream_Sstr excl( const char scanset[], string & s ) { return (_Istream_Sstr)@{ s, {{scanset}, -1, {.flags.inex : true}} }; }
|
---|
115 | _Istream_Sstr & excl( const char scanset[], _Istream_Sstr & fmt ) { fmt.scanset = scanset; fmt.flags.inex = true; return fmt; }
|
---|
116 | _Istream_Sstr ignore( string & s ) { return (_Istream_Sstr)@{ s, {{0p}, -1, {.flags.ignore : true}} }; }
|
---|
117 | _Istream_Sstr & ignore( _Istream_Sstr & fmt ) { fmt.flags.ignore = true; return fmt; }
|
---|
118 | } // distribution
|
---|
119 | ifstream & ?|?( ifstream & is, _Istream_Sstr f );
|
---|
120 | void ?|?( ifstream & is, _Istream_Sstr t );
|
---|
121 |
|
---|
122 | // Concatenation
|
---|
123 | void ?+=?(string & s, char c); // append a character
|
---|
124 | void ?+=?(string & s, const string & s2); // append-concatenate to first string
|
---|
125 | void append(string & s, const string & s2, size_t maxlen); // append-concatenate to first string, up to maxlen
|
---|
126 | void ?+=?(string & s, const char * s2); // append-concatenate NULL-terminated string to first string
|
---|
127 | void append(string & s, const char * buffer, size_t bsize); // append-concatenate given range to first string
|
---|
128 |
|
---|
129 | string ?+?(const string & s, char c); // add a character to a copy of the string
|
---|
130 | string ?+?(const string & s, const string & s2); // copy and concatenate both strings
|
---|
131 | string ?+?(const char * s1, const char * s2); // copy and concatenate both strings
|
---|
132 | string ?+?(const string & s, const char * c); // copy and concatenate with NULL-terminated string
|
---|
133 |
|
---|
134 | static inline string & strcat(string & s, const string & s2) { s += s2; return s; }
|
---|
135 | static inline string & strcat(string & s, const char * c) { s += c; return s; }
|
---|
136 | static inline string & strncat(string & s, const string & s2, size_t maxlen) { append(s, s2, maxlen); return s; }
|
---|
137 | static inline string & strncat(string & s, const char * buffer, size_t bsize) { append(s, buffer, bsize); return s; }
|
---|
138 |
|
---|
139 | // Repetition
|
---|
140 | string ?*?(const string & s, size_t factor);
|
---|
141 | void ?*=?(string & s, size_t factor);
|
---|
142 | string ?*?(char c, size_t factor);
|
---|
143 | string ?*?(const char *s, size_t factor);
|
---|
144 |
|
---|
145 | // Character access
|
---|
146 | char ?[?](const string & s, size_t index);
|
---|
147 | string ?[?](string & s, size_t index); // mutable length-1 slice of original
|
---|
148 | //char codePointAt(const string & s, size_t index); // to revisit under Unicode
|
---|
149 |
|
---|
150 | // Comparisons
|
---|
151 | int strcmp (const string &, const string &);
|
---|
152 | bool ?==?(const string &, const string &);
|
---|
153 | bool ?!=?(const string &, const string &);
|
---|
154 | bool ?>? (const string &, const string &);
|
---|
155 | bool ?>=?(const string &, const string &);
|
---|
156 | bool ?<=?(const string &, const string &);
|
---|
157 | bool ?<? (const string &, const string &);
|
---|
158 |
|
---|
159 | int strcmp (const string &, const char *);
|
---|
160 | bool ?==?(const string &, const char *);
|
---|
161 | bool ?!=?(const string &, const char *);
|
---|
162 | bool ?>? (const string &, const char *);
|
---|
163 | bool ?>=?(const string &, const char *);
|
---|
164 | bool ?<=?(const string &, const char *);
|
---|
165 | bool ?<? (const string &, const char *);
|
---|
166 |
|
---|
167 | int strcmp (const char *, const string &);
|
---|
168 | bool ?==?(const char *, const string &);
|
---|
169 | bool ?!=?(const char *, const string &);
|
---|
170 | bool ?>? (const char *, const string &);
|
---|
171 | bool ?>=?(const char *, const string &);
|
---|
172 | bool ?<=?(const char *, const string &);
|
---|
173 | bool ?<? (const char *, const string &);
|
---|
174 |
|
---|
175 |
|
---|
176 | // Slicing
|
---|
177 | string ?()( string & s, size_t start, size_t len ); // TODO const?
|
---|
178 | string ?()( string & s, size_t start);
|
---|
179 |
|
---|
180 | // String search
|
---|
181 | bool contains(const string & s, char ch); // single character
|
---|
182 |
|
---|
183 | int find(const string & s, char search);
|
---|
184 | int find(const string & s, const string & search);
|
---|
185 | int find(const string & s, const char * search);
|
---|
186 | int find(const string & s, const char * search, size_t searchsize);
|
---|
187 |
|
---|
188 | int findFrom(const string & s, size_t fromPos, char search);
|
---|
189 | int findFrom(const string & s, size_t fromPos, const string & search);
|
---|
190 | int findFrom(const string & s, size_t fromPos, const char * search);
|
---|
191 | int findFrom(const string & s, size_t fromPos, const char * search, size_t searchsize);
|
---|
192 |
|
---|
193 | bool includes(const string & s, const string & search);
|
---|
194 | bool includes(const string & s, const char * search);
|
---|
195 | bool includes(const string & s, const char * search, size_t searchsize);
|
---|
196 |
|
---|
197 | bool startsWith(const string & s, const string & prefix);
|
---|
198 | bool startsWith(const string & s, const char * prefix);
|
---|
199 | bool startsWith(const string & s, const char * prefix, size_t prefixsize);
|
---|
200 |
|
---|
201 | bool endsWith(const string & s, const string & suffix);
|
---|
202 | bool endsWith(const string & s, const char * suffix);
|
---|
203 | bool endsWith(const string & s, const char * suffix, size_t suffixsize);
|
---|
204 |
|
---|
205 | // Modifiers
|
---|
206 | void padStart(string & s, size_t n);
|
---|
207 | void padStart(string & s, size_t n, char padding);
|
---|
208 | void padEnd(string & s, size_t n);
|
---|
209 | void padEnd(string & s, size_t n, char padding);
|
---|
210 |
|
---|
211 |
|
---|
212 | struct charclass {
|
---|
213 | charclass_res * inner;
|
---|
214 | };
|
---|
215 |
|
---|
216 | void ?{}( charclass & ) = void;
|
---|
217 | void ?{}( charclass &, charclass) = void;
|
---|
218 | charclass ?=?( charclass &, charclass) = void;
|
---|
219 |
|
---|
220 | void ?{}( charclass &, const string & chars);
|
---|
221 | void ?{}( charclass &, const char * chars );
|
---|
222 | void ?{}( charclass &, const char * chars, size_t charssize );
|
---|
223 | void ^?{}( charclass & );
|
---|
224 |
|
---|
225 | int include(const string & s, const charclass & mask);
|
---|
226 |
|
---|
227 | int exclude(const string & s, const charclass & mask);
|
---|
228 |
|
---|
229 | /*
|
---|
230 | What to do with?
|
---|
231 | StrRet include(string & s, const charclass & mask);
|
---|
232 | StrRet exclude(string & s, const charclass & mask);
|
---|
233 | */
|
---|