upm  1.7.1
Sensor/Actuator repository for libmraa (v2.0.0)
zwNode.hpp
1 /*
2  * Author: Jon Trulson <jtrulson@ics.com>
3  * Copyright (c) 2015-2016l Corporation.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining
6  * a copy of this software and associated documentation files (the
7  * "Software"), to deal in the Software without restriction, including
8  * without limitation the rights to use, copy, modify, merge, publish,
9  * distribute, sublicense, and/or sell copies of the Software, and to
10  * permit persons to whom the Software is furnished to do so, subject to
11  * the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be
14  * included in all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23  */
24 #pragma once
25 
26 #include <map>
27 #include <list>
28 
29 #include "Manager.h"
30 
31 namespace upm {
32 
43  class zwNode {
44  public:
45  // valueid map
46  typedef std::map<int, OpenZWave::ValueID> valueMap_t;
47  // valueid list, used for sorting
48  typedef std::list<OpenZWave::ValueID> valueList_t;
49 
56  zwNode(uint32_t homeId, uint8_t nodeId);
57 
58  ~zwNode();
59 
65  uint8_t nodeId();
66 
72  uint32_t homeId();
73 
80  void addValueID(OpenZWave::ValueID vid);
81 
87  void removeValueID(OpenZWave::ValueID vid);
88 
96  bool indexToValueID(int index, OpenZWave::ValueID *vid);
97 
105  void dumpNode(bool all=false);
106 
112  void updateVIDMap();
113 
123  void setAutoUpdate(bool enable)
124  {
125  m_autoUpdate = enable;
126  }
127 
128  protected:
129 
130  private:
131  bool m_autoUpdate;
132  uint32_t m_homeId;
133  uint8_t m_nodeId;
134 
135  valueMap_t m_values;
136  valueList_t m_list;
137 
138  // we increment this index for every ValueID we add into the map
139  unsigned int m_vindex;
140  };
141 
142 }
void setAutoUpdate(bool enable)
Definition: zwNode.hpp:123
Node management for ozw.
Definition: zwNode.hpp:43
bool indexToValueID(int index, OpenZWave::ValueID *vid)
Definition: zwNode.cxx:93
void addValueID(OpenZWave::ValueID vid)
Definition: zwNode.cxx:62
C++ API wrapper for the bh1749 driver.
Definition: a110x.hpp:29
uint32_t homeId()
Definition: zwNode.cxx:57
void dumpNode(bool all=false)
Definition: zwNode.cxx:110
zwNode(uint32_t homeId, uint8_t nodeId)
Definition: zwNode.cxx:37
void removeValueID(OpenZWave::ValueID vid)
Definition: zwNode.cxx:70
void updateVIDMap()
Definition: zwNode.cxx:78
uint8_t nodeId()
Definition: zwNode.cxx:52