summaryrefslogtreecommitdiff
path: root/rest/rest-proxy.h
blob: dd9a36ae139ef07f9a88e8f36368a63e0bc5c6ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#ifndef _REST_PROXY
#define _REST_PROXY

#include <glib-object.h>
#include <rest/rest-proxy-call.h>

G_BEGIN_DECLS

#define REST_TYPE_PROXY rest_proxy_get_type()

#define REST_PROXY(obj) \
  (G_TYPE_CHECK_INSTANCE_CAST ((obj), REST_TYPE_PROXY, RestProxy))

#define REST_PROXY_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_CAST ((klass), REST_TYPE_PROXY, RestProxyClass))

#define REST_IS_PROXY(obj) \
  (G_TYPE_CHECK_INSTANCE_TYPE ((obj), REST_TYPE_PROXY))

#define REST_IS_PROXY_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_TYPE ((klass), REST_TYPE_PROXY))

#define REST_PROXY_GET_CLASS(obj) \
  (G_TYPE_INSTANCE_GET_CLASS ((obj), REST_TYPE_PROXY, RestProxyClass))

typedef struct {
  GObject parent;
} RestProxy;

typedef struct {
  GObjectClass parent_class;
} RestProxyClass;

typedef void (*RestProxyCallRawCallback)(RestProxy *proxy, 
    guint status_code, 
    const gchar *response_message,
    GHashTable *headers,
    const gchar *payload,
    goffset len,
    GObject *weak_object,
    gpointer userdata);

GType rest_proxy_get_type (void);

RestProxy *rest_proxy_new (const gchar *url_format, 
    gboolean binding_required);

gboolean rest_proxy_bind (RestProxy *proxy, ...);

G_GNUC_DEPRECATED
gboolean rest_proxy_call_raw_async (RestProxy *proxy,
    const gchar *function,
    const gchar *method,
    RestProxyCallRawCallback callback,
    GObject *weak_object,
    gpointer userdata,
    GError **error,
    const gchar *first_field_name,
    ...);

G_GNUC_DEPRECATED
gboolean rest_proxy_call_raw_async_valist (RestProxy *proxy,
    const gchar *function,
    const gchar *method,
    RestProxyCallRawCallback callback,
    GObject *weak_object,
    gpointer userdata,
    GError **error,
    const gchar *first_field_name,
    va_list params);

G_GNUC_DEPRECATED
gboolean rest_proxy_run_raw (RestProxy *proxy,
    const gchar *function,
    const gchar *method,
    guint *status_code,
    gchar **response_message,
    GHashTable **headers,
    gchar **payload,
    goffset *len,
    GError **error,
    const gchar *first_field_name,
    ...);

RestProxyCall *rest_proxy_new_call (RestProxy *proxy);

G_GNUC_NULL_TERMINATED
gboolean rest_proxy_simple_run (RestProxy *proxy, 
                                char **payload, goffset *len,
                                GError **error,
                                ...);

G_END_DECLS

#endif /* _REST_PROXY */