openD unified API  1.0.0
opend_hanfun_api_fp.h
Go to the documentation of this file.
1 
29 #ifndef __OPEND_HANFUN_API_FP_H__
30 #define __OPEND_HANFUN_API_FP_H__
31 
32 #include "opend_hanfun_api.h"
33 
34 
36 {
40  struct Entries:public HF::Core::DeviceManagement::Entries
41  {
51  HF::Common::Result save (const HF::Core::DeviceManagement::Device &device);
52 
62  HF::Common::Result destroy (const HF::Core::DeviceManagement::Device &device);
63  };
64 
68  struct Server:public HF::Core::DeviceManagement::Server <Entries>
69  {
71  HF::Core::DeviceManagement::Server <Entries>(unit),
72  _next_address (HF::Protocol::BROADCAST_ADDR)
73  {}
74 
75  virtual ~Server() {}
76 
86  uint16_t next_address (uint16_t addr)
87  {
88  _next_address = addr;
89  return _next_address;
90  }
91 
101  bool available (uint16_t address);
102 
112  bool deregister (uint16_t address);
113 
114  protected:
115 
116  using HF::Core::DeviceManagement::Server <Entries>::deregister;
117 
118  uint16_t _next_address;
119 
120  uint16_t next_address ();
121  };
122 }
123 
124 namespace BindManagement
125 {
129  struct Entries:public HF::Core::BindManagement::Entries
130  {
131  typedef HF::Core::BindManagement::Entry Entry;
132  typedef HF::Core::BindManagement::EntryPtr EntryPtr;
133 
143  HF::Common::Result save (const Entry &entry);
144 
154  HF::Common::Result destroy (const Entry &entry);
155 
163  void insert (Entry &entry);
164  };
165 
169  struct Server:public HF::Core::BindManagement::Server <Entries>
170  {
171  Server(HF::Devices::Concentrator::IUnit0 &unit):
172  HF::Core::BindManagement::Server <Entries>(unit)
173  {}
174  };
175 
176 }
177 
178 namespace Commands
179 {
180  typedef HF::Interfaces::Alert::Server Alert;
181  typedef HF::Interfaces::LevelControl::Client LevelControl;
182  typedef HF::Interfaces::OnOff::Client OnOff;
183  typedef HF::Interfaces::SimplePowerMeter::Server SimplePowerMeter;
184 
185  struct Unit:public HF::Units::Unit <HF::Profiles::GenericApplicationLogic, Alert,
186  LevelControl, OnOff, SimplePowerMeter>
187  {
188  Unit(uint8_t id, HF::IDevice &device):HF::Units::Unit <HF::Profiles::GenericApplicationLogic,
189  Alert, LevelControl, OnOff,
190  SimplePowerMeter>(id, device)
191  {}
192 
196  Alert &alert ()
197  {
198  return *const_cast <Alert *>(get <0>());
199  }
200 
204  LevelControl &level_control ()
205  {
206  return *const_cast <LevelControl *>(get <1>());
207  }
208 
212  OnOff &on_off ()
213  {
214  return *const_cast <OnOff *>(get <2>());
215  }
216 
220  SimplePowerMeter &simple_power_meter ()
221  {
222  return *const_cast <SimplePowerMeter *>(get <3>());
223  }
224 
236  HF::Common::Result handle (HF::Protocol::Packet &packet, HF::Common::ByteArray &payload,
237  uint16_t offset);
238  };
239 }
240 
244 typedef HF::Devices::Concentrator::Unit0 <HF::Core::DeviceInformation::Server,
246  HF::Core::AttributeReporting::Server,
248 
252 struct FP:public HF::Devices::Concentrator::Abstract <Unit0>
253 {
255 
263  static FP * instance();
264 
265  virtual ~FP()
266  {}
267 
277  void receive (HF::Protocol::Packet &packet, HF::Common::ByteArray &payload, uint16_t offset);
278 
279  using HF::Devices::Concentrator::Abstract <Unit0>::link;
280 
288  std::forward_list <HF::Transport::Link *> &links()
289  {
290  return _links;
291  }
292 
303  bool has_bind (uint16_t dev_addr_1, uint16_t dev_addr_2);
304 
315  uint8_t bind (uint16_t dev_addr_1, uint16_t dev_addr_2);
316 
327  bool unbind (uint16_t dev_addr_1, uint16_t dev_addr_2);
328 
329  private:
330 
331  FP():HF::Devices::Concentrator::Abstract <Unit0>(),
332  commands(1, *this)
333  {}
334 };
335 
345 openD_status_t openD_hanfunApi_fp_init( HF::Transport::Layer *transport );
346 
360 openD_status_t openD_hanfunApi_fp_devMgmtRequest( openD_hanfunApi_devMgmtReq_t *hMgmtRequest, uint16_t address = 0, uint8_t dectMode = 0 );
361 
374 openD_status_t openD_hanfunApi_fp_bindMgmtRequest( openD_hanfunApi_bindMgmtReq_t *hBindRequest, uint16_t address1 = 0, uint16_t address2 = 0 );
375 
388 openD_status_t openD_hanfunApi_fp_profileRequest( openD_hanfunApi_profileReq_t *hProfileRequest, uint16_t address = 0, uint16_t unit = 0 );
389 
390 
393 #endif /* __OPEND_HANFUN_API_FP_H__ */
Alert & alert()
Definition: opend_hanfun_api_fp.h:196
openD_status_t openD_hanfunApi_fp_profileRequest(openD_hanfunApi_profileReq_t *hProfileRequest, uint16_t address=0, uint16_t unit=0)
openD HAN-FUN API profile request.
openD_status_t
Definition: opend_dataTypes.h:62
std::forward_list< HF::Transport::Link * > & links()
HANFUN iwu links.
Definition: opend_hanfun_api_fp.h:288
uint16_t next_address(uint16_t addr)
Next address.
Definition: opend_hanfun_api_fp.h:86
HF::Interfaces::SimplePowerMeter::Server SimplePowerMeter
Definition: opend_hanfun_api_fp.h:183
Commands::Unit commands
Definition: opend_hanfun_api_fp.h:254
virtual ~Server()
Definition: opend_hanfun_api_fp.h:75
uint16_t _next_address
Definition: opend_hanfun_api_fp.h:118
HF::Common::Result destroy(const HF::Core::DeviceManagement::Device &device)
Destroy configuration.
openD HAN-FUN API.
Definition: opend_hanfun_types.h:338
LevelControl & level_control()
Definition: opend_hanfun_api_fp.h:204
HF::Interfaces::Alert::Server Alert
Definition: opend_hanfun_api_fp.h:180
Definition: opend_hanfun_api_fp.h:40
HF::Common::Result save(const HF::Core::DeviceManagement::Device &device)
Save configuration.
Definition: opend_hanfun_api_fp.h:252
HF::Interfaces::LevelControl::Client LevelControl
Definition: opend_hanfun_api_fp.h:181
Definition: opend_hanfun_api_fp.h:35
HF::Core::BindManagement::Entry Entry
Definition: opend_hanfun_api_fp.h:131
HF::Interfaces::OnOff::Client OnOff
Definition: opend_hanfun_api_fp.h:182
Server(HF::Core::Unit0 &unit)
Definition: opend_hanfun_api_fp.h:70
virtual ~FP()
Definition: opend_hanfun_api_fp.h:265
Definition: opend_hanfun_types.h:263
openD_status_t openD_hanfunApi_fp_bindMgmtRequest(openD_hanfunApi_bindMgmtReq_t *hBindRequest, uint16_t address1=0, uint16_t address2=0)
openD HAN-FUN API bind management request.
Definition: opend_hanfun_types.h:530
OnOff & on_off()
Definition: opend_hanfun_api_fp.h:212
HF::Devices::Concentrator::Unit0< HF::Core::DeviceInformation::Server, DeviceManagement::Server, HF::Core::AttributeReporting::Server, BindManagement::Server > Unit0
Definition: opend_hanfun_api_fp.h:247
Definition: opend_hanfun_api_fp.h:169
openD_status_t openD_hanfunApi_fp_devMgmtRequest(openD_hanfunApi_devMgmtReq_t *hMgmtRequest, uint16_t address=0, uint8_t dectMode=0)
openD HAN-FUN API device management request.
Definition: opend_hanfun_api_fp.h:178
HF::Core::BindManagement::EntryPtr EntryPtr
Definition: opend_hanfun_api_fp.h:132
SimplePowerMeter & simple_power_meter()
Definition: opend_hanfun_api_fp.h:220
Definition: opend_hanfun_api_fp.h:68
Definition: opend_hanfun_api_fp.h:129
Definition: opend_hanfun_api_fp.h:185
openD_status_t openD_hanfunApi_fp_init(HF::Transport::Layer *transport)
openD HAN-FUN API initialization.
Definition: opend_hanfun_api_fp.h:124
Unit(uint8_t id, HF::IDevice &device)
Definition: opend_hanfun_api_fp.h:188
Server(HF::Devices::Concentrator::IUnit0 &unit)
Definition: opend_hanfun_api_fp.h:171