The HTTP status code can be retrieved from result object
[platform/upstream/connman.git] / gweb / gweb.h
1 /*
2  *
3  *  Web service library with GLib integration
4  *
5  *  Copyright (C) 2009-2010  Intel Corporation. All rights reserved.
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License version 2 as
9  *  published by the Free Software Foundation.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21
22 #ifndef __G_WEB_H
23 #define __G_WEB_H
24
25 #include <stdint.h>
26
27 #include <glib.h>
28
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32
33 struct _GWeb;
34 struct _GWebResult;
35 struct _GWebParser;
36
37 typedef struct _GWeb GWeb;
38 typedef struct _GWebResult GWebResult;
39 typedef struct _GWebParser GWebParser;
40
41 typedef enum {
42         G_WEB_METHOD_GET,
43 } GWebMethod;
44
45 typedef void (*GWebResultFunc)(GWebResult *result, gpointer user_data);
46
47 typedef void (*GWebDebugFunc)(const char *str, gpointer user_data);
48
49 GWeb *g_web_new(int index);
50
51 GWeb *g_web_ref(GWeb *web);
52 void g_web_unref(GWeb *web);
53
54 void g_web_set_debug(GWeb *web, GWebDebugFunc func, gpointer user_data);
55
56 gboolean g_web_add_nameserver(GWeb *web, const char *address);
57
58 gboolean g_web_set_accept(GWeb *web, const char *format, ...)
59                                 __attribute__((format(printf, 2, 3)));
60 gboolean g_web_set_user_agent(GWeb *web, const char *format, ...)
61                                 __attribute__((format(printf, 2, 3)));
62
63 void g_web_set_close_connection(GWeb *web, gboolean enabled);
64 gboolean g_web_get_close_connection(GWeb *web);
65
66 guint g_web_request(GWeb *web, GWebMethod method, const char *url,
67                                 GWebResultFunc func, gpointer user_data);
68
69 gboolean g_web_cancel(GWeb *web, guint id);
70
71 guint16 g_web_result_get_status(GWebResult *result);
72
73 gboolean g_web_result_get_chunk(GWebResult *result,
74                                 const guint8 **chunk, gsize *length);
75
76 typedef void (*GWebParserFunc)(const char *str, gpointer user_data);
77
78 GWebParser *g_web_parser_new(const char *begin, const char *end,
79                                 GWebParserFunc func, gpointer user_data);
80
81 GWebParser *g_web_parser_ref(GWebParser *parser);
82 void g_web_parser_unref(GWebParser *parser);
83
84 void g_web_parser_feed_data(GWebParser *parser,
85                                 const guint8 *data, gsize length);
86 void g_web_parser_end_data(GWebParser *parser);
87
88 #ifdef __cplusplus
89 }
90 #endif
91
92 #endif /* __G_WEB_H */