-
Notifications
You must be signed in to change notification settings - Fork 0
/
PString.cpp
335 lines (263 loc) · 8.67 KB
/
PString.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
#include "PString.h"
#include <cstring> // Include le funzioni standard C: strlen, strcpy, strcmp, ecc.
// Funzione interna per allocare e copiare stringa
void PString::allocateAndCopy(const char* src) {
if (src) {
length = strlen(src);
data = new char[length + 1]; // +1 per il terminatore '\0'
strcpy(data, src);
} else {
length = 0;
data = new char[1];
data[0] = '\0';
}
}
// Costruttore di default
PString::PString() : data(nullptr), length(0) {
allocateAndCopy("");
}
// Costruttore con stringa C
PString::PString(const char* str) {
allocateAndCopy(str);
}
// Costruttore di copia
PString::PString(const PString& other) {
allocateAndCopy(other.data);
}
// Costruttore da String
PString::PString(const String& str) {
allocateAndCopy(str.c_str());
}
// Distruttore
PString::~PString() {
delete[] data;
}
// Operatore di assegnamento da const char*
PString& PString::operator=(const char* str) {
if (data != str) { // Evita auto-assegnazione
delete[] data;
allocateAndCopy(str);
}
return *this;
}
// Operatore di assegnamento tra PString
PString& PString::operator=(const PString& other) {
if (this != &other) {
delete[] data;
allocateAndCopy(other.data);
}
return *this;
}
// Operatore di assegnamento da String
PString& PString::operator=(const String& str) {
return *this = str.c_str();
}
// Operatore == con PString
bool PString::operator==(const PString& other) const {
return strcmp(data, other.c_str()) == 0;
}
bool PString::operator!=(const PString& other) const {
return !(*this == other);
}
// Operatore == con const char*
bool PString::operator==(const char* str) const {
if (!str) return false; // Gestisce puntatore nullo
return strcmp(data, str) == 0;
}
bool PString::operator!=(const char* str) const {
return !(*this == str);
}
// Operatore == con String
bool PString::operator==(const String& str) const {
return *this == str.c_str();
}
bool PString::operator!=(const String& str) const {
return !(*this == str);
}
// Operatore == con singolo char
bool PString::operator==(char c) const {
return length == 1 && data[0] == c;
}
bool PString::operator!=(char c) const {
return !(*this == c);
}
// Operatore + per concatenazione con char*
PString PString::operator+(const char* str) const {
size_t newLength = length + strlen(str);
char* newData = new char[newLength + 1];
strcpy(newData, data);
strcat(newData, str);
PString result(newData);
delete[] newData;
return result;
}
// Operatore + per concatenazione con PString
PString PString::operator+(const PString& other) const {
return *this + other.data;
}
// Operatore + con char: restituisce una nuova stringa con il carattere aggiunto
PString PString::operator+(char c) const {
size_t newLength = length + 1; // Lunghezza aumentata di 1 per il nuovo carattere
char* newData = new char[newLength + 1]; // Alloca nuova memoria (+1 per '\0')
if (data) {
strcpy(newData, data); // Copia i dati esistenti
}
newData[length] = c; // Aggiunge il nuovo carattere alla fine
newData[newLength] = '\0'; // Aggiunge il terminatore
PString result(newData); // Crea un nuovo oggetto PString
delete[] newData; // Libera la memoria temporanea
return result;
}
// Operatore += con const char*
PString& PString::operator+=(const char* str) {
if (!str) return *this; // Controlla se il puntatore è nullo
size_t strLen = strlen(str);
size_t newLength = length + strLen;
char* newData = new char[newLength + 1]; // Alloca nuova memoria
if (data) {
strcpy(newData, data); // Copia i dati esistenti
}
strcat(newData, str); // Concatena i nuovi dati
delete[] data; // Libera la memoria precedente
data = newData; // Aggiorna il puntatore ai dati
length = newLength; // Aggiorna la lunghezza
return *this;
}
// Operatore += con PString
PString& PString::operator+=(const PString& other) {
return *this += other.c_str(); // Riutilizza l'operatore con const char*
}
// Operatore += con char
PString& PString::operator+=(char c) {
size_t newLength = length + 1;
char* newData = new char[newLength + 1]; // Alloca nuova memoria
if (data) {
strcpy(newData, data); // Copia i dati esistenti
}
newData[length] = c; // Aggiunge il nuovo carattere
newData[newLength] = '\0'; // Termina la stringa
delete[] data; // Libera la memoria precedente
data = newData; // Aggiorna il puntatore ai dati
length = newLength; // Aggiorna la lunghezza
return *this;
}
// Restituisce il puntatore alla stringa
const char* PString::c_str() const {
return data;
}
// Restituisce la lunghezza della stringa
size_t PString::lengthStr() const {
return length;
}
// Stampa la stringa sulla seriale
void PString::print() const {
Serial.print(data);
}
// Cerca un carattere nella stringa
char* PString::findChar(char c) const {
return strchr(data, c); // Usa strchr per trovare il carattere
}
// Cerca una sottostringa nella stringa
char* PString::findSubstring(const char* substr) const {
return strstr(data, substr); // Usa strstr per trovare la sottostringa
}
// Split con **copie** della sottostringa
PString* PString::split(char delimiter, int& tokenCount) const {
tokenCount = 0;
// Conta i token
for (size_t i = 0; i < length; i++) {
if (data[i] == delimiter) {
tokenCount++;
}
}
tokenCount++;
// Alloca array di oggetti PString
PString* tokens = new PString[tokenCount];
size_t start = 0, index = 0;
for (size_t i = 0; i <= length; i++) {
if (data[i] == delimiter || data[i] == '\0') {
char temp[128] = {0};
strncpy(temp, &data[start], i - start);
tokens[index++] = temp;
start = i + 1;
}
}
return tokens;
}
// Split con **puntatori** alla stringa originale
const char** PString::splitPtr(char delimiter, int& tokenCount) const {
tokenCount = 0;
// Conta i token
for (size_t i = 0; i < length; i++) {
if (data[i] == delimiter) {
tokenCount++;
}
}
tokenCount++;
// Alloca array di puntatori
const char** tokens = new const char*[tokenCount];
size_t start = 0, index = 0;
for (size_t i = 0; i <= length; i++) {
if (data[i] == delimiter || data[i] == '\0') {
tokens[index++] = &data[start];
start = i + 1;
}
}
return tokens;
}
// Metodo endsWith
bool PString::endsWith(const PString& suffix) const {
return endsWith(suffix.c_str());
}
bool PString::endsWith(const char* suffix) const {
size_t suffixLen = strlen(suffix);
if (suffixLen > length) return false; // Se il suffisso è più lungo della stringa, ritorna false
// Primo controllo: confronto esatto dei caratteri finali
bool res = strncmp(data + length - suffixLen, suffix, suffixLen) == 0;
if (!res) {
// Se il confronto fallisce, crea una copia temporanea con '\0' aggiunto
char tempSuffix[suffixLen + 2]; // Alloca spazio per il suffisso + '\0'
strcpy(tempSuffix, suffix);
tempSuffix[suffixLen] = '\0'; // Aggiunge il terminatore esplicitamente
res = strncmp(data + length - suffixLen, tempSuffix, suffixLen) == 0;
}
return res;
}
bool PString::endsWith(const String& suffix) const {
return endsWith(suffix.c_str());
}
// Metodo trimEnd
void PString::trimEnd() {
if (length == 0) return; // Se la stringa è vuota, non fare nulla
size_t newLength = length; // Usa size_t al posto di int
// Trova l'ultimo carattere non spazio
while (newLength > 0 && isspace(data[newLength - 1])) {
newLength--;
}
if (newLength < length) { // Confronto tra size_t
data[newLength] = '\0'; // Aggiunge il terminatore '\0'
length = newLength; // Aggiorna la lunghezza della stringa
}
}
// Metodo startsWith
bool PString::startsWith(const PString& prefix) const {
return startsWith(prefix.c_str());
}
bool PString::startsWith(const char* prefix) const {
size_t prefixLen = strlen(prefix);
if (prefixLen > length) return false;
return strncmp(data, prefix, prefixLen) == 0;
}
bool PString::startsWith(const String& prefix) const {
return startsWith(prefix.c_str());
}
// Metodo contains
bool PString::contains(const PString& substring) const {
return contains(substring.c_str());
}
bool PString::contains(const char* substring) const {
return strstr(data, substring) != nullptr;
}
bool PString::contains(const String& substring) const {
return contains(substring.c_str());
}