Sync with 2.4 and enable the Wi-Fi Direct UG
[apps/native/ug-wifi-direct.git] / ug-wifidirect / include / wfd_ug.h
1 /*
2 *  WiFi-Direct UG
3 *
4 * Copyright 2012  Samsung Electronics Co., Ltd
5
6 * Licensed under the Flora License, Version 1.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9
10 * http://www.tizenopensource.org/license
11
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *
18 */
19
20
21 #ifndef __WFD_UG_H__
22 #define __WFD_UG_H__
23
24 #include <dlog.h>
25 #include <notification.h>
26 #include <ui-gadget-module.h>
27
28 #include <tethering.h>
29
30 #include <wifi-direct.h>
31 #include <wifi-direct-internal.h>
32
33 #include <glib-object.h>
34 #include <gio/gio.h>
35 #include <glib.h>
36 #include <assert.h>
37
38 #define PACKAGE "ug-setting-wifidirect-efl"
39 #define LOCALEDIR "/usr/share/locale"
40 #define COLOR_TABLE "/usr/apps/setting-wifidirect-efl/shared/res/tables/setting-wifidirect-efl_ChangeableColorTable.xml"
41 #define FONT_TABLE "/usr/apps/setting-wifidirect-efl/shared/res/tables/setting-wifidirect-efl_FontInfoTable.xml"
42
43 #define DIRECT_TAG  "wfd_ug"
44 /* TODO:: To change the log level as LOG_INFO */
45 #define DBG(log_level, format, args...) \
46         LOG(LOG_ERROR, DIRECT_TAG, "[%s()][%d] " format, __FUNCTION__, __LINE__, ##args)
47 #define DBG_SECURE(log_level, format, args...) \
48         SECURE_LOG(LOG_ERROR, DIRECT_TAG, "[%s()][%d] " format, __FUNCTION__, __LINE__, ##args)
49
50 #define MAC2SECSTR(a) (a)[0], (a)[4], (a)[5]
51 #define MACSECSTR "%02x:%02x:%02x"
52 #if 0
53 #define IP2SECSTR(a) (a)[0], (a)[3]
54 #define IPSECSTR "%d..%d"
55 #endif
56
57 #define __FUNC_ENTER__  DBG(LOG_INFO, "+\n")
58 #define __FUNC_EXIT__   DBG(LOG_INFO, "-\n")
59 #if 0
60 #define __FUNC_ENTER__
61 #define __FUNC_EXIT__
62 #endif
63
64 #define VCONF_WFD_APNAME                        "db/setting/device_name"
65
66 #define MAX_HEX_COLOR_LENGTH 255
67
68 #define assertm_if(expr, fmt, arg...) do { \
69         if (expr) { \
70           DBG(LOG_VERBOSE, " ##(%s) -> %s() assert!!## "fmt, #expr, __FUNCTION__, ##arg); \
71                  assert(1); \
72         } \
73 } while (0)
74
75 #define WFD_IF_DEL_OBJ(obj) \
76                 do { \
77                         if(obj) { \
78                                 evas_object_del(obj); \
79                                 obj = NULL; \
80                         } \
81                 } while (0)
82
83 #define WFD_IF_DEL_ITEM(obj) \
84                 do { \
85                         if(obj) { \
86                                 elm_object_item_del(obj); \
87                                 obj = NULL; \
88                         } \
89                 } while (0)
90
91 #define WFD_RET_IF(expr, fmt, args...) \
92                 do { \
93                         if(expr) { \
94                                 DBG(LOG_ERROR, "[%s] Return, message "fmt, #expr, ##args );\
95                                 return; \
96                         } \
97                 } while (0)
98
99 #define WFD_RETV_IF(expr, val, fmt, args...) \
100                 do { \
101                         if(expr) { \
102                                 DBG(LOG_ERROR,"[%s] Return value, message "fmt, #expr, ##args );\
103                                 return (val); \
104                         } \
105                 } while (0)
106
107 #define WFD_IF_FREE_MEM(mem) \
108                 do { \
109                         if(mem) { \
110                                 free(mem); \
111                                 mem = NULL; \
112                         } \
113                 } while (0)
114
115 #define AP_NAME_LENGTH_MAX              32
116 #define AP_PASSWORD_LENGTH_MAX  64
117 #define AP_PASSWORD_LENGTH_MIN  8
118 #define AP_REJECT_CHAR_LIST             "=,"
119
120 #define DEFAULT_DEV_NAME        "ZEQ"
121 #define MAC_LENGTH  18
122 #define SSID_LENGTH 32
123 #define MAX_CONNECTED_PEER_NUM 7
124 #define MAX_PEER_NUM 10
125 #define MAX_POPUP_TEXT_SIZE 256
126 #define MAX_DISPLAY_TIME_OUT 3
127 #define MAX_NO_ACTION_TIME_OUT  300            /*5min*/
128 #define MAX_SCAN_TIME_OUT 0
129
130 #define GENLIST_HEADER_POS 1
131 #define SR_CHECKBOX_ON_MSG "on/off button on"
132 #define SR_CHECKBOX_OFF_MSG "on/off button off"
133 #define SR_BUTTON_MSG "multiple connect button"
134
135 #define _(s)        dgettext(PACKAGE, s)
136 #define N_(s)      dgettext_noop(s)
137 #define S_(s)      dgettext("sys_string", s)
138
139 #define WFD_GLOBALIZATION_STR_LENGTH 256
140
141 typedef enum {
142         WFD_MULTI_CONNECT_MODE_NONE,
143         WFD_MULTI_CONNECT_MODE_IN_PROGRESS,
144         WFD_MULTI_CONNECT_MODE_COMPLETED,
145 } wfd_multi_connect_mode_e;
146
147 typedef enum {
148         PEER_CONN_STATUS_DISCONNECTED,
149         PEER_CONN_STATUS_DISCONNECTING,
150         PEER_CONN_STATUS_CONNECTING = PEER_CONN_STATUS_DISCONNECTING,
151         PEER_CONN_STATUS_CONNECTED,
152         PEER_CONN_STATUS_FAILED_TO_CONNECT,
153         PEER_CONN_STATUS_WAIT_FOR_CONNECT,
154 } conn_status_e;
155
156 typedef enum {
157         WIFI_DIRECT_DISCOVERY_NONE,
158         WIFI_DIRECT_DISCOVERY_SOCIAL_CHANNEL_START,
159         WIFI_DIRECT_DISCOVERY_FULL_SCAN_START,
160         WIFI_DIRECT_DISCOVERY_STOPPED,
161         WIFI_DIRECT_DISCOVERY_BACKGROUND,
162 } discovery_status_e;
163
164
165 typedef struct device_type_s_{
166         char ssid[SSID_LENGTH];
167         unsigned int category;
168         unsigned int sub_category;
169         char mac_addr[MAC_LENGTH];
170         char if_addr[MAC_LENGTH];
171         conn_status_e conn_status;
172         bool is_group_owner;  /** Is an active P2P Group Owner */
173         bool is_persistent_group_owner;  /** Is a stored Persistent GO */
174         bool is_connected;  /** Is peer connected*/
175         bool is_alive;
176         bool dev_sel_state;
177         Elm_Object_Item *gl_item;
178         struct device_type_s_ *next;
179 } device_type_s;
180
181 struct ug_data {
182         Evas_Object *base;
183         ui_gadget_h ug;
184
185         Evas_Object *win;
186         Evas_Object *bg;
187         Evas_Object *layout;
188         Evas_Object *button_layout;
189         Evas_Object *naviframe;
190         Elm_Object_Item *navi_item;
191         Elm_Object_Item *multi_navi_item;
192         Elm_Object_Item *head;
193         Evas_Object *genlist;
194         Evas_Object *multiconn_view_genlist;
195         Evas_Object *multiconn_layout;
196         Evas_Object *popup;
197         Evas_Object *act_popup;
198         Evas_Object *warn_popup;
199         Evas_Object *rename_popup;
200         Evas_Object *ctxpopup;
201         Evas_Object *scan_btn;
202         Evas_Object *disconnect_btn;
203         Evas_Object *toolbar;
204         Evas_Object *rename_entry;
205         Evas_Object *rename_button;
206
207 #ifdef WFD_ON_OFF_GENLIST
208         Evas_Object *on_off_check;
209 #endif
210
211         Evas_Object *scan_toolbar;
212         Evas_Object *multiconn_scan_stop_btn;
213         Evas_Object *multiconn_conn_btn;
214         Evas_Object *select_all_icon;
215
216
217
218         Elm_Object_Item *multi_connect_toolbar_item;
219         Elm_Object_Item *multi_view_connect_toolbar_item;
220
221         Elm_Object_Item *select_all_view_genlist;
222 #ifdef WFD_ON_OFF_GENLIST
223         Elm_Object_Item *item_wifi_onoff;
224 #endif
225         Elm_Object_Item *device_name_item;
226         Elm_Genlist_Item_Class *rename_entry_itc;
227         Elm_Genlist_Item_Class *rename_desc_itc;
228         Elm_Object_Item *multi_connect_sep_item;
229
230         Elm_Object_Item *nodevice_title_item;
231         Elm_Object_Item *nodevice_item;
232
233         Elm_Object_Item *conn_wfd_item;
234         Elm_Object_Item *conn_failed_wfd_item;
235         Elm_Object_Item *avlbl_wfd_item;
236         Elm_Object_Item *busy_wfd_item;
237         Elm_Object_Item *multi_connect_wfd_item;
238
239         Elm_Object_Item *mcview_title_item;
240         Elm_Object_Item *mcview_nodevice_item;
241         Elm_Object_Item *more_btn_multiconnect_item;
242
243         Evas_Object *back_btn;
244
245         // Notify
246         Evas_Object *notify;
247         Evas_Object *notify_layout;
248
249         int head_text_mode;
250
251         char *mac_addr_connecting;
252         char *mac_addr_req;
253
254         //Connection is incoming or not
255         bool is_conn_incoming;
256
257
258         // title mode of device list
259         int title_content_mode;
260
261         // Raw peer data
262         device_type_s raw_connected_peers[MAX_CONNECTED_PEER_NUM];
263         int raw_connected_peer_cnt;
264         GList *raw_discovered_peer_list;
265         int raw_discovered_peer_cnt;
266
267         // Peer data in the Genlist
268         int gl_connected_peer_cnt;
269         device_type_s *gl_conn_peers_start;
270
271         int gl_connected_failed_peer_cnt;
272         device_type_s *gl_failed_peers_start;
273
274         int gl_available_peer_cnt;
275         device_type_s *gl_avlb_peers_start;
276
277         int gl_busy_peer_cnt;
278         device_type_s *gl_busy_peers_start;
279
280         device_type_s raw_multi_selected_peers[MAX_PEER_NUM];
281         int raw_multi_selected_peer_cnt;
282
283         int gl_multi_connect_peer_cnt;
284         device_type_s *gl_mul_conn_peers_start;
285
286         // My status
287         bool I_am_group_owner;
288         bool I_am_connected;
289
290         // Following variables are used at the Multi connect view.
291         wfd_multi_connect_mode_e multi_connect_mode;
292         device_type_s *multi_conn_dev_list_start;
293         int gl_available_dev_cnt_at_multiconn_view;
294         int g_source_multi_connect_next;
295
296 #ifdef WFD_ON_OFF_GENLIST
297         int wfd_onoff;
298 #endif
299         wifi_direct_state_e wfd_status;
300         char *dev_name;
301         char *dev_pass;
302
303         // For connect failed peers
304         int last_display_time;
305         Ecore_Timer *display_timer;
306
307         // Tethering
308         bool is_hotspot_off;
309         bool is_hotspot_locally_disabled;
310         tethering_h hotspot_handle;
311
312         // wfds service
313         char *wfds;
314
315         // Device filter
316         int device_filter;
317
318         // Whether support auto exit after successed connection
319         bool is_auto_exit;
320
321         //Whether support multi connection
322         bool is_multi_connect;
323         bool is_select_all_checked;
324
325         //view type for search
326         char *view_type;
327
328         //Title of UG
329         char *title;
330
331         // The ip address of connected peer
332         char *peer_ip_address;
333
334         // The service name that supported WFDSP
335         char *service_name;
336
337         // Whether initialize wfd-namager ok
338         bool is_init_ok;
339
340         //timer for deleting progress bar
341         int timer_stop_progress_bar;
342
343         //timer for multi connect reset
344         int timer_multi_reset;
345
346         //if all the items are selected or not
347         bool is_multi_check_all_selected;
348
349         //timer for remove not alive peer
350         int timer_delete_not_alive_peer;
351
352         //wifi direct discovery status
353         int wfd_discovery_status;
354
355         bool is_paused;
356
357 #ifdef WFD_DBUS_LAUNCH
358         GCancellable *dbus_cancellable;
359         GDBusConnection *conn;
360 #endif
361 };
362
363 extern Elm_Gen_Item_Class device_name_title_itc;
364 #ifdef WFD_ON_OFF_GENLIST
365 extern Elm_Gen_Item_Class wfd_onoff_itc;
366 #endif
367 extern Elm_Gen_Item_Class device_name_itc;
368 extern Elm_Gen_Item_Class title_itc;
369 extern Elm_Gen_Item_Class multi_view_title_itc;
370 extern Elm_Gen_Item_Class peer_itc;
371 extern Elm_Gen_Item_Class title_no_device_itc;
372 extern Elm_Gen_Item_Class noitem_itc;
373 extern Elm_Gen_Item_Class title_available_itc;
374
375 extern Elm_Gen_Item_Class title_conn_itc;
376 extern Elm_Gen_Item_Class peer_conn_itc;
377
378 extern Elm_Gen_Item_Class title_busy_itc;
379 extern Elm_Gen_Item_Class peer_busy_itc;
380
381 extern Elm_Gen_Item_Class title_multi_connect_itc;
382 extern Elm_Gen_Item_Class peer_multi_connect_itc;
383 extern Elm_Gen_Item_Class select_all_multi_connect_itc;
384
385 extern Elm_Gen_Item_Class title_conn_failed_itc;
386 extern Elm_Gen_Item_Class peer_conn_failed_itc;
387
388 /**
389  *      This function let the ug destroy the ug
390  *      @return   void
391  *      @param[in] data the pointer to the main data structure
392  */
393 void wfd_destroy_ug(void *data);
394
395 /**
396  *      This function is called when ON/OFF button is turned ON/OFF
397  *      @return   void
398  *      @param[in] data the pointer to the main data structure
399  *      @param[in] object
400  *      @param[in] event
401  */
402 void _onoff_changed_cb(void *data, Evas_Object *obj, void *event_info);
403 void toolbar_language_changed(void *data, Evas_Object *obj, void *event_info);
404 void ctxpopup_dismissed_cb(void *data, Evas_Object *obj, void *event_info);
405 void wfd_free_nodivice_item(struct ug_data *ugd);
406 void discover_cb(int error_code, wifi_direct_discovery_state_e discovery_state, void *user_data);
407
408
409 #endif  /* __WFD_UG_H__ */