Make local handle for event loop
[platform/core/api/connection.git] / include / net_connection_private.h
1 /*
2  * Copyright (c) 2011-2013 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __NET_CONNECTION_PRIVATE_H__
18 #define __NET_CONNECTION_PRIVATE_H__
19
20 #include <dlog.h>
21 #include <network-cm-intf.h>
22 #include <network-wifi-intf.h>
23
24 #include "net_connection.h"
25
26 #ifdef __cplusplus
27 extern "C" {
28 #endif /* __cplusplus */
29
30 #undef LOG_TAG
31 #define LOG_TAG "CAPI_NETWORK_CONNECTION"
32
33 #define CONNECTION_INFO         1
34 #define CONNECTION_ERROR        2
35 #define CONNECTION_WARN         3
36
37 #define CONNECTION_MAC_INFO_LENGTH      17
38 #define ETHERNET_MAC_INFO_FILE          "/sys/class/net/eth0/address"
39 #define WIFI_MAC_INFO_FILE                      "/sys/class/net/wlan0/address"
40
41 #define TELEPHONY_FEATURE                       "http://tizen.org/feature/network.telephony"
42 #define WIFI_FEATURE                            "http://tizen.org/feature/network.wifi"
43 #define TETHERING_BLUETOOTH_FEATURE     "http://tizen.org/feature/network.tethering.bluetooth"
44 #define ETHERNET_FEATURE                        "http://tizen.org/feature/network.ethernet"
45
46 typedef enum {
47         CONNECTION_CELLULAR_SUBSCRIBER_1 = 0x00,
48         CONNECTION_CELLULAR_SUBSCRIBER_2 = 0x01,
49 } connection_cellular_subscriber_id_e;
50
51 typedef enum {
52         CONNECTION_SUPPORTED_FEATURE_TELEPHONY,
53         CONNECTION_SUPPORTED_FEATURE_WIFI,
54         CONNECTION_SUPPORTED_FEATURE_TETHERING_BLUETOOTH,
55         CONNECTION_SUPPORTED_FEATURE_ETHERNET,
56         CONNECTION_SUPPORTED_FEATURE_MAX,
57 } connection_supported_feature_e;
58
59 #define CHECK_FEATURE_SUPPORTED(...) \
60         do { \
61                 int rv = _connection_check_feature_supported(__VA_ARGS__, NULL); \
62                 if (rv != CONNECTION_ERROR_NONE) \
63                         return rv; \
64         } while (0)
65
66 #define DEPRECATED_LOG(origin, substitution) \
67         do { \
68                 LOGW("DEPRECATION WARNING: %s() is deprecated and will be removed " \
69                                 "from next release. Use %s() instead", origin, substitution); \
70         } while (0)
71
72 #define CONNECTION_LOG(log_level, format, args...) \
73         do { \
74                 switch (log_level) { \
75                 case CONNECTION_ERROR: \
76                         LOGE(format, ## args); \
77                         break; \
78                 case CONNECTION_WARN: \
79                         LOGW(format, ## args); \
80                         break; \
81                 default: \
82                         LOGI(format, ## args); \
83                 } \
84         } while (0)
85
86 #define SECURE_CONNECTION_LOG(log_level, format, args...) \
87         do { \
88                 switch (log_level) { \
89                 case CONNECTION_ERROR: \
90                         SECURE_LOGE(format, ## args); \
91                         break; \
92                 case CONNECTION_WARN: \
93                         SECURE_LOGW(format, ## args); \
94                         break; \
95                 default: \
96                         SECURE_LOGI(format, ## args); \
97                 } \
98         } while (0)
99
100 #define VCONF_TELEPHONY_DEFAULT_DATA_SERVICE \
101                         "db/telephony/dualsim/default_data_service"
102
103 typedef struct _connection_handle_s {
104         connection_type_changed_cb type_changed_callback;
105         connection_address_changed_cb ip_changed_callback;
106         connection_address_changed_cb proxy_changed_callback;
107         connection_ethernet_cable_state_changed_cb ethernet_cable_state_changed_callback;
108         connection_set_default_cb set_default_callback;
109         connection_opened_cb opened_callback;
110         connection_closed_cb closed_callback;
111         connection_opened_cb reset_callback;
112         void *type_changed_user_data;
113         void *ip_changed_user_data;
114         void *proxy_changed_user_data;
115         void *ethernet_cable_state_changed_user_data;
116         void *set_default_user_data;
117         void *opened_user_data;
118         void *closed_user_data;
119         void *reset_user_data;
120
121         void *network_info_handle;
122 } connection_handle_s;
123
124 int _connection_libnet_init(connection_handle_s *conn_handle);
125 bool _connection_libnet_deinit(connection_handle_s *conn_handle);
126 void _connection_set_cs_tid(int tid, connection_handle_s *conn_handle);
127 void _connection_unset_cs_tid(int tid, connection_handle_s *conn_handle);
128 int _connection_libnet_get_metered_state(connection_handle_s *conn_handle, bool* is_metered);
129 int _connection_libnet_get_wifi_state(connection_handle_s *conn_handle, connection_wifi_state_e *state);
130 int _connection_libnet_get_ethernet_state(connection_handle_s *conn_handle,
131                         connection_ethernet_state_e *state);
132 int _connection_libnet_get_ethernet_cable_state(connection_handle_s *conn_handle,
133                         connection_ethernet_cable_state_e* state);
134 int _connection_libnet_get_bluetooth_state(connection_handle_s *conn_handle, connection_bt_state_e* state);
135 bool _connection_libnet_check_profile_validity(connection_profile_h profile);
136 int _connection_libnet_get_profile_iterator(connection_handle_s *conn_handle,
137                         connection_iterator_type_e type, connection_profile_iterator_h *profile_iterator);
138 bool _connection_libnet_iterator_has_next(connection_profile_iterator_h profile_iterator);
139 int _connection_libnet_get_iterator_next(connection_profile_iterator_h profile_iter_h,
140                         connection_profile_h *profile);
141 int _connection_libnet_destroy_iterator(connection_profile_iterator_h profile_iter_h);
142 int _connection_libnet_get_current_profile(connection_handle_s *conn_handle,
143                         connection_profile_h *profile);
144 int _connection_libnet_reset_profile(connection_handle_s *conn_handle,
145                         connection_reset_option_e type, connection_cellular_subscriber_id_e id);
146 int _connection_libnet_open_profile(connection_handle_s *conn_handle,
147                         connection_profile_h profile);
148 int _connection_libnet_get_cellular_service_profile(connection_handle_s *conn_handle,
149                         connection_cellular_service_type_e type, connection_profile_h *profile);
150 int _connection_libnet_set_cellular_service_profile_sync(connection_handle_s *conn_handle,
151                         connection_cellular_service_type_e type, connection_profile_h profile);
152 int _connection_libnet_set_cellular_service_profile_async(connection_handle_s *conn_handle,
153                         connection_cellular_service_type_e type, connection_profile_h profile);
154 int _connection_libnet_close_profile(connection_handle_s *conn_handle, connection_profile_h profile);
155 int _connection_libnet_add_route(connection_handle_s *conn_handle,
156                         const char *interface_name, const char *host_address);
157 int _connection_libnet_remove_route(connection_handle_s *conn_handle,
158                         const char *interface_name, const char *host_address);
159 int _connection_libnet_add_route_ipv6(connection_handle_s *conn_handle,
160                         const char *interface_name, const char *host_address, const char * gateway);
161 int _connection_libnet_remove_route_ipv6(connection_handle_s *conn_handle,
162                         const char *interface_name, const char *host_address, const char * gateway);
163 int _connection_libnet_add_route_entry(connection_handle_s *conn_handle,
164                         connection_address_family_e address_family, const char *interface_name,
165                         const char *host_address, const char * gateway);
166 int _connection_libnet_remove_route_entry(connection_handle_s *conn_handle,
167                         connection_address_family_e address_family, const char *interface_name,
168                         const char *host_address, const char * gateway);
169 void _connection_libnet_add_to_profile_list(connection_profile_h profile);
170 void _connection_libnet_remove_from_profile_list(connection_profile_h profile);
171 bool _connection_libnet_add_to_profile_cb_list(connection_profile_h profile,
172                         connection_profile_state_changed_cb callback, void *user_data);
173 bool _connection_libnet_remove_from_profile_cb_list(connection_profile_h profile);
174 int _connection_libnet_set_statistics(connection_handle_s *conn_handle,
175                         net_device_t device_type, net_statistics_type_e statistics_type);
176 int _connection_libnet_get_statistics(connection_handle_s *conn_handle,
177                         net_statistics_type_e statistics_type, unsigned long long *size);
178 int _connection_libnet_check_get_privilege(void);
179 int _connection_libnet_check_profile_privilege(void);
180
181 int _connection_check_feature_supported(const char *feature_name, ...);
182
183 connection_cellular_service_type_e _profile_convert_to_connection_cellular_service_type(net_service_type_t svc_type);
184 connection_profile_state_e _profile_convert_to_cp_state(net_state_type_t state);
185 net_service_type_t _connection_profile_convert_to_libnet_cellular_service_type(connection_cellular_service_type_e svc_type);
186 net_state_type_t _connection_profile_convert_to_net_state(connection_profile_state_e state);
187
188 int _connection_libnet_set_cellular_subscriber_id(connection_profile_h profile,
189                         connection_cellular_subscriber_id_e sim_id);
190
191 int _connection_libnet_start_tcpdump(connection_handle_s *conn_handle);
192 int _connection_libnet_stop_tcpdump(connection_handle_s *conn_handle);
193 int _connection_libnet_get_tcpdump_state(connection_handle_s *conn_handle,
194                         gboolean *tcpdump_state);
195
196 bool _connection_check_handle_validity(connection_h connection);
197 #ifdef __cplusplus
198 }
199 #endif /* __cplusplus */
200
201 #endif