Update gupnp to 0.14.1
[platform/upstream/gupnp.git] / libgupnp / gupnp-context.h
1 /*
2  * Copyright (C) 2006, 2007, 2008 OpenedHand Ltd.
3  *
4  * Author: Jorn Baayen <jorn@openedhand.com>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library 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 GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21
22 #ifndef __GUPNP_CONTEXT_H__
23 #define __GUPNP_CONTEXT_H__
24
25 #include <libgssdp/gssdp-client.h>
26 #include <libsoup/soup-server.h>
27 #include <libsoup/soup-session.h>
28
29 G_BEGIN_DECLS
30
31 GType
32 gupnp_context_get_type (void) G_GNUC_CONST;
33
34 #define GUPNP_TYPE_CONTEXT \
35                 (gupnp_context_get_type ())
36 #define GUPNP_CONTEXT(obj) \
37                 (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
38                  GUPNP_TYPE_CONTEXT, \
39                  GUPnPContext))
40 #define GUPNP_CONTEXT_CLASS(obj) \
41                 (G_TYPE_CHECK_CLASS_CAST ((obj), \
42                  GUPNP_TYPE_CONTEXT, \
43                  GUPnPContextClass))
44 #define GUPNP_IS_CONTEXT(obj) \
45                 (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
46                  GUPNP_TYPE_CONTEXT))
47 #define GUPNP_IS_CONTEXT_CLASS(obj) \
48                 (G_TYPE_CHECK_CLASS_TYPE ((obj), \
49                  GUPNP_TYPE_CONTEXT))
50 #define GUPNP_CONTEXT_GET_CLASS(obj) \
51                 (G_TYPE_INSTANCE_GET_CLASS ((obj), \
52                  GUPNP_TYPE_CONTEXT, \
53                  GUPnPContextClass))
54
55 typedef struct _GUPnPContextPrivate GUPnPContextPrivate;
56
57 /**
58  * GUPnPContext:
59  *
60  * This struct contains private data only, and should be accessed using the
61  * functions below.
62  */
63 typedef struct {
64         GSSDPClient parent;
65
66         GUPnPContextPrivate *priv;
67 } GUPnPContext;
68
69 typedef struct {
70         GSSDPClientClass parent_class;
71
72         /* future padding */
73         void (* _gupnp_reserved1) (void);
74         void (* _gupnp_reserved2) (void);
75         void (* _gupnp_reserved3) (void);
76         void (* _gupnp_reserved4) (void);
77 } GUPnPContextClass;
78
79 GUPnPContext *
80 gupnp_context_new                      (GMainContext *main_context,
81                                         const char   *interface,
82                                         guint         port,
83                                         GError      **error);
84
85 #ifndef GUPNP_DISABLE_DEPRECATED
86
87 const char *
88 gupnp_context_get_host_ip              (GUPnPContext *context);
89
90 #endif /* GUPNP_DISABLE_DEPRECATED */
91
92 guint
93 gupnp_context_get_port                 (GUPnPContext *context);
94
95 SoupServer *
96 gupnp_context_get_server               (GUPnPContext *context);
97
98 SoupSession *
99 gupnp_context_get_session              (GUPnPContext *context);
100
101 void
102 gupnp_context_set_subscription_timeout (GUPnPContext *context,
103                                         guint         timeout);
104
105 guint
106 gupnp_context_get_subscription_timeout (GUPnPContext *context);
107
108 void
109 gupnp_context_host_path                (GUPnPContext *context,
110                                         const char   *local_path,
111                                         const char   *server_path);
112
113 gboolean
114 gupnp_context_host_path_for_agent      (GUPnPContext *context,
115                                         const char   *local_path,
116                                         const char   *server_path,
117                                         GRegex       *user_agent);
118
119 void
120 gupnp_context_unhost_path              (GUPnPContext *context,
121                                         const char   *server_path);
122
123 G_END_DECLS
124
125 #endif /* __GUPNP_CONTEXT_H__ */