Qore DataProvider Module Reference 2.7.3
Loading...
Searching...
No Matches
DataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
27namespace DataProvider {
30
31public:
33 const FactoryMap = {
34 "cdsrest": "CdsRestDataProvider",
35 "csvread": "CsvUtil",
36 "csvwrite": "CsvUtil",
37 "db": "DbDataProvider",
38 "elasticsearch": "ElasticSearchDataProvider",
39 "file": "FileDataProvider",
40 "filepoller": "FilePoller",
41 "fixedlengthread": "FixedLengthUtil",
42 "fixedlengthwrite": "FixedLengthUtil",
43 "ftpclient": "FtpClientDataProvider",
44 "ftppoller": "FtpPoller",
45 "httpclient": "HttpClientDataProvider",
46 "restclient": "RestClientDataProvider",
47 "salesforcerest": "SalesforceRestDataProvider",
48 "sax": "SaxDataProvider",
49 "servicenowrest": "ServiceNowRestDataProvider",
50 "smtpclient": "SmtpClient",
51
52 // provided by the xml module
53 "soap": "SoapDataProvider",
54
55 "swagger": "SwaggerDataProvider",
56 "wsclient": "WebSocketClient",
57 };
58
60 const TypeMap = {
61 "qore/ftp": "FtpPollerUtil",
62 "qore/sftp": "SftpPollerUtil",
63 "qore/fsevents": "FsEventPollerUtil",
64 };
65
67 const FactoryModuleList = keys (map {$1: True}, FactoryMap.iterator());
68 // "map" is used above to ensure that the values only appear once in the final list
69
70protected:
72 static hash<string, AbstractDataProviderFactory> factory_cache;
73
75 static hash<string, string> factory_module_map;
76
78 static Mutex factory_cache_lock();
79
82
84 static hash<string, string> type_module_map;
85
87
89 static bool allow_env_config = False;
90
92 static bool env_config_locked = False;
93
95 static hash<string, bool> mod_map;
96
97public:
98
100
105
108
110
117
119
129 static AbstractDataProvider getFactoryObjectWithTemplate(string path, *hash<auto> template_options,
130 *hash<auto> options) {
131 AbstractDataProvider provider;
132 {
133 list<string> path_list = path.split("/");
134 provider = DataProvider::getFactoryEx(shift path_list).createWithTemplate(template_options, options);
135 map provider = provider.getChildProviderEx($1), path_list;
136 }
137 return provider;
138 }
139
141
149 static AbstractDataProvider getFactoryObjectFromExample(string path, data example, *hash<auto> options);
150
152
160 static AbstractDataProvider getFactoryObjectFromExample(string path, InputStream example, *hash<auto> options);
161
163
168 static AbstractDataProvider getFactoryObject(string path, *hash<auto> options);
169
171
182
184
195
197protected:
198 static hash<FactoryInfo> getFactoryInfoFromString(string name);
199public:
200
201
203 static *list<string> listFactories();
204
207
209
217 static registerType(string path, AbstractDataProviderType type);
218
220
227 static *AbstractDataProviderType getType(string path);
228
230
240
243
245 static lockAllTypes();
246
248
252 static *list<string> listTypes();
253
256
259
262
265
268
270
273 static hash<auto> getInfoAsData(hash<auto> info0, *bool with_type_info);
274
276
281
283 static bool getAutoConfig();
284
286 static list<string> getPathList(string path);
287
289protected:
290 static checkRequest();
291public:
292
293
295protected:
296 static *string tryGetFactoryModuleName(string name);
297public:
298
299
301protected:
302 static *string tryGetTypeModuleName(string name);
303public:
304
305
307protected:
308 static *string tryGetModuleName(string name, string func, string type);
309public:
310
311
313protected:
314 static *DataProviderTypeEntry tryLoadTypeFromPath(list<string> type_path);
315public:
316
317
319protected:
320 static bool tryLoad(string module_str, *bool verbose);
321public:
322
323
325protected:
326 static *object loadFromEnvironment(string func, string type, *hash<SymbolInfo> info);
327public:
328
329
331protected:
332 static *object checkSymbol(hash<SymbolInfo> info);
333public:
334
335
337protected:
338 static bool checkInjection(object obj, hash<string, string> module_map);
339public:
340
341};
342
343// private hashdecls
344hashdecl SymbolInfo {
345 // symbol type
346 string type;
347 # symbol name
348 string name;
349}
350hashdecl FactoryInfo {
351 // factory name
352 string name;
353 # path to final data provider in factory
354 list<string> path_list;
355 # factory options
356 auto options;
357}
358};
Data provider factory class.
Definition: AbstractDataProviderFactory.qc.dox.h:68
AbstractDataProvider createWithTemplate(*hash< auto > template_options, *hash< auto > options)
Creates an object from the given constructor options.
The AbstractDataProvider class.
Definition: AbstractDataProvider.qc.dox.h:742
AbstractDataProvider getChildProviderEx(string name)
Returns the given child provider or throws an exception if the given child is unknown.
describes a data type
Definition: AbstractDataProviderType.qc.dox.h:206
static *AbstractDataProviderType getType(string path)
Returns the given data provider type or NOTHING if not present.
static AbstractDataProviderType getTypeEx(string path)
Returns the given data provider type or throws an exception if not present.
static registerKnownFactories()
Registers all known data provider factories.
static *DataProviderTypeEntry tryLoadTypeFromPath(list< string > type_path)
Tries to load the given type.
static setAutoConfig()
Sets the flag that allows for automatic configuration from environment variables.
static AbstractDataProvider getFactoryObjectFromString(string name)
Returns a data provider object from the given factory string.
static checkRequest()
Sets the env_config_locked variable if not already set.
static registerFactory(AbstractDataProviderFactory factory)
Register a new data provider factory.
static *AbstractDataProviderFactory getFactory(string name)
Returns the given data provider factory or NOTHING if not present.
static AbstractDataProviderFactory getFactoryEx(string name)
Returns the given data provider factory or throws an exception if not present.
static Mutex factory_cache_lock()
data provider factory cache lock
static AbstractDataProvider getFactoryObjectWithTemplate(string path, *hash< auto > template_options, *hash< auto > options)
Returns a data provider object from the given factory, created with the given constructor options.
Definition: DataProvider.qc.dox.h:129
static loadProvidersFromEnvironment()
Loads data providers from the environment.
static DataProviderTypeCache getTypeCache()
Returns the data provider cache.
static registerType(string path, AbstractDataProviderType type)
Register a new data provider type.
static AbstractDataProvider getFactoryObjectFromStringUseEnv(string name)
Returns a data provider object from the given factory string using environment variables to find the ...
static list< string > getPathList(string path)
Returns a list of strings in a path separated by "/" characters.
static *list< string > listTypes()
Returns a list of registered data provider type paths.
static *string tryGetModuleName(string name, string func, string type)
Tries to load a module corresponding to the given factory.
static bool checkInjection(object obj, hash< string, string > module_map)
Check if the object is from a module that has been subject to dependency injections.
static hash< string, string > type_module_map
data provider type module map
Definition: DataProvider.qc.dox.h:84
static AbstractDataProvider getFactoryObjectFromExample(string path, InputStream example, *hash< auto > options)
Returns a data provider object from the given factory, created with the given options and example dat...
static loadTypesFromEnvironment()
Loads data types from the environment.
static hash< string, AbstractDataProviderFactory > factory_cache
data provider factory cache
Definition: DataProvider.qc.dox.h:72
static *object checkSymbol(hash< SymbolInfo > info)
Returns True if an object of the given type has been loaded.
static DataProviderTypeCache type_cache()
data provider data type cache
static bool tryLoad(string module_str, *bool verbose)
Try to load the given module.
static AbstractDataProvider getFactoryObjectFromExample(string path, data example, *hash< auto > options)
Returns a data provider object from the given factory, created with the given options and example dat...
static *list< string > listFactories()
Returns a list of registered data provider factories.
static DataProviderTypeEntry getTypeRoot()
Returns the root type entry.
static registerKnownTypes()
Registers all known data provider types.
static hash< FactoryInfo > getFactoryInfoFromString(string name)
Returns a hash of factory information from a string.
static lockAllTypes()
Locks all types.
static *AbstractDataProvider tryLoadProviderForConnectionFromEnv(string name)
Tries to load a data provider from the environment from the connection name.
static hash< string, bool > mod_map
set of module already loaded
Definition: DataProvider.qc.dox.h:95
static AbstractDataProvider getFactoryObject(string path, *hash< auto > options)
Returns a data provider object from the given factory, created with the given constructor options.
static *string tryGetTypeModuleName(string name)
Tries to load a module corresponding to the given factory.
static hash< auto > getInfoAsData(hash< auto > info0, *bool with_type_info)
Converts an info hash with objects to a hash with string descriptions instead of the objects.
static hash< string, string > factory_module_map
data provider factory module map
Definition: DataProvider.qc.dox.h:75
static bool getAutoConfig()
Returns the auto config flag.
static *object loadFromEnvironment(string func, string type, *hash< SymbolInfo > info)
Loads modules from the QORE_DATA_PROVIDERS environment variable.
static *string tryGetFactoryModuleName(string name)
Tries to load a module corresponding to the given factory.
Data provider type cache class.
Definition: DataProviderTypeCache.qc.dox.h:29
the DataProviderTypeEntry class
Definition: DataProviderTypeEntry.qc.dox.h:58
Qore AbstractDataField class definition.
Definition: AbstractDataField.qc.dox.h:27