34 #ifndef _QORE_QORESTRING_H 
   36 #define _QORE_QORESTRING_H 
   49 #define CE_HTML (1 << 0) 
   51 #define CE_XML  (1 << 1) 
   53 #define CE_NONASCII (1 << 2) 
   55 #define CE_XHTML (CE_HTML | CE_XML) 
   57 #define CE_ALL (CE_XHTML | CE_NONASCII) 
   65 #define CD_HTML (1 << 0) 
   67 #define CD_XML  (1 << 1) 
   69 #define CD_NUM_REF (1 << 2) 
   71 #define CD_XHTML (CD_HTML | CD_XML) 
   73 #define CD_ALL (CD_XHTML | CD_NUM_REF) 
   81 #define QS_RE_GLOBAL    (1 << 0) 
   82 #define QS_RE_CASELESS  (1 << 1) 
   83 #define QS_RE_DOTALL    (1 << 2) 
   84 #define QS_RE_EXTENDED  (1 << 3) 
   85 #define QS_RE_MULTILINE (1 << 4) 
   94     friend hashdecl qore_string_private;
 
  162     DLLEXPORT 
void set(
const char* str, 
size_t len);
 
  174     DLLEXPORT 
void set(
char* nbuf, 
size_t nlen, 
size_t nallocated, 
const QoreEncoding* enc);
 
  264     DLLEXPORT 
void concatEscape(
const char* str, 
char c, 
char esc_char = 
'\\');
 
  373     DLLEXPORT 
void concat(
const std::string& str);
 
  411     DLLEXPORT 
bool equal(
const char* str) 
const;
 
  468     DLLEXPORT 
bool endsWith(
const std::string& str) 
const;
 
  486     DLLEXPORT 
int vsprintf(
const char* fmt, va_list args);
 
  491     DLLEXPORT 
void take(
char* str);
 
  533     DLLEXPORT 
void replaceAll(
const char* old_str, 
const char* new_str);
 
  538     DLLEXPORT 
void replace(
size_t offset, 
size_t len, 
const char* str);
 
  700     DLLEXPORT 
const char* 
c_str() 
const;
 
  714     DLLEXPORT 
int insertch(
char c, 
size_t pos, 
unsigned times);
 
  722     DLLEXPORT 
int insert(
const char* str, 
size_t pos);
 
  725     DLLEXPORT 
void addch(
char c, 
unsigned times);
 
  769     DLLEXPORT 
void trim(
const char* chars = 0);
 
  875         return !(*
this == other);
 
  880         return !(*
this == other);
 
  885         return !(*
this == other);
 
 1002     DLLLOCAL 
QoreString(
struct qore_string_private* p);
 
 1006     hashdecl qore_string_private* 
priv = 
nullptr;
 
 1010     DLLLOCAL 
void concat_reverse(
QoreString* targ) 
const;
 
 1012     DLLLOCAL 
int snprintf(
size_t size, 
const char* fmt, ...);
 
 1013     DLLLOCAL 
int vsnprintf(
size_t size, 
const char* fmt, va_list args);
 
 1023     DLLEXPORT QoreStringMaker(
const char* fmt, ...);
 
 1028     DLLEXPORT QoreStringMaker(
const QoreEncoding* enc, 
const char* fmt, ...);
 
 1031     DLLLOCAL QoreStringMaker(
const QoreStringMaker& str) = 
delete;
 
 1032     DLLLOCAL QoreStringMaker& operator=(
const QoreStringMaker&) = 
delete;
 
 1072     DLLLOCAL 
operator bool()
 const { 
return str != 
nullptr; }
 
 1086     void* 
operator new(size_t) = 
delete;
 
 1113         set_intern(&s, qe, xsink);
 
 1123         set_intern(s, qe, xsink);
 
 1148         set_intern(s, qe, xsink);
 
 1149         return str != 
nullptr;
 
 1175     DLLLOCAL 
operator bool()
 const { 
return str != 0; }
 
 1200     DLLLOCAL 
void* 
operator new(size_t) = 
delete;
 
 1203     DLLLOCAL 
void discard_intern() {
 
 1228 DLLEXPORT 
size_t qore_get_unicode_character_width(
int ucs);
 
DLLEXPORT const QoreEncoding * QCS_DEFAULT
the default encoding for the Qore library
 
holds arbitrary binary data
Definition: BinaryNode.h:41
 
Holds absolute and relative date/time values in Qore with precision to the microsecond.
Definition: DateTime.h:93
 
container for holding Qore-language exception information and also for registering a "thread_exit" ca...
Definition: ExceptionSink.h:48
 
defines string encoding functions in Qore
Definition: QoreEncoding.h:83
 
Qore's string type supported by the QoreEncoding class.
Definition: QoreString.h:93
 
DLLEXPORT int concatEncodeUriRequest(ExceptionSink *xsink, const QoreString &url)
concatenates a URI-encoded version of the c-string passed
 
DLLEXPORT void set(const char *str, const QoreEncoding *new_qorecharset=QCS_DEFAULT)
copies the c-string passed and sets the value of the string and its encoding
 
DLLEXPORT size_t capacity() const
returns number of bytes allocated for the string's buffer, capacity is always >= size
 
DLLEXPORT void reset()
reset string to zero length; memory is deallocated; string encoding is reset to QCS_DEFAULT
 
DLLEXPORT void takeAndTerminate(char *str, size_t size)
takes ownership of the character pointer passed and assigns it to the string (frees memory previously...
 
DLLEXPORT size_t strlen() const
returns number of bytes in the string (not including the null pointer)
 
DLLEXPORT void concatISO8601DateTime(const DateTime *d)
concatenates a DateTime value to a string in the format YYYYMMDDTHH:mm:SS <- where the "T" is a liter...
 
DLLEXPORT void splice(qore_offset_t offset, ExceptionSink *xsink)
removes characters from the string starting at position "offset"
 
DLLEXPORT void trim_single_leading(char c)
remove a single leading character if present
 
DLLEXPORT void concatHex(const char *buf, size_t size)
concatenates hexidecimal digits corresponding to the binary data passed up to byte "len"
 
DLLEXPORT int insertch(char c, size_t pos, unsigned times)
insert a character at a certain position in the string a number of times
 
DLLEXPORT void trim_leading(const char *chars=0)
remove leading whitespace or other characters
 
DLLEXPORT void take(char *str)
takes ownership of the character pointer passed and assigns it to the string (frees memory previously...
 
DLLEXPORT int compare(const QoreString *str) const
compares two strings without converting encodings (if the encodings do not match then "this" is deeme...
 
DLLEXPORT int operator[](qore_offset_t pos) const
returns the byte (not character) at the given location; if the location is invalid,...
 
DLLEXPORT void clear()
reset string to zero length; memory is not deallocated; string encoding does not change
 
DLLEXPORT unsigned int getUnicodePoint(qore_offset_t offset, ExceptionSink *xsink) const
return Unicode code point for the single character at the given character (not byte) offset in the st...
 
DLLEXPORT bool equalPartial(const QoreString &str) const
returns true if the beginning of the current string matches the argument string, false if not,...
 
DLLEXPORT bool isDataAscii() const
returns true if the string is empty or has no characters with the high bit set (ie all characters < 1...
 
DLLEXPORT bool equalPartialSoft(const QoreString &str, ExceptionSink *xsink) const
returns true if the beginning of the current string matches the argument string, false if not,...
 
DLLEXPORT qore_offset_t index(const QoreString &needle, qore_offset_t pos, ExceptionSink *xsink) const
returns the character position of a substring within the string or -1 if not found
 
DLLEXPORT void concatUTF8FromUnicode(unsigned code)
append a UTF-8 character sequence from a unicode code point, assumes the string is tagged with QCS_UT...
 
DLLEXPORT void terminate(size_t size)
terminates the string at byte position "size", the string is reallocated if necessary
 
DLLEXPORT void allocate(unsigned requested_size)
Ensure the internal buffer has at least expected size in bytes.
 
DLLEXPORT void replaceChar(size_t offset, char c)
replaces a byte with the byte passed
 
DLLEXPORT int trimTrailing(ExceptionSink *xsink, const QoreString *chars=nullptr)
removes trailing whitespace or other characters
 
DLLEXPORT int64 toBigInt() const
returns the value of the string as an int64
 
DLLEXPORT size_t getCharWidth(ExceptionSink *xsink) const
returns the character width of the string
 
DLLEXPORT int regexSubstInPlace(QoreString &match, QoreString &subst, int opts, ExceptionSink *xsink) const
performs perl5-compatible regular expression substitution to the current string
 
DLLEXPORT void reserve(size_t size)
ensures that at least the given size is available in the string; the string's contents are not affect...
 
DLLEXPORT qore_offset_t brindex(const QoreString &needle, qore_offset_t pos=-1) const
returns the byte position of a substring within the string searching in reverse from a given position...
 
DLLEXPORT void concat(const QoreString *str, ExceptionSink *xsink)
concatenates a string and converts encodings if necessary
 
DLLEXPORT QoreString * substr(qore_offset_t offset, ExceptionSink *xsink) const
returns a new string consisting of all the characters from the current string starting with character...
 
DLLEXPORT size_t length() const
returns the number of characters (not bytes) in the string
 
DLLEXPORT qore_offset_t find(char c, qore_offset_t pos=0) const
returns the byte position of a character (byte) within the string or -1 if not found
 
DLLEXPORT bool endsWith(const char *str) const
returns true if the current string ends with the argument string (bytes)
 
DLLEXPORT void trim_trailing(const char *chars=0)
remove trailing whitespace or other characters
 
DLLEXPORT qore_offset_t findAny(const char *str, qore_offset_t pos=0) const
returns the byte position of any of the given characters (bytes) within the string or -1 if not found
 
DLLEXPORT void concatEscape(const QoreString *str, char c, char esc_char, ExceptionSink *xsink)
concatenates a string and escapes character c with esc_char (converts encodings if necessary)
 
DLLEXPORT bool equalPartialPath(const QoreString &str, ExceptionSink *xsink) const
returns true if the begining of the current string matches the argument string where either both stri...
 
DLLEXPORT void addch(char c, unsigned times)
append a character to the string a number of times
 
DLLEXPORT unsigned int getUnicodePointFromBytePos(size_t offset, unsigned &len, ExceptionSink *xsink) const
return Unicode code point for the given byte offset
 
DLLEXPORT QoreString & operator+=(const char *str)
concatenates the characters to the string; assumes the string to be concatenated is already in the ch...
 
DLLEXPORT int sprintf(const char *fmt,...)
this will concatentate a formatted string to the existing string according to the format string and t...
 
DLLEXPORT qore_offset_t rfindAny(const char *str, qore_offset_t pos=-1) const
returns the last byte position of any of the given characters (bytes) within the string or -1 if not ...
 
DLLEXPORT size_t size() const
returns number of bytes in the string (not including the null pointer)
 
DLLEXPORT qore_offset_t rindex(const QoreString &needle, qore_offset_t pos, ExceptionSink *xsink) const
returns the character position of a substring searching in reverse from a given position or -1 if not...
 
DLLEXPORT QoreString & operator=(const QoreString &other)
assigns the value of one string to another
 
DLLEXPORT int concatDecodeUriRequest(const QoreString &url, ExceptionSink *xsink)
concatenates a URI-decoded version of the c-string passed
 
DLLEXPORT bool startsWith(const char *str) const
returns true if the current string starts with the argument string (bytes)
 
DLLEXPORT int concatEncode(ExceptionSink *xsink, const QoreString &str, unsigned code=CE_XHTML)
concatenates a string and encodes it according to the encoding argument passed
 
DLLEXPORT QoreString()
creates an empty string and assigns the default encoding QCS_DEFAULT
 
DLLEXPORT qore_offset_t bindex(const QoreString &needle, qore_offset_t pos=0) const
returns the byte position of a substring within the string or -1 if not found
 
DLLEXPORT QoreString * copy() const
returns an exact copy of the string
 
DLLEXPORT void concatAndHTMLDecode(const QoreString *str)
concatenates HTML-decoded version of the c-string passed
 
DLLEXPORT char * giveBuffer()
returns the character buffer and leaves the QoreString empty, the caller owns the memory returned (mu...
 
DLLEXPORT void trim_single_trailing(char c)
remove a single trailing character if present
 
DLLEXPORT void replace(size_t offset, size_t len, const char *str)
replaces bytes with the string passed
 
DLLEXPORT qore_offset_t getByteOffset(size_t i, ExceptionSink *xsink) const
returns the byte position of the given character position in the string or -1 if the string does not ...
 
DLLEXPORT int compareSoft(const QoreString *str, ExceptionSink *xsink) const
compares the string with another string, performing character set encoding conversion if necessary
 
DLLEXPORT bool equal(const QoreString &str) const
returns true if the strings are equal, false if not, if the character encodings are different,...
 
DLLEXPORT QoreString * reverse() const
return a Qorestring with the characters reversed
 
DLLEXPORT void concatDecodeUrl(const char *url)
concatenates a URL-decoded version of the c-string passed
 
DLLEXPORT void concatBase64(const char *buf, size_t size)
concatenates the base64-encoded version of the binary data passed
 
DLLEXPORT size_t chomp()
removes a single \n\r or \n from the end of the string and returns the number of characters removed
 
DLLEXPORT void trim(const char *chars=0)
remove leading and trailing whitespace or other characters
 
DLLEXPORT void toupr()
converts the string to upper-case in place
 
DLLLOCAL bool operator!=(const QoreString &other) const
returns true if the other string is not equal to this string (encodings also must be equal)
Definition: QoreString.h:874
 
DLLEXPORT BinaryNode * parseHex(ExceptionSink *xsink) const
parses the current string data as hexadecimal-encoded data and returns it as a BinaryNode pointer (ca...
 
DLLEXPORT qore_offset_t rfind(char c, qore_offset_t pos=-1) const
returns the last byte position of a character (byte) within the string or -1 if not found
 
DLLEXPORT bool operator==(const QoreString &other) const
returns true if the other string is equal to this string (encodings also must be equal)
 
DLLEXPORT void setEncoding(const QoreEncoding *new_encoding)
changes the tagged encoding to the given encoding; does not affect the actual string buffer,...
 
DLLEXPORT bool empty() const
returns true if the string is empty, false if not
 
DLLEXPORT unsigned int getUnicodePointFromUTF8(qore_offset_t offset=0) const
return Unicode code point for character offset, string must be UTF-8
 
DLLEXPORT BinaryNode * parseBase64(ExceptionSink *xsink) const
parses the current string data as base64-encoded data and returns it as a BinaryNode pointer (caller ...
 
DLLEXPORT QoreString * extract(qore_offset_t offset, ExceptionSink *xsink)
removes characters from the string starting at position "offset" and returns a string of the characte...
 
DLLEXPORT int vsprintf(const char *fmt, va_list args)
this will concatentate a formatted string to the existing string according to the format string and t...
 
DLLEXPORT void prepend(const char *str)
prepends the string given to the string, assumes character encoding is the same as the string's
 
DLLEXPORT int insert(const char *str, size_t pos)
inserts a character string at a certain position in the string
 
DLLEXPORT int concatEncodeUrl(ExceptionSink *xsink, const QoreString &url, bool encode_all=false)
concatenates a URL-encoded version of the c-string passed
 
DLLEXPORT void concatAndHTMLEncode(const char *str)
concatenates HTML-encoded version of the c-string passed
 
DLLEXPORT bool isDataPrintableAscii() const
returns true if the string is empty or only contains printable non-control ASCII characters (ie all c...
 
DLLEXPORT int trimLeading(ExceptionSink *xsink, const QoreString *chars=nullptr)
removes leading whitespace or other characters
 
DLLEXPORT int concatDecode(ExceptionSink *xsink, const QoreString &str, unsigned code=CD_ALL)
concatenates a string and decodes HTML, XML, and numeric character references as per the supplied arg...
 
hashdecl qore_string_private * priv
the private implementation of QoreString
Definition: QoreString.h:1006
 
DLLEXPORT void replaceAll(const char *old_str, const char *new_str)
replaces all occurences of the first string with the second string
 
DLLEXPORT QoreString * parseBase64ToString(ExceptionSink *xsink) const
parses the current string data as base64-encoded data and returns it as a QoreString pointer owned by...
 
DLLEXPORT const char * c_str() const
returns the string's buffer; this data should not be changed
 
DLLEXPORT int concatUnicode(unsigned code, ExceptionSink *xsink)
append a character sequence from a unicode code point (returns 0 for OK, -1 for exception)
 
DLLEXPORT const QoreEncoding * getEncoding() const
returns the encoding for the string
 
DLLEXPORT bool equalSoft(const QoreString &str, ExceptionSink *xsink) const
returns true if the strings are equal, false if not, if the character encodings are different,...
 
DLLEXPORT void tolwr()
converts the string to lower-case in place
 
DLLEXPORT const char * getBuffer() const
returns the string's buffer; this data should not be changed
 
DLLEXPORT QoreString * convertEncoding(const QoreEncoding *nccs, ExceptionSink *xsink) const
converts the encoding of the string to the specified encoding, returns 0 if an error occurs,...
 
DLLEXPORT QoreString * regexSubst(QoreString &match, QoreString &subst, int opts, ExceptionSink *xsink) const
performs perl5-compatible regular expression substitution
 
DLLEXPORT ~QoreString()
frees any memory allocated by the string
 
use this class to manage strings where the character encoding must be specified and may be different ...
Definition: QoreString.h:1104
 
DLLLOCAL ~TempEncodingHelper()
deletes any temporary string being managed by the object
Definition: QoreString.h:1131
 
DLLLOCAL char * giveBuffer()
returns a char pointer of the string, the caller owns the pointer returned (it must be manually freed...
Definition: QoreString.h:1181
 
DLLEXPORT void removeBom()
remove any leading byte order marker (BOM) from UTF-16* strings
 
DLLLOCAL const QoreString * operator->()
returns the string being managed
Definition: QoreString.h:1166
 
DLLLOCAL TempEncodingHelper()
creates an empty TempEncodingHelperObject that may be initialized with TempEncodingHelper::set() late...
Definition: QoreString.h:1127
 
DLLLOCAL void makeTemp()
ensures that the object is holding a temporary value
Definition: QoreString.h:1158
 
DLLLOCAL int set(const QoreString *s, const QoreEncoding *qe, ExceptionSink *xsink)
discards any current state and sets and converts (if necessary) a new string to the desired encoding
Definition: QoreString.h:1145
 
DLLLOCAL const QoreString * operator*()
returns the string being managed
Definition: QoreString.h:1169
 
DLLLOCAL bool is_temp() const
returns true if a temporary string is being managed
Definition: QoreString.h:1153
 
class used to hold a possibly temporary QoreString pointer, stack only, cannot be dynamically allocat...
Definition: QoreString.h:1045
 
DLLLOCAL QoreString * operator*()
returns the QoreString pointer being managed
Definition: QoreString.h:1069
 
DLLLOCAL TempString()
populates the object with a new QoreString that this object will manage
Definition: QoreString.h:1048
 
DLLLOCAL QoreString * release()
releases the QoreString pointer being managed and sets the internal pointer to 0
Definition: QoreString.h:1075
 
DLLLOCAL QoreString * operator->()
returns the QoreString pointer being managed
Definition: QoreString.h:1066
 
DLLLOCAL ~TempString()
deletes the QoreString pointer being managed
Definition: QoreString.h:1061
 
intptr_t qore_offset_t
used for offsets that could be negative
Definition: common.h:76
 
long long int64
64bit integer type, cannot use int64_t here since it breaks the API on some 64-bit systems due to equ...
Definition: common.h:260
 
The main value class in Qore, designed to be passed by value.
Definition: QoreValue.h:275