1 | /* |
---|
2 | * Author : Gérald FENOY |
---|
3 | * |
---|
4 | * Copyright 2014-2020 GeoLabs SARL. All rights reserved. |
---|
5 | * |
---|
6 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
---|
7 | * of this software and associated documentation files (the "Software"), to deal |
---|
8 | * in the Software without restriction, including without limitation the rights |
---|
9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
---|
10 | * copies of the Software, and to permit persons to whom the Software is |
---|
11 | * furnished to do so, subject to the following conditions: |
---|
12 | * |
---|
13 | * The above copyright notice and this permission notice shall be included in |
---|
14 | * all copies or substantial portions of the Software. |
---|
15 | * |
---|
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
---|
17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
---|
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
---|
19 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
---|
20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
---|
21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
---|
22 | * THE SOFTWARE. |
---|
23 | */ |
---|
24 | |
---|
25 | #ifndef ZOO_JSON_H |
---|
26 | #define ZOO_JSON_H 1 |
---|
27 | |
---|
28 | #pragma once |
---|
29 | |
---|
30 | #include "response_print.h" |
---|
31 | #include <stdio.h> |
---|
32 | #include <ctype.h> |
---|
33 | #include <service.h> |
---|
34 | #include <json_object.h> |
---|
35 | |
---|
36 | #ifdef __cplusplus |
---|
37 | extern "C" { |
---|
38 | #endif |
---|
39 | /** |
---|
40 | * Name and corresponding attributes depending on the WPS version |
---|
41 | */ |
---|
42 | static const char* jcapabilities[4]={ |
---|
43 | "jobControlOptions","sync-execute async-execute dismiss", |
---|
44 | "outputTransmission","value reference" |
---|
45 | }; |
---|
46 | |
---|
47 | json_object* mapToJson(map*); |
---|
48 | json_object* mapsToJson(maps*); |
---|
49 | json_object* serviceToJson(service*); |
---|
50 | void printGetCapabilitiesForProcessJ(registry*, maps*,void*,void*,service*); |
---|
51 | void printExceptionReportResponseJ(maps*,map*); |
---|
52 | void parseJRequest(maps*,service*,json_object*,map*,maps**,maps**); |
---|
53 | json_object* printJResult(maps*,service*,maps*,int); |
---|
54 | json_object* printJobStatus(maps*,char*); |
---|
55 | json_object* printJobList(maps*); |
---|
56 | int createStatusFile(maps*,int); |
---|
57 | json_object* createStatus(maps*,int); |
---|
58 | char* json_getStatusFilePath(maps*); |
---|
59 | json_object* parseJson(maps*,char*); |
---|
60 | json_object* json_readFile(maps*,char*); |
---|
61 | char* getResultPath(maps*,char*); |
---|
62 | int json_getStatusFile(maps*); |
---|
63 | void produceApi(maps*,json_object*); |
---|
64 | //void printIOTypeJ(maps*, const char*, elements*,json_object*,service*); |
---|
65 | #ifdef __cplusplus |
---|
66 | } |
---|
67 | #endif |
---|
68 | #endif |
---|