34 #ifndef _QORE_QORESTRINGNODE_H 36 #define _QORE_QORESTRINGNODE_H 38 #include <qore/AbstractQoreNode.h> 39 #include <qore/QoreString.h> 56 DLLLOCAL QoreStringNode& operator=(
const QoreStringNode&);
58 DLLLOCAL
virtual bool getAsBoolImpl()
const;
59 DLLLOCAL
virtual int getAsIntImpl()
const;
60 DLLLOCAL
virtual int64 getAsBigIntImpl()
const;
61 DLLLOCAL
virtual double getAsFloatImpl()
const;
210 DLLEXPORT QoreStringNode*
reverse()
const;
213 DLLEXPORT QoreStringNode* copy()
const;
278 DLLLOCAL
virtual void parseInit(
QoreValue& val, LocalVar* oflag,
int pflag,
int& lvids,
const QoreTypeInfo*& typeInfo);
284 DLLLOCAL QoreStringNodeMaker(
const QoreStringNodeMaker& str);
287 DLLLOCAL QoreStringNodeMaker& operator=(
const QoreStringNodeMaker&);
290 DLLEXPORT QoreStringNodeMaker(
const char* fmt, ...);
311 DLLLOCAL QoreStringValueHelper& operator=(
const QoreStringValueHelper&);
314 DLLLOCAL
void*
operator new(size_t);
321 DLLEXPORT QoreStringValueHelper(
const QoreValue n);
339 DLLLOCAL ~QoreStringValueHelper() {
388 DLLLOCAL
bool is_temp()
const {
410 DLLLOCAL QoreStringNodeValueHelper& operator=(
const QoreStringNodeValueHelper&);
413 DLLLOCAL
void*
operator new(size_t);
419 DLLEXPORT QoreStringNodeValueHelper(
const QoreValue n);
437 DLLEXPORT ~QoreStringNodeValueHelper();
459 DLLLOCAL
bool is_temp()
const {
464 #include <qore/ReferenceHolder.h> 493 DLLLOCAL QoreNodeAsStringHelper& operator=(
const QoreNodeAsStringHelper&);
496 DLLLOCAL
void*
operator new(size_t);
506 DLLEXPORT ~QoreNodeAsStringHelper();
DLLEXPORT int getAsString(QoreString &str, int format_offset, ExceptionSink *xsink) const
concatenates the string data in double quotes to an existing QoreString
virtual DLLEXPORT ~QoreStringNode()
destructor only called when references = 0, use deref() instead
virtual DLLLOCAL void parseInit(QoreValue &val, LocalVar *oflag, int pflag, int &lvids, const QoreTypeInfo *&typeInfo)
returns the type information
defines string encoding functions in Qore
Definition: QoreEncoding.h:83
DLLEXPORT QoreStringNode * reverse() const
return a QoreStringNode with the characters reversed
DLLEXPORT QoreStringNode * stringRefSelf() const
references the object and returns a non-const pointer to "this"
static DLLEXPORT QoreStringNode * createAndConvertEncoding(const char *str, const QoreEncoding *from, const QoreEncoding *to, ExceptionSink *xsink)
creates a new QoreStringNode from a string and converts its encoding
DLLEXPORT const QoreEncoding * QCS_DEFAULT
the default encoding for the Qore library
safely manages the return values to AbstractQoreNode::getAsString(), stack only, cannot be dynamicall...
Definition: QoreStringNode.h:484
Holds absolute and relative date/time values in Qore with precision to the microsecond.
Definition: DateTime.h:93
DLLEXPORT char * giveBuffer()
returns the character buffer and leaves the QoreString empty, the caller owns the memory returned (mu...
The base class for all value and parse types in Qore expression trees.
Definition: AbstractQoreNode.h:54
size_t qore_size_t
used for sizes (same range as a pointer)
Definition: common.h:73
Qore's string type supported by the QoreEncoding class.
Definition: QoreString.h:81
Qore's string value type, reference counted, dynamically-allocated only.
Definition: QoreStringNode.h:50
DLLEXPORT QoreString * copy() const
returns an exact copy of the string
DLLEXPORT const char * getBuffer() const
returns the string's buffer; this data should not be changed
DLLEXPORT QoreStringNode * substr(qore_offset_t offset, ExceptionSink *xsink) const
returns a new string consisting of all the characters from the current string starting with character...
virtual DLLEXPORT const char * getTypeName() const
returns the type name as a c string
this class is used to safely manage calls to AbstractQoreNode::getStringRepresentation() when a simpl...
Definition: QoreStringNode.h:302
DLLEXPORT QoreStringNode()
creates an empty string and assigns the default encoding QCS_DEFAULT
DLLEXPORT QoreStringNode * convertEncoding(const QoreEncoding *nccs, ExceptionSink *xsink) const
converts the encoding of the string to the specified encoding, returns 0 if an error occurs...
The main value class in Qore, designed to be passed by value.
Definition: QoreValue.h:262
const qore_type_t NT_STRING
type value for QoreStringNode
Definition: node_types.h:45
DLLEXPORT QoreStringNode * extract(qore_offset_t offset, ExceptionSink *xsink)
removes characters from the string starting at position "offset" and returns a string of the characte...
container for holding Qore-language exception information and also for registering a "thread_exit" ca...
Definition: ExceptionSink.h:46
virtual DLLEXPORT bool is_equal_hard(const AbstractQoreNode *v, ExceptionSink *xsink) const
tests for equality ("deep compare" including all contained values for container types) without type o...
virtual DLLEXPORT QoreString * getStringRepresentation(bool &del) const
returns the current string and sets del to false
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
intptr_t qore_offset_t
used for offsets that could be negative
Definition: common.h:76
this class is used to safely manage calls to AbstractQoreNode::getStringRepresentation() when a QoreS...
Definition: QoreStringNode.h:401
static DLLLOCAL qore_type_t getStaticTypeCode()
returns the type code (useful in templates)
Definition: QoreStringNode.h:271
int16_t qore_type_t
used to identify unique Qore data and parse types (descendents of AbstractQoreNode) ...
Definition: common.h:70
base class for simple value types
Definition: AbstractQoreNode.h:366
virtual DLLEXPORT bool is_equal_soft(const AbstractQoreNode *v, ExceptionSink *xsink) const
tests for equality ("deep compare" including all contained values for container types) with possible ...
virtual DLLEXPORT DateTime * getDateTimeRepresentation(bool &del) const
returns the DateTime representation of this string
DLLEXPORT QoreStringNode * parseBase64ToString(ExceptionSink *xsink) const
parses the string as a base64-encoded binary and returns the decoded value as a QoreStringNode ...
static DLLLOCAL const char * getStaticTypeName()
returns the type name (useful in templates)
Definition: QoreStringNode.h:266
virtual DLLEXPORT AbstractQoreNode * realCopy() const
returns a copy of the object, the caller owns the reference count
holds arbitrary binary data
Definition: BinaryNode.h:41
DLLEXPORT qore_size_t length() const
returns the number of characters (not bytes) in the string