Qore DataProvider Module Reference 2.7.5
Loading...
Searching...
No Matches
QoreDataType.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
26namespace DataProvider {
28
32
33public:
34protected:
36 Type type;
37
40
43
45
50 hash<string, bool> base_type_hash;
51
53 *hash<string, bool> accept_type_hash;
54
56 *hash<string, bool> return_type_hash;
57
59 hash<string, bool> blacklist_type_hash;
60
63 "qore.no_null": <DataProviderTypeOptionInfo>{
64 "type": Type::Boolean,
65 "desc": "if True then NULL is not supported on input if NOTHING is also not accepted",
66 },
67 };
68
70 const SoftTypeMap = {
71 "int": SoftIntType,
72 "bool": SoftBoolType,
73 "float": SoftFloatType,
74 "number": SoftNumberType,
75 "string": SoftStringType,
76 "date": SoftDateType,
77 "list": SoftAutoListType,
78 "*int": SoftIntOrNothingType,
79 "*bool": SoftBoolOrNothingType,
80 "*float": SoftFloatOrNothingType,
81 "*number": SoftNumberOrNothingType,
82 "*string": SoftStringOrNothingType,
83 "*date": SoftDateOrNothingType,
84 "*list": SoftAutoListOrNothingType,
85 };
86
87public:
88
90 constructor(Type type, *hash<auto> options, *hash<auto> tags);
91
92
94 string getName();
95
96
98 string getDesc();
99
100
102 *hash<string, hash<DataProviderTypeOptionInfo>> getSupportedOptions();
103
104
107
108
110 *hash<string, bool> getDirectTypeHash();
111
112
115
116
118
124 auto acceptsValue(auto value);
125
126
128 *hash<string, AbstractDataField> getFields();
129
130
132 hash<string, bool> getAcceptTypeHash();
133
134
136 hash<string, bool> getReturnTypeHash();
137
138
140 hash<DataTypeInfo> getInfo();
141
142
144
147
148
150
153
154};
155};
describes a data type
Definition: AbstractDataProviderType.qc.dox.h:206
*hash< auto > tags
type tags
Definition: AbstractDataProviderType.qc.dox.h:222
hash< auto > options
type options
Definition: AbstractDataProviderType.qc.dox.h:219
describes a data type based on a Qore data type
Definition: QoreDataType.qc.dox.h:31
bool or_nothing_type
flag for "or nothing" types
Definition: QoreDataType.qc.dox.h:42
const SupportedOptions
supported options
Definition: QoreDataType.qc.dox.h:62
*hash< string, hash< DataProviderTypeOptionInfo > > getSupportedOptions()
returns supported options
hash< string, bool > getReturnTypeHash()
returns a hash of base types returned by this type; keys are type names
AbstractDataProviderType getOrNothingType()
returns an "or nothing" type equivalent to the current type
*AbstractDataProviderType getElementType()
returns the subtype (for lists or hashes) if there is only one
hash< string, bool > getAcceptTypeHash()
returns a hash of base types accepted by this type; keys are type names
*hash< string, bool > accept_type_hash
hash of base types accepted by this type; keys are type names
Definition: QoreDataType.qc.dox.h:53
hash< string, bool > base_type_hash
hash of base types where no translations are performed; keys are type codes, not names
Definition: QoreDataType.qc.dox.h:50
*hash< string, bool > return_type_hash
hash of base types returned by this type; keys are type names
Definition: QoreDataType.qc.dox.h:56
Type type
the Qore type
Definition: QoreDataType.qc.dox.h:36
*hash< string, bool > getDirectTypeHash()
returns a hash of native base type code where no translations are performed; keys are type codes,...
bool soft_type
flag for soft types
Definition: QoreDataType.qc.dox.h:39
hash< DataTypeInfo > getInfo()
returns a description of the type as a hash
auto acceptsValue(auto value)
returns the value if the value can be assigned to the type
constructor(Type type, *hash< auto > options, *hash< auto > tags)
creates the type
const SoftTypeMap
map from normal types to soft types
Definition: QoreDataType.qc.dox.h:70
*Type getValueType()
returns the base type for the type, if any
AbstractDataProviderType getSoftType()
returns a "soft" type equivalent to the current type
string getName()
returns the type name
hash< string, bool > blacklist_type_hash
hash of type codes accepted by the base type but not accepted by this type: code -> True
Definition: QoreDataType.qc.dox.h:59
string getDesc()
Returns the description.
*hash< string, AbstractDataField > getFields()
returns the fields of the data structure; if any
Qore AbstractDataField class definition.
Definition: AbstractDataField.qc.dox.h:27
describes type options
Definition: AbstractDataProviderType.qc.dox.h:144