aboutsummaryrefslogtreecommitdiff
path: root/Common/src/com/googlecode/android_scripting/facade/bluetooth/BluetoothDiscoveryHelper.java
blob: 51ebf5fd70b91d161a1c0b4e9df6df388ee4a84e (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
/*
 * Copyright (C) 2017 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.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.apache.org/licenses/LICENSE-2.0
 *
 * 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.
 */

package com.googlecode.android_scripting.facade.bluetooth;

import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;

import com.googlecode.android_scripting.Log;

import java.util.Set;

/**
 * This class is used to put the device in discovery mode.
 */
public class BluetoothDiscoveryHelper {

    /**
     * BLuetooth discovery listener Interface.
     */
    public interface BluetoothDiscoveryListener {

        /**
         * Add Bonded device.
         */
        void addBondedDevice(String name, String address);

        /**
         * Add Devices.
         */
        void addDevice(String name, String address);

        /**
         * Complete scanning.
         */
        void scanDone();
    }

    private final Context mContext;
    private final BluetoothDiscoveryListener mListener;
    private final BroadcastReceiver mReceiver;

    public BluetoothDiscoveryHelper(
            Context context, BluetoothDiscoveryListener listener) {
    mContext = context;
    mListener = listener;
    mReceiver = new BluetoothReceiver();
    }

    private class BluetoothReceiver extends BroadcastReceiver {
    @Override
        public void onReceive(Context context, Intent intent) {
            final String action = intent.getAction();

            if (BluetoothDevice.ACTION_FOUND.equals(action)) {
                // Get the BluetoothDevice object from the Intent.
                BluetoothDevice device = intent.getParcelableExtra(
                        BluetoothDevice.EXTRA_DEVICE);
                Log.d("Found device " + device.getAliasName());
                // If it's already paired, skip it, because it's been listed already.
                if (device.getBondState() != BluetoothDevice.BOND_BONDED) {
                    mListener.addDevice(device.getName(), device.getAddress());
                }
            } else if (BluetoothAdapter.ACTION_DISCOVERY_FINISHED.equals(action)) {
                mListener.scanDone();
            }
        }
    }
    /**
     * Start Bluetooth Discovery.
     */

    public void startDiscovery() {
        BluetoothAdapter bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();

        if (bluetoothAdapter.isDiscovering()) {
            bluetoothAdapter.cancelDiscovery();
        }

        Set<BluetoothDevice> pairedDevices = bluetoothAdapter.getBondedDevices();
        for (BluetoothDevice device : pairedDevices) {
            mListener.addBondedDevice(device.getName(), device.getAddress());
        }

        IntentFilter filter = new IntentFilter(BluetoothDevice.ACTION_FOUND);
        filter.addAction(BluetoothAdapter.ACTION_DISCOVERY_FINISHED);
        mContext.registerReceiver(mReceiver, filter);

        if (!bluetoothAdapter.isEnabled()) {
            bluetoothAdapter.enable();
        }

        bluetoothAdapter.startDiscovery();
    }

    /**
     * Cancel.
     */
    public void cancel() {
        mContext.unregisterReceiver(mReceiver);
        mListener.scanDone();
    }
}