OpenZWave Library 1.6.1914
Loading...
Searching...
No Matches
Protection.h
Go to the documentation of this file.
1//-----------------------------------------------------------------------------
2//
3// Protection.h
4//
5// Implementation of the Z-Wave COMMAND_CLASS_PROTECTION
6//
7// Copyright (c) 2010 Mal Lansell <openzwave@lansell.org>
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 _Protection_H
29#define _Protection_H
30
32
33namespace OpenZWave
34{
35 namespace Internal
36 {
37 namespace CC
38 {
39
44 {
45 public:
52
53 static CommandClass* Create(uint32 const _homeId, uint8 const _nodeId)
54 {
55 return new Protection(_homeId, _nodeId);
56 }
57 virtual ~Protection()
58 {
59 }
60
62 {
63 return 0x75;
64 }
65 static string const StaticGetCommandClassName()
66 {
67 return "COMMAND_CLASS_PROTECTION";
68 }
69
70 // From CommandClass
71 virtual bool RequestState(uint32 const _requestFlags, uint8 const _instance, Driver::MsgQueue const _queue) override;
72 virtual bool RequestValue(uint32 const _requestFlags, uint16 const _index, uint8 const _instance, Driver::MsgQueue const _queue) override;
73 virtual uint8 const GetCommandClassId() const override
74 {
76 }
77 virtual string const GetCommandClassName() const override
78 {
80 }
81 virtual bool HandleMsg(uint8 const* _data, uint32 const _length, uint32 const _instance = 1) override;
82 virtual bool SetValue(Internal::VC::Value const& _value) override;
83
84 protected:
85 virtual void CreateVars(uint8 const _instance) override;
86
87 private:
88 Protection(uint32 const _homeId, uint8 const _nodeId) :
89 CommandClass(_homeId, _nodeId)
90 {
91 }
92 };
93 } // namespace CC
94 } // namespace Internal
95} // namespace OpenZWave
96
97#endif
98
unsigned short uint16
Definition Defs.h:88
unsigned int uint32
Definition Defs.h:91
unsigned char uint8
Definition Defs.h:85
MsgQueue
Definition Driver.h:660
Base class for all Z-Wave command classes.
Definition CommandClass.h:61
void CreateVars()
Definition CommandClass.cpp:841
Implements COMMAND_CLASS_PROTECTION (0x75), a Z-Wave device command class.
Definition Protection.h:44
static CommandClass * Create(uint32 const _homeId, uint8 const _nodeId)
Definition Protection.h:53
virtual bool RequestValue(uint32 const _requestFlags, uint16 const _index, uint8 const _instance, Driver::MsgQueue const _queue) override
Definition Protection.cpp:75
static string const StaticGetCommandClassName()
Definition Protection.h:65
virtual bool SetValue(Internal::VC::Value const &_value) override
Definition Protection.cpp:129
virtual string const GetCommandClassName() const override
Definition Protection.h:77
ProtectionEnum
Definition Protection.h:47
@ Protection_Unprotected
Definition Protection.h:48
@ Protection_NOP
Definition Protection.h:50
@ Protection_Sequence
Definition Protection.h:49
static uint8 const StaticGetCommandClassId()
Definition Protection.h:61
virtual bool HandleMsg(uint8 const *_data, uint32 const _length, uint32 const _instance=1) override
Definition Protection.cpp:101
virtual bool RequestState(uint32 const _requestFlags, uint8 const _instance, Driver::MsgQueue const _queue) override
Definition Protection.cpp:61
virtual uint8 const GetCommandClassId() const override
Definition Protection.h:73
virtual ~Protection()
Definition Protection.h:57
Base class for values associated with a node.
Definition Value.h:55
Definition Bitfield.cpp:31