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

// use blurz::bluetooth_adapter::BluetoothAdapter;
// use blurz::bluetooth_device::BluetoothDevice;
// use blurz::BluetoothSession;

use ra_common::models::{Packet};

use log::{info};

pub struct BluetoothClient {

}

impl BluetoothClient {
    pub fn new() -> BluetoothClient {
        BluetoothClient {

        }
    }
    pub fn init(&mut self) {
        info!("{}","Initializing Bluetooth client...")
    }

    pub fn handle(&mut self, packet: &mut Packet) {
        info!("Handling incoming packet id={}",packet.id);
        // let path = packet.to_addr.as_str();
        // let session = BluetoothSession::create_session(Option::Some(path)).unwrap();
        // let adapter = BluetoothAdapter::init(&session).unwrap();
        // let device = adapter.get_first_device().unwrap();
        // info!("{:?}", device);
        // match device.connect(5000) {
        //     Ok(_) => (),
        //     Err(e) => warn!("{:?}", e),
        // }
    }
}

// Send Message using Bluetooth Radio
// pub fn send_message(msg: String) {
//     let path:
//     let session: BluetoothSession = BluetoothSession::create_session(&path).unwrap();
//     let adapter: BluetoothAdapter = BluetoothAdapter::init(&session).unwrap();
//     let device: BluetoothDevice = adapter.get_first_device().unwrap();
//     println!("{:?}", device);
// }

// Receive Message from Bluetooth Radio
// fn receive_message(msg: String) {
//
// }

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}