forked from thrandre/ZSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZWaveMessage.cs
More file actions
260 lines (222 loc) · 7.09 KB
/
Copy pathZWaveMessage.cs
File metadata and controls
260 lines (222 loc) · 7.09 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
/*
* ZSharp - C# Z-Wave Implementation
* HiØ 2011
* H11D13 / iAutomation@Home
* Author: thomrand
*/
using System;
using System.Collections.Generic;
namespace ZSharp
{
/// <summary>
/// Description of ZWaveRequest.
/// </summary>
internal class ZWaveMessage
{
private bool _raw = false;
private byte _messageType;
public byte MessageType
{
get
{
return this._messageType;
}
}
/// <summary>
/// string representation of the MessageType byte value
/// </summary>
public string MessageType_s { get { return ZWaveProtocol.MessageType.GetStringValue(this.MessageType); } }
private byte _function;
public byte Function
{
get
{
return this._function;
}
}
/// <summary>
/// string representation of the Function byte value
/// </summary>
public string Function_s { get { return ZWaveProtocol.Function.GetStringValue(this.Function); } }
private byte _nodeId;
public byte NodeId
{
get
{
return this._nodeId;
}
}
private byte _commandClass;
public byte CommandClass
{
get
{
return this._commandClass;
}
}
/// <summary>
/// string representation of the CommandClass byte value
/// </summary>
public string CommandClass_s { get { return ZWaveProtocol.CommandClass.GetStringValue(this.CommandClass); } }
private byte _command;
public byte Command
{
get
{
return this._command;
}
}
private byte _transmissionOptions = ZWaveProtocol.TransmissonOption.ACK | ZWaveProtocol.TransmissonOption.AUTO_ROUTE;
private List<byte> _params = new List<byte>();
private byte _getMagicByte
{
get
{
switch(this._commandClass)
{
case ZWaveProtocol.CommandClass.METER:
return 0x02;
case ZWaveProtocol.CommandClass.METER_PULSE:
return 0x02;
default:
return 0x03;
}
}
}
private byte[] _message;
public byte[] Message
{
get
{
if (!this._raw)
{
int length = 6;
if (this._nodeId != 0x00) length++;
if (this._commandClass != 0x00) length += 3;
length += this._params.Count;
byte[] message = new byte[length];
int index = 0;
message[index++] = ZWaveProtocol.SOF;
// Insert message length
message[index++] = (byte)(length - 2);
message[index++] = this._messageType;
message[index++] = this._function;
if (this._nodeId != 0x00)
{
message[index++] = this._nodeId;
}
if (this._commandClass != 0x00)
{
message[index++] = this._getMagicByte;
message[index++] = this._commandClass;
message[index++] = this._command;
}
for (int i = 0; i < this._params.Count; i++)
{
message[index++] = this._params[i];
}
message[index++] = this._transmissionOptions;
// Calculate and insert the checksum
message[index++] = CalculateChecksum(message);
return message;
}
else
{
return this._message;
}
}
}
public void AddParameter(byte param)
{
this._params.Add(param);
}
public void Parse(byte[] message)
{
this._messageType = message[2];
this._function = message[3];
switch (this._function)
{
case ZWaveProtocol.Function.SEND_DATA:
this._commandClass = message[4];
break;
case ZWaveProtocol.Function.APPLICATION_COMMAND_HANDLER:
this._commandClass = message[7];
this._command = message[8];
break;
case ZWaveProtocol.Function.ADD_NODE_TO_NETWORK:
this._commandClass = message[5];
break;
case ZWaveProtocol.Function.REMOVE_NODE_FROM_NETWORK:
this._commandClass = message[5];
break;
default:
this._commandClass = 0x00;
break;
}
if (this._messageType == ZWaveProtocol.MessageType.REQUEST)
this._nodeId = message[5];
}
/// <summary>
///
/// </summary>
public ZWaveMessage() { }
public ZWaveMessage(byte messageType, byte function, byte nodeId = 0x00, byte commandClass = 0x00, byte command = 0x00)
{
this._messageType = messageType;
this._function = function;
if (nodeId != 0x00)
{
this._nodeId = nodeId;
}
if(commandClass != 0x00)
{
this._commandClass = commandClass;
}
if(command != 0x00)
{
this._command = command;
}
}
public ZWaveMessage(byte[] message)
{
if (message[(message.Length - 1)] != CalculateChecksum(Utils.ByteSubstring(message, 0, (message.Length - 1))))
{
throw new MessageChecksumInvalidException();
}
this._message = message;
this._raw = true;
this.Parse(message);
}
private static byte CalculateChecksum(byte[] message)
{
byte chksum = 0xff;
for (int i = 1; i < message.Length; i++)
{
chksum ^= (byte)message[i];
}
return chksum;
}
public override string ToString()
{
return string.Format(@"
===============================
Zwave Message
===============================
Command: {0}
CommandClass: {1}
Function: {2}
Message: {3}
MessageType: {4}
NodeID: {5}
==============================
",
this.Command.ToString("X2"),
this.CommandClass_s,
this.Function_s,
Utils.ByteArrayToString(this.Message),
this.MessageType_s,
this.NodeId.ToString("X2"));
}
}
public class MessageChecksumInvalidException : Exception {}
}