Add priority property to elements
[connman] / include / element.h
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2008  Intel Corporation. All rights reserved.
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License version 2 as
9  *  published by the Free Software Foundation.
10  *
11  *  This program 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
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21
22 #ifndef __CONNMAN_ELEMENT_H
23 #define __CONNMAN_ELEMENT_H
24
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28
29 #include <errno.h>
30 #include <glib.h>
31
32 #include <connman/property.h>
33
34 enum connman_element_state {
35         CONNMAN_ELEMENT_STATE_UNKNOWN   = 0,
36         CONNMAN_ELEMENT_STATE_CONNECT   = 1,
37         CONNMAN_ELEMENT_STATE_CONNECTED = 2,
38         CONNMAN_ELEMENT_STATE_CLOSED    = 3,
39 };
40
41 enum connman_element_type {
42         CONNMAN_ELEMENT_TYPE_UNKNOWN    = 0,
43         CONNMAN_ELEMENT_TYPE_ROOT       = 1,
44         CONNMAN_ELEMENT_TYPE_DEVICE     = 2,
45         CONNMAN_ELEMENT_TYPE_NETWORK    = 3,
46         CONNMAN_ELEMENT_TYPE_IPV4       = 4,
47         CONNMAN_ELEMENT_TYPE_IPV6       = 5,
48         CONNMAN_ELEMENT_TYPE_DHCP       = 6,
49         CONNMAN_ELEMENT_TYPE_BOOTP      = 7,
50         CONNMAN_ELEMENT_TYPE_ZEROCONF   = 8,
51
52         CONNMAN_ELEMENT_TYPE_CONNECTION = 42,
53 };
54
55 enum connman_element_subtype {
56         CONNMAN_ELEMENT_SUBTYPE_UNKNOWN   = 0,
57         CONNMAN_ELEMENT_SUBTYPE_ETHERNET  = 1,
58         CONNMAN_ELEMENT_SUBTYPE_WIFI      = 2,
59         CONNMAN_ELEMENT_SUBTYPE_WIMAX     = 3,
60         CONNMAN_ELEMENT_SUBTYPE_MODEM     = 4,
61         CONNMAN_ELEMENT_SUBTYPE_BLUETOOTH = 5,
62 };
63
64 struct connman_driver;
65
66 struct connman_element {
67         gint refcount;
68         gchar *name;
69         gchar *path;
70         enum connman_element_type type;
71         enum connman_element_subtype subtype;
72         enum connman_element_state state;
73         guint16 priority;
74
75         struct connman_element *parent;
76
77         struct connman_driver *driver;
78         void *driver_data;
79
80         GSList *properties;
81
82         struct {
83                 int index;
84                 short flags;
85                 gchar *name;
86         } netdev;
87
88         struct {
89                 gchar *address;
90                 gchar *netmask;
91                 gchar *gateway;
92                 gchar *network;
93                 gchar *broadcast;
94                 gchar *nameserver;
95         } ipv4;
96 };
97
98 extern struct connman_element *connman_element_create(void);
99 extern struct connman_element *connman_element_ref(struct connman_element *element);
100 extern void connman_element_unref(struct connman_element *element);
101
102 extern int connman_element_add_static_property(struct connman_element *element,
103                                 const char *name, int type, const void *value);
104 extern int connman_element_set_property(struct connman_element *element,
105                         enum connman_property_type type, const void *value);
106 extern int connman_element_get_value(struct connman_element *element,
107                                 enum connman_property_type type, void *value);
108
109 extern int connman_element_register(struct connman_element *element,
110                                         struct connman_element *parent);
111 extern void connman_element_unregister(struct connman_element *element);
112 extern void connman_element_update(struct connman_element *element);
113
114 static inline void *connman_element_get_data(struct connman_element *element)
115 {
116         return element->driver_data;
117 }
118
119 static inline void connman_element_set_data(struct connman_element *element,
120                                                                 void *data)
121 {
122         element->driver_data = data;
123 }
124
125 #ifdef __cplusplus
126 }
127 #endif
128
129 #endif /* __CONNMAN_ELEMENT_H */