Grassroots Infrastructure
The Grassroots Infrastructure is a suite of computing tools to help users and developers use scientific data infrastructure that can easily be interconnected.
brapi_module.h
Go to the documentation of this file.
1 /*
2 ** Copyright 2014-2018 The Earlham Institute
3 **
4 ** Licensed under the Apache License, Version 2.0 (the "License");
5 ** you may not use this file except in compliance with the License.
6 ** You may obtain a copy of the License at
7 **
8 ** http://www.apache.org/licenses/LICENSE-2.0
9 **
10 ** Unless required by applicable law or agreed to in writing, software
11 ** distributed under the License is distributed on an "AS IS" BASIS,
12 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ** See the License for the specific language governing permissions and
14 ** limitations under the License.
15 */
16 /*
17  * brapi_module.h
18  *
19  * Created on: 9 Nov 2018
20  * Author: billy
21  */
22 
23 #ifndef SERVERS_BRAPI_MODULE_INCLUDE_BRAPI_MODULE_H_
24 #define SERVERS_BRAPI_MODULE_INCLUDE_BRAPI_MODULE_H_
25 
26 #include "jansson.h"
27 #include "httpd.h"
28 
29 #include "parameter_set.h"
30 
31 
32 
33 #include "apr_hash.h"
34 #include "ap_config.h"
35 #include "ap_provider.h"
36 #include "httpd.h"
37 #include "http_core.h"
38 #include "http_config.h"
39 #include "http_log.h"
40 #include "http_protocol.h"
41 #include "http_request.h"
42 
43 
44 
45 typedef enum
46 {
50 } APIStatus;
51 
52 
56 typedef struct
57 {
60 
62 
64 
66 
68 
69 
74 json_t *GetGrassrootsRequest (ParameterSet *params_p);
75 
76 
77 json_t *CreateResponseJSONForResult (json_t *payload_array_p, const size_t current_page, const size_t page_size, const size_t total_count, const size_t total_pages);
78 
79 
80 APIStatus DoGrassrootsCall (request_rec *req_p, ParameterSet *params_p, json_t * (*convert_grassroots_to_brapi_fn) (const json_t *grassroots_result_p, request_rec *req_p, ModBrapiConfig *config_p));
81 
82 
83 char *GetObjectIdString (const json_t * const grassroots_json_p);
84 
85 
86 const char *GetParameterValue (apr_table_t *params_p, const char * const param_s, apr_pool_t *pool_p);
87 
88 bool CopyJSONStringValue (const json_t *src_p, const char *src_key_s, json_t *dest_p, const char *dest_key_s);
89 
90 void GetSortSearchParameters (apr_table_t *params_p, const char **sort_by_ss, const char **sort_order_ss, apr_pool_t *pool_p);
91 
92 
93 
94 #endif /* SERVERS_BRAPI_MODULE_INCLUDE_BRAPI_MODULE_H_ */
parameter_set.h
GetSortSearchParameters
void GetSortSearchParameters(apr_table_t *params_p, const char **sort_by_ss, const char **sort_order_ss, apr_pool_t *pool_p)
ModBrapiConfig::mbc_grassroots_frontend_trials_path_s
const char * mbc_grassroots_frontend_trials_path_s
Definition: brapi_module.h:65
CreateResponseJSONForResult
json_t * CreateResponseJSONForResult(json_t *payload_array_p, const size_t current_page, const size_t page_size, const size_t total_count, const size_t total_pages)
AS_FAILED
Definition: brapi_module.h:48
GetGrassrootsRequest
json_t * GetGrassrootsRequest(ParameterSet *params_p)
Create the request object to send to the Grassroots.
DoGrassrootsCall
APIStatus DoGrassrootsCall(request_rec *req_p, ParameterSet *params_p, json_t *(*convert_grassroots_to_brapi_fn)(const json_t *grassroots_result_p, request_rec *req_p, ModBrapiConfig *config_p))
ModBrapiConfig::mbc_grassroots_frontend_url_s
const char * mbc_grassroots_frontend_url_s
Definition: brapi_module.h:61
ModBrapiConfig::mbc_grassroots_frontend_studies_path_s
const char * mbc_grassroots_frontend_studies_path_s
Definition: brapi_module.h:63
AS_SUCCEEDED
Definition: brapi_module.h:49
APIStatus
APIStatus
Definition: brapi_module.h:45
AS_IGNORED
Definition: brapi_module.h:47
ModBrapiConfig
The configuration for the Grassroots BrAPI module.
Definition: brapi_module.h:56
ModBrapiConfig::mbc_grassroots_server_url_s
const char * mbc_grassroots_server_url_s
The URL to the Grassroots installation.
Definition: brapi_module.h:59
CopyJSONStringValue
bool CopyJSONStringValue(const json_t *src_p, const char *src_key_s, json_t *dest_p, const char *dest_key_s)
GetObjectIdString
char * GetObjectIdString(const json_t *const grassroots_json_p)
GetParameterValue
const char * GetParameterValue(apr_table_t *params_p, const char *const param_s, apr_pool_t *pool_p)
ParameterSet
A set of Parameters along with an optional name and description.
Definition: parameter_set.h:46