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
|
/*
* librest - RESTful web services access
* Copyright (c) 2008, 2009, Intel Corporation.
*
* Authors: Rob Bradford <rob@linux.intel.com>
* Ross Burton <ross@linux.intel.com>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU Lesser General Public License,
* version 2.1, as published by the Free Software Foundation.
*
* This program is distributed in the hope it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
* more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
*
*/
#ifndef _REST_PRIVATE
#define _REST_PRIVATE
#include <glib.h>
#include <rest/rest-proxy.h>
#include <rest/rest-proxy-call.h>
#include <rest/rest-xml-node.h>
#include <libsoup/soup.h>
G_BEGIN_DECLS
typedef void (*RestMessageFinishedCallback) (SoupMessage *msg,
GBytes *body,
GError *error,
gpointer user_data);
typedef enum
{
REST_DEBUG_XML_PARSER = 1 << 0,
REST_DEBUG_PROXY = 1 << 1,
REST_DEBUG_ALL = REST_DEBUG_XML_PARSER | REST_DEBUG_PROXY
} RestDebugFlags;
extern guint rest_debug_flags;
#define REST_DEBUG_ENABLED(category) (rest_debug_flags & REST_DEBUG_##category)
#define REST_DEBUG(category,x,a...) G_STMT_START { \
if (REST_DEBUG_ENABLED(category)) \
{ g_message ("[" #category "] " G_STRLOC ": " x, ##a); } \
} G_STMT_END
void _rest_setup_debugging (void);
gboolean _rest_proxy_get_binding_required (RestProxy *proxy);
const gchar *_rest_proxy_get_bound_url (RestProxy *proxy);
void _rest_proxy_queue_message (RestProxy *proxy,
SoupMessage *message,
GCancellable *cancellable,
RestMessageFinishedCallback callback,
gpointer user_data);
void _rest_proxy_cancel_message (RestProxy *proxy,
SoupMessage *message);
GBytes *_rest_proxy_send_message (RestProxy *proxy,
SoupMessage *message,
GCancellable *cancellable,
GError **error);
void _rest_proxy_send_message_async (RestProxy *proxy,
SoupMessage *message,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
GInputStream *_rest_proxy_send_message_finish (RestProxy *proxy,
GAsyncResult *result,
GError **error);
RestXmlNode *_rest_xml_node_new (void);
void _rest_xml_node_reverse_children_siblings (RestXmlNode *node);
RestXmlNode *_rest_xml_node_prepend (RestXmlNode *cur_node,
RestXmlNode *new_node);
G_END_DECLS
#endif /* _REST_PRIVATE */
|