afb-hreq: creation of hreq classe
[src/app-framework-binder.git] / src / afb-hreq.h
1 /*
2  * Copyright 2016 IoT.bzh
3  * Author: José Bollo <jose.bollo@iot.bzh>
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *   http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18
19 struct afb_hreq_post {
20         const char *upload_data;
21         size_t *upload_data_size;
22 };
23
24 struct afb_hreq {
25         AFB_session *session;
26         struct MHD_Connection *connection;
27         enum afb_method method;
28         const char *url;
29         size_t lenurl;
30         const char *tail;
31         size_t lentail;
32         struct afb_hreq **recorder;
33         int (*post_handler) (struct afb_hreq *, struct afb_hreq_post *);
34         int (*post_completed) (struct afb_hreq *, struct afb_hreq_post *);
35         void *post_data;
36 };
37
38 int afb_hreq_unprefix(struct afb_hreq *request, const char *prefix, size_t length);
39
40 int afb_hreq_valid_tail(struct afb_hreq *request);
41
42 void afb_hreq_reply_error(struct afb_hreq *request, unsigned int status);
43
44 int afb_hreq_reply_file_if_exist(struct afb_hreq *request, int dirfd, const char *filename);
45
46 int afb_hreq_reply_file(struct afb_hreq *request, int dirfd, const char *filename);
47
48 int afb_hreq_redirect_to(struct afb_hreq *request, const char *url);
49
50