OpenZWave Library  1.2
DoorLockLogging.h
Go to the documentation of this file.
1 //-----------------------------------------------------------------------------
2 //
3 // DoorLockLogging.h
4 //
5 // Implementation of the Z-Wave COMMAND_CLASS_DOOR_LOCK_LOGGING
6 //
7 // Copyright (c) 2014 Justin Hammond <justin@dynam.ac>
8 //
9 // SOFTWARE NOTICE AND LICENSE
10 //
11 // This file is part of OpenZWave.
12 //
13 // OpenZWave is free software: you can redistribute it and/or modify
14 // it under the terms of the GNU Lesser General Public License as published
15 // by the Free Software Foundation, either version 3 of the License,
16 // or (at your option) any later version.
17 //
18 // OpenZWave is distributed in the hope that it will be useful,
19 // but WITHOUT ANY WARRANTY; without even the implied warranty of
20 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 // GNU Lesser General Public License for more details.
22 //
23 // You should have received a copy of the GNU Lesser General Public License
24 // along with OpenZWave. If not, see <http://www.gnu.org/licenses/>.
25 //
26 //-----------------------------------------------------------------------------
27 
28 #ifndef _DoorLockLogging_H
29 #define _DoorLockLogging_H
30 
31 #include "CommandClass.h"
32 
33 namespace OpenZWave
34 {
35  class ValueBool;
36 
40  {
41  public:
42  static CommandClass* Create( uint32 const _homeId, uint8 const _nodeId ){ return new DoorLockLogging( _homeId, _nodeId ); }
43  virtual ~DoorLockLogging(){}
44 
45  static uint8 const StaticGetCommandClassId(){ return 0x4c; }
46  static string const StaticGetCommandClassName(){ return "COMMAND_CLASS_DOOR_LOCK_LOGGING"; }
47 
48  // From CommandClass
49  virtual void ReadXML( TiXmlElement const* _ccElement );
50  virtual void WriteXML( TiXmlElement* _ccElement );
51  virtual bool RequestState( uint32 const _requestFlags, uint8 const _instance, Driver::MsgQueue const _queue );
52  virtual bool RequestValue( uint32 const _requestFlags, uint8 const _index, uint8 const _instance, Driver::MsgQueue const _queue );
53  virtual uint8 const GetCommandClassId()const{ return StaticGetCommandClassId(); }
54  virtual string const GetCommandClassName()const{ return StaticGetCommandClassName(); }
55  virtual bool HandleMsg( uint8 const* _data, uint32 const _length, uint32 const _instance = 1 );
56  virtual bool SetValue( Value const& _value );
57  protected:
58  virtual void CreateVars( uint8 const _instance );
59 
60  private:
61  DoorLockLogging( uint32 const _homeId, uint8 const _nodeId );
62  uint8 m_MaxRecords;
63  uint8 m_CurRecord;
64  };
65 
66 } // namespace OpenZWave
67 
68 #endif
69 
uint32
unsigned int uint32
Definition: Defs.h:69
OpenZWave::DoorLockLogging::RequestState
virtual bool RequestState(uint32 const _requestFlags, uint8 const _instance, Driver::MsgQueue const _queue)
Definition: DoorLockLogging.cpp:192
OpenZWave::DoorLockLogging::WriteXML
virtual void WriteXML(TiXmlElement *_ccElement)
Definition: DoorLockLogging.cpp:174
OpenZWave::DoorLockLogging::RequestValue
virtual bool RequestValue(uint32 const _requestFlags, uint8 const _index, uint8 const _instance, Driver::MsgQueue const _queue)
Definition: DoorLockLogging.cpp:220
OpenZWave::CommandClass
Base class for all Z-Wave command classes.
Definition: CommandClass.h:46
uint8
unsigned char uint8
Definition: Defs.h:63
OpenZWave::DoorLockLogging::GetCommandClassId
virtual const uint8 GetCommandClassId() const
Definition: DoorLockLogging.h:53
OpenZWave::DoorLockLogging::~DoorLockLogging
virtual ~DoorLockLogging()
Definition: DoorLockLogging.h:43
OpenZWave::DoorLockLogging::ReadXML
virtual void ReadXML(TiXmlElement const *_ccElement)
Definition: DoorLockLogging.cpp:156
OpenZWave::DoorLockLogging::StaticGetCommandClassId
static const uint8 StaticGetCommandClassId()
Definition: DoorLockLogging.h:45
OpenZWave::DoorLockLogging::StaticGetCommandClassName
static const string StaticGetCommandClassName()
Definition: DoorLockLogging.h:46
OpenZWave::DoorLockLogging::CreateVars
virtual void CreateVars(uint8 const _instance)
Definition: DoorLockLogging.cpp:363
OpenZWave::Value
Base class for values associated with a node.
Definition: Value.h:44
OpenZWave::DoorLockLogging::GetCommandClassName
virtual const string GetCommandClassName() const
Definition: DoorLockLogging.h:54
CommandClass.h
OpenZWave::DoorLockLogging::SetValue
virtual bool SetValue(Value const &_value)
Definition: DoorLockLogging.cpp:332
OpenZWave::DoorLockLogging::Create
static CommandClass * Create(uint32 const _homeId, uint8 const _nodeId)
Definition: DoorLockLogging.h:42
OpenZWave::Driver::MsgQueue
MsgQueue
Definition: Driver.h:583
OpenZWave::DoorLockLogging::HandleMsg
virtual bool HandleMsg(uint8 const *_data, uint32 const _length, uint32 const _instance=1)
Definition: DoorLockLogging.cpp:259
OpenZWave
Definition: Bitfield.h:34
OpenZWave::DoorLockLogging
Implements COMMAND_CLASS_DOOR_LOCK_LOGGING (0x4C), a Z-Wave device command class.
Definition: DoorLockLogging.h:39