![]() |
Qore Programming Language 2.0.0
|
the implementation of Qore's object data type, reference counted, dynamically-allocated only More...
#include <QoreObject.h>
Public Member Methods | |
DLLEXPORT | QoreObject (const QoreClass *oc, QoreProgram *p) |
creates an object as belonging to the given class, the QoreProgram object is referenced for the life of the object as well | |
DLLEXPORT | QoreObject (const QoreClass *oc, QoreProgram *p, AbstractPrivateData *data) |
creates an object as belonging to the given class, the QoreProgram object is referenced for the life of the object as well, and the private data is stored with the class ID of the class | |
DLLLOCAL | QoreObject (const QoreClass *oc, QoreProgram *p, QoreHashNode *d) |
creates the object with the initial data passed as "d", used by the copy constructor | |
DLLLOCAL void | addPrivateDataToString (QoreString *str, ExceptionSink *xsink) const |
concatenates info about private data to a string | |
DLLEXPORT bool | compareHard (const QoreObject *obj, ExceptionSink *xsink) const |
tests for equality ("deep compare" including all contained values) with possible type conversion of contained elements (hard compare) | |
DLLEXPORT bool | compareSoft (const QoreObject *obj, ExceptionSink *xsink) const |
tests for equality ("deep compare" including all contained values) with possible type conversion of contained elements (soft compare) | |
DLLEXPORT QoreHashNode * | copyData (ExceptionSink *xsink) const |
retuns all member data of the object (or 0 if there's an exception), caller owns the QoreHashNode reference returned | |
DLLLOCAL void | defaultSystemDestructor (qore_classid_t classID, ExceptionSink *xsink) |
runs the destructor for system objects | |
DLLEXPORT void | deleteMemberValue (const char *key, ExceptionSink *xsink) |
removes a member from the object, if the member's value is an object it is deleted as well (destructor is called) | |
DLLEXPORT void | deleteMemberValue (const QoreString *key, ExceptionSink *xsink) |
removes a member from the object, if the member's value is an object it is deleted as well (destructor is called) | |
DLLEXPORT void | doDelete (ExceptionSink *xsink) |
runs the destructor on the object (if it hasn't already been deleted) | |
DLLLOCAL QoreValue | evalBuiltinMethodWithPrivateData (const QoreMethod &method, const BuiltinNormalMethodVariantBase *meth, const QoreListNode *args, ExceptionSink *xsink) |
called to evaluate a builtin method when private data is available | |
DLLLOCAL void | evalCopyMethodWithPrivateData (const QoreClass &thisclass, const BuiltinCopyVariantBase *meth, QoreObject *self, ExceptionSink *xsink) |
called on the old object (this) to acquire private data, copy method called with pointer to "self" (new copy) | |
DLLEXPORT QoreValue | evalMember (const char *member, ExceptionSink *xsink) |
returns the value of the member with an incremented reference count, or executes the memberGate() method and returns the value | |
DLLEXPORT QoreValue | evalMember (const QoreString *member, ExceptionSink *xsink) |
returns the value of the member with an incremented reference count, or executes the memberGate() method and returns the value | |
DLLEXPORT QoreValue | evalMethod (const char *name, const QoreClass *class_ctx, const QoreListNode *args, ExceptionSink *xsink) |
evaluates the given method with the given class context and arguments passed and returns the return value | |
DLLEXPORT QoreValue | evalMethod (const char *name, const QoreListNode *args, ExceptionSink *xsink) |
evaluates the given method with the arguments passed and returns the return value, caller owns any reference returned | |
DLLEXPORT QoreValue | evalMethod (const QoreMethod &method, const QoreClass *class_ctx, const QoreListNode *args, ExceptionSink *xsink) |
evaluates the given method with the given class context and arguments passed and returns the return value, caller owns the AbstractQoreNode (reference) returned | |
DLLEXPORT QoreValue | evalMethod (const QoreMethod &method, const QoreListNode *args, ExceptionSink *xsink) |
evaluates the given method with the arguments passed and returns the return value, caller owns the AbstractQoreNode (reference) returned | |
DLLEXPORT QoreValue | evalMethod (const QoreString *name, const QoreListNode *args, ExceptionSink *xsink) |
evaluates the given method with the arguments passed and returns the return value, caller owns any reference returned | |
DLLEXPORT QoreValue | evalMethodVariant (const QoreMethod &method, const QoreClass *class_ctx, const QoreExternalMethodVariant *variant, const QoreListNode *args, ExceptionSink *xsink) |
executes a normal object method variant | |
DLLEXPORT QoreValue | evalMethodVariant (const QoreMethod &method, const QoreExternalMethodVariant *variant, const QoreListNode *args, ExceptionSink *xsink) |
executes a normal object method variant | |
DLLLOCAL void | execMemberNotification (const char *member, ExceptionSink *xsink) |
executes the member notification on the object the given member | |
DLLEXPORT void | externalDelete (qore_classid_t key, ExceptionSink *xsink) |
call this function when an object's private data is deleted externally | |
DLLLOCAL AbstractPrivateData * | getAndClearPrivateData (qore_classid_t key, ExceptionSink *xsink) |
retrieves the private data pointer and clears it from the object's private data store, used when executing destructors | |
virtual DLLEXPORT bool | getAsBoolImpl () const |
returns false unless perl-boolean-evaluation is enabled, in which case it returns false only when empty | |
virtual DLLEXPORT QoreString * | getAsString (bool &del, int foff, ExceptionSink *xsink) const |
returns a QoreString giving the verbose string representation of the List (including all contained values) | |
virtual DLLEXPORT int | getAsString (QoreString &str, int foff, ExceptionSink *xsink) const |
concatenate the verbose string representation of the list (including all contained values) to an existing QoreString | |
DLLEXPORT const QoreClass * | getClass () const |
returns a pointer to the QoreClass of this object | |
DLLEXPORT const QoreClass * | getClass (qore_classid_t cid) const |
returns a pointer to a QoreClass object if the class ID passed is a valid class in the hierarchy | |
DLLEXPORT const QoreClass * | getClass (qore_classid_t cid, bool &priv) const |
returns a pointer to the QoreClass object representing the class ID passed if it exists in the class hierarchy and sets a flag indicating if it's privately inherited or not | |
DLLEXPORT ClassAccess | getClassAccess (const QoreClass &cls) const |
returns the accessibility of the class in the object's hierachy or Inaccessible the object does not inherit the class at all | |
DLLEXPORT const char * | getClassName () const |
returns the name of the class | |
DLLEXPORT int64 | getMemberAsBigInt (const char *mem, bool &found, ExceptionSink *xsink) const |
returns the value of the given member as an int64 | |
DLLEXPORT QoreListNode * | getMemberList (ExceptionSink *xsink) const |
returns the list of members, caller owns the list returned | |
DLLEXPORT QoreValue | getMemberValueNoMethod (const char *key, AutoVLock *vl, ExceptionSink *xsink) const |
returns the pointer to the value of the member | |
DLLEXPORT QoreValue | getMemberValueNoMethod (const char *key, const QoreClass *cls, AutoVLock *vl, ExceptionSink *xsink) const |
returns the pointer to the value of the member | |
DLLEXPORT QoreValue | getMemberValueNoMethod (const QoreString *key, AutoVLock *vl, ExceptionSink *xsink) const |
returns the pointer to the value of the member | |
DLLEXPORT QoreProgram * | getProgram () const |
returns the QoreProgram object associated with this object | |
DLLEXPORT QoreValue | getReferencedMemberNoMethod (const char *key, const QoreClass *cls, ExceptionSink *xsink) const |
returns the value of the given member as accessed from the given class; caller owns any reference returned | |
DLLEXPORT QoreValue | getReferencedMemberNoMethod (const char *mem, ExceptionSink *xsink) const |
returns the value of the given member with the reference count incremented, the caller owns any reference returned | |
DLLEXPORT AbstractPrivateData * | getReferencedPrivateData (qore_classid_t key, ExceptionSink *xsink) const |
returns the private data corresponding to the class ID passed with an incremented reference count, caller owns the reference | |
template<class T > | |
DLLLOCAL T * | getReferencedPrivateData (qore_classid_t key, ExceptionSink *xsink) const |
returns the private data corresponding to the class ID passed with an incremented reference count, caller owns the reference | |
DLLEXPORT ReferenceNode * | getReferenceToMember (const char *mem, ExceptionSink *xsink) |
Returns a reference to the given member, if the member is valid and accessible. | |
DLLEXPORT const QoreClass * | getSurfaceClass () const |
returns a pointer to the QoreClass of this object or to the injection target class in case the class was injected | |
DLLEXPORT const char * | getSurfaceClassName () const |
returns the name of the class or to the name of the injection target class in case the class was injected | |
virtual DLLEXPORT const char * | getTypeName () const |
returns the type name as a c string | |
DLLEXPORT bool | hasMember (const char *mem, ExceptionSink *xsink) const |
returns true if the object has the given member (note that the member may not have a value) | |
DLLLOCAL bool | hasMemberNotification () const |
returns true if the class has a memberNotification method | |
virtual DLLEXPORT bool | is_equal_hard (const AbstractQoreNode *v, ExceptionSink *xsink) const |
tests for equality ("deep compare" including all contained values) without type conversions (hard compare) | |
virtual DLLEXPORT bool | is_equal_soft (const AbstractQoreNode *v, ExceptionSink *xsink) const |
tests for equality ("deep compare" including all contained values) with possible type conversion (soft compare) | |
DLLEXPORT bool | isSystemObject () const |
returns true if the object is a system object (created with the system constructor) | |
DLLEXPORT bool | isValid () const |
returns true if the object is valid | |
DLLLOCAL QoreObject * | objectRefSelf () const |
Returns the object with the reference count increased. | |
DLLLOCAL void | obliterate (ExceptionSink *xsink) |
Destroys all members and dereferences all private data structures. | |
virtual DLLEXPORT AbstractQoreNode * | realCopy () const |
performs a the same object with its reference count increased | |
DLLEXPORT void | realDeref (ExceptionSink *xsink) |
decrements the standard reference count of the object for references that cannot be part of a recursive graph | |
DLLEXPORT void | realRef () |
increments the standard reference count of the object for references that cannot be part of a recursive graph | |
DLLEXPORT void | removeMember (const char *key, ExceptionSink *xsink) |
removes a member from the object without explicitly calling destructors; the value is only dereferenced | |
DLLEXPORT void | removeMember (const QoreString *key, ExceptionSink *xsink) |
removes a member from the object without explicitly calling destructors; the value is only dereferenced | |
DLLEXPORT int | setMemberValue (const char *key, const QoreClass *cls, const QoreValue val, ExceptionSink *xsink) |
sets the value of the given member as accessed from the given class | |
DLLEXPORT void | setPrivate (qore_classid_t key, AbstractPrivateData *pd) |
sets private data for the object against the class ID passed, used in C++ functions implementing Qore constructors | |
DLLEXPORT void | setValue (const char *key, QoreValue val, ExceptionSink *xsink) |
sets the value of the given member to the given value | |
DLLEXPORT int | size (ExceptionSink *xsink) const |
returns the number of members of the object | |
DLLEXPORT QoreValue | takeMember (const char *key, ExceptionSink *xsink) |
removes a member from the object without explicitly calling destructors and returns the value removed; the caller owns the reference returned | |
DLLEXPORT QoreValue | takeMember (const QoreString *key, ExceptionSink *xsink) |
removes a member from the object without explicitly calling destructors and returns the value removed; the caller owns the reference returned | |
DLLEXPORT void | tDeref () |
decrements the existence reference count, when it reaches 0 the C++ object ("this") will be deleted | |
DLLEXPORT void | tRef () const |
increments the existence reference count | |
DLLEXPORT AbstractPrivateData * | tryGetReferencedPrivateData (qore_classid_t key, ExceptionSink *xsink) const |
returns the private data corresponding to the class ID passed with an incremented reference count if it exists, caller owns the reference | |
template<class T > | |
DLLLOCAL T * | tryGetReferencedPrivateData (qore_classid_t key, ExceptionSink *xsink) const |
returns the private data corresponding to the class ID passed with an incremented reference count if it exists, caller owns the reference | |
DLLEXPORT bool | validInstanceOf (const QoreClass &qc) const |
returns true if this object is a valid instance of the classid passed | |
DLLEXPORT bool | validInstanceOf (qore_classid_t cid) const |
returns true if this object is a valid instance of the classid passed | |
DLLEXPORT bool | validInstanceOfStrict (const QoreClass &qc) const |
returns true if this object is a valid instance of the classid passed; does not check for injected compatibility | |
![]() | |
DLLEXPORT | AbstractQoreNode (const AbstractQoreNode &v) |
copy constructor | |
DLLEXPORT | AbstractQoreNode (qore_type_t t, bool n_value, bool n_needs_eval, bool n_there_can_be_only_one=false, bool n_custom_reference_handlers=false) |
constructor takes the type | |
DLLEXPORT void | deref (ExceptionSink *xsink) |
decrements the reference count and calls derefImpl() if there_can_be_only_one is false, otherwise does nothing | |
DLLEXPORT QoreValue | eval (bool &needs_deref, ExceptionSink *xsink) const |
optionally evaluates the argument | |
DLLEXPORT QoreValue | eval (ExceptionSink *xsink) const |
evaluates the object and returns a value (or 0) | |
DLLEXPORT int64 | getAsBigInt () const |
returns the 64-bit integer value of the object | |
virtual DLLLOCAL int64 | getAsBigIntImpl () const |
default implementation, returns 0 | |
DLLEXPORT bool | getAsBool () const |
returns the boolean value of the object | |
DLLEXPORT double | getAsFloat () const |
returns the float value of the object | |
virtual DLLLOCAL double | getAsFloatImpl () const |
default implementation, returns 0.0 | |
DLLEXPORT int | getAsInt () const |
returns the integer value of the object | |
virtual DLLLOCAL int | getAsIntImpl () const |
default implementation, returns 0 | |
virtual DLLEXPORT class DateTime * | getDateTimeRepresentation (bool &del) const |
returns the DateTime representation of this type (default implementation: returns ZeroDate, del = false) | |
virtual DLLEXPORT void | getDateTimeRepresentation (DateTime &dt) const |
assigns the date representation of a value to the DateTime reference passed, default implementation does nothing | |
virtual DLLEXPORT QoreString * | getStringRepresentation (bool &del) const |
returns the value of the type converted to a string, default implementation: returns the empty string | |
virtual DLLEXPORT void | getStringRepresentation (QoreString &str) const |
concatentates the value of the type to an existing QoreString reference, default implementation does nothing | |
DLLLOCAL qore_type_t | getType () const |
returns the data type | |
DLLLOCAL bool | is_value () const |
returns true if the node represents a value | |
DLLLOCAL bool | isReferenceCounted () const |
returns true if the object is reference-counted | |
DLLLOCAL bool | needs_eval () const |
returns true if the object needs evaluation to return a value, false if not | |
DLLLOCAL AbstractQoreNode & | operator= (const AbstractQoreNode &) |
this function is not implemented; it is here as a private function in order to prohibit it from being used | |
virtual DLLLOCAL int | parseInit (QoreValue &val, QoreParseContext &parse_context) |
for use by parse types to initialize them for execution during stage 1 parsing | |
DLLEXPORT void | ref () const |
increments the reference count | |
DLLEXPORT AbstractQoreNode * | refSelf () const |
returns "this" with an incremented reference count | |
![]() | |
DLLEXPORT | QoreReferenceCounter () |
Creates the reference counter object. | |
DLLEXPORT | QoreReferenceCounter (const QoreReferenceCounter &old) |
Creates a new object with a reference count of 1. | |
DLLEXPORT | ~QoreReferenceCounter () |
destroys the reference counter object | |
DLLEXPORT bool | is_unique () const |
Returns true if the reference count is 1. | |
DLLEXPORT bool | optRef () |
Make a strong reference only if the object is valid. | |
DLLEXPORT int | reference_count () const |
Gets the reference count. | |
DLLEXPORT bool | ROdereference () const |
Atomically decrements the reference count. | |
DLLEXPORT void | ROreference () const |
Atomically increments the reference count. | |
Static Public Member Methods | |
static DLLEXPORT QoreValue | evalStaticMethod (const QoreMethod &method, const QoreClass *class_ctx, const QoreListNode *args, ExceptionSink *xsink) |
executes a static method with the given class context to access private:internal methods | |
static DLLEXPORT QoreValue | evalStaticMethod (const QoreMethod &method, const QoreListNode *args, ExceptionSink *xsink) |
executes a static method | |
static DLLEXPORT QoreValue | evalStaticMethodVariant (const QoreMethod &method, const QoreClass *class_ctx, const QoreExternalMethodVariant *variant, const QoreListNode *args, ExceptionSink *xsink) |
executes a static method variant with the given class context to access private:internal methods | |
static DLLEXPORT QoreValue | evalStaticMethodVariant (const QoreMethod &method, const QoreExternalMethodVariant *variant, const QoreListNode *args, ExceptionSink *xsink) |
executes a static method variant | |
static DLLLOCAL qore_type_t | getStaticTypeCode () |
returns the type code (useful in templates) | |
static DLLLOCAL const char * | getStaticTypeName () |
returns the type name (useful in templates) | |
Private Member Methods | |
virtual DLLLOCAL | ~QoreObject () |
destructor | |
virtual DLLLOCAL void | customDeref (ExceptionSink *xsink) |
custom dereference handler - with delete | |
virtual DLLLOCAL void | customRef () const |
custom reference handler | |
virtual DLLEXPORT bool | derefImpl (ExceptionSink *xsink) |
runs the destructor if necessary and dereferences all members | |
virtual DLLLOCAL QoreValue | evalImpl (bool &needs_deref, ExceptionSink *xsink) const |
should never be called, does nothing | |
![]() | |
virtual DLLEXPORT | ~AbstractQoreNode () |
default destructor does nothing | |
Additional Inherited Members | |
![]() | |
bool | custom_reference_handlers: 1 |
set to one for objects that need custom reference handlers | |
bool | needs_eval_flag: 1 |
if this is true then the type can be evaluated | |
bool | there_can_be_only_one: 1 |
if this is set to true, then reference counting is turned off for objects of this class | |
qore_type_t | type: 11 |
the type of the object | |
bool | value: 1 |
this is true for values, if false then either the type needs evaluation to produce a value or is a parse expression | |
the implementation of Qore's object data type, reference counted, dynamically-allocated only
objects in Qore are unique unless copied explicitly (similar to Java) Builtin classes (those classes implemented in C++ as opposed to user classes implemented in the Qore language) can have "private data", which is data that maintains the state of the object per that class. QoreObject objects store this data as well as any member data.
objects have two levels of reference counts - one is for the existence of the c++ object (tRefs below) the other is for the scope of the object (the parent QoreReferenceCounter) - when this reaches 0 the object will have its destructor run (if it hasn't already been deleted). Only when the tRef counter reaches 0, meaning that no more pointers are pointing to this object will the object actually be deleted.
DLLEXPORT QoreObject::QoreObject | ( | const QoreClass * | oc, |
QoreProgram * | p | ||
) |
creates an object as belonging to the given class, the QoreProgram object is referenced for the life of the object as well
oc | the class of the object being created |
p | the QoreProgram object where the object "lives", this QoreProgram object is referenced for the life of the object to ensure that it is not deleted while the object still exists (for example, if the object is exported to a parent QoreProgram object) |
DLLEXPORT QoreObject::QoreObject | ( | const QoreClass * | oc, |
QoreProgram * | p, | ||
AbstractPrivateData * | data | ||
) |
creates an object as belonging to the given class, the QoreProgram object is referenced for the life of the object as well, and the private data is stored with the class ID of the class
oc | the class of the object being created |
p | the QoreProgram object where the object "lives", this QoreProgram object is referenced for the life of the object to ensure that it is not deleted while the object still exists (for example, if the object is exported to a parent QoreProgram object) |
data | the private data corresponding to the class ID of the class passed |
DLLLOCAL void QoreObject::addPrivateDataToString | ( | QoreString * | str, |
ExceptionSink * | xsink | ||
) | const |
concatenates info about private data to a string
str | the string to concatenate to |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT bool QoreObject::compareHard | ( | const QoreObject * | obj, |
ExceptionSink * | xsink | ||
) | const |
tests for equality ("deep compare" including all contained values) with possible type conversion of contained elements (hard compare)
obj | the object to compare |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT bool QoreObject::compareSoft | ( | const QoreObject * | obj, |
ExceptionSink * | xsink | ||
) | const |
tests for equality ("deep compare" including all contained values) with possible type conversion of contained elements (soft compare)
obj | the object to compare |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT QoreHashNode * QoreObject::copyData | ( | ExceptionSink * | xsink | ) | const |
retuns all member data of the object (or 0 if there's an exception), caller owns the QoreHashNode reference returned
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLLOCAL void QoreObject::defaultSystemDestructor | ( | qore_classid_t | classID, |
ExceptionSink * | xsink | ||
) |
runs the destructor for system objects
classID | the ID of the class |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT void QoreObject::deleteMemberValue | ( | const char * | key, |
ExceptionSink * | xsink | ||
) |
removes a member from the object, if the member's value is an object it is deleted as well (destructor is called)
key | the name of the member to delete, assumed to be in the default encoding (QCS_DEFAULT) |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT void QoreObject::deleteMemberValue | ( | const QoreString * | key, |
ExceptionSink * | xsink | ||
) |
removes a member from the object, if the member's value is an object it is deleted as well (destructor is called)
key | the name of the member to delete |
xsink | if an error occurs, the Qore-language exception information will be added here |
|
privatevirtual |
runs the destructor if necessary and dereferences all members
Note that other objects could be deleted as well if they are members of this object, any exceptions thrown there will also be added to "xsink"
xsink | if an error occurs, the Qore-language exception information will be added here |
Reimplemented from AbstractQoreNode.
DLLEXPORT void QoreObject::doDelete | ( | ExceptionSink * | xsink | ) |
runs the destructor on the object (if it hasn't already been deleted)
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLLOCAL QoreValue QoreObject::evalBuiltinMethodWithPrivateData | ( | const QoreMethod & | method, |
const BuiltinNormalMethodVariantBase * | meth, | ||
const QoreListNode * | args, | ||
ExceptionSink * | xsink | ||
) |
called to evaluate a builtin method when private data is available
method | a constant reference to the QoreMethod object |
meth | the name of the method to evalute |
args | the arguments for the method |
xsink | if an error occurs, the Qore-language exception information will be added here |
|
privatevirtual |
should never be called, does nothing
in debugging builds calls to this function will abort
Implements AbstractQoreNode.
DLLEXPORT QoreValue QoreObject::evalMember | ( | const char * | member, |
ExceptionSink * | xsink | ||
) |
returns the value of the member with an incremented reference count, or executes the memberGate() method and returns the value
member | the name of the member to get the value for (or evaluate the memberGate() method against); must be in the default encoding (normally UTF-8) |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT QoreValue QoreObject::evalMember | ( | const QoreString * | member, |
ExceptionSink * | xsink | ||
) |
returns the value of the member with an incremented reference count, or executes the memberGate() method and returns the value
member | the name of the member to get the value for (or evaluate the memberGate() method against) |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT QoreValue QoreObject::evalMethod | ( | const char * | name, |
const QoreClass * | class_ctx, | ||
const QoreListNode * | args, | ||
ExceptionSink * | xsink | ||
) |
evaluates the given method with the given class context and arguments passed and returns the return value
The caller owns the AbstractQoreNode (reference) returned
method | the method to evaluate |
class_ctx | the class context for the method evaluation for evaluating private:internal methods |
args | the arguments for the method (may be 0) |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT QoreValue QoreObject::evalMethod | ( | const char * | name, |
const QoreListNode * | args, | ||
ExceptionSink * | xsink | ||
) |
evaluates the given method with the arguments passed and returns the return value, caller owns any reference returned
name | the name of the method to evaluate, must be in QCS_DEFAULT encoding |
args | the arguments for the method (may be 0) |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT QoreValue QoreObject::evalMethod | ( | const QoreMethod & | method, |
const QoreClass * | class_ctx, | ||
const QoreListNode * | args, | ||
ExceptionSink * | xsink | ||
) |
evaluates the given method with the given class context and arguments passed and returns the return value, caller owns the AbstractQoreNode (reference) returned
method | the method to evaluate |
class_ctx | the class context for the method evaluation for evaluating private:internal methods |
args | the arguments for the method (may be 0) |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT QoreValue QoreObject::evalMethod | ( | const QoreMethod & | method, |
const QoreListNode * | args, | ||
ExceptionSink * | xsink | ||
) |
evaluates the given method with the arguments passed and returns the return value, caller owns the AbstractQoreNode (reference) returned
method | the method to evaluate |
args | the arguments for the method (may be 0) |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT QoreValue QoreObject::evalMethod | ( | const QoreString * | name, |
const QoreListNode * | args, | ||
ExceptionSink * | xsink | ||
) |
evaluates the given method with the arguments passed and returns the return value, caller owns any reference returned
name | the name of the method to evaluate |
args | the arguments for the method (may be 0) |
xsink | if an error occurs, the Qore-language exception information will be added here |
Referenced by AbstractQoreThreadResource::cleanup(), OutputStreamWrapper::close(), InputStreamWrapper::peek(), InputStreamWrapper::read(), and OutputStreamWrapper::write().
DLLEXPORT QoreValue QoreObject::evalMethodVariant | ( | const QoreMethod & | method, |
const QoreClass * | class_ctx, | ||
const QoreExternalMethodVariant * | variant, | ||
const QoreListNode * | args, | ||
ExceptionSink * | xsink | ||
) |
executes a normal object method variant
|
static |
executes a static method with the given class context to access private:internal methods
|
static |
executes a static method
|
static |
executes a static method variant with the given class context to access private:internal methods
|
static |
executes a static method variant
DLLEXPORT void QoreObject::externalDelete | ( | qore_classid_t | key, |
ExceptionSink * | xsink | ||
) |
call this function when an object's private data is deleted externally
this function will clear the private data and delete the object
key | the class ID of the class that owns the private data |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLLOCAL AbstractPrivateData * QoreObject::getAndClearPrivateData | ( | qore_classid_t | key, |
ExceptionSink * | xsink | ||
) |
retrieves the private data pointer and clears it from the object's private data store, used when executing destructors
key | the class key to use |
xsink | if an error occurs, the Qore-language exception information will be added here |
|
virtual |
returns false unless perl-boolean-evaluation is enabled, in which case it returns false only when empty
Reimplemented from AbstractQoreNode.
|
virtual |
returns a QoreString giving the verbose string representation of the List (including all contained values)
used for n and N printf formatting
del | if this is true when the function returns, then the returned QoreString pointer should be deleted, if false, then it must not be |
foff | for multi-line formatting offset, -1 = no line breaks |
xsink | if an error occurs, the Qore-language exception information will be added here NOTE: Use the QoreNodeAsStringHelper class (defined in QoreStringNode.h) instead of using this function directly |
Implements AbstractQoreNode.
|
virtual |
concatenate the verbose string representation of the list (including all contained values) to an existing QoreString
used for n and N printf formatting
str | the string representation of the type will be concatenated to this QoreString reference |
foff | for multi-line formatting offset, -1 = no line breaks |
xsink | if an error occurs, the Qore-language exception information will be added here |
Implements AbstractQoreNode.
DLLEXPORT const QoreClass * QoreObject::getClass | ( | ) | const |
DLLEXPORT const QoreClass * QoreObject::getClass | ( | qore_classid_t | cid | ) | const |
DLLEXPORT const QoreClass * QoreObject::getClass | ( | qore_classid_t | cid, |
bool & | priv | ||
) | const |
returns a pointer to the QoreClass object representing the class ID passed if it exists in the class hierarchy and sets a flag indicating if it's privately inherited or not
if the class ID is equal to the current class or is a base class of the current class, the appropriate QoreClass pointer will be returned.
cid | the class ID of the QoreClass to find |
priv | a flag indicating if the class is privately inherited or not |
DLLEXPORT ClassAccess QoreObject::getClassAccess | ( | const QoreClass & | cls | ) | const |
returns the accessibility of the class in the object's hierachy or Inaccessible the object does not inherit the class at all
cls | the class to check |
DLLEXPORT const char * QoreObject::getClassName | ( | ) | const |
returns the name of the class
Referenced by InputStreamWrapper::read().
DLLEXPORT int64 QoreObject::getMemberAsBigInt | ( | const char * | mem, |
bool & | found, | ||
ExceptionSink * | xsink | ||
) | const |
returns the value of the given member as an int64
mem | the name member to retrieve the value for |
found | returns true if the member was found, false if not |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT QoreListNode * QoreObject::getMemberList | ( | ExceptionSink * | xsink | ) | const |
returns the list of members, caller owns the list returned
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT QoreValue QoreObject::getMemberValueNoMethod | ( | const char * | key, |
AutoVLock * | vl, | ||
ExceptionSink * | xsink | ||
) | const |
returns the pointer to the value of the member
NOTE: the value returned is not referenced by this function, but rather the object is locked
key | the name of the member, assumed to be in the default encoding (QCS_DEFAULT) |
vl | the AutoVLock container for nested locking |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT QoreValue QoreObject::getMemberValueNoMethod | ( | const char * | key, |
const QoreClass * | cls, | ||
AutoVLock * | vl, | ||
ExceptionSink * | xsink | ||
) | const |
returns the pointer to the value of the member
NOTE: the value returned is not referenced by this function, but rather the object is locked
key | the name of the member, assumed to be in the default encoding (QCS_DEFAULT) |
cls | the class context for private:internal members; may be nullptr |
vl | the AutoVLock container for nested locking |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT QoreValue QoreObject::getMemberValueNoMethod | ( | const QoreString * | key, |
AutoVLock * | vl, | ||
ExceptionSink * | xsink | ||
) | const |
returns the pointer to the value of the member
if the member exists, the lock is held and added to the AutoVLock "vl", otherwise the lock is released an exception will be thrown if the character encoding conversion fails also if the object has a deleted status an exception will be thrown NOTE: the value returned is not referenced by this function, but rather the object is locked
key | the name of the member |
vl | the AutoVLock container for nested locking |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT QoreProgram * QoreObject::getProgram | ( | ) | const |
returns the QoreProgram object associated with this object
for system objects only (created with the system constructor) this will be 0
Referenced by AbstractQoreThreadResource::getProgram().
DLLEXPORT QoreValue QoreObject::getReferencedMemberNoMethod | ( | const char * | key, |
const QoreClass * | cls, | ||
ExceptionSink * | xsink | ||
) | const |
returns the value of the given member as accessed from the given class; caller owns any reference returned
key | the name of the member, assumed to be in the default encoding (QCS_DEFAULT) |
cls | the class context for private:internal members; may be nullptr |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT QoreValue QoreObject::getReferencedMemberNoMethod | ( | const char * | mem, |
ExceptionSink * | xsink | ||
) | const |
returns the value of the given member with the reference count incremented, the caller owns any reference returned
mem | the name member to retrieve the value for |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT AbstractPrivateData * QoreObject::getReferencedPrivateData | ( | qore_classid_t | key, |
ExceptionSink * | xsink | ||
) | const |
returns the private data corresponding to the class ID passed with an incremented reference count, caller owns the reference
key | the class ID of the class to get the private data for |
xsink | if an error occurs, the Qore-language exception information will be added here |
Referenced by getReferencedPrivateData().
|
inline |
returns the private data corresponding to the class ID passed with an incremented reference count, caller owns the reference
key | the class ID of the class to get the private data for |
xsink | if an error occurs, the Qore-language exception information will be added here |
References getReferencedPrivateData().
DLLEXPORT ReferenceNode * QoreObject::getReferenceToMember | ( | const char * | mem, |
ExceptionSink * | xsink | ||
) |
Returns a reference to the given member, if the member is valid and accessible.
mem | the name member to retrieve the reference for |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT const QoreClass * QoreObject::getSurfaceClass | ( | ) | const |
returns a pointer to the QoreClass of this object or to the injection target class in case the class was injected
If the class was not injected, this this method returns the same value as getClass()
DLLEXPORT const char * QoreObject::getSurfaceClassName | ( | ) | const |
returns the name of the class or to the name of the injection target class in case the class was injected
If the class was not injected, this this method returns the same value as getClassName()
|
virtual |
tests for equality ("deep compare" including all contained values) without type conversions (hard compare)
v | the value to compare |
xsink | if an error occurs, the Qore-language exception information will be added here |
Implements AbstractQoreNode.
|
virtual |
tests for equality ("deep compare" including all contained values) with possible type conversion (soft compare)
v | the value to compare |
xsink | if an error occurs, the Qore-language exception information will be added here |
Implements AbstractQoreNode.
DLLEXPORT bool QoreObject::isSystemObject | ( | ) | const |
returns true if the object is a system object (created with the system constructor)
DLLEXPORT bool QoreObject::isValid | ( | ) | const |
returns true if the object is valid
|
inline |
Returns the object with the reference count increased.
References AbstractQoreNode::ref().
DLLLOCAL void QoreObject::obliterate | ( | ExceptionSink * | xsink | ) |
Destroys all members and dereferences all private data structures.
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT void QoreObject::removeMember | ( | const char * | key, |
ExceptionSink * | xsink | ||
) |
removes a member from the object without explicitly calling destructors; the value is only dereferenced
objects will be destructed if they go out of scope, however
key | the name of the member to remove, assumed to be in the default encoding (QCS_DEFAULT) |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT void QoreObject::removeMember | ( | const QoreString * | key, |
ExceptionSink * | xsink | ||
) |
removes a member from the object without explicitly calling destructors; the value is only dereferenced
objects will be destructed if they go out of scope, however
key | the name of the member to remove |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT int QoreObject::setMemberValue | ( | const char * | key, |
const QoreClass * | cls, | ||
const QoreValue | val, | ||
ExceptionSink * | xsink | ||
) |
sets the value of the given member as accessed from the given class
key | the name of the member, assumed to be in the default encoding (QCS_DEFAULT) |
cls | the class context for private:internal members; may be nullptr |
val | the value to set |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT void QoreObject::setPrivate | ( | qore_classid_t | key, |
AbstractPrivateData * | pd | ||
) |
sets private data for the object against the class ID passed, used in C++ functions implementing Qore constructors
key | the class ID of the class to set the private data for |
pd | the private data for the given class ID |
DLLEXPORT void QoreObject::setValue | ( | const char * | key, |
QoreValue | val, | ||
ExceptionSink * | xsink | ||
) |
sets the value of the given member to the given value
the value must be already referenced for the assignment to the object
key | the name of the member |
val | the value to set for the member (must be already referenced for the assignment, 0 is OK too) |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT int QoreObject::size | ( | ExceptionSink * | xsink | ) | const |
returns the number of members of the object
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT QoreValue QoreObject::takeMember | ( | const char * | key, |
ExceptionSink * | xsink | ||
) |
removes a member from the object without explicitly calling destructors and returns the value removed; the caller owns the reference returned
if a Qore-language exception is raised, the return value is always 0
key | the name of the member to remove, assumed to be in the default encoding (QCS_DEFAULT) |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT QoreValue QoreObject::takeMember | ( | const QoreString * | key, |
ExceptionSink * | xsink | ||
) |
removes a member from the object without explicitly calling destructors and returns the value removed; the caller owns the reference returned
if a Qore-language exception is raised, the return value is always 0
key | the name of the member to remove |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT void QoreObject::tDeref | ( | ) |
decrements the existence reference count, when it reaches 0 the C++ object ("this") will be deleted
To increment the existence reference count, call QoreObject::tRef()
DLLEXPORT void QoreObject::tRef | ( | ) | const |
increments the existence reference count
Will not prolong the scope of the object (use QoreObject::ref() to prolong the scope of the object). To derecrement the count, call QoreObject::tDeref()
DLLEXPORT AbstractPrivateData * QoreObject::tryGetReferencedPrivateData | ( | qore_classid_t | key, |
ExceptionSink * | xsink | ||
) | const |
returns the private data corresponding to the class ID passed with an incremented reference count if it exists, caller owns the reference
key | the class ID of the class to get the private data for |
xsink | if an error occurs (the object has already been deleted), the Qore-language exception information will be added here |
Referenced by tryGetReferencedPrivateData().
|
inline |
returns the private data corresponding to the class ID passed with an incremented reference count if it exists, caller owns the reference
key | the class ID of the class to get the private data for |
xsink | if an error occurs (the object has already been deleted), the Qore-language exception information will be added here |
References tryGetReferencedPrivateData().
DLLEXPORT bool QoreObject::validInstanceOf | ( | const QoreClass & | qc | ) | const |
returns true if this object is a valid instance of the classid passed
qc | the class to check |
DLLEXPORT bool QoreObject::validInstanceOf | ( | qore_classid_t | cid | ) | const |
returns true if this object is a valid instance of the classid passed
cid | the class ID to check |
DLLEXPORT bool QoreObject::validInstanceOfStrict | ( | const QoreClass & | qc | ) | const |
returns true if this object is a valid instance of the classid passed; does not check for injected compatibility
qc | the class to check |