Qore ServiceNowRestDataProvider Module Reference 1.2.1
Loading...
Searching...
No Matches
ServiceNowRestRecordIterator.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
28class ServiceNowRestRecordIterator : public AbstractDataProviderRecordIterator {
29
30public:
31
32private:
35
37 string name;
38
40 hash<ServiceNowRestRecordInfo> record_info;
41
44
45public:
46
48
54 constructor(ServiceNowRestClient::ServiceNowRestClient rest, string name, hash<ServiceNowRestRecordInfo> record_info, *hash<auto> where_cond, *hash<auto> search_options);
55
56
58
61 bool valid();
62
63
65
71 bool next();
72
73
75
77 hash<auto> getValue();
78
79
81
87 auto memberGate(string key);
88
89
90 /*
91 #! Returns "or" clauses
92 string getOrClause(list<auto> arglist) {
93 list<auto> l = map $1, (map doWhereExpression($1), arglist), $1;
94 return l ? (foldl $1 + "^OR" + $2, l) : "";
95 }
96 */
97
99 *string makeQuery(*hash<DataProviderExpression> where_cond, *hash<auto> search_options);
100
101
103
105 *hash<string, DataProvider::AbstractDataField> getRecordType();
106
107
108protected:
109 string getOrderBy(softlist<string> coll);
110public:
111
112
113protected:
114 bool checkColumnName(string col);
115public:
116
117
118protected:
119 string getColumnNames(*softlist<auto> column_names);
120public:
121
122
123protected:
124 string doWhereExpression(hash<DataProviderExpression> where_cond, *hash<auto> search_options);
125public:
126
127
128protected:
129 string doWhereExpressionIntern(hash<DataProviderExpression> arg);
130public:
131
132
133protected:
134 string doWhereExpression(auto arg);
135public:
136
137
138protected:
139 string getArgValue(string key, auto value);
140public:
141
142};
143};
Defines the record iterator class for Table-based iterators.
Definition: ServiceNowRestRecordIterator.qc.dox.h:28
constructor(ServiceNowRestClient::ServiceNowRestClient rest, string name, hash< ServiceNowRestRecordInfo > record_info, *hash< auto > where_cond, *hash< auto > search_options)
creates the iterator
bool next()
Increments the row pointer when retrieving rows from a select statement; returns True if there is a r...
hash< auto > getValue()
Returns a single record if the iterator is valid.
*string makeQuery(*hash< DataProviderExpression > where_cond, *hash< auto > search_options)
Returns the filter for a request.
string name
current object name
Definition: ServiceNowRestRecordIterator.qc.dox.h:37
bool valid()
Returns True if the iterator is valid.
ServiceNowRestClient::ServiceNowRestClient rest
The REST client object for API calls.
Definition: ServiceNowRestRecordIterator.qc.dox.h:34
*hash< string, DataProvider::AbstractDataField > getRecordType()
Returns the record description, if available.
Qore::ListHashIterator i
record iterator
Definition: ServiceNowRestRecordIterator.qc.dox.h:43
hash< ServiceNowRestRecordInfo > record_info
Record info for the entity.
Definition: ServiceNowRestRecordIterator.qc.dox.h:40
auto memberGate(string key)
Returns the value of the given field in the current row, if the iterator is valid.
Qore ServiceNowRestDataProvider module definition.
Definition: ServiceNowRestDataProvider.qc.dox.h:26