summaryrefslogtreecommitdiffstats
path: root/bttestapp/src/org/codeaurora/bluetooth/bttestapp/PbapTestActivity.java
blob: ff7f044aeea4cc78b5f70ac0ce3181e86103509f (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
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
/*
 * Copyright (c) 2013, The Linux Foundation. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *        * Redistributions of source code must retain the above copyright
 *            notice, this list of conditions and the following disclaimer.
 *        * Redistributions in binary form must reproduce the above copyright
 *            notice, this list of conditions and the following disclaimer in the
 *            documentation and/or other materials provided with the distribution.
 *        * Neither the name of The Linux Foundation nor
 *            the names of its contributors may be used to endorse or promote
 *            products derived from this software without specific prior written
 *            permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NON-INFRINGEMENT ARE DISCLAIMED.    IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

package org.codeaurora.bluetooth.bttestapp;

import android.app.ActionBar;
import android.app.ActionBar.Tab;
import android.app.ActionBar.TabListener;
import android.app.FragmentTransaction;
import android.bluetooth.BluetoothDevice;
import android.content.ComponentName;
import android.content.Intent;
import android.content.ServiceConnection;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.os.IBinder;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.ListView;
import android.widget.ProgressBar;
import android.widget.RadioButton;
import android.widget.Spinner;
import android.widget.TextView;
import android.widget.Toast;
import android.widget.ViewFlipper;

import com.android.vcard.VCardEntry;
import org.codeaurora.bluetooth.pbapclient.BluetoothPbapCard;
import org.codeaurora.bluetooth.pbapclient.BluetoothPbapClient;
import org.codeaurora.bluetooth.bttestapp.R;
import org.codeaurora.bluetooth.bttestapp.services.IPbapServiceCallback;
import org.codeaurora.bluetooth.bttestapp.util.Logger;
import org.codeaurora.bluetooth.bttestapp.util.MonkeyEvent;

import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Arrays;

public class PbapTestActivity extends MonkeyActivity implements IBluetoothConnectionObserver {

    private final String TAG = "PbapTestActivity";

    /*
     * Class constants.
     */
    private static final int REQUEST_CODE_GET_FILTER_FOR_DOWNLOAD_TAB = 0;
    private static final int REQUEST_CODE_GET_FILTER_FOR_VCARD_TAB = 1;

    private ArrayDeque<String> mSetPathQueue = null;

    private static final short MAX_COUNT_DEFAULT_VALUE = 0;
    private static final short OFFSET_DEFAULT_VALUE = 0;
    private static final String HANDLE_DEFAULT_VALUE = "0.vcf";

    /*
     * Common UI.
     */
    private ActionBar mActionBar = null;
    private ViewFlipper mViewFlipper = null;
    /*
     * Download functionality UI.
     */
    private Spinner mDownloadSpinner = null;
    private RadioButton mRadioButtonVCard21 = null;
    private RadioButton mRadioButtonVCard30 = null;
    private EditText mEditTextDownloadMaxListCount = null;
    private EditText mEditTextDownloadOffsetValue = null;
    private Button mButtonFilter = null;
    private Button mButtonDownloadSearch = null;

    private ProgressBar mDownloadProgressBar = null;
    private TextView mTextViewDownloadNothingFound = null;
    private ListView mListViewDownloadContacts = null;

    private RadioButton mRadioButtonSearchName = null;
    private RadioButton mRadioButtonSearchNumber = null;
    private RadioButton mRadioButtonSearchSound = null;
    private EditText mEditTextSearchValue = null;
    private EditText mEditTextBrowseMaxListCount = null;
    private EditText mEditTextBrowseOffsetValue = null;
    private RadioButton mRadioButtonOrderUnordered = null;
    private RadioButton mRadioButtonOrderAlphabetical = null;
    private RadioButton mRadioButtonOrderIndexed = null;
    private RadioButton mRadioButtonOrderPhonetic = null;
    private Button mButtonBrowseSearch = null;

    private ProgressBar mBrowseProgressBar = null;
    private TextView mTextViewBrowseNothingFound = null;
    private ListView mListViewBrowseContacts = null;

    /*
     * vCard Details functionality.
     */
    private Spinner mVcardSpinner = null;
    private VcardView mVcardView = null;
    private EditText mEditTextHandleValue = null;

    /*
     * Download local variables.
     */
    private long mDownloadValueFilter = 0;
    private byte mDownloadValueCardType = BluetoothPbapClient.VCARD_TYPE_21;
    private int mDownloadValueMaxCount = MAX_COUNT_DEFAULT_VALUE;
    private int mDownloadValueOffset = OFFSET_DEFAULT_VALUE;

    /*
     * Browse local variables.
     */
    private byte mBrowseValueOrder = BluetoothPbapClient.ORDER_BY_DEFAULT;
    private byte mBrowseValueSearchAttr = BluetoothPbapClient.SEARCH_ATTR_NAME;
    private int mBrowseValueMaxCount = MAX_COUNT_DEFAULT_VALUE;
    private int mBrowseValueOffset = OFFSET_DEFAULT_VALUE;

    /*
     * Action bar tabs.
     */
    private ActionBar.Tab mDownloadTab = null;
    private ActionBar.Tab mBrowseTab = null;
    private ActionBar.Tab mVcardTab = null;

    /*
     * vCard local variables.
     */
    private String mVcardHandleValue = HANDLE_DEFAULT_VALUE;
    private long mVcardValueFilter = 0;
    private byte mVcardValueCardType = BluetoothPbapClient.VCARD_TYPE_21;

    /*
     * Download adapter.
     */
    private VCardEntryAdapter mVCardEntryAdapter = null;

    OnItemClickListener mOnDownloadItemClickListener = new OnItemClickListener() {
        @Override
        public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
            VCardEntry vcard = (VCardEntry) parent.getAdapter().getItem(position);
            mVcardView.setVCardEntry(vcard);
            mActionBar.selectTab(mVcardTab);
        }
    };

    /*
     * Browse adapter.
     */
    private BluetoothPbapCardAdapter mBluetoothPbapCardAdapter = null;

    OnItemClickListener mOnBrowseItemClickListener = new OnItemClickListener() {
        @Override
        public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
            BluetoothPbapCard pbacpCard = (BluetoothPbapCard) parent.getAdapter().getItem(position);
            mProfileService.getPbapClient().pullVcardEntry(pbacpCard.handle);
        }
    };

    /*
     * PBAP Service.
     */
    private ProfileService mProfileService = null;
    private final IPbapServiceCallback mPbapServiceCallback = new IPbapServiceCallback() {

        @Override
        public void onSetPhoneBookDone() {
            if (mSetPathQueue != null && mSetPathQueue.size() > 0) {
                String next = mSetPathQueue.removeFirst();

                setPhonebookFolder(next);
            } else {
                new MonkeyEvent("pbap-setphonebook", true).send();
            }
        }

        @Override
        public void onPullPhoneBookDone(ArrayList<VCardEntry> list, int missedCalls) {
            mVCardEntryAdapter.clear();
            mVCardEntryAdapter.addAll(list);

            stopProgressBarDownload();

            /* send event for monkeyrunner */
            MonkeyEvent evt = new MonkeyEvent("pbap-pullphonebook", true);
            evt.addReplyParam("size", list.size());
            for (VCardEntry card : list) {
                evt.addExtReply(BluetoothPbapCard.jsonifyVcardEntry(card));
            }
            evt.send();

            Toast.makeText(PbapTestActivity.this, "Missed calls=" + missedCalls, Toast.LENGTH_SHORT)
                    .show();
        }

        @Override
        public void onPullVcardListingDone(ArrayList<BluetoothPbapCard> list, int missedCalls) {
            mBluetoothPbapCardAdapter.clear();
            mBluetoothPbapCardAdapter.addAll(list);
            stopProgressBarBrowse();

            /* send event for monkeyrunner */
            new MonkeyEvent("pbap-pullvcardlisting", true)
                    .addReplyParam("size", list.size())
                    .addExtReply(list)
                    .send();

            Toast.makeText(PbapTestActivity.this, "Missed calls=" + missedCalls, Toast.LENGTH_SHORT)
                    .show();
        }

        @Override
        public void onPullVcardEntryDone(VCardEntry vcard) {
            Logger.v(TAG, "onReceivedPbapPullVcardEntryDone()");

            /* send event for monkeyrunner */
            new MonkeyEvent("pbap-pullvcardentry", true)
                    .addExtReply(BluetoothPbapCard.jsonifyVcardEntry(vcard))
                    .send();

            mVcardView.setVCardEntry(vcard);
            mActionBar.selectTab(mVcardTab);
        }

        @Override
        public void onPullPhoneBookSizeDone(int size, int type) {
            /* send event for monkeyrunner */
            if (type == 0) {
                new MonkeyEvent("pbap-pullphonebook-size", true)
                        .addReplyParam("size", size)
                        .send();
            } else {
                new MonkeyEvent("pbap-pullvcardlisting-size", true)
                        .addReplyParam("size", size)
                        .send();
            }

            Toast.makeText(PbapTestActivity.this, "size=" + size, Toast.LENGTH_SHORT).show();
        }

        @Override
        public void onSetPhoneBookError() {
            Logger.e(TAG, "Received from PBAP set phone book error.");

            mSetPathQueue = null;

            new MonkeyEvent("pbap-setphonebook", false).send();
        }

        @Override
        public void onPullPhoneBookError() {
            Logger.e(TAG, "Received from PBAP pull phone book error.");
            stopProgressBarDownload();
            mListViewDownloadContacts.setVisibility(View.GONE);
            Toast.makeText(PbapTestActivity.this, "PullPhoneBook FAILED", Toast.LENGTH_LONG).show();
            new MonkeyEvent("pbap-pullphonebook", false).send();
        }

        @Override
        public void onPullVcardListingError() {
            Logger.e(TAG, "Received from PBAP listing error.");
            stopProgressBarBrowse();
            mListViewBrowseContacts.setVisibility(View.GONE);
            Toast.makeText(PbapTestActivity.this, "PullvCardListing FAILED", Toast.LENGTH_LONG)
                    .show();
            new MonkeyEvent("pbap-pullvcardlisting", false).send();
        }

        @Override
        public void onPullVcardEntryError() {
            Logger.e(TAG, "Received from PBAP vCard entry error.");
            Toast.makeText(PbapTestActivity.this, "PullvCardEntry FAILED", Toast.LENGTH_LONG)
                    .show();
            new MonkeyEvent("pbap-pullvcardentry", false).send();
        }

        @Override
        public void onPullPhoneBookSizeError() {
            Logger.e(TAG, "Received from PBAP pull phone book size error.");
            Toast.makeText(PbapTestActivity.this, "PullPhoneBook size FAILED", Toast.LENGTH_LONG)
                    .show();
            new MonkeyEvent("pbap-pullphonebook-size", false).send();
        }

        @Override
        public void onPullVcardListingSizeError() {
            Logger.e(TAG, "Received from PBAP pull vCard listing sizeerror.");
            Toast.makeText(PbapTestActivity.this, "PullvCardListing size FAILED", Toast.LENGTH_LONG)
                    .show();
            new MonkeyEvent("pbap-pullvcardlisting-size", false).send();
        }

        @Override
        public void onSessionConnected() {
            Toast.makeText(PbapTestActivity.this, "PBAP session connected", Toast.LENGTH_SHORT)
                    .show();
            invalidateOptionsMenu();
        }

        @Override
        public void onSessionDisconnected() {
            Toast.makeText(PbapTestActivity.this, "PBAP session disconnected", Toast.LENGTH_SHORT)
                    .show();
            invalidateOptionsMenu();
        }
    };

    /*
     * PBAP Service Connection.
     */
    private final ServiceConnection mPbapServiceConnection = new ServiceConnection() {
        @Override
        public void onServiceConnected(ComponentName name, IBinder service) {
            Logger.v(TAG, "onServiceConnected()");
            mProfileService = ((ProfileService.LocalBinder) service).getService();
            mProfileService.setPbapCallback(mPbapServiceCallback);

            ProfileService.PbapSessionData pbap = mProfileService.getPbapSessionData();

            if (pbap.pullPhoneBook != null) {
                mVCardEntryAdapter.clear();
                mVCardEntryAdapter.addAll(pbap.pullPhoneBook);
                stopProgressBarDownload();
            }

            if (pbap.pullVcardListing != null) {
                mBluetoothPbapCardAdapter.clear();
                mBluetoothPbapCardAdapter.addAll(pbap.pullVcardListing);
                stopProgressBarBrowse();
            }

            if (pbap.pullVcardEntry != null) {
                mVcardView.setVCardEntry(pbap.pullVcardEntry);
            }
        }

        @Override
        public void onServiceDisconnected(ComponentName name) {
            Logger.v(TAG, "onServiceDisconnected()");
            mProfileService = null;
        }
    };

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        Logger.v(TAG, "onCreate()");
        ActivityHelper.initialize(this, R.layout.activity_pbap_test);
        ActivityHelper.setActionBarTitle(this, R.string.title_pbap_test);

        prepareActionBar();
        prepareUserInterfaceDownload();
        prepareUserInterfaceBrowse();
        prepareUserInterfaceVcard();

        mBluetoothPbapCardAdapter = new BluetoothPbapCardAdapter();
        mListViewBrowseContacts.setAdapter(mBluetoothPbapCardAdapter);

        mVCardEntryAdapter = new VCardEntryAdapter();
        mListViewDownloadContacts.setAdapter(mVCardEntryAdapter);

        BluetoothConnectionReceiver.registerObserver(this);

        // bind to PBAP service
        Intent intent = new Intent(this, ProfileService.class);
        bindService(intent, mPbapServiceConnection, BIND_AUTO_CREATE);
    }

    @Override
    protected void onStart() {
        super.onStart();
        Logger.v(TAG, "onStart()");
    }

    @Override
    protected void onStop() {
        super.onStop();
        Logger.v(TAG, "onStop()");
    }

    @Override
    protected void onDestroy() {
        super.onDestroy();
        Logger.v(TAG, "onDestroy()");

        mProfileService.setPbapCallback(null);

        unbindService(mPbapServiceConnection);
        BluetoothConnectionReceiver.removeObserver(this);
    }

    @Override
    protected void onResume() {
        super.onResume();
        Logger.v(TAG, "onResume()");
    }

    @Override
    protected void onPause() {
        /*
         * Going to call abort if any pending request is ongoing,
         * checks for the same are handled internally
         */
        mProfileService.getPbapClient().abort();
        super.onPause();
        Logger.v(TAG, "onPause()");
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        mActionBarMenu = menu;

        getMenuInflater().inflate(R.menu.menu_pbap_test, menu);

        if (mProfileService == null)
        {
            Logger.e(TAG, "mProfileSevice is null");
            return false;
        }

        if (mProfileService.getPbapClient().getState() != BluetoothPbapClient.ConnectionState.DISCONNECTED) {
            menu.findItem(R.id.menu_pbap_disconnect).setVisible(true);
        } else {
            menu.findItem(R.id.menu_pbap_connect).setVisible(true);
        }

        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        switch (item.getItemId()) {
            case R.id.menu_pbap_connect:
                mProfileService.getPbapClient().connect();
                break;
            case R.id.menu_pbap_disconnect:
                mProfileService.getPbapClient().disconnect();
                break;
            default:
                Logger.w(TAG, "Unknown item selected.");
                break;
        }
        return true;
    }

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
        Logger.v(TAG, "onActivityResult()");

        if (resultCode != RESULT_OK) {
            Logger.w(TAG, "Result code is not ok for req: " + requestCode + ".");
            return;
        }

        if (requestCode == REQUEST_CODE_GET_FILTER_FOR_DOWNLOAD_TAB) {
            long result = data.getLongExtra("result", -1);

            if (result != -1) {
                Logger.d(TAG, "Received download tab filter " + result + ".");
                mDownloadValueFilter = result;
            } else {
                Logger.w(TAG, "Somethings go wrong here!");
            }
        }

        if (requestCode == REQUEST_CODE_GET_FILTER_FOR_VCARD_TAB) {
            long result = data.getLongExtra("result", -1);

            if (result != -1) {
                Logger.d(TAG, "Received vcard tab filter " + result + ".");
                mVcardValueFilter = result;
            } else {
                Logger.w(TAG, "Somethings go wrong here!");
            }
        }
    }

    private void prepareUserInterfaceDownload() {
        mDownloadSpinner = (Spinner) findViewById(R.id.pbap_download_spinner);
        mButtonFilter = (Button) findViewById(R.id.pbap_download_filter_button);
        mButtonFilter.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Logger.v(TAG, "mButtonFilter.onClick()");

                Intent intent = new Intent(PbapTestActivity.this, VcardFilterActivity.class);
                intent.putExtra("filter", mDownloadValueFilter);
                intent.putExtra("type", mDownloadValueCardType);
                startActivityForResult(intent, REQUEST_CODE_GET_FILTER_FOR_DOWNLOAD_TAB);
            }
        });

        mEditTextDownloadMaxListCount = (EditText) findViewById(R.id.pbap_download_max_list_count);
        mEditTextDownloadMaxListCount.setText(String.valueOf(mDownloadValueMaxCount));

        mEditTextDownloadOffsetValue = (EditText) findViewById(R.id.pbap_download_offset_value);
        mEditTextDownloadOffsetValue.setText(String.valueOf(mDownloadValueOffset));

        mRadioButtonVCard21 = (RadioButton) findViewById(R.id.pbap_download_vcard21);
        mRadioButtonVCard21.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Logger.v(TAG, "mRadioButonVCard21.onClick()");
                mDownloadValueCardType = BluetoothPbapClient.VCARD_TYPE_21;
            }
        });

        mRadioButtonVCard30 = (RadioButton) findViewById(R.id.pbap_download_vcard30);
        mRadioButtonVCard30.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Logger.v(TAG, "mRadioButonVCard30.onClick()");
                mDownloadValueCardType = BluetoothPbapClient.VCARD_TYPE_30;
            }
        });

        mButtonDownloadSearch = (Button) findViewById(R.id.pbap_download_search);
        mButtonDownloadSearch.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Logger.v(TAG, "mButtonDownloadSearch.onClick()");
                runPbapTestDownload();
            }
        });

        mDownloadProgressBar = (ProgressBar) findViewById(R.id.pbap_download_progress_bar);
        mTextViewDownloadNothingFound = (TextView) findViewById(R.id.pbap_download_test_list_empty);
        mListViewDownloadContacts = (ListView) findViewById(R.id.pbap_download_listview_contacts_list);
        mListViewDownloadContacts.setOnItemClickListener(mOnDownloadItemClickListener);

        mDownloadProgressBar.setVisibility(View.GONE);
        mListViewDownloadContacts.setVisibility(View.GONE);
    }

    private void prepareUserInterfaceBrowse() {
        mRadioButtonSearchName = (RadioButton) findViewById(R.id.pbap_browse_name);
        mRadioButtonSearchName.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Logger.v(TAG, "mRadioButtonSearchName.onClick()");
                mBrowseValueSearchAttr = BluetoothPbapClient.SEARCH_ATTR_NAME;
            }
        });

        mRadioButtonSearchNumber = (RadioButton) findViewById(R.id.pbap_browse_number);
        mRadioButtonSearchNumber.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Logger.v(TAG, "mRadioButtonSearchNumber.onClick()");
                mBrowseValueSearchAttr = BluetoothPbapClient.SEARCH_ATTR_NUMBER;
            }
        });

        mRadioButtonSearchSound = (RadioButton) findViewById(R.id.pbap_browse_sound);
        mRadioButtonSearchSound.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Logger.v(TAG, "mRadioButtonSearchSound.onClick()");
                mBrowseValueSearchAttr = BluetoothPbapClient.SEARCH_ATTR_SOUND;
            }
        });

        mEditTextSearchValue = (EditText) findViewById(R.id.pbap_browse_search_value);

        mEditTextBrowseMaxListCount = (EditText) findViewById(R.id.pbap_browse_max_list_count);
        mEditTextBrowseMaxListCount.setText(String.valueOf(mBrowseValueMaxCount));

        mEditTextBrowseOffsetValue = (EditText) findViewById(R.id.pbap_browse_offset_value);
        mEditTextBrowseOffsetValue.setText(String.valueOf(mBrowseValueOffset));

        mRadioButtonOrderUnordered = (RadioButton) findViewById(R.id.pbap_browse_unordered);
        mRadioButtonOrderUnordered.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Logger.v(TAG, "mRadioButtonOrderUnordered.onClick()");
                mBrowseValueOrder = BluetoothPbapClient.ORDER_BY_DEFAULT;
            }
        });

        mRadioButtonOrderAlphabetical = (RadioButton) findViewById(R.id.pbap_browse_alphabetical);
        mRadioButtonOrderAlphabetical.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Logger.v(TAG, "mRadioButtonOrderAlphabetical.onClick()");
                mBrowseValueOrder = BluetoothPbapClient.ORDER_BY_ALPHABETICAL;
            }
        });

        mRadioButtonOrderIndexed = (RadioButton) findViewById(R.id.pbap_browse_indexed);
        mRadioButtonOrderIndexed.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Logger.v(TAG, "mRadioButtonOrderIndexed.onClick()");
                mBrowseValueOrder = BluetoothPbapClient.ORDER_BY_INDEXED;
            }
        });

        mRadioButtonOrderPhonetic = (RadioButton) findViewById(R.id.pbap_browse_phonetic);
        mRadioButtonOrderPhonetic.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Logger.v(TAG, "mRadioButtonOrderPhonetic.onClick()");
                mBrowseValueOrder = BluetoothPbapClient.ORDER_BY_PHONETIC;
            }
        });

        mButtonBrowseSearch = (Button) findViewById(R.id.pbap_browse_search);
        mButtonBrowseSearch.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Logger.v(TAG, "mButtonBrowseSearch.onClick()");
                runPbapTestBrowse();
            }
        });

        mBrowseProgressBar = (ProgressBar) findViewById(R.id.pbap_browse_progress_bar);
        mTextViewBrowseNothingFound = (TextView) findViewById(R.id.pbap_browse_test_list_empty);
        mListViewBrowseContacts = (ListView) findViewById(R.id.pbap_browse_listview_contacts_list);
        mListViewBrowseContacts.setOnItemClickListener(mOnBrowseItemClickListener);

        mBrowseProgressBar.setVisibility(View.GONE);
        mListViewBrowseContacts.setVisibility(View.GONE);
    }

    private void prepareUserInterfaceVcard() {
        mVcardSpinner = (Spinner) findViewById(R.id.pbap_vcard_spinner);
        mVcardView = (VcardView) findViewById(R.id.pbap_vcard_vcardview);

        mEditTextHandleValue = (EditText) findViewById(R.id.pbap_vcard_header);
        mEditTextHandleValue.setText(mVcardHandleValue);
    }

    private void prepareActionBar() {
        mActionBar = getActionBar();

        if (mActionBar != null) {
            mActionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
            mDownloadTab = mActionBar.newTab().setText(R.string.download);
            mBrowseTab = mActionBar.newTab().setText(R.string.browse);
            mVcardTab = mActionBar.newTab().setText(R.string.vcard);

            mViewFlipper = (ViewFlipper) findViewById(R.id.pbap_test_viewflipper);

            mDownloadTab.setTabListener(new TabListener() {
                @Override
                public void onTabUnselected(Tab tab, FragmentTransaction ft) {
                    /* NoP */
                }

                @Override
                public void onTabSelected(Tab tab, FragmentTransaction ft) {
                    mViewFlipper.setDisplayedChild(0);
                }

                @Override
                public void onTabReselected(Tab tab, FragmentTransaction ft) {
                    /* NoP */
                }
            });

            mBrowseTab.setTabListener(new TabListener() {
                @Override
                public void onTabUnselected(Tab tab, FragmentTransaction ft) {
                    /* NoP */
                }

                @Override
                public void onTabSelected(Tab tab, FragmentTransaction ft) {
                    mViewFlipper.setDisplayedChild(1);
                }

                @Override
                public void onTabReselected(Tab tab, FragmentTransaction ft) {
                    /* NoP */
                }
            });

            mVcardTab.setTabListener(new TabListener() {

                @Override
                public void onTabUnselected(Tab tab, FragmentTransaction ft) {
                    /* NoP */
                }

                @Override
                public void onTabSelected(Tab tab, FragmentTransaction ft) {
                    mViewFlipper.setDisplayedChild(2);
                }

                @Override
                public void onTabReselected(Tab tab, FragmentTransaction ft) {
                    /* NoP */
                }
            });

            mActionBar.addTab(mDownloadTab);
            mActionBar.addTab(mBrowseTab);
            mActionBar.addTab(mVcardTab);
        }
    }

    private void runPbapTestDownload() {
        Logger.v(TAG, "runPbapTestDownload()");

        try {
            mDownloadValueMaxCount = Integer.parseInt(mEditTextDownloadMaxListCount.getText()
                    .toString());
        } catch (NumberFormatException e) {
            mDownloadValueMaxCount = MAX_COUNT_DEFAULT_VALUE;
        }

        try {
            mDownloadValueOffset = Integer.parseInt(mEditTextDownloadOffsetValue.getText()
                    .toString());
        } catch (NumberFormatException e) {
            mDownloadValueOffset = OFFSET_DEFAULT_VALUE;
        }

        // Refresh UI EditTexts value if some are blank after edit.
        mEditTextDownloadMaxListCount.setText(String.valueOf(mDownloadValueMaxCount));
        mEditTextDownloadOffsetValue.setText(String.valueOf(mDownloadValueOffset));

        try {
            if (mProfileService.getPbapClient().pullPhoneBook(
                    mDownloadSpinner.getSelectedItem().toString(), mDownloadValueFilter,
                    mDownloadValueCardType, mDownloadValueMaxCount, mDownloadValueOffset)) {
                startProgressBarDownload();
            } else {
                Toast.makeText(this, "PullPhoneBook FAILED", Toast.LENGTH_LONG).show();
            }
        } catch (IllegalArgumentException e) {
            Toast.makeText(this,
                    "PullPhoneBook FAILED: illegal arguments (" + e.getMessage() + ")",
                    Toast.LENGTH_LONG).show();
        }
    }

    private void startProgressBarDownload() {
        mDownloadProgressBar.setVisibility(View.VISIBLE);
        mListViewDownloadContacts.setVisibility(View.GONE);
        mTextViewDownloadNothingFound.setVisibility(View.GONE);
    }

    private void stopProgressBarDownload() {
        mDownloadProgressBar.setVisibility(View.GONE);
        if (mVCardEntryAdapter.getCount() == 0) {
            mTextViewDownloadNothingFound.setVisibility(View.VISIBLE);
            mListViewDownloadContacts.setVisibility(View.GONE);
        } else {
            mTextViewDownloadNothingFound.setVisibility(View.GONE);
            mListViewDownloadContacts.setVisibility(View.VISIBLE);
        }
    }

    private void runPbapTestBrowse() {
        Logger.v(TAG, "runPbapTestBrowse()");

        byte order = mBrowseValueOrder;
        String searchValue = mEditTextSearchValue.getText().toString();

        try {
            mBrowseValueMaxCount = Integer.parseInt(mEditTextBrowseMaxListCount.getText()
                    .toString());
        } catch (NumberFormatException e) {
            mBrowseValueMaxCount = MAX_COUNT_DEFAULT_VALUE;
        }

        try {
            mBrowseValueOffset = Integer.parseInt(mEditTextBrowseOffsetValue.getText().toString());
        } catch (NumberFormatException e) {
            mBrowseValueOffset = OFFSET_DEFAULT_VALUE;
        }

        // Refresh UI EditTexts value if some are blank after edit.
        mEditTextBrowseMaxListCount.setText(String.valueOf(mBrowseValueMaxCount));
        mEditTextBrowseOffsetValue.setText(String.valueOf(mBrowseValueOffset));

        try {
            boolean started;

            if (searchValue != "" && !searchValue.isEmpty()) {
                started = mProfileService.getPbapClient().pullVcardListing(null, order,
                        mBrowseValueSearchAttr, searchValue, mBrowseValueMaxCount,
                        mBrowseValueOffset);
            } else {
                started = mProfileService.getPbapClient().pullVcardListing(null, order,
                        mBrowseValueMaxCount, mBrowseValueOffset);
            }

            if (started) {
                startProgressBarBrowse();
            } else {
                Toast.makeText(this, "PullvCardListing FAILED", Toast.LENGTH_LONG).show();
            }
        } catch (IllegalArgumentException e) {
            Toast.makeText(this,
                    "PullvCardListing FAILED: illegal arguments (" + e.getMessage() + ")",
                    Toast.LENGTH_LONG).show();
        }
    }

    private void startProgressBarBrowse() {
        mBrowseProgressBar.setVisibility(View.VISIBLE);
        mListViewBrowseContacts.setVisibility(View.GONE);
        mTextViewBrowseNothingFound.setVisibility(View.GONE);
    }

    private void stopProgressBarBrowse() {
        mBrowseProgressBar.setVisibility(View.GONE);
        if (mBluetoothPbapCardAdapter.getCount() == 0) {
            mTextViewBrowseNothingFound.setVisibility(View.VISIBLE);
            mListViewBrowseContacts.setVisibility(View.GONE);
        } else {
            mTextViewBrowseNothingFound.setVisibility(View.GONE);
            mListViewBrowseContacts.setVisibility(View.VISIBLE);
        }
    }

    class VCardEntryAdapter extends ArrayAdapter<VCardEntry> {
        VCardEntryAdapter() {
            super(PbapTestActivity.this, android.R.layout.simple_list_item_1);
        }

        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
            View row = convertView;
            boolean defaultPhoto = true;

            if (row == null) {
                LayoutInflater inflater = getLayoutInflater();
                row = inflater.inflate(R.layout.vcard_row, null);
            }

            VCardEntry tmp = getItem(position);

            ((TextView) row.findViewById(R.id.vcard_title)).setText(tmp.getDisplayName());

            if (tmp.getPhotoList() != null && tmp.getPhotoList().size() > 0) {
                byte[] data = tmp.getPhotoList().get(0).getBytes();
                try {
                    if (data != null) {
                        Bitmap bmp = BitmapFactory.decodeByteArray(data, 0, data.length);
                        ((ImageView) row.findViewById(R.id.vcard_photo)).setImageBitmap(bmp);
                        defaultPhoto = false;
                    }
                } catch (IllegalArgumentException e) {
                }
            }

            if (defaultPhoto) {
                ((ImageView) row.findViewById(R.id.vcard_photo))
                        .setImageResource(R.drawable.ic_contact_picture);
            }

            return row;
        }
    }

    class BluetoothPbapCardAdapter extends ArrayAdapter<BluetoothPbapCard> {
        BluetoothPbapCardAdapter() {
            super(PbapTestActivity.this, android.R.layout.simple_list_item_1);
        }

        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
            View row = convertView;

            if (row == null) {
                LayoutInflater inflater = getLayoutInflater();
                row = inflater.inflate(R.layout.vcard_row, null);
            }

            BluetoothPbapCard tmp = getItem(position);

            StringBuilder sb = new StringBuilder();

            if (tmp.firstName != null) {
                sb.append(tmp.firstName).append(" ");
            }
            sb.append(tmp.lastName);

            ((TextView) row.findViewById(R.id.vcard_title)).setText(sb.toString());
            return row;
        }
    }

    @Override
    public void onDeviceChanged(BluetoothDevice device) {
        Logger.v(TAG, "onDeviceChanged()");
        /* NoP */
    }

    @Override
    public void onDeviceDisconected() {
        Logger.e(TAG, "BT device disconnected!");
    }

    public void onClick_download_getsize(View v) {
        mProfileService.getPbapClient().pullPhoneBookSize(
                mDownloadSpinner.getSelectedItem().toString());
    }

    public void onClick_browse_getsize(View v) {
        mProfileService.getPbapClient().pullVcardListingSize("");
    }

    public void onClickVcardFilterAttributes(View v) {
        Intent intent = new Intent(PbapTestActivity.this, VcardFilterActivity.class);
        intent.putExtra("filter", mVcardValueFilter);
        intent.putExtra("type", mVcardValueCardType);
        startActivityForResult(intent, REQUEST_CODE_GET_FILTER_FOR_VCARD_TAB);
    }

    public void onClickRadioButtonVcardType21(View v) {
        mVcardValueCardType = BluetoothPbapClient.VCARD_TYPE_21;
    }

    public void onClickRadioButtonVcardType30(View v) {
        mVcardValueCardType = BluetoothPbapClient.VCARD_TYPE_30;
    }

    public void onClick_setPhonebook(View v) {
        int id = getResources().getIdentifier(v.getTag().toString(), "id", getPackageName());

        Spinner spinner = (Spinner) findViewById(id);

        if (spinner != null) {
            setPhonebook(spinner.getSelectedItem().toString());
        }
    }

    public void onClickVcardButtonGet(View v) {
        mVcardHandleValue = mEditTextHandleValue.getText().toString();

        if (mVcardHandleValue.isEmpty() || mVcardHandleValue == null) {
            mVcardHandleValue = HANDLE_DEFAULT_VALUE;
            mEditTextHandleValue.setText(mVcardHandleValue);
        }

        mProfileService.getPbapClient().pullVcardEntry(mVcardHandleValue, mVcardValueFilter,
                mVcardValueCardType);
    }

    private void setPhonebook(String dst) {
        dst = dst.replaceFirst("\\.vcf$", "");

        mSetPathQueue = new ArrayDeque<String>(Arrays.asList(dst.split("/")));

        mProfileService.getPbapClient().setPhoneBookFolderRoot();
    }

    private void setPhonebookFolder(String folder) {
        mProfileService.getPbapClient().setPhoneBookFolderDown(folder);
    }

    public void onClick_abort(View v) {
        /*
         * Going to call abort if any pending request is ongoing,
         * checks for the same are handled internally
         */
        mProfileService.getPbapClient().abort();
    }
}