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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
|
/*
* 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.
*
*/
#include <rest/rest-proxy.h>
#include <rest/rest-proxy-call.h>
#include <libsoup/soup.h>
#include "rest-private.h"
G_DEFINE_TYPE (RestProxyCall, rest_proxy_call, G_TYPE_OBJECT)
#define GET_PRIVATE(o) \
(G_TYPE_INSTANCE_GET_PRIVATE ((o), REST_TYPE_PROXY_CALL, RestProxyCallPrivate))
/* Internal closure */
typedef struct {
RestProxyCall *call;
RestProxyCallAsyncCallback callback;
GObject *weak_object;
gpointer userdata;
SoupMessage *message;
} RestProxyCallAsyncClosure;
typedef struct _RestProxyCallPrivate RestProxyCallPrivate;
struct _RestProxyCallPrivate {
gchar *method;
gchar *function;
GHashTable *headers;
GHashTable *params;
GHashTable *response_headers;
goffset length;
gchar *payload;
guint status_code;
gchar *status_message;
RestProxy *proxy;
RestProxyCallAsyncClosure *cur_call_closure;
};
enum
{
PROP_0 = 0,
PROP_PROXY
};
GQuark
rest_proxy_call_error_quark (void)
{
return g_quark_from_static_string ("rest-proxy-call-error-quark");
}
static void
rest_proxy_call_get_property (GObject *object,
guint property_id,
GValue *value,
GParamSpec *pspec)
{
RestProxyCallPrivate *priv = GET_PRIVATE (object);
switch (property_id) {
case PROP_PROXY:
g_value_set_object (value, priv->proxy);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
}
}
static void
rest_proxy_call_set_property (GObject *object,
guint property_id,
const GValue *value,
GParamSpec *pspec)
{
RestProxyCallPrivate *priv = GET_PRIVATE (object);
switch (property_id) {
case PROP_PROXY:
priv->proxy = g_value_dup_object (value);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
}
}
static void
rest_proxy_call_dispose (GObject *object)
{
RestProxyCallPrivate *priv = GET_PRIVATE (object);
if (priv->params)
{
g_hash_table_unref (priv->params);
priv->params = NULL;
}
if (priv->headers)
{
g_hash_table_unref (priv->headers);
priv->headers = NULL;
}
if (priv->response_headers)
{
g_hash_table_unref (priv->response_headers);
priv->response_headers = NULL;
}
if (priv->proxy)
{
g_object_unref (priv->proxy);
priv->proxy = NULL;
}
if (G_OBJECT_CLASS (rest_proxy_call_parent_class)->dispose)
G_OBJECT_CLASS (rest_proxy_call_parent_class)->dispose (object);
}
static void
rest_proxy_call_finalize (GObject *object)
{
RestProxyCallPrivate *priv = GET_PRIVATE (object);
g_free (priv->method);
g_free (priv->function);
g_free (priv->payload);
g_free (priv->status_message);
if (G_OBJECT_CLASS (rest_proxy_call_parent_class)->finalize)
G_OBJECT_CLASS (rest_proxy_call_parent_class)->finalize (object);
}
static void
rest_proxy_call_class_init (RestProxyCallClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
GParamSpec *pspec;
g_type_class_add_private (klass, sizeof (RestProxyCallPrivate));
object_class->get_property = rest_proxy_call_get_property;
object_class->set_property = rest_proxy_call_set_property;
object_class->dispose = rest_proxy_call_dispose;
object_class->finalize = rest_proxy_call_finalize;
pspec = g_param_spec_object ("proxy",
"proxy",
"Proxy for this call",
REST_TYPE_PROXY,
G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE);
g_object_class_install_property (object_class, PROP_PROXY, pspec);
}
static void
rest_proxy_call_init (RestProxyCall *self)
{
RestProxyCallPrivate *priv = GET_PRIVATE (self);
priv->method = g_strdup ("GET");
priv->params = g_hash_table_new_full (g_str_hash,
g_str_equal,
g_free,
g_free);
priv->headers = g_hash_table_new_full (g_str_hash,
g_str_equal,
g_free,
g_free);
priv->response_headers = g_hash_table_new_full (g_str_hash,
g_str_equal,
g_free,
g_free);
}
/**
* rest_proxy_call_set_method:
* @call: The #RestProxyCall
* @method: The HTTP method to use
*
* Set the HTTP method to use when making the call, for example GET or POST.
*/
void
rest_proxy_call_set_method (RestProxyCall *call,
const gchar *method)
{
RestProxyCallPrivate *priv = GET_PRIVATE (call);
g_free (priv->method);
if (method)
priv->method = g_strdup (method);
else
priv->method = g_strdup ("GET");
}
void
rest_proxy_call_set_function (RestProxyCall *call,
const gchar *function)
{
RestProxyCallPrivate *priv = GET_PRIVATE (call);
g_free (priv->function);
priv->function = g_strdup (function);
}
/**
* rest_proxy_call_add_header:
* @call: The #RestProxyCall
* @header: The name of the header to set
* @value: The value of the header
*
* Add a header called @header with the value @value to the call. If a
* header with this name already exists, the new value will replace the old.
*/
void
rest_proxy_call_add_header (RestProxyCall *call,
const gchar *header,
const gchar *value)
{
RestProxyCallPrivate *priv = GET_PRIVATE (call);
g_hash_table_insert (priv->headers,
g_strdup (header),
g_strdup (value));
}
/**
* rest_proxy_call_add_headers:
* @call: The #RestProxyCall
* @Varargs: Header name and value pairs, followed by %NULL.
*
* Add the specified header name and value pairs to the call. If a header
* already exists, the new value will replace the old.
*/
void
rest_proxy_call_add_headers (RestProxyCall *call,
...)
{
va_list headers;
va_start (headers, call);
rest_proxy_call_add_headers_from_valist (call, headers);
va_end (headers);
}
/**
* rest_proxy_call_add_headers_from_valist:
* @call: The #RestProxyCall
* @headers: Header name and value pairs, followed by %NULL.
*
* Add the specified header name and value pairs to the call. If a header
* already exists, the new value will replace the old.
*/
void
rest_proxy_call_add_headers_from_valist (RestProxyCall *call,
va_list headers)
{
const gchar *header = NULL;
const gchar *value = NULL;
while ((header = va_arg (headers, const gchar *)) != NULL)
{
value = va_arg (headers, const gchar *);
rest_proxy_call_add_header (call, header, value);
}
}
/**
* rest_proxy_call_lookup_header:
* @call: The #RestProxyCall
* @header: The header name
*
* Get the value of the header called @header.
*
* Returns: The header value, or %NULL if it does not exist. This string is
* owned by the #RestProxyCall and should not be freed.
*/
const gchar *
rest_proxy_call_lookup_header (RestProxyCall *call,
const gchar *header)
{
RestProxyCallPrivate *priv = GET_PRIVATE (call);
return g_hash_table_lookup (priv->headers, header);
}
/**
* rest_proxy_call_remove_header:
* @call: The #RestProxyCall
* @header: The header name
*
* Remove the header named @header from the call.
*/
void
rest_proxy_call_remove_header (RestProxyCall *call,
const gchar *header)
{
RestProxyCallPrivate *priv = GET_PRIVATE (call);
g_hash_table_remove (priv->headers, header);
}
/**
* rest_proxy_call_add_param:
* @call: The #RestProxyCall
* @param: The name of the parameter to set
* @value: The value of the parameter
*
* Add a query parameter called @param with the value @value to the call. If a
* parameter with this name already exists, the new value will replace the old.
*/
void
rest_proxy_call_add_param (RestProxyCall *call,
const gchar *param,
const gchar *value)
{
RestProxyCallPrivate *priv = GET_PRIVATE (call);
g_hash_table_insert (priv->params,
g_strdup (param),
g_strdup (value));
}
/**
* rest_proxy_call_add_params:
* @call: The #RestProxyCall
* @Varargs: Parameter name and value pairs, followed by %NULL.
*
* Add the specified parameter name and value pairs to the call. If a parameter
* already exists, the new value will replace the old.
*/
void
rest_proxy_call_add_params (RestProxyCall *call,
...)
{
va_list params;
va_start (params, call);
rest_proxy_call_add_params_from_valist (call, params);
va_end (params);
}
/**
* rest_proxy_call_add_params_from_valist:
* @call: The #RestProxyCall
* @params: Parameter name and value pairs, followed by %NULL.
*
* Add the specified parameter name and value pairs to the call. If a parameter
* already exists, the new value will replace the old.
*/
void
rest_proxy_call_add_params_from_valist (RestProxyCall *call,
va_list params)
{
const gchar *param = NULL;
const gchar *value = NULL;
while ((param = va_arg (params, const gchar *)) != NULL)
{
value = va_arg (params, const gchar *);
rest_proxy_call_add_param (call, param, value);
}
}
/**
* rest_proxy_call_lookup_param:
* @call: The #RestProxyCall
* @param: The paramter name
*
* Get the value of the parameter called @name.
*
* Returns: The parameter value, or %NULL if it does not exist. This string is
* owned by the #RestProxyCall and should not be freed.
*/
const gchar *
rest_proxy_call_lookup_param (RestProxyCall *call,
const gchar *param)
{
RestProxyCallPrivate *priv = GET_PRIVATE (call);
return g_hash_table_lookup (priv->params, param);
}
/**
* rest_proxy_call_remove_param:
* @call: The #RestProxyCall
* @param: The paramter name
*
* Remove the parameter named @param from the call.
*/
void
rest_proxy_call_remove_param (RestProxyCall *call,
const gchar *param)
{
RestProxyCallPrivate *priv = GET_PRIVATE (call);
g_hash_table_remove (priv->params, param);
}
/**
* rest_proxy_call_get_params:
* @call: The #RestProxyCall
*
* Get the parameters as a #GHashTable of parameter names to values. The caller
* should call g_hash_table_unref() when they have finished using it.
*
* Returns: A #GHashTable.
*/
GHashTable *
rest_proxy_call_get_params (RestProxyCall *call)
{
RestProxyCallPrivate *priv = GET_PRIVATE (call);
return g_hash_table_ref (priv->params);
}
static void _call_async_weak_notify_cb (gpointer *data,
GObject *dead_object);
static void _call_async_finished_cb (SoupMessage *message,
gpointer userdata);
static void
_populate_headers_hash_table (const gchar *name,
const gchar *value,
gpointer userdata)
{
GHashTable *headers = (GHashTable *)userdata;
g_hash_table_insert (headers, g_strdup (name), g_strdup (value));
}
/* I apologise for this macro, but it saves typing ;-) */
#define error_helper(x) g_set_error(error, REST_PROXY_ERROR, x, message->reason_phrase)
static gboolean
_handle_error_from_message (SoupMessage *message, GError **error)
{
if (message->status_code < 100)
{
switch (message->status_code)
{
case SOUP_STATUS_CANCELLED:
error_helper (REST_PROXY_ERROR_CANCELLED);
break;
case SOUP_STATUS_CANT_RESOLVE:
case SOUP_STATUS_CANT_RESOLVE_PROXY:
error_helper (REST_PROXY_ERROR_RESOLUTION);
break;
case SOUP_STATUS_CANT_CONNECT:
case SOUP_STATUS_CANT_CONNECT_PROXY:
error_helper (REST_PROXY_ERROR_CONNECTION);
break;
case SOUP_STATUS_SSL_FAILED:
error_helper (REST_PROXY_ERROR_SSL);
break;
case SOUP_STATUS_IO_ERROR:
error_helper (REST_PROXY_ERROR_IO);
break;
case SOUP_STATUS_MALFORMED:
case SOUP_STATUS_TRY_AGAIN:
default:
error_helper (REST_PROXY_ERROR_FAILED);
break;
}
return FALSE;
}
if (message->status_code >= 200 && message->status_code < 300)
{
return TRUE;
}
/* If we are here we must be in some kind of HTTP error, lets try */
g_set_error (error,
REST_PROXY_ERROR,
message->status_code,
message->reason_phrase);
return FALSE;
}
static void
_call_async_finished_cb (SoupMessage *message,
gpointer userdata)
{
RestProxyCallAsyncClosure *closure;
RestProxyCall *call;
RestProxyCallPrivate *priv;
GError *error = NULL;
closure = (RestProxyCallAsyncClosure *)userdata;
call = closure->call;
priv = GET_PRIVATE (call);
/* Convert the soup headers in to hash */
/* FIXME: Eeek..are you allowed duplicate headers? ... */
g_hash_table_remove_all (priv->response_headers);
soup_message_headers_foreach (message->response_headers,
(SoupMessageHeadersForeachFunc)_populate_headers_hash_table,
priv->response_headers);
priv->payload = g_strdup (message->response_body->data);
priv->length = message->response_body->length;
priv->status_code = message->status_code;
priv->status_message = g_strdup (message->reason_phrase);
_handle_error_from_message (message, &error);
closure->callback (closure->call,
error,
closure->weak_object,
closure->userdata);
g_clear_error (&error);
/* Success. We don't need the weak reference any more */
if (closure->weak_object)
{
g_object_weak_unref (closure->weak_object,
(GWeakNotify)_call_async_weak_notify_cb,
closure);
}
g_object_unref (closure->call);
g_slice_free (RestProxyCallAsyncClosure, closure);
priv->cur_call_closure = NULL;
}
static void
_call_async_weak_notify_cb (gpointer *data,
GObject *dead_object)
{
RestProxyCallAsyncClosure *closure;
GError *error = NULL;
closure = (RestProxyCallAsyncClosure *)data;
/* Will end up freeing the closure */
rest_proxy_call_cancel (closure->call, &error);
if (!error)
{
g_warning (G_STRLOC ": Error when cancelling call in weak notify: %s",
error->message);
g_clear_error (&error);
}
}
gboolean
rest_proxy_call_async (RestProxyCall *call,
RestProxyCallAsyncCallback callback,
GObject *weak_object,
gpointer userdata,
GError **error_out)
{
RestProxyCallPrivate *priv;
RestProxyCallClass *call_class;
const gchar *bound_url;
gchar *url = NULL;
SoupMessage *message;
RestProxyCallAsyncClosure *closure;
GError *error = NULL;
g_return_val_if_fail (REST_IS_PROXY_CALL (call), FALSE);
priv = GET_PRIVATE (call);
g_assert (priv->proxy);
call_class = REST_PROXY_CALL_GET_CLASS (call);
if (priv->cur_call_closure)
{
/* FIXME: Use GError here */
g_critical (G_STRLOC ": Call already in progress.");
return FALSE;
}
bound_url =_rest_proxy_get_bound_url (priv->proxy);
if (_rest_proxy_get_binding_required (priv->proxy) && !bound_url)
{
g_critical (G_STRLOC ": URL requires binding and is unbound");
return FALSE;
}
/* FIXME: Perhaps excessive memory duplication */
if (priv->function)
{
if (g_str_has_suffix (bound_url, "/"))
{
url = g_strdup_printf ("%s%s", bound_url, priv->function);
} else {
url = g_strdup_printf ("%s/%s", bound_url, priv->function);
}
} else {
url = g_strdup (bound_url);
}
/* Allow an overrideable prepare function that is called before every
* invocation so subclasses can do magic
*/
if (call_class->prepare)
{
if (!call_class->prepare (call, &error))
{
g_propagate_error (error_out, error);
goto error;
}
}
message = soup_form_request_new_from_hash (priv->method,
url,
priv->params);
closure = g_slice_new0 (RestProxyCallAsyncClosure);
closure->call = g_object_ref (call);
closure->callback = callback;
closure->weak_object = weak_object;
closure->message = message;
closure->userdata = userdata;
priv->cur_call_closure = closure;
/* Weakly reference this object. We remove our callback if it goes away. */
if (closure->weak_object)
{
g_object_weak_ref (closure->weak_object,
(GWeakNotify)_call_async_weak_notify_cb,
closure);
}
g_signal_connect (message,
"finished",
(GCallback)_call_async_finished_cb,
closure);
_rest_proxy_queue_message (priv->proxy, message);
g_free (url);
return TRUE;
error:
g_free (url);
return FALSE;
}
gboolean
rest_proxy_call_cancel (RestProxyCall *call,
GError **error)
{
RestProxyCallPrivate *priv;
RestProxyCallAsyncClosure *closure;
priv = GET_PRIVATE (call);
closure = priv->cur_call_closure;
if (closure)
{
/* Remove the "finished" signal handler on the message */
g_signal_handlers_disconnect_by_func (closure->message,
_call_async_finished_cb,
closure);
_rest_proxy_cancel_message (priv->proxy, closure->message);
g_object_unref (closure->call);
g_slice_free (RestProxyCallAsyncClosure, closure);
}
priv->cur_call_closure = NULL;
return TRUE;
}
typedef struct
{
GMainLoop *loop;
GError *error;
} RestProxyCallRunClosure;
static void
_rest_proxy_call_async_cb (RestProxyCall *call,
GError *error,
GObject *weak_object,
gpointer userdata)
{
RestProxyCallRunClosure *closure = (RestProxyCallRunClosure *)userdata;
/* *duplicate* not propagate the error */
if (error)
closure->error = g_error_copy (error);
g_main_loop_quit (closure->loop);
}
gboolean
rest_proxy_call_run (RestProxyCall *call,
GMainLoop **loop_out,
GError **error_out)
{
gboolean res = TRUE;
GError *error = NULL;
RestProxyCallRunClosure closure = { NULL, NULL};
closure.loop = g_main_loop_new (NULL, FALSE);
if (loop_out)
*loop_out = closure.loop;
res = rest_proxy_call_async (call,
_rest_proxy_call_async_cb,
NULL,
&closure,
&error);
if (!res)
{
g_propagate_error (error_out, error);
goto error;
}
g_main_loop_run (closure.loop);
if (closure.error)
{
/* If the caller has asked for the error then propagate else free it */
if (error_out)
{
g_propagate_error (error_out, closure.error);
} else {
g_clear_error (&(closure.error));
}
res = FALSE;
}
error:
g_main_loop_unref (closure.loop);
return res;
}
/**
* rest_proxy_call_lookup_response_header
*
* @call: The #RestProxyCall
* @header: The name of the header to lookup.
*
* Returns: The string value of the header @header or NULL if that header is
* not present or there are no headers.
*/
const gchar *
rest_proxy_call_lookup_response_header (RestProxyCall *call,
const gchar *header)
{
RestProxyCallPrivate *priv = GET_PRIVATE (call);
if (!priv->response_headers)
{
return NULL;
}
return g_hash_table_lookup (priv->response_headers, header);
}
/**
* rest_proxy_call_get_response_headers
*
* @call: The #RestProxyCall
*
* Returns: A pointer to a hash table of headers. This hash table must not be
* changed. You should call g_hash_table_unref() when you have finished with
* it.
*/
GHashTable *
rest_proxy_call_get_response_headers (RestProxyCall *call)
{
RestProxyCallPrivate *priv = GET_PRIVATE (call);
if (!priv->response_headers)
{
return NULL;
}
return g_hash_table_ref (priv->response_headers);
}
/**
* rest_proxy_call_get_payload_length:
* @call: The #RestProxyCall
*
* Get the length of the return payload.
*
* Returns: the length of the payload in bytes.
*/
goffset
rest_proxy_call_get_payload_length (RestProxyCall *call)
{
RestProxyCallPrivate *priv = GET_PRIVATE (call);
return priv->length;
}
/**
* rest_proxy_call_get_payload:
* @call: The #RestProxyCall
*
* Get the return payload.
*
* Returns: A pointer to the payload. This is owned by #RestProxyCall and should
* not be freed.
*/
const gchar *
rest_proxy_call_get_payload (RestProxyCall *call)
{
RestProxyCallPrivate *priv = GET_PRIVATE (call);
return priv->payload;
}
/**
* rest_proxy_call_get_status_code:
* @call: The #RestProxyCall
*
* Get the HTTP status code for the call.
*/
guint
rest_proxy_call_get_status_code (RestProxyCall *call)
{
RestProxyCallPrivate *priv = GET_PRIVATE (call);
return priv->status_code;
}
/**
* rest_proxy_call_get_status_message:
* @call: The #RestProxyCall
*
* Get the human-readable HTTP status message for the call.
*
* Returns: The status message. This string is owned by #RestProxyCall and
* should not be freed.
*/
const gchar *
rest_proxy_call_get_status_message (RestProxyCall *call)
{
RestProxyCallPrivate *priv = GET_PRIVATE (call);
return priv->status_message;
}
|