VSF Documented
vsf_http_client.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Copyright(C)2009-2022 by VSF Team *
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
18#ifndef __VSF_HTTP_CLIENT_H__
19#define __VSF_HTTP_CLIENT_H__
20
21/*============================ INCLUDES ======================================*/
22
24
25#if defined(__VSF_HTTP_CLIENT_CLASS_IMPLEMENT)
26# define __VSF_CLASS_IMPLEMENT__
27#elif defined(__VSF_HTTP_CLIENT_CLASS_INHERIT__)
28# define __VSF_CLASS_INHERIT__
29#endif
30
31#include "utilities/ooc_class.h"
32
33/*============================ MACROS ========================================*/
34/*============================ MACROFIED FUNCTIONS ===========================*/
35/*============================ TYPES =========================================*/
36
38
39vsf_class(vsf_http_op_t) {
40 protected_member(
41 int (*fn_connect)(void *param, const char *host, const char *port);
42 void (*fn_close)(void *param);
43 int (*fn_write)(void *param, uint8_t *buf, uint16_t len);
44 int (*fn_read)(void *param, uint8_t *buf, uint16_t len);
45 )
46};
47
50 const char *host;
51 const char *port;
52 const char *verb;
53 const char *connect_mode;
54
55 char *header;
56 char *path;
57
59 size_t txdata_len;
60
61 // IMPORTANT: line is NULL terminated string ending with \r
63};
64
66 public_member(
67 const vsf_http_op_t *op;
68 void *param;
69 int resp_status;
70 int content_length;
71 )
72 private_member(
73 uint16_t cur_size;
74 bool is_chunked;
75 int cur_chunk_size;
76 uint8_t *cur_buffer;
77 uint8_t buffer[1024];
78 )
79};
80
81/*============================ GLOBAL VARIABLES ==============================*/
82
83#if VSF_USE_MBEDTLS == ENABLED
84// to use mbedtls_http_op, user source code(.c) MUST include
85// "component/3rd-party/mbedtls/extension/tls_session/mbedtls_tls_session.h",
86// and set mbedtls_session_t instance to param of vsf_http_client_t.
87extern const vsf_http_op_t vsf_mbedtls_http_op;
88#endif
89
90/*============================ PROTOTYPES ====================================*/
91
95extern int vsf_http_client_read(vsf_http_client_t *http, uint8_t *buf, uint16_t len);
96extern int vsf_http_client_write(vsf_http_client_t *http, uint8_t *buf, uint16_t len);
97
98#endif // __VSF_HTTP_CLIENT_H__
Definition vsf_http_client.h:65
#define vsf_class(__name)
Definition ooc_class.h:48
#define vsf_declare_class(__name)
Definition ooc_class.h:45
unsigned short uint16_t
Definition stdint.h:7
unsigned char uint8_t
Definition stdint.h:5
Definition vsf_http_client.h:49
const char * verb
Definition vsf_http_client.h:52
uint8_t * txdata
Definition vsf_http_client.h:58
char * header
Definition vsf_http_client.h:55
const char * host
Definition vsf_http_client.h:50
size_t txdata_len
Definition vsf_http_client.h:59
const char * port
Definition vsf_http_client.h:51
void(* on_response_header)(vsf_http_client_t *http, vsf_http_client_req_t *req, char *line)
Definition vsf_http_client.h:62
char * path
Definition vsf_http_client.h:56
const char * connect_mode
Definition vsf_http_client.h:53
void vsf_http_client_close(vsf_http_client_t *http)
Definition vsf_http_client.c:74
int vsf_http_client_write(vsf_http_client_t *http, uint8_t *buf, uint16_t len)
Definition vsf_http_client.c:249
const vsf_http_op_t vsf_mbedtls_http_op
Definition vsf_http_client.c:47
void vsf_http_client_init(vsf_http_client_t *http)
Definition vsf_http_client.c:69
int vsf_http_client_request(vsf_http_client_t *http, vsf_http_client_req_t *req)
Definition vsf_http_client.c:79
int vsf_http_client_read(vsf_http_client_t *http, uint8_t *buf, uint16_t len)
Definition vsf_http_client.c:185