Qore Programming Language  0.9.16
ScopedObjectCallNode.h
1 /* -*- mode: c++; indent-tabs-mode: nil -*- */
2 /*
3  ScopedObjectCallNode.h
4 
5  Qore Programming Language
6 
7  Copyright (C) 2003 - 2018 Qore Technologies, s.r.o.
8 
9  Permission is hereby granted, free of charge, to any person obtaining a
10  copy of this software and associated documentation files (the "Software"),
11  to deal in the Software without restriction, including without limitation
12  the rights to use, copy, modify, merge, publish, distribute, sublicense,
13  and/or sell copies of the Software, and to permit persons to whom the
14  Software is furnished to do so, subject to the following conditions:
15 
16  The above copyright notice and this permission notice shall be included in
17  all copies or substantial portions of the Software.
18 
19  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
24  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
25  DEALINGS IN THE SOFTWARE.
26 
27  Note that the Qore library is released under a choice of three open-source
28  licenses: MIT (as above), LGPL 2+, or GPL 2+; see README-LICENSE for more
29  information.
30 */
31 
32 #ifndef _QORE_SCOPEDOBJECTCALLNODE_H
33 
34 #define _QORE_SCOPEDOBJECTCALLNODE_H
35 
36 #include "qore/intern/FunctionCallNode.h"
37 #include "qore/intern/QoreParseListNode.h"
38 
39 class ScopedObjectCallNode : public AbstractFunctionCallNode {
40 protected:
41  // WARNING: pay attention when subclassing; this method must also be implemented in the subclass
42  DLLLOCAL virtual QoreValue evalImpl(bool& needs_deref, ExceptionSink* xsink) const;
43 
44  DLLLOCAL virtual const QoreTypeInfo* getTypeInfo() const {
45  return oc ? oc->getTypeInfo() : objectTypeInfo;
46  }
47 
48 public:
49  NamedScope* name;
50  const QoreClass* oc;
51  QoreString desc;
52 
53  DLLLOCAL ScopedObjectCallNode(const QoreProgramLocation* loc, NamedScope* n, QoreParseListNode* a) : AbstractFunctionCallNode(loc, NT_SCOPE_REF, a), name(n), oc(nullptr) {
54  }
55 
56  DLLLOCAL ScopedObjectCallNode(const QoreProgramLocation* loc, const QoreClass* qc, QoreParseListNode* a) : AbstractFunctionCallNode(loc, NT_SCOPE_REF, a), name(nullptr), oc(qc) {
57  }
58 
59  DLLLOCAL virtual ~ScopedObjectCallNode() {
60  delete name;
61  }
62 
63  DLLLOCAL void parseInitImpl(QoreValue& val, LocalVar* oflag, int pflag, int& lvids, const QoreTypeInfo*& typeInfo);
64 
65  /* get string representation (for %n and %N), foff is for multi-line formatting offset, -1 = no line breaks
66  the ExceptionSink is only needed for QoreObject where a method may be executed
67  use the QoreNodeAsStringHelper class (defined in QoreStringNode.h) instead of using these functions directly
68  returns -1 for exception raised, 0 = OK
69  */
70  DLLLOCAL virtual int getAsString(QoreString& str, int foff, ExceptionSink* xsink) const {
71  str.sprintf("new operator expression (class '%s')", oc ? oc->getName() : name ? name->ostr : "<null>", this);
72  return 0;
73  }
74 
75  // if del is true, then the returned QoreString * should be deleted, if false, then it must not be
76  DLLLOCAL virtual QoreString* getAsString(bool& del, int foff, ExceptionSink* xsink) const {
77  del = true;
78  QoreString* rv = new QoreString;
79  getAsString(*rv, foff, xsink);
80  return rv;
81  }
82 
83  // returns the data type
84  DLLLOCAL virtual qore_type_t getType() const {
85  return NT_SCOPE_REF;
86  }
87 
88  // returns the type name as a c string
89  DLLLOCAL virtual const char* getTypeName() const {
90  return "new object call";
91  }
92 
93  // returns the description
94  DLLLOCAL virtual const char* getName() const {
95  return desc.getBuffer();
96  }
97 };
98 
99 #endif
QoreValue
The main value class in Qore, designed to be passed by value.
Definition: QoreValue.h:262
QoreClass
defines a Qore-language class
Definition: QoreClass.h:239
QoreClass::getName
const DLLEXPORT char * getName() const
returns the class name
QoreString::sprintf
DLLEXPORT int sprintf(const char *fmt,...)
this will concatentate a formatted string to the existing string according to the format string and t...
QoreString
Qore's string type supported by the QoreEncoding class.
Definition: QoreString.h:81
QoreString::getBuffer
const DLLEXPORT char * getBuffer() const
returns the string's buffer; this data should not be changed
ExceptionSink
container for holding Qore-language exception information and also for registering a "thread_exit" ca...
Definition: ExceptionSink.h:48
qore_type_t
int16_t qore_type_t
used to identify unique Qore data and parse types (descendents of AbstractQoreNode)
Definition: common.h:70
NT_SCOPE_REF
const qore_type_t NT_SCOPE_REF
type value for ScopedObjectCallNode
Definition: node_types.h:61