summaryrefslogtreecommitdiff
path: root/popup-wifidirect/src/wfd-app-client.c
blob: 3fbbbdbf415e3646e655b4f827ab57d98779bc01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
/*
*  WiFi-Direct UG
*
* Copyright 2012  Samsung Electronics Co., Ltd

* Licensed under the Flora License, Version 1.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at

* http://www.tizenopensource.org/license

* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/

/**
 * This file implements wifi direct application client  functions.
 *
 * @file    wfd-app-client.c
 * @author  Sungsik Jang (sungsik.jang@samsung.com)
 * @version 0.1
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "wifi-direct.h"
#include "wfd-app.h"
#include "wfd-app-util.h"
#include "vconf.h"


bool _wfd_connected_peer_cb(wifi_direct_connected_peer_info_s *peer, void *user_data)
{
	__WFD_APP_FUNC_ENTER__;

	wfd_appdata_t *ad = (wfd_appdata_t *) user_data;
	if (NULL == ad || NULL == peer || NULL == peer->ssid || NULL == peer->mac_address) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "NULL parameters.\n");
		return FALSE;
	}

	int peer_cnt = ad->raw_connected_peer_cnt;
	WFD_APP_LOG(WFD_APP_LOG_LOW, "%dth connected peer. [%s]\n", peer_cnt, peer->ssid);

	strncpy(ad->raw_connected_peers[peer_cnt].ssid, peer->ssid, sizeof(ad->raw_connected_peers[peer_cnt].ssid));
	strncpy(ad->raw_connected_peers[peer_cnt].mac_address, peer->mac_address, WFD_MAC_ADDRESS_SIZE);
	WFD_APP_LOG(WFD_APP_LOG_LOW, "\tSSID: [%s]\n", ad->raw_connected_peers[peer_cnt].ssid);
	ad->raw_connected_peer_cnt++;

	free(peer->ssid);
	free(peer->mac_address);
	free(peer);

	__WFD_APP_FUNC_EXIT__;
	return TRUE;
}

int _wfd_app_get_connected_peers(void *user_data)
{
	__WFD_APP_FUNC_ENTER__;

	wfd_appdata_t *ad = (wfd_appdata_t *) user_data;
	if (NULL == ad) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "NULL parameters.\n");
		return -1;
	}

	int res = 0;

	ad->raw_connected_peer_cnt = 0;
	res = wifi_direct_foreach_connected_peers(_wfd_connected_peer_cb, (void *)ad);
	if (res != WIFI_DIRECT_ERROR_NONE) {
		ad->raw_connected_peer_cnt = 0;
		WFD_APP_LOG(WFD_APP_LOG_LOW, "Get connected peer failed: %d\n", res);
	}

	__WFD_APP_FUNC_EXIT__;
	return 0;
}

void _del_wfd_notification()
{
	__WFD_APP_FUNC_ENTER__;

	/* delete the notification */
	notification_error_e noti_err = NOTIFICATION_ERROR_NONE;
	noti_err  = notification_delete_all_by_type(NULL, NOTIFICATION_TYPE_NOTI);
	if(noti_err != NOTIFICATION_ERROR_NONE) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "Fail to notification_delete_all_by_type.(%d)\n", noti_err);
		return;
	}

	__WFD_APP_FUNC_EXIT__;
}

#if 0
void _add_wfd_actived_notification(void *user_data)
{
	__WFD_APP_FUNC_ENTER__;

	wfd_appdata_t *ad = (wfd_appdata_t *) user_data;
	if (NULL == ad || NULL == ad->noti) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "NULL parameters.\n");
		return;
	}

	notification_error_e noti_err = NOTIFICATION_ERROR_NONE;

	/* set the icon */
	noti_err = notification_set_image(ad->noti, NOTIFICATION_IMAGE_TYPE_ICON,  RESDIR"/images/A09_notification_icon.png");
	if (noti_err != NOTIFICATION_ERROR_NONE) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "Fail to notification_set_image. (%d)\n", noti_err);
		return;
	}

	/* set the title and content */
	noti_err = notification_set_text(ad->noti, NOTIFICATION_TEXT_TYPE_TITLE,
		"Wi-Fi Direct activated", NULL, NOTIFICATION_VARIABLE_TYPE_NONE);
	if (noti_err != NOTIFICATION_ERROR_NONE) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "Fail to notification_set_text. (%d)\n", noti_err);
		return;
	}

	noti_err = notification_set_text(ad->noti, NOTIFICATION_TEXT_TYPE_CONTENT,
		"Tap to change settings", NULL, NOTIFICATION_VARIABLE_TYPE_NONE);
	if (noti_err != NOTIFICATION_ERROR_NONE) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "Fail to notification_set_text. (%d)\n", noti_err);
		return;
	}

	bundle *b = NULL;
	b = bundle_create();
	appsvc_set_pkgname(b, PACKAGE);
	appsvc_add_data(b, NOTIFICATION_BUNDLE_PARAM, NOTIFICATION_BUNDLE_VALUE);

	int res = NOTIFICATION_ERROR_NONE;
	res = notification_set_execute_option(ad->noti, NOTIFICATION_EXECUTE_TYPE_SINGLE_LAUNCH, /*Button Text*/NULL, NULL, b);
	if (res != NOTIFICATION_ERROR_NONE) {
		WFD_APP_LOG(WFD_APP_LOG_LOW,"Failed to notification_set_execute_option. [%d]", res);
		return;
	}

	bundle_free(b);

	/* set display application list */
	noti_err = notification_set_display_applist(ad->noti, NOTIFICATION_DISPLAY_APP_NOTIFICATION_TRAY);
	if(noti_err != NOTIFICATION_ERROR_NONE) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "Fail to notification_set_display_applist : %d\n", noti_err);
		return;
	}

	/* notify the quick panel */
	if (0 == ad->is_insert) {
		noti_err = notification_insert(ad->noti, NULL);
		if (noti_err != NOTIFICATION_ERROR_NONE) {
			WFD_APP_LOG(WFD_APP_LOG_LOW, "Fail to notification_insert.(%d)\n", noti_err);
			return;
		}

		ad->is_insert= 1;
	} else {
		noti_err  = notification_update(ad->noti);
		if (noti_err != NOTIFICATION_ERROR_NONE) {
			WFD_APP_LOG(WFD_APP_LOG_LOW, "Fail to notification_update. (%d)\n", noti_err);
			return;
		}
	}

	__WFD_APP_FUNC_EXIT__;
}
#endif

void _add_wfd_peers_connected_notification(void *user_data)
{
	__WFD_APP_FUNC_ENTER__;

	wfd_appdata_t *ad = (wfd_appdata_t *) user_data;
	if (NULL == ad || NULL == ad->noti) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "NULL parameters.\n");
		return;
	}

	char msg[WFD_MAX_SIZE] = {0};
	notification_error_e noti_err = NOTIFICATION_ERROR_NONE;

	/* delete all notifications */
	_del_wfd_notification();

	/* set the icon */
	noti_err = notification_set_image(ad->noti, NOTIFICATION_IMAGE_TYPE_ICON,  RESDIR"/images/A09_notification_icon.png");
	if (noti_err != NOTIFICATION_ERROR_NONE) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "Fail to notification_set_image. (%d)\n", noti_err);
		return;
	}

	/* set the title and content */
	_wfd_app_get_connected_peers(ad);
	snprintf(msg, WFD_MAX_SIZE, "Connected with %d devices via Wi-Fi Direct", ad->raw_connected_peer_cnt);
	noti_err = notification_set_text(ad->noti, NOTIFICATION_TEXT_TYPE_TITLE, msg, NULL, NOTIFICATION_VARIABLE_TYPE_NONE);
	if (noti_err != NOTIFICATION_ERROR_NONE) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "Fail to notification_set_text. (%d)\n", noti_err);
		return;
	}

	noti_err = notification_set_text(ad->noti, NOTIFICATION_TEXT_TYPE_CONTENT,
		"Tap to change settings", NULL, NOTIFICATION_VARIABLE_TYPE_NONE);
	if (noti_err != NOTIFICATION_ERROR_NONE) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "Fail to notification_set_text. (%d)\n", noti_err);
		return;
	}

	bundle *b = NULL;
	b = bundle_create();
	appsvc_set_pkgname(b, PACKAGE);
	appsvc_add_data(b, NOTIFICATION_BUNDLE_PARAM, NOTIFICATION_BUNDLE_VALUE);

	int res = NOTIFICATION_ERROR_NONE;
	res = notification_set_execute_option(ad->noti, NOTIFICATION_EXECUTE_TYPE_SINGLE_LAUNCH, /*Button Text*/NULL, NULL, b);
	if (res != NOTIFICATION_ERROR_NONE) {
		WFD_APP_LOG(WFD_APP_LOG_LOW,"Failed to notification_set_execute_option. [%d]", res);
		return;
	}

	bundle_free(b);

	/* set display application list */
	noti_err = notification_set_display_applist(ad->noti, NOTIFICATION_DISPLAY_APP_NOTIFICATION_TRAY);
	if(noti_err != NOTIFICATION_ERROR_NONE) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "Fail to notification_set_display_applist : %d\n", noti_err);
		return;
	}

	/* notify the quick panel */
	noti_err = notification_insert(ad->noti, NULL);
	if (noti_err != NOTIFICATION_ERROR_NONE) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "Fail to notification_insert.(%d)\n", noti_err);
		return;
	}

	__WFD_APP_FUNC_EXIT__;
}

void _add_wfd_turn_off_notification(void *user_data)
{
	__WFD_APP_FUNC_ENTER__;

	wfd_appdata_t *ad = (wfd_appdata_t *) user_data;
	if (NULL == ad || NULL == ad->noti) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "NULL parameters.\n");
		return;
	}

	notification_error_e noti_err = NOTIFICATION_ERROR_NONE;

	/* delete all notifications */
	_del_wfd_notification();

	/* set the icon */
	noti_err = notification_set_image(ad->noti, NOTIFICATION_IMAGE_TYPE_ICON,  RESDIR"/images/A09_notification_icon.png");
	if (noti_err != NOTIFICATION_ERROR_NONE) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "Fail to notification_set_image. (%d)\n", noti_err);
		return;
	}

	/* set the title and content */
	noti_err = notification_set_text(ad->noti, NOTIFICATION_TEXT_TYPE_TITLE,
		"Turn off Wi-Fi direct after using", NULL, NOTIFICATION_VARIABLE_TYPE_NONE);
	if (noti_err != NOTIFICATION_ERROR_NONE) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "Fail to notification_set_text. (%d)\n", noti_err);
		return;
	}

	noti_err = notification_set_text(ad->noti, NOTIFICATION_TEXT_TYPE_CONTENT,
		"To save battery turn off Wi-Fi direct after using", NULL, NOTIFICATION_VARIABLE_TYPE_NONE);
	if (noti_err != NOTIFICATION_ERROR_NONE) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "Fail to notification_set_text. (%d)\n", noti_err);
		return;
	}

	bundle *b = NULL;
	b = bundle_create();
	appsvc_set_pkgname(b, PACKAGE);
	appsvc_add_data(b, NOTIFICATION_BUNDLE_PARAM, NOTIFICATION_BUNDLE_VALUE);

	int res = NOTIFICATION_ERROR_NONE;
	res = notification_set_execute_option(ad->noti, NOTIFICATION_EXECUTE_TYPE_SINGLE_LAUNCH, /*Button Text*/NULL, NULL, b);
	if (res != NOTIFICATION_ERROR_NONE) {
		WFD_APP_LOG(WFD_APP_LOG_LOW,"Failed to notification_set_execute_option. [%d]", res);
		return;
	}

	bundle_free(b);

	/* set display application list */
	noti_err = notification_set_display_applist(ad->noti, NOTIFICATION_DISPLAY_APP_NOTIFICATION_TRAY);
	if(noti_err != NOTIFICATION_ERROR_NONE) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "Fail to notification_set_display_applist : %d\n", noti_err);
		return;
	}

	/* notify the quick panel */
	noti_err = notification_insert(ad->noti, NULL);
	if (noti_err != NOTIFICATION_ERROR_NONE) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "Fail to notification_insert.(%d)\n", noti_err);
		return;
	}

	__WFD_APP_FUNC_EXIT__;
}

static Eina_Bool _wfd_automatic_deactivated_for_connection_cb(void *user_data)
{
	int interval = 0;
	unsigned int transmit_packet = 0;
	int wfd_transfer_state = 0;
	wfd_appdata_t *ad = (wfd_appdata_t*) user_data;

	if (NULL == ad) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "NULL parameters.\n");
		return ECORE_CALLBACK_CANCEL;
	}

	/* check the timeout, if not timeout, keep the cb */
	interval = time(NULL) - ad->last_wfd_transmit_time;
	if (interval < NO_ACTION_TIME_OUT) {
		return ECORE_CALLBACK_RENEW;
	}

	/* get transfer state */
	if (vconf_get_int(VCONFKEY_WIFI_DIRECT_TRANSFER_STATE, &wfd_transfer_state) < 0) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "Error reading vconf (%s)\n",
			VCONFKEY_WIFI_DIRECT_TRANSFER_STATE);
		return ECORE_CALLBACK_CANCEL;
	}

	/* show tickernoti*/
	if (wfd_transfer_state > VCONFKEY_WIFI_DIRECT_TRANSFER_START) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "No RX/TX packet, turn off WFD automatically.\n");
		_add_wfd_turn_off_notification(ad);
	} else {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "Has RX/TX packet, restart.\n");
		ad->last_wfd_transmit_time = time(NULL);
		return ECORE_CALLBACK_RENEW;
	}

	return ECORE_CALLBACK_CANCEL;
}

/* automatic deactivated wfd callback*/
static Eina_Bool _wfd_automatic_deactivated_for_no_connection_cb(void *user_data)
{
	int res = -1;
	int interval = 0;
	wfd_appdata_t *ad = (wfd_appdata_t*) user_data;

	if (NULL == ad) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "NULL parameters.\n");
		return ECORE_CALLBACK_CANCEL;
	}

	/* check the action, if action is exist, keep the cb */
	res = wifi_direct_get_state(&ad->wfd_status);
	if (res != WIFI_DIRECT_ERROR_NONE) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "Failed to get link status. [%d]\n", res);
		return ECORE_CALLBACK_CANCEL;
	}

	if (ad->last_wfd_status != ad->wfd_status) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "Action is exist, last status: %d\n",
			ad->last_wfd_status);
		ad->last_wfd_status = ad->wfd_status;
		ad->last_wfd_time = time(NULL);
		return ECORE_CALLBACK_RENEW;
	}

	/* check the timeout, if not timeout, keep the cb */
	interval = time(NULL) - ad->last_wfd_time;
	if (interval < NO_ACTION_TIME_OUT) {
		return ECORE_CALLBACK_RENEW;
	}

	/* turn off the Wi-Fi Direct */
	wifi_direct_get_state(&ad->wfd_status);
	if (ad->wfd_status < WIFI_DIRECT_STATE_ACTIVATING) {
		WFD_APP_LOG(WFD_APP_LOG_LOW, "Wi-Fi Direct is already deactivated\n");
	} else {
		wfd_prepare_popup(WFD_POP_AUTOMATIC_TURN_OFF, NULL);
	}

	return ECORE_CALLBACK_CANCEL;
}

void _cb_activation(int error_code, wifi_direct_device_state_e device_state,
                    void *user_data)
{
    __WFD_APP_FUNC_ENTER__;

    wfd_appdata_t *ad = (wfd_appdata_t *) user_data;

    switch (device_state)
    {
    case WIFI_DIRECT_DEVICE_STATE_ACTIVATED:
        WFD_APP_LOG(WFD_APP_LOG_LOW,
                    "event ------------------ WIFI_DIRECT_DEVICE_STATE_ACTIVATED\n");
        break;

    case WIFI_DIRECT_DEVICE_STATE_DEACTIVATED:
        WFD_APP_LOG(WFD_APP_LOG_LOW,
                    "event ------------------ WIFI_DIRECT_DEVICE_STATE_DEACTIVATED\n");
        WFD_APP_LOG(WFD_APP_LOG_LOW,
                    "Termination process of wifi-direct popup begins...\n");

	/* when deactivated, stop the timer */
	if (ad->transmit_timer) {
	    ecore_timer_del(ad->transmit_timer);
	    ad->transmit_timer = NULL;
	}

	if (ad->monitor_timer) {
	    ecore_timer_del(ad->monitor_timer);
	    ad->monitor_timer = NULL;
	}

        elm_exit();
        break;

    default:
        break;
    }

    __WFD_APP_FUNC_EXIT__;

}


static wfd_device_info_t *_wfd_app_find_peer_by_mac_address(void *data,
	                                                  const char *mac_address)
{
	__WFD_APP_FUNC_ENTER__;

	wfd_appdata_t *ad = (wfd_appdata_t *) data;
	
	int i;

	if (ad == NULL)
	{
		WFD_APP_LOG(WFD_APP_LOG_LOW, "Incorrect parameter(NULL)\n");
		return NULL;
	}

	WFD_APP_LOG(WFD_APP_LOG_LOW, "find peer by MAC [%s] \n", mac_address);

	for (i = 0; i < ad->discovered_peer_count; i++)
	{
		WFD_APP_LOG(WFD_APP_LOG_LOW, "check %dth peer\n", i);
		
		if (!strncmp(mac_address, (const char *) ad->discovered_peers[i].mac_address, 18))
		{
			WFD_APP_LOG(WFD_APP_LOG_LOW, "found peer. [%d]\n", i);
			__WFD_APP_FUNC_EXIT__;
			return &ad->discovered_peers[i];
		}
	}
    
	__WFD_APP_FUNC_EXIT__;

    return NULL;
}


bool _wfd_app_discoverd_peer_cb(wifi_direct_discovered_peer_info_s * peer,
                            void *user_data)
{
	__WFD_APP_FUNC_ENTER__;

	wfd_appdata_t *ad = (wfd_appdata_t *) user_data;

	if (NULL != peer->ssid)
	{
		WFD_APP_LOG(WFD_APP_LOG_LOW, "discovered peer ssid[%s]\n", peer->ssid);
		strncpy(ad->discovered_peers[ad->discovered_peer_count].ssid, peer->ssid, 32);
	}
	else
	{
		WFD_APP_LOG(WFD_APP_LOG_LOW, "peer's ssid is NULL\n");
	}

	if (NULL != peer->mac_address)
	{
		WFD_APP_LOG(WFD_APP_LOG_LOW, "discovered peer mac[%s]\n", peer->mac_address);
		strncpy(ad->discovered_peers[ad->discovered_peer_count].mac_address, peer->mac_address, 18);
	}
	else
	{
		WFD_APP_LOG(WFD_APP_LOG_LOW, "peer's mac is NULL\n");
	}
	
	ad->discovered_peer_count++;

	__WFD_APP_FUNC_EXIT__;
	
	return TRUE;

}


void _cb_discover(int error_code, wifi_direct_discovery_state_e discovery_state,
                  void *user_data)
{
    __WFD_APP_FUNC_ENTER__;

    wfd_appdata_t *ad = (wfd_appdata_t *) user_data;
    int ret;

    switch (discovery_state)
    {
	case WIFI_DIRECT_DISCOVERY_STARTED:
		{
			WFD_APP_LOG(WFD_APP_LOG_LOW, "event ------------------ WIFI_DIRECT_DISCOVERY_STARTED\n");
		}
		break;

	case WIFI_DIRECT_ONLY_LISTEN_STARTED:
		{
			WFD_APP_LOG(WFD_APP_LOG_LOW, "event ------------------ WIFI_DIRECT_ONLY_LISTEN_STARTED\n");
		}
		break;

	case WIFI_DIRECT_DISCOVERY_FINISHED:
		{
			WFD_APP_LOG(WFD_APP_LOG_LOW, "event ------------------ WIFI_DIRECT_DISCOVERY_FINISHED\n");
		}
		break;

	case WIFI_DIRECT_DISCOVERY_FOUND:
		{
			WFD_APP_LOG(WFD_APP_LOG_LOW, "event ------------------ WIFI_DIRECT_DISCOVERY_FOUND\n");

			if (NULL != ad->discovered_peers)
				free(ad->discovered_peers);

			ad->discovered_peers = calloc(10, sizeof(wfd_device_info_t));
			ad->discovered_peer_count = 0;

			ret = wifi_direct_foreach_discovered_peers(_wfd_app_discoverd_peer_cb, (void *) ad);
			if (ret != WIFI_DIRECT_ERROR_NONE)
 				WFD_APP_LOG(WFD_APP_LOG_LOW, "get discovery result failed: %d\n", ret);
 		}
		break;

	default:
		break;
    }

    __WFD_APP_FUNC_EXIT__;

}

void _cb_connection(int error_code,
                    wifi_direct_connection_state_e connection_state,
                    const char *mac_address, void *user_data)
{
	__WFD_APP_FUNC_ENTER__;

	wfd_appdata_t *ad = (wfd_appdata_t *) user_data;
	int result = -1;
	char msg[WFD_POP_STR_MAX_LEN] = {0};
	wfd_device_info_t *peer_info = NULL;

	/* find the peer's name by the mac address */
	if (NULL == mac_address) {
		WFD_APP_LOG(WFD_APP_LOG_ERROR, "ERROR : mac address is NULL !!\n");
		return;
	}

	strncpy(ad->peer_mac, mac_address, strlen(mac_address));

	peer_info = _wfd_app_find_peer_by_mac_address(ad, mac_address);

	if (NULL == peer_info)
	{
		WFD_APP_LOG(WFD_APP_LOG_LOW, "peer_info is NULL !!\n");
	}
	else if (NULL == peer_info->ssid)
	{
		WFD_APP_LOG(WFD_APP_LOG_LOW, "SSID from connection is NULL !!\n");
	}
	else
	{
		WFD_APP_LOG(WFD_APP_LOG_LOW, "SSID from connection is %s.\n", peer_info->ssid);
		strncpy(ad->peer_name, peer_info->ssid, strlen(peer_info->ssid));
	}

	if (ad->peer_name == NULL || strlen(ad->peer_name) == 0) {
		strncpy(ad->peer_name, ad->peer_mac, strlen(ad->peer_mac));
	}

	switch (connection_state)
	{
	case WIFI_DIRECT_CONNECTION_RSP:
	{
		WFD_APP_LOG(WFD_APP_LOG_LOW,
				"event ------------------ WIFI_DIRECT_CONNECTION_RSP\n");
		wfd_destroy_popup();

		if (error_code == WIFI_DIRECT_ERROR_NONE)
		{
			WFD_APP_LOG(WFD_APP_LOG_LOW, "Link Complete!\n");

			/* add connected notification */
			_add_wfd_peers_connected_notification(ad);

			/* tickernoti popup */
			snprintf(msg, WFD_POP_STR_MAX_LEN, _("IDS_WFD_POP_CONNECTED"), ad->peer_name);
			wfd_tickernoti_popup(msg);
		}
		else
		{
			if (error_code == WIFI_DIRECT_ERROR_CONNECTION_TIME_OUT)
				WFD_APP_LOG(WFD_APP_LOG_LOW,
						"Error Code - WIFI_DIRECT_ERROR_CONNECTION_TIME_OUT\n");
			else if (error_code == WIFI_DIRECT_ERROR_AUTH_FAILED)
				WFD_APP_LOG(WFD_APP_LOG_LOW,
						"Error Code - WIFI_DIRECT_ERROR_AUTH_FAILED\n");
			else if (error_code == WIFI_DIRECT_ERROR_CONNECTION_FAILED)
				WFD_APP_LOG(WFD_APP_LOG_LOW,
						"Error Code - WIFI_DIRECT_ERROR_CONNECTION_FAILED\n");

			result = wifi_direct_start_discovery(FALSE, 0);
			WFD_APP_LOG(WFD_APP_LOG_LOW,
					"wifi_direct_start_discovery() result=[%d]\n",
					result);
		}
	}
	break;

	case WIFI_DIRECT_CONNECTION_WPS_REQ:
	{
		wifi_direct_config_data_s *config = NULL;

		memcpy(ad->peer_mac, mac_address, sizeof(ad->peer_mac));

		WFD_APP_LOG(WFD_APP_LOG_LOW,
				"event ------------------ WIFI_DIRECT_CONNECTION_WPS_REQ\n");
		result = wifi_direct_get_config_data(&config);
		WFD_APP_LOG(WFD_APP_LOG_LOW,
				"wifi_direct_client_get_config_data() result=[%d]\n",
				result);

		if (config->wps_config == WIFI_DIRECT_WPS_TYPE_PBC)
		{
			WFD_APP_LOG(WFD_APP_LOG_LOW,
					"wps_config is WIFI_DIRECT_WPS_TYPE_PBC. Ignore it..\n");
		}
		else if (config->wps_config == WIFI_DIRECT_WPS_TYPE_PIN_KEYPAD)
		{
			char *pin;
			WFD_APP_LOG(WFD_APP_LOG_LOW, "wps_config is WIFI_DIRECT_WPS_TYPE_PIN_KEYPAD\n");

			if (wifi_direct_generate_wps_pin() != WIFI_DIRECT_ERROR_NONE)
			{
				WFD_APP_LOG(WFD_APP_LOG_LOW, "wifi_direct_generate_wps_pin() is failed\n");
				return;
			}

			if (wifi_direct_get_wps_pin(&pin) != WIFI_DIRECT_ERROR_NONE)
			{
				WFD_APP_LOG(WFD_APP_LOG_LOW, "wifi_direct_generate_wps_pin() is failed\n");
				return;
			}
			strncpy(ad->pin_number, pin, 32);
			free(pin);
			pin=NULL;

			WFD_APP_LOG(WFD_APP_LOG_LOW, "pin=[%s]\n", ad->pin_number);

			wfd_prepare_popup(WFD_POP_PROG_CONNECT_WITH_PIN, NULL);
		}
		else if (config->wps_config == WIFI_DIRECT_WPS_TYPE_PIN_DISPLAY)
		{
			WFD_APP_LOG(WFD_APP_LOG_LOW, "wps_config is WIFI_DIRECT_WPS_TYPE_PIN_DISPLAY\n");
			wfd_prepare_popup(WFD_POP_PROG_CONNECT_WITH_KEYPAD, (void *) NULL);
		}
		else
		{
			WFD_APP_LOG(WFD_APP_LOG_LOW, "wps_config is unkown!\n");

		}
		if (config != NULL)
			free(config);
	}
	break;

	case WIFI_DIRECT_CONNECTION_REQ:
	{
		WFD_APP_LOG(WFD_APP_LOG_LOW, "event ------------------ WIFI_DIRECT_CONNECTION_REQ\n");

		wifi_direct_config_data_s *config = NULL;

		result = wifi_direct_get_config_data(&config);
		WFD_APP_LOG(WFD_APP_LOG_LOW, "wifi_direct_client_get_config_data() result=[%d]\n", result);

		if(config->auto_connection == TRUE)
		{
			result = wifi_direct_accept_connection(ad->peer_mac);
			printf("wifi_direct_accept_connection() result=[%d]\n", result);
		}
		else
		{

			if (config->wps_config == WIFI_DIRECT_WPS_TYPE_PBC)
			{
				char pushbutton;
				WFD_APP_LOG(WFD_APP_LOG_LOW, "wps_config is WIFI_DIRECT_WPS_TYPE_PBC\n");

				wfd_prepare_popup(WFD_POP_APRV_CONNECTION_WPS_PUSHBUTTON_REQ, NULL);
			}
			else if (config->wps_config == WIFI_DIRECT_WPS_TYPE_PIN_DISPLAY)
			{
				WFD_APP_LOG(WFD_APP_LOG_LOW, "wps_config is WIFI_DIRECT_WPS_TYPE_PIN_DISPLAY\n");

				wfd_prepare_popup(WFD_POP_APRV_CONNECTION_WPS_DISPLAY_REQ, NULL);
			}
			else if (config->wps_config == WIFI_DIRECT_WPS_TYPE_PIN_KEYPAD)
			{
				WFD_APP_LOG(WFD_APP_LOG_LOW, "wps_config is WIFI_DIRECT_WPS_TYPE_PIN_KEYPAD\n");
				wfd_prepare_popup(WFD_POP_APRV_CONNECTION_WPS_KEYPAD_REQ, (void *) NULL);
			}
			else
			{
				WFD_APP_LOG(WFD_APP_LOG_LOW, "wps_config is unkown!\n");
			}

			if (config != NULL)
				free(config);

		}
	}
	break;

	case WIFI_DIRECT_DISCONNECTION_IND:
	{
		_del_wfd_notification();
		WFD_APP_LOG(WFD_APP_LOG_LOW,
				"event ------------------ WIFI_DIRECT_DISCONNECTION_IND\n");

		result = wifi_direct_set_autoconnection_mode(false);
		WFD_APP_LOG(WFD_APP_LOG_LOW,"wifi_direct_set_autoconnection_mode() result=[%d]\n", result);

		/* tickernoti popup */
		snprintf(msg, WFD_POP_STR_MAX_LEN, _("IDS_WFD_POP_DISCONNECTED"), ad->peer_name);
		wfd_tickernoti_popup(msg);
	}
	break;

	case WIFI_DIRECT_DISCONNECTION_RSP:
	{
		_del_wfd_notification();
		wfd_destroy_popup();

		result = wifi_direct_set_autoconnection_mode(false);
		WFD_APP_LOG(WFD_APP_LOG_LOW,"wifi_direct_set_autoconnection_mode() result=[%d]\n", result);

		result = wifi_direct_start_discovery(FALSE, 0);
		WFD_APP_LOG(WFD_APP_LOG_LOW,
				"wifi_direct_start_discovery() result=[%d]\n", result);

		/* tickernoti popup */
		snprintf(msg, WFD_POP_STR_MAX_LEN, _("IDS_WFD_POP_DISCONNECTED"), ad->peer_name);
		wfd_tickernoti_popup(msg);
	}
	break;
	case WIFI_DIRECT_CONNECTION_IN_PROGRESS:
	{
		WFD_APP_LOG(WFD_APP_LOG_LOW,
				"event ------------------ WIFI_DIRECT_CONNECTION_IN_PROGRESS\n");
		/* tickernoti popup */
		wfd_tickernoti_popup(_("IDS_WFD_POP_CONNECTING"));
	}
	default:
		break;

	}

	/* if connected, switch to the transmit timer; Otherwise, switch to monitor timer */
	wifi_direct_get_state(&ad->wfd_status);
	WFD_APP_LOG(WFD_APP_LOG_LOW,"status: %d", ad->wfd_status);

	if (ad->wfd_status > WIFI_DIRECT_STATE_CONNECTING) {
		if (ad->monitor_timer) {
			ecore_timer_del(ad->monitor_timer);
			ad->monitor_timer = NULL;
		}

		if (NULL == ad->transmit_timer) {
			WFD_APP_LOG(WFD_APP_LOG_LOW, "switch to the transmit timer\n");
			ad->last_wfd_transmit_time = time(NULL);
			ad->transmit_timer = ecore_timer_add(5.0,
					(Ecore_Task_Cb)_wfd_automatic_deactivated_for_connection_cb, ad);
		}
	} else {
		if (ad->transmit_timer) {
			ecore_timer_del(ad->transmit_timer);
			ad->transmit_timer = NULL;
		}

		if (NULL == ad->monitor_timer) {
			WFD_APP_LOG(WFD_APP_LOG_LOW, "switch to the monitor timer\n");
			ad->last_wfd_time = time(NULL);
			ad->monitor_timer = ecore_timer_add(5.0,
					(Ecore_Task_Cb)_wfd_automatic_deactivated_for_no_connection_cb, ad);
		}
	}

	__WFD_APP_FUNC_EXIT__;
}


int init_wfd_popup_client(wfd_appdata_t * ad)
{
    __WFD_APP_FUNC_ENTER__;

    if (NULL == ad) {
	WFD_APP_LOG(WFD_APP_LOG_LOW, "NULL parameters.\n");
	return FALSE;
    }

    int ret = -1;

    ret = wifi_direct_initialize();

    ret = wifi_direct_set_device_state_changed_cb(_cb_activation, (void *) ad);
    ret = wifi_direct_set_discovery_state_changed_cb(_cb_discover, (void *) ad);
    ret =
        wifi_direct_set_connection_state_changed_cb(_cb_connection,
                                                    (void *) ad);

    /* initialize notification */
    ad->noti = NULL;
    ad->raw_connected_peer_cnt = 0;

    ad->noti = notification_new(NOTIFICATION_TYPE_NOTI, NOTIFICATION_GROUP_ID_NONE, NOTIFICATION_PRIV_ID_NONE);
    if (NULL == ad->noti) {
	WFD_APP_LOG(WFD_APP_LOG_LOW, "notification_new failed.\n");
	return FALSE;
    }

    /* start the monitor timer */
    ad->last_wfd_time = time(NULL);
    ad->last_wfd_status = WIFI_DIRECT_STATE_DEACTIVATED;
    ad->monitor_timer = ecore_timer_add(5.0, (Ecore_Task_Cb)_wfd_automatic_deactivated_for_no_connection_cb, ad);

    __WFD_APP_FUNC_EXIT__;

    if (ret == WIFI_DIRECT_ERROR_NONE)
        return TRUE;
    else
        return FALSE;
}

int deinit_wfd_popup_client(wfd_appdata_t * ad)
{
    __WFD_APP_FUNC_ENTER__;

    if (NULL == ad || NULL == ad->noti) {
	WFD_APP_LOG(WFD_APP_LOG_LOW, "NULL parameters.\n");
	return FALSE;
    }

    int ret = -1;

    ret = wifi_direct_deinitialize();

    _del_wfd_notification(ad);

    notification_error_e noti_err = NOTIFICATION_ERROR_NONE;
    noti_err = notification_free(ad->noti);
    if (noti_err != NOTIFICATION_ERROR_NONE) {
	WFD_APP_LOG(WFD_APP_LOG_LOW, "Fail to notification_free.(%d)\n", noti_err);
	ret = WIFI_DIRECT_ERROR_RESOURCE_BUSY;
    }

    if (ad->transmit_timer) {
	ecore_timer_del(ad->transmit_timer);
	ad->transmit_timer = NULL;
    }

    if (ad->monitor_timer) {
	ecore_timer_del(ad->monitor_timer);
	ad->monitor_timer = NULL;
    }

    __WFD_APP_FUNC_EXIT__;

    if (ret == WIFI_DIRECT_ERROR_NONE)
        return TRUE;
    else
        return FALSE;
}