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 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539
|
/******************************************************************************
*
* swbuf.h - class SWBuf: a rich buffer / string class providing optimized
* implementations of many basic string operations
*
* $Id: swbuf.h 3786 2020-08-30 11:35:14Z scribe $
*
* Copyright 2003-2013 CrossWire Bible Society (http://www.crosswire.org)
* CrossWire Bible Society
* P. O. Box 2528
* Tempe, AZ 85280-2528
*
* This program 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 version 2.
*
* This program 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.
*
*/
#ifndef SWBUF_H
#define SWBUF_H
#include <defs.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#ifdef __BORLANDC__
#include <mem.h>
#endif
SWORD_NAMESPACE_START
#define JUNKBUFSIZE 65534
/**
* This class is used as a transport and utility for data buffers.
*
* @warning This class does not perform pointer validity checks (for speed reasons).
* Therefore, never try to pass an invalid string (const char* 0) as an argument-
* it will crash your program. You need to perform the checks yourself!
*/
class SWDLLEXPORT SWBuf {
private:
char *buf;
char *end;
char *endAlloc;
char fillByte;
unsigned long allocSize;
inline void assureMore(size_t pastEnd) {
if (size_t(endAlloc-end) < pastEnd) {
assureSize(allocSize + pastEnd);
}
}
inline void assureSize(size_t checkSize) {
if (checkSize > allocSize) {
long size = (end - buf);
checkSize += 128;
buf = (char *)((allocSize) ? realloc(buf, checkSize) : malloc(checkSize));
allocSize = checkSize;
end = (buf + size);
*end = 0;
endAlloc = buf + allocSize - 1;
}
}
inline void init(size_t initSize) {
fillByte = ' ';
allocSize = 0;
buf = nullStr;
end = buf;
endAlloc = buf;
if (initSize)
assureSize(initSize);
}
public:
static char *nullStr;
/******************************************************************************
* SWBuf Constructor - Creates an empty SWBuf object
*
*/
inline SWBuf() {
init(0);
}
/******************************************************************************
* SWBuf Constructor - Creates an empty SWBuf object or an SWBuf initialized
* to a value from a const char *
*
*/
inline SWBuf(const char *initVal, unsigned long initSize = 0) {
init(initSize);
if (initVal)
set(initVal, initSize);
}
/******************************************************************************
* SWBuf Constructor - Creates an SWBuf initialized
* to a value from another SWBuf
*
*/
inline SWBuf(const SWBuf &other, unsigned long initSize = 0) {
init(initSize);
set(other);
}
/******************************************************************************
* SWBuf Constructor - Creates an SWBuf initialized
* to a value from a char
*
*/
inline SWBuf(char initVal, unsigned long initSize = 0) {
init(initSize+1);
*buf = initVal;
end = buf+1;
*end = 0;
}
// SWBuf(unsigned long initSize);
/******************************************************************************
* SWBuf Destructor - Cleans up instance of SWBuf
*/
inline ~SWBuf() {
if ((buf) && (buf != nullStr))
free(buf);
}
/**
* SWBuf::setFillByte - Set the fillByte character
*
* @param ch This character is used when the SWBuf is (re)sized.
* The memory will be filled with this character. \see setSize() \see resize()
*/
inline void setFillByte(char ch) { fillByte = ch; }
/**
* SWBuf::getFillByte - Get the fillByte character
*
* @return The character used for filling memory. \see setFillByte.
*/
inline char getFillByte() { return fillByte; }
/**
* @return a pointer to the buffer content (null-terminated string)
*/
inline const char *c_str() const{ return buf; }
/**
* @param pos The position of the requested character.
* @return The character at the specified position
*/
// fastest guarded impl. If we reference out of bounds, we return our
inline char &charAtGuarded(unsigned long pos) { return ((pos <= (unsigned long)(endAlloc - buf)) ? buf[pos] : (*endAlloc)); }
// unguarded impl. This is obviously much faster and is likely why std::string specifies references out of bounds have undefined
// behavior. This is the default impl for operator []
inline char &charAt(unsigned long pos) { return *(buf + pos); }
inline const char &charAt(unsigned long pos) const { return *(buf + pos); }
// these have all proven to be slower implementations
// inline char &charAt(unsigned long pos) { return buf[pos]; }
// inline char &charAtGuarded(unsigned long pos) { return pos <= (unsigned long)end - (unsigned long)buf ? buf[pos] : *nullStr; }
// inline char &charAtGuarded(unsigned long pos) { return pos <= length() ? buf[pos] : *nullStr; }
// inline char &charAtGuarded(unsigned long pos) { assureSize(pos); return buf[pos]; }
// inline char &charAtGuarded(unsigned long pos) { return pos < allocSize ? buf[pos] : *nullStr; }
// inline char &charAtGuarded(unsigned long pos) { return buf + pos <= end ? buf[pos] : *nullStr; }
// inline char &charAtGuarded(unsigned long pos) { return buf[pos < allocSize ? pos : allocSize - 1]; }
/**
* @return size() and length() return only the number of characters of the string.
* Add one for the following null and one for each char to be appended!
*/
inline unsigned long size() const { return length(); }
/**
* set's the size of the buffer. This is a quick inline method which checks
* for changes before actually calling setSize().
* @param newSize new size of the buffer
*/
inline void size(unsigned long newSize) { if (end - buf - newSize) setSize(newSize); }
/**
* @return size() and length() return only the number of characters of the string.
*/
inline unsigned long length() const { return end - buf; }
/**
* SWBuf::set - sets this buf to a new value
* If the allocated memory is bigger than the new string, it will NOT be resized.
* @param newVal the value to set this buffer to.
*/
inline void set(const SWBuf &newVal) {
unsigned long len = newVal.allocSize;
assureSize(len);
memcpy(buf, newVal.c_str(), len);
end = buf + (newVal.length());
}
/**
* SWBuf::set - sets this buf to a new value.
* If the allocated memory is bigger than the new string, it will NOT be resized.
* @param newVal the value to set this buffer to.
*/
inline void set(const char *newVal, unsigned long maxSize = 0) {
if (newVal) {
unsigned long len = strlen(newVal) + 1;
if (maxSize && maxSize < (len-1)) len = maxSize + 1;
assureSize(len);
memcpy(buf, newVal, len);
end = buf + (len - 1);
}
else {
assureSize(1);
end = buf;
}
*end = 0;
}
/**
* SWBuf::setFormatted - sets this buf to a formatted string.
* If the allocated memory is bigger than the new string, it will NOT be resized.
*
* @warning This function can only write at most JUNKBUFSIZE to the string per call.
*
* @warning This function is not very fast. For loops with many iterations you might
* consider replacing it by other calls.
* Example:
* \code SWBuf buf.setFormatted("<%s>", stringVal); \endcode
* should be replaced by:
* \code buf.set("<"); buf.append(stringVal); buf.append(">"); \endcode
* This will produce much faster results.
*
* @param format The format string. Same syntax as printf, for example.
* @param ... Add all arguments here.
*/
SWBuf &setFormatted(const char *format, ...);
SWBuf &setFormattedVA(const char *format, va_list argptr);
/**
* SWBuf::setSize - Size this buffer to a specific length.
* @param len The new size of the buffer. One byte for the null will be added.
*/
inline void setSize(unsigned long len) {
assureSize(len+1);
if ((unsigned)(end - buf) < len)
memset(end, fillByte, (size_t)len - (end-buf));
end = buf + len;
*end = 0;
}
/**
* SWBuf::resize - Resize this buffer to a specific length.
* @param len The new size of the buffer. One byte for the null will be added.
*/
inline void resize(unsigned long len) { setSize(len); }
/**
* SWBuf::append - appends a value to the current value of this SWBuf.
* If the allocated memory is not enough, it will be resized accordingly.
* @param str Append this.
* @param max Append only max chars.
*/
inline SWBuf &append(const char *str, long max = -1) {
// if (!str) //A null string was passed
// return;
if (max < 0)
max = strlen(str);
assureMore(max+1);
for (;((max)&&(*str));max--)
*end++ = *str++;
*end = 0;
return *this;
}
/**
* SWBuf::append - appends a value to the current value of this SWBuf
* If the allocated memory is not enough, it will be resized accordingly.
* @param str Append this.
* @param max Append only max chars.
*/
inline SWBuf &append(const SWBuf &str, long max = -1) { return append(str.c_str(), max); }
/**
* SWBuf::append - appends a value to the current value of this SWBuf
* If the allocated memory is not enough, it will be resized accordingly.
* @param ch Append this.
*/
inline SWBuf &append(char ch) {
assureMore(1);
*end++ = ch;
*end = 0;
return *this;
}
inline SWBuf &append(const unsigned char ch) {
assureMore(1);
*end++ = ch;
*end = 0;
return *this;
}
/**
* SWBuf::append - appends a wide character value to the current value of this SWBuf
* If the allocated memory is not enough, it will be resized accordingly.
* NOTE: This is dangerous, as wchar_t is currently different sizes on different
* platforms (stupid windoze; stupid c++ spec for not mandating 4byte).
* @param wch Append this.
*/
inline SWBuf &append(wchar_t wch) {
assureMore(sizeof(wchar_t)*2);
for (unsigned int i = 0; i < sizeof(wchar_t); i++) *end++ = ((char *)&wch)[i];
for (unsigned int i = 0; i < sizeof(wchar_t); i++) end[i] = 0;
return *this;
}
/**
* SWBuf::appendFormatted - appends formatted strings to the current value of this SWBuf.
*
* @warning This function can only write at most JUNKBUFSIZE to the string per call.
*
* @warning This function is not very fast. For loops with many iterations you might
* consider replacing it by other calls.
* Example:
* \code SWBuf buf.appendFormatted("<%s>", stringVal); \endcode
* should be replaced by:
* \code buf.append("<"); buf.append(stringVal); buf.append(">"); \endcode
* This will produce much faster results.
*
* @param format The format string. Same syntax as printf, for example.
* @param ... Add all arguments here.
*/
SWBuf &appendFormatted(const char *format, ...);
/**
* SWBuf::insert - inserts the given string at position into this string
* @param pos The position where to insert. pos=0 inserts at the beginning, pos=1 after the first char, etc. Using pos=length() is the same as calling append(s)
* @param str string to be inserted
* @param start start from this position in the string to be inserted
* @param max Insert only max chars.
*/
void insert(unsigned long pos, const char* str, unsigned long start = 0, signed long max = -1);
/**
* SWBuf::insert - inserts the given string at position into this string
* @param pos The position where to insert. pos=0 inserts at the beginning, pos=1 after the first char, etc. Using pos=length() is the same as calling append(s)
* @param str string to be inserted
* @param start start from this position in the string to be inserted
* @param max Insert only max chars.
*/
inline void insert(unsigned long pos, const SWBuf &str, unsigned long start = 0, signed long max = -1) {
insert(pos, str.c_str(), start, max);
};
/**
* SWBuf::insert - inserts the given character at position into this string
* @param pos The position where to insert. pos=0 inserts at the beginning, pos=1 after the first char, etc. Using pos=length() is the same as calling append(s)
* @param c Insert this.
*/
inline void insert(unsigned long pos, char c) {
insert(pos, SWBuf(c));
}
/** SWBuf::getRawData
*
* @warning be careful! Probably setSize needs to be called in conjunction before and maybe after
*
* @return Pointer to the allocated memory of the SWBuf.
*/
inline char *getRawData() { return buf; }
inline operator const char *() const { return c_str(); }
inline char &operator[](unsigned long pos) { return charAt(pos); }
inline char &operator[](long pos) { return charAt((unsigned long)pos); }
inline char &operator[](unsigned int pos) { return charAt((unsigned long)pos); }
inline char &operator[](int pos) { return charAt((unsigned long)pos); }
inline const char &operator[](unsigned long pos) const { return charAt(pos); }
inline const char &operator[](long pos) const { return charAt((unsigned long)pos); }
inline const char &operator[](unsigned int pos) const { return charAt((unsigned long)pos); }
inline const char &operator[](int pos) const { return charAt((unsigned long)pos); }
inline SWBuf &operator =(const char *newVal) { set(newVal); return *this; }
inline SWBuf &operator =(const SWBuf &other) { set(other); return *this; }
inline SWBuf &operator +=(const char *str) { return append(str); }
inline SWBuf &operator +=(char ch) { return append(ch); }
/**
* Decrease the buffer size, discarding the last characters
* @param len how many bytes to decrease the buffer size
*/
inline SWBuf &operator -=(unsigned long len) { setSize(length()-len); return *this; }
/**
* Decrease the buffer size, discarding the last character
*/
inline SWBuf &operator --(int) { operator -=(1); return *this; }
/**
* Shift the buffer to the left, discarding the first bytes, decreasing the buffer size
*/
inline SWBuf &operator <<(unsigned long n) { if (n && length()) { n = (n<=length())?n:(length()-1); memmove(buf, buf+n, length()-n); (*this)-=n; } return *this; }
/**
* Shift the buffer to the right, increasing the buffer size
*/
inline SWBuf &operator >>(unsigned long n) { setSize(length()+n); memmove(buf+n, buf, length()-n); return *this; }
/**
* Concatenate another buffer to the end of this buffer
*/
inline SWBuf operator +(const SWBuf &other) const {
SWBuf retVal = buf;
retVal += other;
return retVal;
}
/**
* Concatenate a byte to the end of this buffer
*/
inline SWBuf operator +(char ch) const { return (*this) + SWBuf(ch); }
/**
* Trim whitespace from the start of this buffer, shifting the buffer left as necessary
*/
inline SWBuf &trimStart() { while (size() && (strchr("\t\r\n ", *(buf)))) *this << 1; return *this; }
/**
* Trim whitespace from the end of this buffer, decreasing the size as necessary
*/
inline SWBuf &trimEnd() { while (size() && (strchr("\t\r\n ", *(end-1)))) setSize(size()-1); return *this; }
/**
* Trim whitespace from the start and end of this buffer, shifting left and decreasing size as necessary
*/
inline SWBuf &trim() { trimStart(); return trimEnd(); }
/**
* Strip a prefix from this buffer up to a separator byte.
* Returns the prefix and modifies this buffer, shifting left to remove prefix
* @param separator to use (e.g. ':')
* @param endOfStringAsSeparator - also count end of string as separator.
* this is useful for tokenizing entire string like:
* x|y|z
* if true it will also include 'z'.
*
* @return prefix if separator character found; otherwise, null and leaves buffer unmodified
*/
inline const char *stripPrefix(char separator, bool endOfStringAsSeparator = false) { const char *m = strchr(buf, separator); if (!m && endOfStringAsSeparator) { if (*buf) { operator >>(1); *buf=0; end = buf; return buf + 1;} else return buf; } if (m) { int len = (int)(m-buf); char *hold = new char[len]; memcpy(hold, buf, len); *this << (len+1); memcpy(end+1, hold, len); delete [] hold; end[len+1] = 0; } return (m) ? end+1 : 0; } // safe. we know we don't actually realloc and shrink buffer when shifting, so we can place our return val at end.
// this could be nicer, like replacing a contiguous series of target bytes with single replacement; offering replacement const char *
/**
* Replace with a new byte value all occurances in this buffer of any byte value specified in a set
* @param targets a set of bytes, any of which will be replaced
* @param newByte value to use as replacement or 0 to remove matching byte.
*
* Example: replaceBytes("abc", 'z'); // replaces all occurances of 'a', 'b', and 'c' with 'z'
*/
inline SWBuf &replaceBytes(const char *targets, char newByte) {
for (unsigned int i = 0; (i < size()); i++) {
if (strchr(targets, buf[i])) {
if (newByte) buf[i] = newByte;
// delete byte
else {
if (i < (size()-1)) {
memmove(buf+i, buf+i+1, length()-i-1);
}
(*this)-=1;
}
}
}
return *this;
}
/**
* @return returns true if this buffer starts with the specified prefix
*/
inline bool startsWith(const SWBuf &prefix) const { return !strncmp(c_str(), prefix.c_str(), prefix.size()); }
/**
* Converts this SWBuf to uppercase
* &return this
*/
SWBuf &toUpper();
/**
* Converts this SWBuf to lowercase
* &return this
*/
SWBuf &toLower();
/**
* @return returns true if this buffer ends with the specified postfix
*/
inline bool endsWith(const SWBuf &postfix) const { return (size() >= postfix.size())?!strncmp(end-postfix.size(), postfix.c_str(), postfix.size()):false; }
/**
* @return returns the index of a substring if it is found in this buffer; otherwise, returns < 0
*/
inline long indexOf(const SWBuf &needle) const { const char *ch = strstr(buf, needle.c_str()); return (ch) ? ch - buf : -1; }
inline int compare(const SWBuf &other) const { return strcmp(c_str(), other.c_str()); }
inline bool operator ==(const SWBuf &other) const { return compare(other) == 0; }
inline bool operator !=(const SWBuf &other) const { return compare(other) != 0; }
inline bool operator > (const SWBuf &other) const { return compare(other) > 0; }
inline bool operator < (const SWBuf &other) const { return compare(other) < 0; }
inline bool operator <=(const SWBuf &other) const { return compare(other) <= 0; }
inline bool operator >=(const SWBuf &other) const { return compare(other) >= 0; }
/**
* @return returns true if this buffer starts with the specified prefix
*/
inline bool startsWith(const char *prefix) const { return !strncmp(c_str(), prefix, strlen(prefix)); }
/**
* @return returns true if this buffer ends with the specified postfix
*/
inline bool endsWith(const char *postfix) const { unsigned int psize = (unsigned int)strlen(postfix); return (size() >= psize)?!strncmp(end-psize, postfix, psize):false; }
// be sure we've been given a valid pointer to compare. If not, we return !=; specifically less-than, for lack of better options
inline int compare(const char *other) const { return (other?strcmp(c_str(), other):-1); }
inline bool operator ==(const char *other) const { return compare(other) == 0; }
inline bool operator !=(const char *other) const { return compare(other) != 0; }
inline bool operator > (const char *other) const { return other && compare(other) > 0; }
inline bool operator < (const char *other) const { return other && compare(other) < 0; }
inline bool operator <=(const char *other) const { return other && compare(other) <= 0; }
inline bool operator >=(const char *other) const { return other && compare(other) >= 0; }
};
SWORD_NAMESPACE_END
#endif
|