Qore FileDataProvider Module Reference 1.0
Loading...
Searching...
No Matches
FileMkdirDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
26namespace FileDataProvider {
28class FileMkdirDataProvider : public AbstractDataProvider {
29
30public:
32 const ProviderInfo = <DataProviderInfo>{
33 "name": "mkdir",
34 "desc": "File mkdir data provider; creates a directory given a path as an argument",
35 "type": "FileMkdirDataProvider",
36 "supports_request": True,
37 };
38
40 const ProviderSummaryInfo = cast<hash<DataProviderSummaryInfo>>(ProviderInfo{
41 AbstractDataProvider::DataProviderSummaryInfoKeys
42 });
43
46
49
51 string getName();
52
53
55
60protected:
61 auto doRequestImpl(auto req, *hash<auto> request_options);
62public:
63
64
66
68protected:
69 *AbstractDataProviderType getRequestTypeImpl();
70public:
71
72
74
76protected:
77 *AbstractDataProviderType getResponseTypeImpl();
78public:
79
80
82 hash<DataProviderInfo> getStaticInfoImpl();
83
84};
85};
The File mkdir data provider class.
Definition: FileMkdirDataProvider.qc.dox.h:28
hash< DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
*AbstractDataProviderType getResponseTypeImpl()
Returns the description of a response message, if this object represents a response message.
const ProviderSummaryInfo
Provider summary info.
Definition: FileMkdirDataProvider.qc.dox.h:40
string getName()
Returns the data provider name.
*AbstractDataProviderType getRequestTypeImpl()
Returns the description of a successful request message, if any.
const RequestType
Request type.
Definition: FileMkdirDataProvider.qc.dox.h:45
auto doRequestImpl(auto req, *hash< auto > request_options)
Makes a request and returns the response.
const ProviderInfo
Provider info.
Definition: FileMkdirDataProvider.qc.dox.h:32
const ResponseType
Response type.
Definition: FileMkdirDataProvider.qc.dox.h:48
Data type for mkdir file request calls.
Definition: FileMkdirRequestDataType.qc.dox.h:27
Data type for delete file request calls.
Definition: FilePathDataType.qc.dox.h:27
Qore FileDataProvider module definition.
Definition: FileCopyDataProvider.qc.dox.h:26