Qore Programming Language  0.9.16
ModuleManager.h
Go to the documentation of this file.
1 /* -*- mode: c++; indent-tabs-mode: nil -*- */
2 /*
3  ModuleManager.h
4 
5  Qore Programming Language
6 
7  Copyright (C) 2003 - 2020 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_MODULEMANAGER_H
33 
34 #define _QORE_MODULEMANAGER_H
35 
36 #include <qore/QoreThreadLock.h>
37 #include <qore/QoreString.h>
38 
39 #include <vector>
40 
45 #define QORE_MODULE_API_MAJOR 0
46 #define QORE_MODULE_API_MINOR 24
47 
48 #define QORE_MODULE_COMPAT_API_MAJOR 0
49 #define QORE_MODULE_COMPAT_API_MINOR 24
50 
51 hashdecl qore_mod_api_compat_s {
53  unsigned char major;
54  unsigned char minor;
55 };
56 
58 DLLEXPORT extern const qore_mod_api_compat_s* qore_mod_api_list;
59 
61 DLLEXPORT extern const unsigned qore_mod_api_list_len;
62 
63 class QoreNamespace;
64 class QoreStringNode;
65 class QoreListNode;
66 class ExceptionSink;
67 
69 typedef QoreStringNode* (*qore_module_init_t)();
70 
72 typedef void (*qore_module_ns_init_t)(QoreNamespace* root_ns, QoreNamespace* qore_ns);
73 
75 typedef void (*qore_module_delete_t)();
76 
78 typedef void (*qore_module_parse_cmd_t)(const QoreString& cmd, ExceptionSink* xsink);
79 
80 enum mod_op_e { MOD_OP_NONE, MOD_OP_EQ, MOD_OP_GT,
81  MOD_OP_GE, MOD_OP_LT, MOD_OP_LE };
82 
83 typedef std::vector<std::string> strvec_t;
84 
86 
88 hashdecl QoreModuleInfo {
89  QoreString name;
90  QoreString version;
91  QoreString desc;
92  QoreString author;
93  QoreString url;
94  int api_major = -1;
95  int api_minor = -1;
96  qore_module_init_t init = nullptr;
97  qore_module_ns_init_t ns_init = nullptr;
98  qore_module_delete_t del = nullptr;
99  qore_module_parse_cmd_t parse_cmd = nullptr;
100 
101  qore_license_t license;
102  QoreString license_str;
103 
105  strvec_t dependencies;
106 
108  QoreHashNode* info = nullptr;
109 };
110 
112 typedef void (*qore_binary_module_desc_t)(QoreModuleInfo& mod_info);
113 
115 
123 public:
124  ModuleManager(const ModuleManager&) = delete;
125  ModuleManager& operator=(const ModuleManager&) = delete;
126 
128 
131  DLLEXPORT static void addModuleDir(const char* dir);
132 
134 
137  DLLEXPORT static void addAutoModuleDir(const char* dir);
138 
140 
143  DLLEXPORT static void addModuleDirList(const char* strlist);
144 
146 
149  DLLEXPORT static void addAutoModuleDirList(const char* strlist);
150 
152  DLLEXPORT static QoreListNode* getModuleList();
153 
155  DLLEXPORT static QoreHashNode* getModuleHash();
156 
158 
166  DLLEXPORT static int runTimeLoadModule(const char* name, ExceptionSink* xsink);
167 
169 
178  DLLEXPORT static int runTimeLoadModule(const char* name, QoreProgram* pgm, ExceptionSink* xsink);
179 
181 
195  DLLEXPORT static int runTimeLoadModule(ExceptionSink* xsink, const char* name, QoreProgram* pgm = nullptr,
196  qore_binary_module_desc_t mod_desc_func = nullptr);
197 
199 
204  DLLEXPORT static QoreStringNode* parseLoadModule(const char* name, QoreProgram* pgm = nullptr);
205 
207  DLLEXPORT void registerUserModuleFromSource(const char* name, const char* src, QoreProgram* pgm, ExceptionSink* xsink);
208 
210  DLLEXPORT static void addStandardModulePaths();
211 
212  // not exported in the public API
213  DLLLOCAL ModuleManager();
214 };
215 
217 DLLEXPORT extern ModuleManager MM;
218 
219 static inline bool is_module_api_supported(int major, int minor) {
220  for (unsigned i = 0; i < qore_mod_api_list_len; ++i)
221  if (qore_mod_api_list[i].major == major && qore_mod_api_list[i].minor == minor)
222  return true;
223  return false;
224 }
225 
226 #endif // _QORE_MODULEMANAGER_H
qore_module_parse_cmd_t
void(* qore_module_parse_cmd_t)(const QoreString &cmd, ExceptionSink *xsink)
signature of the module parse command function
Definition: ModuleManager.h:78
qore_module_ns_init_t
void(* qore_module_ns_init_t)(QoreNamespace *root_ns, QoreNamespace *qore_ns)
signature of the module namespace change/delta function
Definition: ModuleManager.h:72
QoreModuleInfo::dependencies
strvec_t dependencies
list of binary modules that this binary module depends on
Definition: ModuleManager.h:105
ModuleManager::addStandardModulePaths
static DLLEXPORT void addStandardModulePaths()
adds the standard module directories to the module path (only necessary if the module paths are set u...
qore_mod_api_compat_s
element of qore_mod_api_list;
Definition: ModuleManager.h:52
QoreProgram
supports parsing and executing Qore-language code, reference counted, dynamically-allocated only
Definition: QoreProgram.h:126
QoreHashNode
This is the hash or associative list container type in Qore, dynamically allocated only,...
Definition: QoreHashNode.h:50
ModuleManager::getModuleList
static DLLEXPORT QoreListNode * getModuleList()
retuns a list of module information hashes, caller owns the list reference returned
ModuleManager::registerUserModuleFromSource
DLLEXPORT void registerUserModuleFromSource(const char *name, const char *src, QoreProgram *pgm, ExceptionSink *xsink)
registers the given user module from the module source given as an argument
QoreListNode
This is the list container type in Qore, dynamically allocated only, reference counted.
Definition: QoreListNode.h:52
QoreNamespace
contains constants, classes, and subnamespaces in QoreProgram objects
Definition: QoreNamespace.h:65
ModuleManager
manages the loading of Qore modules from feature or path names. Also manages adding module changes in...
Definition: ModuleManager.h:122
QoreString
Qore's string type supported by the QoreEncoding class.
Definition: QoreString.h:81
ModuleManager::addModuleDirList
static DLLEXPORT void addModuleDirList(const char *strlist)
to add a list of directories separated by ':' characters to the QORE_MODULE_DIR list,...
qore_license_t
qore_license_t
qore library and module license type identifiers
Definition: common.h:85
ModuleManager::addAutoModuleDir
static DLLEXPORT void addAutoModuleDir(const char *dir)
no longer supported - removed for security reasons
QoreModuleInfo
Qore module info.
Definition: ModuleManager.h:88
qore_mod_api_list
const DLLEXPORT qore_mod_api_compat_s * qore_mod_api_list
list of module APIs this library supports
ExceptionSink
container for holding Qore-language exception information and also for registering a "thread_exit" ca...
Definition: ExceptionSink.h:48
ModuleManager::addAutoModuleDirList
static DLLEXPORT void addAutoModuleDirList(const char *strlist)
no longer supported - removed for security reasons
qore_module_delete_t
void(* qore_module_delete_t)()
signature of the module destructor function
Definition: ModuleManager.h:75
ModuleManager::getModuleHash
static DLLEXPORT QoreHashNode * getModuleHash()
retuns a hash of module information hashes, caller owns the list reference returned
QoreModuleInfo::info
QoreHashNode * info
extra information to appear in the module info hash
Definition: ModuleManager.h:108
ModuleManager::addModuleDir
static DLLEXPORT void addModuleDir(const char *dir)
to add a single directory to the QORE_MODULE_DIR list, can only be called before the library initiali...
qore_binary_module_desc_t
void(* qore_binary_module_desc_t)(QoreModuleInfo &mod_info)
Module description function.
Definition: ModuleManager.h:112
ModuleManager::parseLoadModule
static DLLEXPORT QoreStringNode * parseLoadModule(const char *name, QoreProgram *pgm=nullptr)
loads the named module at parse time (or before run time, even if parsing is not active),...
qore_module_init_t
QoreStringNode *(* qore_module_init_t)()
signature of the module constructor/initialization function
Definition: ModuleManager.h:69
qore_mod_api_list_len
const DLLEXPORT unsigned qore_mod_api_list_len
number of elements in qore_mod_api_list;
QoreStringNode
Qore's string value type, reference counted, dynamically-allocated only.
Definition: QoreStringNode.h:50
MM
DLLEXPORT ModuleManager MM
the global ModuleManager object
ModuleManager::runTimeLoadModule
static DLLEXPORT int runTimeLoadModule(const char *name, ExceptionSink *xsink)
loads the named module at run time, returns -1 if an exception was raised, 0 for OK