tizen 2.3.1 release
[external/gupnp.git] / libgupnp / gupnp-root-device.h
1 /*
2  * Copyright (C) 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_ROOT_DEVICE_H__
23 #define __GUPNP_ROOT_DEVICE_H__
24
25 #include <libxml/tree.h>
26
27 #include "gupnp-context.h"
28 #include "gupnp-device.h"
29 #include "gupnp-resource-factory.h"
30 #include "gupnp-xml-doc.h"
31
32 G_BEGIN_DECLS
33
34 GType
35 gupnp_root_device_get_type (void) G_GNUC_CONST;
36
37 #define GUPNP_TYPE_ROOT_DEVICE \
38                 (gupnp_root_device_get_type ())
39 #define GUPNP_ROOT_DEVICE(obj) \
40                 (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
41                  GUPNP_TYPE_ROOT_DEVICE, \
42                  GUPnPRootDevice))
43 #define GUPNP_ROOT_DEVICE_CLASS(obj) \
44                 (G_TYPE_CHECK_CLASS_CAST ((obj), \
45                  GUPNP_TYPE_ROOT_DEVICE, \
46                  GUPnPRootDeviceClass))
47 #define GUPNP_IS_ROOT_DEVICE(obj) \
48                 (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
49                  GUPNP_TYPE_ROOT_DEVICE))
50 #define GUPNP_IS_ROOT_DEVICE_CLASS(obj) \
51                 (G_TYPE_CHECK_CLASS_TYPE ((obj), \
52                  GUPNP_TYPE_ROOT_DEVICE))
53 #define GUPNP_ROOT_DEVICE_GET_CLASS(obj) \
54                 (G_TYPE_INSTANCE_GET_CLASS ((obj), \
55                  GUPNP_TYPE_ROOT_DEVICE, \
56                  GUPnPRootDeviceClass))
57
58 typedef struct _GUPnPRootDevicePrivate GUPnPRootDevicePrivate;
59
60 /**
61  * GUPnPRootDevice:
62  *
63  * This struct contains private data only, and should be accessed using the
64  * functions below.
65  */
66 typedef struct {
67         GUPnPDevice parent;
68
69         GUPnPRootDevicePrivate *priv;
70 } GUPnPRootDevice;
71
72 typedef struct {
73         GUPnPDeviceClass parent_class;
74
75         /* future padding */
76         void (* _gupnp_reserved1) (void);
77         void (* _gupnp_reserved2) (void);
78         void (* _gupnp_reserved3) (void);
79         void (* _gupnp_reserved4) (void);
80 } GUPnPRootDeviceClass;
81
82 GUPnPRootDevice *
83 gupnp_root_device_new             (GUPnPContext         *context,
84                                    const char           *description_path,
85                                    const char           *description_dir);
86
87 GUPnPRootDevice *
88 gupnp_root_device_new_full        (GUPnPContext         *context,
89                                    GUPnPResourceFactory *factory,
90                                    GUPnPXMLDoc          *description_doc,
91                                    const char           *description_path,
92                                    const char           *description_dir);
93
94 void
95 gupnp_root_device_set_available   (GUPnPRootDevice      *root_device,
96                                    gboolean              available);
97
98 gboolean
99 gupnp_root_device_get_available   (GUPnPRootDevice      *root_device);
100
101 const char *
102 gupnp_root_device_get_relative_location
103                                   (GUPnPRootDevice      *root_device);
104
105 const char *
106 gupnp_root_device_get_description_path
107                                   (GUPnPRootDevice      *root_device);
108
109 const char *
110 gupnp_root_device_get_description_dir
111                                   (GUPnPRootDevice      *root_device);
112
113 G_END_DECLS
114
115 #endif /* __GUPNP_ROOT_DEVICE_H__ */