blob: 2d9931e7e843986004089ba087ca6682a534687a (
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
|
#pragma once
#include <stdint.h>
#include <vector>
#include <map>
#include <string>
using std::size_t;
using std::vector;
using std::map;
using std::string;
using std::array;
typedef uint32_t cd_link_t;
typedef uint8_t cd_mac_addr_t[6];
typedef array<uint8_t, 6> cd_mac_addr_cpp_t;
enum cd_e_automation_type {
CD_AUTOMATION_TYPE_TOGGLE,
CD_AUTOMATION_TYPE_TURN_ON,
CD_AUTOMATION_TYPE_TURN_OFF,
};
typedef struct {
cd_mac_addr_t address;
size_t name_len;
const char* name;
bool light_on;
bool provisioned;
} cd_s_node;
typedef struct {
cd_e_automation_type type;
cd_s_node* button;
cd_s_node* light;
} cd_s_automation;
class CDMeshConnector {
private:
vector<cd_s_node*> _nodes;
map<cd_link_t, cd_s_automation*> _links;
cd_link_t _fresh_map_id = 0;
virtual cd_link_t get_new_map_id();
public:
CDMeshConnector();
virtual ~CDMeshConnector();
virtual void refresh_nodes_sync();
virtual void refresh_config_sync();
virtual map<cd_link_t, cd_s_automation*> get_links();
virtual map<cd_mac_addr_cpp_t, cd_s_node*> get_nodes(bool provisioned);
virtual vector<cd_s_node*> get_raw_nodes();
virtual vector<cd_s_automation*> get_config();
virtual cd_link_t set_link(cd_s_node* button, cd_s_node* light, enum cd_e_automation_type action);
virtual void remove_link(cd_link_t link_handle);
virtual cd_s_node* get_node_by_id(cd_mac_addr_t address);
virtual void update_node(cd_s_node* node_ptr);
virtual void node_join_network(cd_s_node* node_ptr);
virtual void node_remove_network(cd_s_node* node_ptr);
};
extern CDMeshConnector* g_cd_mesh_connector;
string cd_mac_to_string(cd_mac_addr_t mac);
cd_mac_addr_cpp_t cd_mac_to_cpp_arr(cd_mac_addr_t mac);
|