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// -*- mode: c++; coding: utf-8; tab-width: 4 -*-
// Copyright (C) 2014, Oscar Acena <oscaracena@gmail.com>
// This software is under the terms of GPLv3 or later.
#ifndef _MIBANDA_GATTLIB_H_
#define _MIBANDA_GATTLIB_H_
#define MAX_WAIT_FOR_PACKET 15 // seconds
#include <boost/python/list.hpp>
#include <string>
#include <stdint.h>
#include <glib.h>
extern "C" {
#include "lib/uuid.h"
#include "attrib/att.h"
#include "attrib/gattrib.h"
#include "attrib/gatt.h"
#include "attrib/utils.h"
}
#include "event.hpp"
class IOService {
public:
IOService(bool run);
void start();
void operator()();
};
class GATTResponse {
public:
GATTResponse();
virtual ~GATTResponse() {};
virtual void on_response(const std::string data);
boost::python::list received();
bool wait(uint16_t timeout);
void notify(uint8_t status);
private:
uint8_t _status;
boost::python::list _data;
Event _event;
};
void connect_cb(GIOChannel* channel, GError* err, gpointer user_data);
class GATTRequester {
public:
GATTRequester(std::string address, bool do_connect=true);
~GATTRequester();
virtual void on_notification(const uint16_t handle, const std::string data);
virtual void on_indication(const uint16_t handle, const std::string data);
void connect(bool wait=false);
bool is_connected();
void read_by_handle_async(uint16_t handle, GATTResponse* response);
boost::python::list read_by_handle(uint16_t handle);
void read_by_uuid_async(std::string uuid, GATTResponse* response);
boost::python::list read_by_uuid(std::string uuid);
void write_by_handle_async(uint16_t handle, std::string data, GATTResponse* response);
boost::python::list write_by_handle(uint16_t handle, std::string data);
friend void connect_cb(GIOChannel*, GError*, gpointer);
friend gboolean disconnect_cb(GIOChannel* channel, GIOCondition cond, gpointer userp);
friend void events_handler(const uint8_t* data, uint16_t size, gpointer userp);
private:
void check_channel();
enum State {
STATE_DISCONNECTED,
STATE_CONNECTING,
STATE_CONNECTED,
} _state;
std::string _device;
std::string _address;
int _hci_socket;
GIOChannel* _channel;
GAttrib* _attrib;
};
#endif // _MIBANDA_GATTLIB_H_