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