ZOO-Project
|
Go to the source code of this file.
Functions | |
xmlXPathObjectPtr | extractFromDoc (xmlDocPtr, const char *) |
Apply XPath Expression on XML document. More... | |
int | appendMapsToMaps (maps *, maps *, maps *, elements *) |
Create (or append to) an array valued maps value = "["",""]". More... | |
void | ensureDecodedBase64 (maps **) |
Make sure that each value encoded in base64 in a maps is decoded. More... | |
int | kvpParseInputs (maps **, service *, map *, maps **, HINTERNET *) |
Parse inputs provided as KVP and store them in a maps. More... | |
int | xmlParseBoundingBox (maps **, map **, xmlDocPtr) |
Parse a BoundingBoxData node. More... | |
int | kvpParseOutputs (maps **, map *, maps **) |
Parse outputs provided as KVP and store them in a maps. More... | |
int | xmlParseInputs (maps **, service *, maps **, xmlDocPtr, xmlNodeSet *, HINTERNET *) |
Parse inputs from XML nodes and store them in a maps. More... | |
int | xmlParseOutputs (maps **, map **, maps **, xmlDocPtr, xmlNodePtr, bool) |
Parse outputs from XML nodes and store them in a maps. More... | |
int | xmlParseRequest (maps **, const char *, map **, service *, maps **, maps **, HINTERNET *) |
Parse XML request and store information in maps. More... | |
int | parseRequest (maps **, map **, service *, maps **, maps **, HINTERNET *) |
Parse request and store information in maps. More... | |
void | checkValidValue (map *, map **, const char *, const char **, int) |
Verify if a parameter value is valid. More... | |
int | validateRequest (maps **, service *, map *, maps **, maps **, HINTERNET *) |
Ensure that each requested arguments are present in the request DataInputs and ResponseDocument / RawDataOutput. More... | |
void | parseCookie (maps **, const char *) |
Parse cookie contained in request headers. More... | |
Create (or append to) an array valued maps value = "["",""]".
m | the conf maps containing the main.cfg settings |
mo | the map to update |
mi | the map to append |
elem | the elements containing default definitions |
void checkValidValue | ( | map * | request, |
map ** | res, | ||
const char * | toCheck, | ||
const char ** | avalues, | ||
int | mandatory | ||
) |
Verify if a parameter value is valid.
request | the request map |
res | the error map potentially generated |
toCheck | the parameter to use |
avalues | the acceptable values (or null if testing only for presence) |
mandatory | verify the presence of the parameter if mandatory > 0 |
void ensureDecodedBase64 | ( | maps ** | in | ) |
Make sure that each value encoded in base64 in a maps is decoded.
in | the maps containing the values |
xmlXPathObjectPtr extractFromDoc | ( | xmlDocPtr | doc, |
const char * | search | ||
) |
Apply XPath Expression on XML document.
doc | the XML Document |
search | the XPath expression |
int kvpParseInputs | ( | maps ** | main_conf, |
service * | s, | ||
map * | request_inputs, | ||
maps ** | request_output, | ||
HINTERNET * | hInternet | ||
) |
Parse inputs provided as KVP and store them in a maps.
main_conf | the conf maps containing the main.cfg settings |
s | the service |
request_inputs | the map storing KVP raw value |
request_output | the maps to store the KVP pairs |
hInternet | the HINTERNET queue to add potential requests |
Parse outputs provided as KVP and store them in a maps.
main_conf | the conf maps containing the main.cfg settings |
request_inputs | the map storing KVP raw value |
request_output | the maps to store the KVP pairs |
Parsing outputs provided as KVP
Put each Output into the outputs_as_text array
void parseCookie | ( | maps ** | conf, |
const char * | cookie | ||
) |
Parse cookie contained in request headers.
conf | the conf maps containinfg the main.cfg |
cookie | the |
int parseRequest | ( | maps ** | main_conf, |
map ** | request_inputs, | ||
service * | s, | ||
maps ** | inputs, | ||
maps ** | outputs, | ||
HINTERNET * | hInternet | ||
) |
Parse request and store information in maps.
main_conf | the conf maps containing the main.cfg settings |
post | the string containing the XML request |
request_inputs | the map storing KVP raw value |
s | the service |
inputs | the maps to store the KVP pairs |
outputs | the maps to store the KVP pairs |
hInternet | the HINTERNET queue to add potential requests |
int validateRequest | ( | maps ** | main_conf, |
service * | s, | ||
map * | original_request, | ||
maps ** | request_inputs, | ||
maps ** | request_outputs, | ||
HINTERNET * | hInternet | ||
) |
Ensure that each requested arguments are present in the request DataInputs and ResponseDocument / RawDataOutput.
Potentially run http requests from the queue in parallel. For optional inputs add default values defined in the ZCFG file.
main_conf | |
s | |
original_request | |
request_inputs | |
request_outputs | |
hInternet |
Parse a BoundingBoxData node.
http://schemas.opengis.net/ows/1.1.0/owsCommon.xsd: BoundingBoxType
A map to store boundingbox information will contain:
main_conf | the conf maps containing the main.cfg settings |
request_inputs | the map storing KVP raw value |
doc | the xmlDocPtr containing the BoudingoxData node |
int xmlParseInputs | ( | maps ** | main_conf, |
service * | s, | ||
maps ** | request_output, | ||
xmlDocPtr | doc, | ||
xmlNodeSet * | nodes, | ||
HINTERNET * | hInternet | ||
) |
Parse inputs from XML nodes and store them in a maps.
main_conf | the conf maps containing the main.cfg settings |
s | the service |
request_output | the maps to store the KVP pairs |
doc | the xmlDocPtr containing the original request |
nodes | the input nodes array |
hInternet | the HINTERNET queue to add potential requests |
int xmlParseOutputs | ( | maps ** | main_conf, |
map ** | request_inputs, | ||
maps ** | request_output, | ||
xmlDocPtr | doc, | ||
xmlNodePtr | cur, | ||
bool | raw | ||
) |
Parse outputs from XML nodes and store them in a maps.
main_conf | the conf maps containing the main.cfg settings |
request_inputs | the map storing KVP raw value |
request_output | the maps to store the KVP pairs |
doc | the xmlDocPtr containing the original request |
cur | the xmlNodePtr corresponding to the ResponseDocument or RawDataOutput XML node |
raw | true if the node is RawDataOutput, false in case of ResponseDocument |
int xmlParseRequest | ( | maps ** | main_conf, |
const char * | post, | ||
map ** | request_inputs, | ||
service * | s, | ||
maps ** | inputs, | ||
maps ** | outputs, | ||
HINTERNET * | hInternet | ||
) |
Parse XML request and store information in maps.
main_conf | the conf maps containing the main.cfg settings |
post | the string containing the XML request |
request_inputs | the map storing KVP raw value |
s | the service |
inputs | the maps to store the KVP pairs |
outputs | the maps to store the KVP pairs |
hInternet | the HINTERNET queue to add potential requests |
Extract Input nodes from the XML Request.