Qore Programming Language
0.8.11.1
|
supports parsing and executing Qore-language code, reference counted, dynamically-allocated only More...
#include <QoreProgram.h>
Public Member Functions | |
DLLEXPORT | QoreProgram () |
creates the object | |
DLLEXPORT | QoreProgram (int64 parse_options) |
creates the object and sets the parse options More... | |
DLLEXPORT void | addFeature (const char *name) |
manually add the feature to the program More... | |
DLLEXPORT AbstractQoreNode * | callFunction (const char *name, const QoreListNode *args, ExceptionSink *xsink) |
calls a function from the function name and returns the return value More... | |
DLLEXPORT bool | checkFeature (const char *f) const |
returns true if the given feature is present in the program object | |
DLLEXPORT bool | checkWarning (int code) const |
returns true if the warning code is set | |
virtual DLLEXPORT void | deref (ExceptionSink *xsink) |
decrements the reference count of the object More... | |
DLLEXPORT void | disableParseOptions (int po, ExceptionSink *xsink) |
turns off the parse options given in the passed mask and adds Qore-language exception information if an error occurs More... | |
DLLEXPORT void | disableParseOptions (int64 po, ExceptionSink *xsink) |
turns off the parse options given in the passed mask and adds Qore-language exception information if an error occurs More... | |
DLLEXPORT int | disableWarning (int code) |
disables a warning by its code More... | |
DLLEXPORT int | enableWarning (int code) |
enables a warning by its code More... | |
DLLEXPORT bool | existsFunction (const char *name) |
returns true if the given function exists as a user function, false if not | |
DLLEXPORT QoreListNode * | getFeatureList () const |
returns a list of features in the program object | |
DLLEXPORT AbstractQoreNode * | getGlobalVariableValue (const char *var, bool &found) const |
returns the value of the global variable given (do not include the "$" symbol), the caller owns the reference count returned More... | |
DLLEXPORT int | getParseOptions () const |
returns the parse options currently set for this program; DEPRECATED; use getParseOptions64() instead | |
DLLEXPORT int64 | getParseOptions64 () const |
returns the parse options currently set for this program | |
DLLEXPORT QoreNamespace * | getQoreNS () const |
returns a pointer to the "Qore" namespace | |
DLLEXPORT RootQoreNamespace * | getRootNS () const |
returns a pointer to the root namespace | |
DLLEXPORT QoreStringNode * | getScriptDir () const |
returns the script directory, if known (0 if not) More... | |
DLLEXPORT QoreStringNode * | getScriptName () const |
returns the script file name, if known (0 if not) More... | |
DLLEXPORT QoreStringNode * | getScriptPath () const |
returns the script path (directory and name), if known (0 if not) More... | |
DLLEXPORT QoreListNode * | getUserFunctionList () |
returns a list of all user functions in this program More... | |
DLLEXPORT int | getWarningMask () const |
returns the warning mask | |
DLLEXPORT void | lockOptions () |
locks parse options so they may not be changed | |
DLLEXPORT void | parse (FILE *fp, const char *name, ExceptionSink *xsink, ExceptionSink *warn_sink=0, int warn_mask=QP_WARN_ALL) |
parses code from the file given and commits changes to the QoreProgram More... | |
DLLEXPORT void | parse (const QoreString *str, const QoreString *lstr, ExceptionSink *xsink, ExceptionSink *warn_sink=0, int warn_mask=QP_WARN_ALL) |
parses code from the given string and commits changes to the QoreProgram More... | |
DLLEXPORT void | parse (const QoreString *str, const QoreString *lstr, ExceptionSink *xsink, ExceptionSink *warn_sink, int warn_mask, const QoreString *source, int offset) |
parses code from the given string and commits changes to the QoreProgram More... | |
DLLEXPORT void | parse (const char *str, const char *lstr, ExceptionSink *xsink, ExceptionSink *warn_sink=0, int warn_mask=QP_WARN_ALL) |
parses code from the given string and commits changes to the QoreProgram More... | |
DLLEXPORT void | parse (const char *str, const char *lstr, ExceptionSink *xsink, ExceptionSink *warn_sink, int warn_mask, const char *source, int offset) |
parses code from the given string and commits changes to the QoreProgram More... | |
DLLEXPORT void | parseAndRun (FILE *fp, const char *name) |
parses the given file and runs the file More... | |
DLLEXPORT void | parseAndRun (const char *str, const char *name) |
parses the given string and runs the code More... | |
DLLEXPORT void | parseAndRunClass (FILE *fp, const char *name, const char *classname) |
parses the given file and runs the code by instantiating the class given More... | |
DLLEXPORT void | parseAndRunClass (const char *str, const char *name, const char *classname) |
parses the given string and runs the code by instantiating the class given More... | |
DLLEXPORT void | parseCommit (ExceptionSink *xsink, ExceptionSink *warn_sink=0, int warn_mask=QP_WARN_ALL) |
commits pending changes to the program More... | |
DLLEXPORT void | parseDefine (const char *str, AbstractQoreNode *val) |
defines a parse-time variable; call only at parse time (or before parsing) More... | |
DLLEXPORT void | parseDefine (const char *str, const char *val) |
defines a parse-time variable; call only at parse time (or before parsing) More... | |
DLLEXPORT void | parseDisableParseOptions (int64 po) |
disables the parse options given to the parse option mask | |
DLLEXPORT void | parseFile (const char *filename, ExceptionSink *xsink, ExceptionSink *warn_sink=0, int warn_mask=QP_WARN_ALL, bool only_first_except=false) |
parses code from the file given and commits changes to the QoreProgram More... | |
DLLEXPORT void | parseFileAndRun (const char *filename) |
parses the given filename and runs the file More... | |
DLLEXPORT void | parseFileAndRunClass (const char *filename, const char *classname) |
parses the given filename and runs the program by instantiating the class given More... | |
DLLLOCAL const char * | parseGetScriptDir () const |
returns the script directory, if known (0 if not), does not grab the parse lock, only to be called while parsing More... | |
DLLEXPORT void | parsePending (const char *code, const char *label, ExceptionSink *xsink, ExceptionSink *warn_sink=0, int warn_mask=QP_WARN_ALL) |
parses code from the given string but does not commit changes to the QoreProgram More... | |
DLLEXPORT void | parsePending (const char *code, const char *label, ExceptionSink *xsink, ExceptionSink *warn_sink, int warn_mask, const char *source, int offset) |
parses code from the given string but does not commit changes to the QoreProgram More... | |
DLLEXPORT void | parsePending (const QoreString *str, const QoreString *lstr, ExceptionSink *xsink, ExceptionSink *warn_sink=0, int warn_mask=QP_WARN_ALL) |
parses code from the given string but does not commit changes to the QoreProgram More... | |
DLLEXPORT void | parsePending (const QoreString *str, const QoreString *lstr, ExceptionSink *xsink, ExceptionSink *warn_sink, int warn_mask, const QoreString *source, int offset) |
parses code from the given string but does not commit changes to the QoreProgram More... | |
DLLEXPORT void | parseRollback () |
rolls back changes to the program object that were added with QoreProgram::parsePending() More... | |
DLLEXPORT void | parseSetParseOptions (int po) |
adds the parse options given to the parse option mask; DEPRECATED: use parseSetParseOptions(int64) instead | |
DLLEXPORT void | parseSetParseOptions (int64 po) |
adds the parse options given to the parse option mask | |
DLLEXPORT void | parseSetTimeZone (const char *zone) |
sets the time zone during parsing More... | |
DLLEXPORT void | replaceParseOptions (int64 po, ExceptionSink *xsink) |
replaces the parse options in the program with those given by the argument; adds Qore-language exception information if an error occurs More... | |
DLLEXPORT AbstractQoreNode * | run (ExceptionSink *xsink) |
runs the program (instantiates the program class if a program class has been set) and returns the return value (if any) More... | |
DLLEXPORT void | runClass (const char *classname, ExceptionSink *xsink) |
instantiates the class given and runs its constructor More... | |
DLLEXPORT AbstractQoreNode * | runTopLevel (ExceptionSink *xsink) |
tuns the top level code and returns any return value More... | |
DLLEXPORT void | setExecClass (const char *ecn=0) |
sets the name of the application class to be executed (instantiated) instead of top-level code More... | |
DLLEXPORT void | setParseOptions (int po, ExceptionSink *xsink) |
sets the parse options and adds Qore-language exception information if an error occurs More... | |
DLLEXPORT void | setParseOptions (int64 po, ExceptionSink *xsink) |
sets the parse options and adds Qore-language exception information if an error occurs More... | |
DLLEXPORT void | setScriptPath (const char *path) |
sets the script path More... | |
DLLEXPORT int | setWarningMask (int wm) |
sets the warning mask More... | |
DLLEXPORT void | waitForTermination () |
this call blocks until the program's last thread terminates | |
DLLEXPORT void | waitForTerminationAndDeref (ExceptionSink *xsink) |
this call blocks until the program's last thread terminates, and then calls QoreProgram::deref() More... | |
![]() | |
virtual DLLLOCAL void | deref () |
decrements the reference count of the object without the possibility of throwing a Qore-language exception | |
DLLLOCAL void | ref () |
increments the reference count of the object | |
![]() | |
DLLEXPORT | QoreReferenceCounter () |
creates the reference counter object | |
DLLEXPORT | ~QoreReferenceCounter () |
destroys the reference counter object | |
DLLLOCAL bool | is_unique () const |
returns true if the reference count is 1 More... | |
DLLLOCAL int | reference_count () const |
gets the reference count More... | |
DLLEXPORT bool | ROdereference () const |
atomically decrements the reference count More... | |
DLLEXPORT void | ROreference () const |
atomically increments the reference count | |
Protected Member Functions | |
virtual DLLLOCAL | ~QoreProgram () |
the destructor is private in order to prohibit the object from being allocated on the stack More... | |
![]() | |
virtual DLLLOCAL | ~AbstractPrivateData () |
as these objects are reference counted, the destructor should be called only when the reference count = 0 and not manually | |
Additional Inherited Members | |
![]() | |
QoreThreadLock | mRO |
pthread lock to ensure atomicity of updates for architectures where we don't have an atomic increment and decrement implementation | |
supports parsing and executing Qore-language code, reference counted, dynamically-allocated only
This class implements a transaction and thread-safe container for qore-language code This class implements two-layered reference counting to address problems with circular references. When a program has a global variable that contains an object that references the program... objects now reference the dependency counter, so when the object's counter reaches zero and the global variable list is deleted, then the variables will in turn dereference the program so it can be deleted.
|
protectedvirtual |
the destructor is private in order to prohibit the object from being allocated on the stack
the destructor is run when the reference count reaches 0
DLLEXPORT QoreProgram::QoreProgram | ( | int64 | parse_options | ) |
creates the object and sets the parse options
parse_options | the parse options mask for the QoreProgram object |
DLLEXPORT void QoreProgram::addFeature | ( | const char * | name | ) |
manually add the feature to the program
useful for use with module-cmd when manually merging in namespace changes to the program
name | the name of the feature to add to the QoreProgram's feature list |
DLLEXPORT AbstractQoreNode* QoreProgram::callFunction | ( | const char * | name, |
const QoreListNode * | args, | ||
ExceptionSink * | xsink | ||
) |
calls a function from the function name and returns the return value
if the function does not exist, an exception is added to "xsink"
name | the name of the function to call |
args | the argument to the function (can be 0) |
xsink | if an error occurs, the Qore-language exception information will be added here |
|
virtual |
decrements the reference count of the object
xsink | any Qore-language exception information is stored here |
Reimplemented from AbstractPrivateData.
DLLEXPORT void QoreProgram::disableParseOptions | ( | int | po, |
ExceptionSink * | xsink | ||
) |
turns off the parse options given in the passed mask and adds Qore-language exception information if an error occurs
DEPRECATED: use disableParseOptions(int64, ...) instead
po | the parse options to subtract from the parse option mask |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT void QoreProgram::disableParseOptions | ( | int64 | po, |
ExceptionSink * | xsink | ||
) |
turns off the parse options given in the passed mask and adds Qore-language exception information if an error occurs
po | the parse options to subtract from the parse option mask |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT int QoreProgram::disableWarning | ( | int | code | ) |
disables a warning by its code
code | the warning code to disable |
DLLEXPORT int QoreProgram::enableWarning | ( | int | code | ) |
enables a warning by its code
code | the warning code to enable |
DLLEXPORT AbstractQoreNode* QoreProgram::getGlobalVariableValue | ( | const char * | var, |
bool & | found | ||
) | const |
returns the value of the global variable given (do not include the "$" symbol), the caller owns the reference count returned
var | the variable name to return (do not include the "$" symbol) |
found | returns true if the variable exists, false if not |
DLLEXPORT QoreStringNode* QoreProgram::getScriptDir | ( | ) | const |
returns the script directory, if known (0 if not)
DLLEXPORT QoreStringNode* QoreProgram::getScriptName | ( | ) | const |
returns the script file name, if known (0 if not)
DLLEXPORT QoreStringNode* QoreProgram::getScriptPath | ( | ) | const |
returns the script path (directory and name), if known (0 if not)
DLLEXPORT QoreListNode* QoreProgram::getUserFunctionList | ( | ) |
returns a list of all user functions in this program
DLLEXPORT void QoreProgram::parse | ( | FILE * | fp, |
const char * | name, | ||
ExceptionSink * | xsink, | ||
ExceptionSink * | warn_sink = 0 , |
||
int | warn_mask = QP_WARN_ALL |
||
) |
parses code from the file given and commits changes to the QoreProgram
fp | the filename to parse |
name | the name of the file being parsed and run |
xsink | if an error occurs, the Qore-language exception information will be added here |
warn_sink | if a warning is raised, the warning information will be added here |
warn_mask | the warning mask to set (-1 sets all possible warnings) |
DLLEXPORT void QoreProgram::parse | ( | const QoreString * | str, |
const QoreString * | lstr, | ||
ExceptionSink * | xsink, | ||
ExceptionSink * | warn_sink = 0 , |
||
int | warn_mask = QP_WARN_ALL |
||
) |
parses code from the given string and commits changes to the QoreProgram
str | the code to parse |
lstr | the label of the code being parsed to be used as a file name |
xsink | if an error occurs, the Qore-language exception information will be added here |
warn_sink | if a warning is raised, the warning information will be added here |
warn_mask | the warning mask to set (-1 sets all possible warnings) |
DLLEXPORT void QoreProgram::parse | ( | const QoreString * | str, |
const QoreString * | lstr, | ||
ExceptionSink * | xsink, | ||
ExceptionSink * | warn_sink, | ||
int | warn_mask, | ||
const QoreString * | source, | ||
int | offset | ||
) |
parses code from the given string and commits changes to the QoreProgram
str | the code to parse |
lstr | the label of the code being parsed to be used as a file name |
xsink | if an error occurs, the Qore-language exception information will be added here |
warn_sink | if a warning is raised, the warning information will be added here (0 = no warnings) |
warn_mask | the warning mask to set (-1 sets all possible warnings) |
source | the source file name (if lstr is a label representing a section of a file for example) |
offset | the line offset from the label to the file |
DLLEXPORT void QoreProgram::parse | ( | const char * | str, |
const char * | lstr, | ||
ExceptionSink * | xsink, | ||
ExceptionSink * | warn_sink = 0 , |
||
int | warn_mask = QP_WARN_ALL |
||
) |
parses code from the given string and commits changes to the QoreProgram
str | the code to parse; the encoding of the string is assumed to be QCS_DEFAULT |
lstr | the label of the code being parsed to be used as a file name |
xsink | if an error occurs, the Qore-language exception information will be added here |
warn_sink | if a warning is raised, the warning information will be added here (0 = no warnings) |
warn_mask | the warning mask to set (-1 sets all possible warnings) |
DLLEXPORT void QoreProgram::parse | ( | const char * | str, |
const char * | lstr, | ||
ExceptionSink * | xsink, | ||
ExceptionSink * | warn_sink, | ||
int | warn_mask, | ||
const char * | source, | ||
int | offset | ||
) |
parses code from the given string and commits changes to the QoreProgram
str | the code to parse; the encoding of the string is assumed to be QCS_DEFAULT |
lstr | the label of the code being parsed to be used as a file name |
xsink | if an error occurs, the Qore-language exception information will be added here |
warn_sink | if a warning is raised, the warning information will be added here (0 = no warnings) |
warn_mask | the warning mask to set (-1 sets all possible warnings) |
source | the source file name (if lstr is a label representing a section of a file for example) |
offset | the line offset from the label to the file |
DLLEXPORT void QoreProgram::parseAndRun | ( | FILE * | fp, |
const char * | name | ||
) |
parses the given file and runs the file
the default exception handler is run on any Qore-language exceptions raised while parsing and executing the file.
fp | the filename to run |
name | the name of the file being parsed and run |
DLLEXPORT void QoreProgram::parseAndRun | ( | const char * | str, |
const char * | name | ||
) |
parses the given string and runs the code
The default exception handler is run on any Qore-language exceptions raised while parsing and executing the code.
str | the Qore-language code to parse and run |
name | the label of the code being parsed and run (used as the file name) |
DLLEXPORT void QoreProgram::parseAndRunClass | ( | FILE * | fp, |
const char * | name, | ||
const char * | classname | ||
) |
parses the given file and runs the code by instantiating the class given
The default exception handler is run on any Qore-language exceptions raised while parsing and executing the file.
fp | the filename to run |
name | the name of the file being parsed and run |
classname | the name of the class to instantiate |
DLLEXPORT void QoreProgram::parseAndRunClass | ( | const char * | str, |
const char * | name, | ||
const char * | classname | ||
) |
parses the given string and runs the code by instantiating the class given
The default exception handler is run on any Qore-language exceptions raised while parsing and executing the code.
str | the Qore-language code to parse and run |
name | the label of the code being parsed and run (used as the file name) |
classname | the name of the class to instantiate |
DLLEXPORT void QoreProgram::parseCommit | ( | ExceptionSink * | xsink, |
ExceptionSink * | warn_sink = 0 , |
||
int | warn_mask = QP_WARN_ALL |
||
) |
commits pending changes to the program
DLLEXPORT void QoreProgram::parseDefine | ( | const char * | str, |
AbstractQoreNode * | val | ||
) |
defines a parse-time variable; call only at parse time (or before parsing)
str | the name of the variable |
val | the value of the variable; may be 0; if non-0, then the QoreProgram object assumes ownership of the reference |
DLLEXPORT void QoreProgram::parseDefine | ( | const char * | str, |
const char * | val | ||
) |
defines a parse-time variable; call only at parse time (or before parsing)
str | the name of the variable |
val | a string value that will be parsed and converted to a qore value |
DLLEXPORT void QoreProgram::parseFile | ( | const char * | filename, |
ExceptionSink * | xsink, | ||
ExceptionSink * | warn_sink = 0 , |
||
int | warn_mask = QP_WARN_ALL , |
||
bool | only_first_except = false |
||
) |
parses code from the file given and commits changes to the QoreProgram
Also sets the script path.
filename | the filename to open and parse |
xsink | if an error occurs, the Qore-language exception information will be added here |
warn_sink | if a warning is raised, the warning information will be added here (0 = no warnings) |
warn_mask | the warning mask to set (-1 sets all possible warnings) |
only_first_except | is flag to stop parsing exceptions printing after 1st exception |
DLLEXPORT void QoreProgram::parseFileAndRun | ( | const char * | filename | ) |
parses the given filename and runs the file
any errors opening the file are added as Qore-language exceptions the default exception handler is run on any Qore-language exceptions raised during opening, parsing, and executing the file.
filename | the filename to run |
DLLEXPORT void QoreProgram::parseFileAndRunClass | ( | const char * | filename, |
const char * | classname | ||
) |
parses the given filename and runs the program by instantiating the class given
Any errors opening the file are added as Qore-language exceptions. The default exception handler is run on any Qore-language exceptions raised during opening, parsing, and executing the file.
filename | the filename to run |
classname | the name of the class to instantiate |
DLLLOCAL const char* QoreProgram::parseGetScriptDir | ( | ) | const |
returns the script directory, if known (0 if not), does not grab the parse lock, only to be called while parsing
DLLEXPORT void QoreProgram::parsePending | ( | const char * | code, |
const char * | label, | ||
ExceptionSink * | xsink, | ||
ExceptionSink * | warn_sink = 0 , |
||
int | warn_mask = QP_WARN_ALL |
||
) |
parses code from the given string but does not commit changes to the QoreProgram
code | the code to parse; the encoding of the string is assumed to be QCS_DEFAULT |
label | the label of the code being parsed to be used as a file name |
xsink | if an error occurs, the Qore-language exception information will be added here |
warn_sink | if a warning is raised, the warning information will be added here (0 = no warnings) |
warn_mask | the warning mask to set (-1 sets all possible warnings) |
DLLEXPORT void QoreProgram::parsePending | ( | const char * | code, |
const char * | label, | ||
ExceptionSink * | xsink, | ||
ExceptionSink * | warn_sink, | ||
int | warn_mask, | ||
const char * | source, | ||
int | offset | ||
) |
parses code from the given string but does not commit changes to the QoreProgram
code | the code to parse; the encoding of the string is assumed to be QCS_DEFAULT |
label | the label of the code being parsed to be used as a file name |
xsink | if an error occurs, the Qore-language exception information will be added here |
warn_sink | if a warning is raised, the warning information will be added here (0 = no warnings) |
warn_mask | the warning mask to set (-1 sets all possible warnings) |
source | the source file name (if lstr is a label representing a section of a file for example) |
offset | the line offset from the label to the file |
DLLEXPORT void QoreProgram::parsePending | ( | const QoreString * | str, |
const QoreString * | lstr, | ||
ExceptionSink * | xsink, | ||
ExceptionSink * | warn_sink = 0 , |
||
int | warn_mask = QP_WARN_ALL |
||
) |
parses code from the given string but does not commit changes to the QoreProgram
str | the code to parse |
lstr | the label of the code being parsed to be used as a file name |
xsink | if an error occurs, the Qore-language exception information will be added here |
warn_sink | if a warning is raised, the warning information will be added here (0 = no warnings) |
warn_mask | the warning mask to set (-1 sets all possible warnings) |
DLLEXPORT void QoreProgram::parsePending | ( | const QoreString * | str, |
const QoreString * | lstr, | ||
ExceptionSink * | xsink, | ||
ExceptionSink * | warn_sink, | ||
int | warn_mask, | ||
const QoreString * | source, | ||
int | offset | ||
) |
parses code from the given string but does not commit changes to the QoreProgram
str | the code to parse |
lstr | the label of the code being parsed to be used as a file name |
xsink | if an error occurs, the Qore-language exception information will be added here |
warn_sink | if a warning is raised, the warning information will be added here (0 = no warnings) |
warn_mask | the warning mask to set (-1 sets all possible warnings) |
source | the source file name (if lstr is a label representing a section of a file for example) |
offset | the line offset from the label to the file |
DLLEXPORT void QoreProgram::parseRollback | ( | ) |
rolls back changes to the program object that were added with QoreProgram::parsePending()
DLLEXPORT void QoreProgram::parseSetTimeZone | ( | const char * | zone | ) |
sets the time zone during parsing
zone | can be either a region name (ex: 'Europe/Prague') or a UTC offset in the format SDD[:DD[:DD]] where S is + or - and D is an integer 0 - 9; the ':' characters are optional |
DLLEXPORT void QoreProgram::replaceParseOptions | ( | int64 | po, |
ExceptionSink * | xsink | ||
) |
replaces the parse options in the program with those given by the argument; adds Qore-language exception information if an error occurs
An exception will be raised if the calling program does not have PO_NO_CHILD_PO_RESTRICTIONS set
po | the parse options to add to the parse option mask |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT AbstractQoreNode* QoreProgram::run | ( | ExceptionSink * | xsink | ) |
runs the program (instantiates the program class if a program class has been set) and returns the return value (if any)
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT void QoreProgram::runClass | ( | const char * | classname, |
ExceptionSink * | xsink | ||
) |
instantiates the class given and runs its constructor
classname | the name of the class to instantiate |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT AbstractQoreNode* QoreProgram::runTopLevel | ( | ExceptionSink * | xsink | ) |
tuns the top level code and returns any return value
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT void QoreProgram::setExecClass | ( | const char * | ecn = 0 | ) |
sets the name of the application class to be executed (instantiated) instead of top-level code
normally parse option PO_NO_TOP_LEVEL_STATEMENTS should be set as well
ecn | the name of the class to be executed as the program class |
DLLEXPORT void QoreProgram::setParseOptions | ( | int | po, |
ExceptionSink * | xsink | ||
) |
sets the parse options and adds Qore-language exception information if an error occurs
DEPRECATED: use setParseOptions(int64, ...)
po | the parse options to add to the parse option mask |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT void QoreProgram::setParseOptions | ( | int64 | po, |
ExceptionSink * | xsink | ||
) |
sets the parse options and adds Qore-language exception information if an error occurs
po | the parse options to add to the parse option mask |
xsink | if an error occurs, the Qore-language exception information will be added here |
DLLEXPORT void QoreProgram::setScriptPath | ( | const char * | path | ) |
sets the script path
path | the directory and filename of the script (set to 0 to clear) |
DLLEXPORT int QoreProgram::setWarningMask | ( | int | wm | ) |
sets the warning mask
wm | the new warning mask |
DLLEXPORT void QoreProgram::waitForTerminationAndDeref | ( | ExceptionSink * | xsink | ) |
this call blocks until the program's last thread terminates, and then calls QoreProgram::deref()
xsink | if an error occurs, the Qore-language exception information will be added here |
Referenced by QoreProgramHelper::~QoreProgramHelper().