-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstring_util.c
More file actions
315 lines (251 loc) · 7.31 KB
/
string_util.c
File metadata and controls
315 lines (251 loc) · 7.31 KB
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
/**
* @file string_util.c
* @brief GenericCShellParserLIB: A comprehensive and versatile CLI parsing library for C applications.
* @author Harshith Sunku
* @date 12/22/2023
* @version 1.0
* @website https://www.harshith.in/ | https://harshithsunku.in/
* @repository https://github.com/harshithsunku/GenericCShellParserLIB
*
* @note This file is part of GenericCShellParserLIB, which offers robust CLI functionalities for C projects.
* The library includes a range of built-in commands like show, config, debug, clear, and more, making it
* ideal for integrating powerful and customizable shell parsing capabilities into various applications.
* @details Designed for easy integration and extensibility, GenericCShellParserLIB allows developers to quickly
* implement a command-line interface tailored to their application's needs. Further details about the
* implementation can be found in the README or the official documentation at the above website/github.
*
* GenericCShellParserLIB is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* GenericCShellParserLIB is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GenericCShellParserLIB. If not, see <https://www.gnu.org/licenses/>.
*
* @bugs No known bugs at the time of writing.
* @todo Features or fixes planned for future versions.
*/
#include <stdlib.h>
#include <assert.h>
#include <ctype.h>
#include <stdio.h>
#include "string_util.h"
#include "cliconst.h"
static char a_str[CONS_INPUT_BUFFER_SIZE];
char temp[ LEAF_ID_SIZE + 2];
static char * tokens[MAX_CMD_TREE_DEPTH];
void
init_token_array(){
int i = 0;
for(; i < MAX_CMD_TREE_DEPTH; i++){
tokens[i] = (char *)calloc(1, LEAF_VALUE_HOLDER_SIZE);
}
}
void
re_init_tokens(int token_cnt){
int i = 0;
for(; i < token_cnt; i++){
memset(tokens[i], 0, LEAF_VALUE_HOLDER_SIZE);
}
}
void
tokenize(char *token, unsigned int size, unsigned int index){
if(size > LEAF_VALUE_HOLDER_SIZE)
assert(0);
strncpy(tokens[index], token, size);
}
void
untokenize(unsigned int index){
memset(tokens[index], 0, LEAF_VALUE_HOLDER_SIZE);
}
char *
get_token(unsigned int index){
return tokens[index];
}
char** tokenizer(char* _a_str, const char a_delim, size_t *token_cnt){
char *token = NULL;
int i = 0;
char delim[2];
memset(a_str, 0, CONS_INPUT_BUFFER_SIZE);
strncpy(a_str, _a_str, strlen(_a_str));
a_str[strlen(_a_str)] = '\0';
string_space_trim(a_str);
if(strlen(a_str) < 1){
*token_cnt = 0;
return NULL;
}
delim[0] = a_delim;
delim[1] = '\0';
token = strtok(a_str, delim);
if(token){
untokenize(i);
strncpy(tokens[i], token, strlen(token));
i++;
}
else{
*token_cnt = 0;
return NULL;
}
/* walk through other tokens */
while( token != NULL )
{
token = strtok(NULL, delim);
if(token){
untokenize(i);
strncpy(tokens[i], token, strlen(token));
i++;
if(i == MAX_CMD_TREE_DEPTH + 1){
//printf("Warning : Max token limit (= %d) support exceeded\n", MAX_CMD_TREE_DEPTH);
re_init_tokens(MAX_CMD_TREE_DEPTH);
*token_cnt = 0;
return &tokens[0];
}
}
}
*token_cnt = i;
return &tokens[0];
}
void
string_space_trim(char *string){
if(!string)
return;
char* ptr = string;
int len = strlen(ptr);
if(!len){
return;
}
if(!isspace(ptr[0]) && !isspace(ptr[len-1])){
return;
}
while(len-1 > 0 && isspace(ptr[len-1])){
ptr[--len] = 0;
}
while(*ptr && isspace(*ptr)){
++ptr, --len;
}
memmove(string, ptr, len + 1);
}
void
print_tokens(unsigned int index){
unsigned int i = 0;
for ( ; i < index; i++)
{
if(tokens[i] == NULL)
break;
printf("%s ", tokens[i]);
}
}
void replaceSubstring(char string[], char sub[], char new_str[])
{
int stringLen, subLen, newLen;
int i = 0, j, k;
int flag = 0, start, end;
stringLen = strlen(string);
subLen = strlen(sub);
newLen = strlen(new_str);
for (i = 0; i < stringLen; i++)
{
flag = 0;
start = i;
for (j = 0; string[i] == sub[j]; j++, i++)
if (j == subLen - 1)
flag = 1;
end = i;
if (flag == 0)
i -= j;
else
{
for (j = start; j < end; j++)
{
for (k = start; k < stringLen; k++)
string[k] = string[k + 1];
stringLen--;
i--;
}
for (j = start; j < start + newLen; j++)
{
for (k = stringLen; k >= j; k--)
string[k + 1] = string[k];
string[j] = new_str[j - start];
stringLen++;
i++;
}
}
}
}
bool
pattern_match(char string[], int string_size, char pattern[]) {
if (string_size == 0) {
return false;
}
return (strstr(string, pattern));
}
int
grep (char string[], int string_size, char pattern[]) {
int rc = 0;
char *token;
if (!string_size) return 0;
char *temp_buff = (char *)calloc(1, string_size);
memcpy(temp_buff, string, string_size);
memset (string, 0, string_size);
token = strtok(temp_buff, "\n");
while (token) {
if (pattern_match(token, strlen(token), pattern)) {
rc += sprintf(string + rc, "%s\n", token);
}
token = strtok(NULL, "\n");
}
free(temp_buff);
return rc;
}
static bool
is_number (char *string) {
int i = 0;
while (string[i] != '\0') {
if (string[i] == '0' ||
string[i] == '1' ||
string[i] == '2' ||
string[i] == '3' ||
string[i] == '4' ||
string[i] == '5' ||
string[i] == '6' ||
string[i] == '7' ||
string[i] == '8' ||
string[i] == '9' ) {
i++;
continue;
}
else {
return false;
}
}
return true;
}
uint64_t
string_fetch_integer(char *string, int string_size, int index) {
int count = 0;
char *token;
if (!string_size) return 0;
char *temp_buff = (char *)calloc(1, string_size);
memcpy(temp_buff, string, string_size);
token = strtok(temp_buff, " ");
while (token) {
if (!is_number(token)) {
token = strtok(NULL, " ");
continue;
}
count++;
if (index == count) {
free(temp_buff);
return atoi(token);
}
token = strtok(NULL, " ");
}
free(temp_buff);
return 0;
}