Git init
[profile/ivi/libsoup2.4.git] / libsoup / soup-requester.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2010 Igalia S.L.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public License
16  * along with this library; see the file COPYING.LIB.  If not, write to
17  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  */
20
21 #ifndef SOUP_REQUESTER_H
22 #define SOUP_REQUESTER_H 1
23
24 #ifdef LIBSOUP_USE_UNSTABLE_REQUEST_API
25
26 #include <libsoup/soup-types.h>
27 #include <libsoup/soup-request.h>
28
29 G_BEGIN_DECLS
30
31 #define SOUP_TYPE_REQUESTER            (soup_requester_get_type ())
32 #define SOUP_REQUESTER(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), SOUP_TYPE_REQUESTER, SoupRequester))
33 #define SOUP_REQUESTER_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), SOUP_TYPE_REQUESTER, SoupRequesterClass))
34 #define SOUP_IS_REQUESTER(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SOUP_TYPE_REQUESTER))
35 #define SOUP_IS_REQUESTER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), SOUP_TYPE_REQUESTER))
36 #define SOUP_REQUESTER_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), SOUP_TYPE_REQUESTER, SoupRequesterClass))
37
38 typedef struct _SoupRequester SoupRequester;
39 typedef struct _SoupRequesterPrivate SoupRequesterPrivate;
40
41 struct _SoupRequester {
42         GObject parent;
43
44         SoupRequesterPrivate *priv;
45 };
46
47 typedef struct {
48         GObjectClass parent_class;
49 } SoupRequesterClass;
50
51 GType          soup_requester_get_type        (void);
52
53 SoupRequester *soup_requester_new             (void);
54
55 SoupRequest   *soup_requester_request         (SoupRequester  *requester,
56                                                const char     *uri_string,
57                                                GError        **error);
58
59 SoupRequest   *soup_requester_request_uri     (SoupRequester  *requester,
60                                                SoupURI        *uri,
61                                                GError        **error);
62
63 GQuark soup_requester_error_quark (void);
64 #define SOUP_REQUESTER_ERROR soup_requester_error_quark ()
65
66 typedef enum {
67         SOUP_REQUESTER_ERROR_BAD_URI,
68         SOUP_REQUESTER_ERROR_UNSUPPORTED_URI_SCHEME
69 } SoupRequesterError;
70
71 G_END_DECLS
72
73 #endif /* LIBSOUP_USE_UNSTABLE_REQUEST_API */
74
75 #endif /* SOUP_REQUESTER_H */