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
| #include <ctype.h> #include "strbuf.h" typedef struct strbuf strbuf;
void strbuf_init(struct strbuf* sb, size_t alloc) { sb->len = 0; sb->alloc = alloc; if (alloc) sb->buf = (char*)malloc(sizeof(char) * alloc); }
void strbuf_release(struct strbuf* sb) { if (sb->alloc > 0) { free(sb->buf); strbuf_init(sb, 0); }
}
size_t strbuf_avail(const struct strbuf* sb) { return (size_t)(sb->alloc - sb->len - 1); }
void strbuf_setlen(struct strbuf* sb, size_t len) { if (len > sb->len + strbuf_avail(sb)) return; sb->len = len; sb->buf[len] = '\0'; }
void strbuf_attach(struct strbuf* sb, void* str, size_t len, size_t alloc) { sb->alloc = alloc; sb->len = len; sb->buf = (char*)str; }
void strbuf_swap(struct strbuf* a, struct strbuf* b) { struct strbuf temp = *a; *a = *b; *b = temp; }
char* strbuf_detach(struct strbuf* sb, size_t* sz) { *sz = sb->alloc; return sb->buf; }
int strbuf_cmp(const struct strbuf* first, const struct strbuf* second) { if (first->len > second->len) { return 1; } else if (first->len < second->len) { return -1; } else { return 0; } }
void strbuf_reset(struct strbuf* sb) { (*sb).len = 0; *(*sb).buf = '\0'; }
void strbuf_grow(struct strbuf* sb, size_t extra) { sb->buf = (char*)realloc(sb->buf, sb->len + extra + 1); sb->alloc = sb->len + extra + 1; }
void strbuf_add(struct strbuf* sb, const void* data, size_t len) { if (len == 0) { return; } else if (sb->len + len >= sb->alloc) { strbuf_grow(sb, len); } memcpy(sb->buf + sb->len, data, len); sb->len += len; sb->buf[sb->len] = '\0'; }
void strbuf_addch(struct strbuf* sb, int c) { char* s = (char*)malloc(sizeof(char)); s[0] = c; strbuf_add(sb, s, 1); free(s); }
void strbuf_addstr(struct strbuf* sb, const char* s) { int p = 0; while (s[p] != '\0') { p++; } strbuf_add(sb, s, p); }
void strbuf_addbuf(struct strbuf* sb, const struct strbuf* sb2) { char* s1 = sb2->buf; strbuf_addstr(sb, s1); }
void strbuf_splice(struct strbuf* sb, size_t pos, size_t len, const void* data, size_t dlen) { if (dlen >= len) strbuf_grow(sb, dlen - len); memmove(sb->buf + pos + dlen, sb->buf + pos + len, sb->len - pos - len);
memcpy(sb->buf + pos, data, dlen); strbuf_setlen(sb, sb->len + dlen - len); }
void strbuf_insert(struct strbuf* sb, size_t pos, const void* data, size_t len) { strbuf_splice(sb, pos, 0, data, len); }
void strbuf_remove(struct strbuf* sb, size_t pos, size_t len) { strbuf_splice(sb, pos, len, NULL, 0); }
void strbuf_ltrim(struct strbuf* sb) { char* b = sb->buf; while (sb->len > 0 && isspace(*b)) { b++; sb->len--; } memmove(sb->buf, b, sb->len); sb->buf[sb->len] = '\0'; }
void strbuf_rtrim(struct strbuf* sb) { while (sb->len > 0 && isspace((unsigned char)sb->buf[sb->len - 1])) { sb->len--; } sb->buf[sb->len] = '\0'; }
ssize_t strbuf_read(struct strbuf* sb, int fd, size_t hint) { FILE* file = fdopen(fd, "r"); char ch; if ((ch = fgetc(file)) == EOF) return sb->len; sb->buf[sb->len++] = ch;
sb->alloc <<= 13; sb->buf = (char*)realloc(sb->buf, sizeof(char) * (sb->alloc)); while ((ch = fgetc(file)) != EOF) { sb->buf[sb->len] = ch; sb->len++; } sb->buf[sb->len] = '\0'; return sb->len; }
int strbuf_getline(struct strbuf* sb, FILE* fp) { int ch; while ((ch = fgetc(fp)) != EOF) { if (ch != '\n') { strbuf_grow(sb, 1); sb->buf[sb->len++] = ch; } else { break; } } sb->buf[sb->len] = '\0'; return 1; }
struct strbuf** strbuf_split_buf(const char* str, size_t len, int terminator, int max) { strbuf** ans = (strbuf**)malloc(sizeof(strbuf*) * (max + 1));
char *p = (char*)str, *q = (char*)(str + len); while (*p == terminator) { p++; } int pointer = 0; for (char* t = p; t <= q; t++) { if (*t == terminator || t == q) { int length = t - p; ans[pointer] = (strbuf*)malloc(sizeof(strbuf)); ans[pointer]->len = length; ans[pointer]->alloc = length + 1; ans[pointer]->buf = (char*)malloc(sizeof(char) * (length + 1));
memcpy(ans[pointer]->buf, p, length); ans[pointer++]->buf[length] = '\0'; while (*t == terminator && t <= q) { t++; } p = t; } if (pointer == max) break; } ans[pointer] = NULL; return ans; } bool strbuf_begin_judge(char* target_str, const char* str, int len) { if (len == 0) return true; if (strlen(str) > len) { return false; } for (int i = 0; i < strlen(str); i++) { if (str[i] != target_str[i]) { return false; } } return true; } char* strbuf_get_mid_buf(char* target_buf, int begin, int end, int len) { if (begin >= len || end >= len) return NULL; char* ret = (char*)malloc(sizeof(char) * (end - begin + 1));
memcpy(ret, target_buf + begin, end - begin); ret[end - begin] = '\0'; return ret; }
|