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
|
/*
* Copyright 2016 Anton Tananaev (anton@traccar.org)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.traccar.protocol;
import org.traccar.StringProtocolEncoder;
import org.traccar.helper.Log;
import org.traccar.model.Command;
import javax.xml.bind.DatatypeConverter;
import java.nio.charset.StandardCharsets;
import java.util.HashMap;
import java.util.Map;
public class WatchProtocolEncoder extends StringProtocolEncoder implements StringProtocolEncoder.ValueFormatter {
@Override
public String formatValue(String key, Object value) {
if (key.equals(Command.KEY_TIMEZONE)) {
float offset = ((Number) value).longValue();
if (offset > 0) {
return "+" + String.format("%f", offset);
}
}
return null;
}
protected String formatCommand(Command command, String format, String... keys) {
String content = super.formatCommand(command, format, keys);
return String.format("[CS*%s*%04x*%s]",
getUniqueId(command.getDeviceId()), content.length(), content);
}
private int getEnableFlag(Command command) {
if (command.getBoolean(Command.KEY_ENABLE)) {
return 1;
} else {
return 0;
}
}
private static Map<Byte, Byte> mapping = new HashMap<>();
static {
mapping.put((byte) 0x7d, (byte) 0x01);
mapping.put((byte) 0x5B, (byte) 0x02);
mapping.put((byte) 0x5D, (byte) 0x03);
mapping.put((byte) 0x2C, (byte) 0x04);
mapping.put((byte) 0x2A, (byte) 0x05);
}
private String getBinaryData(Command command) {
byte[] data = DatatypeConverter.parseHexBinary(command.getString(Command.KEY_DATA));
int encodedLength = data.length;
for (byte b : data) {
if (mapping.containsKey(b)) {
encodedLength += 1;
}
}
int index = 0;
byte[] encodedData = new byte[encodedLength];
for (byte b : data) {
Byte replacement = mapping.get(b);
if (replacement != null) {
encodedData[index] = 0x7D;
index += 1;
encodedData[index] = replacement;
} else {
encodedData[index] = b;
}
index += 1;
}
return new String(encodedData, StandardCharsets.US_ASCII);
}
@Override
protected Object encodeCommand(Command command) {
switch (command.getType()) {
case Command.TYPE_POSITION_SINGLE:
return formatCommand(command, "RG");
case Command.TYPE_SOS_NUMBER:
return formatCommand(command, "SOS{%s},{%s}", Command.KEY_INDEX, Command.KEY_PHONE);
case Command.TYPE_ALARM_SOS:
return formatCommand(command, "SOSSMS," + getEnableFlag(command));
case Command.TYPE_ALARM_BATTERY:
return formatCommand(command, "LOWBAT," + getEnableFlag(command));
case Command.TYPE_REBOOT_DEVICE:
return formatCommand(command, "RESET");
case Command.TYPE_ALARM_REMOVE:
return formatCommand(command, "REMOVE," + getEnableFlag(command));
case Command.TYPE_SILENCE_TIME:
return formatCommand(command, "SILENCETIME,{%s}", Command.KEY_DATA);
case Command.TYPE_ALARM_CLOCK:
return formatCommand(command, "REMIND,{%s}", Command.KEY_DATA);
case Command.TYPE_SET_PHONEBOOK:
return formatCommand(command, "PHB,{%s}", Command.KEY_DATA);
case Command.TYPE_VOICE_MESSAGE:
return formatCommand(command, "TK," + getBinaryData(command));
case Command.TYPE_POSITION_PERIODIC:
return formatCommand(command, "UPLOAD,{%s}", Command.KEY_FREQUENCY);
case Command.TYPE_SET_TIMEZONE:
return formatCommand(command, "LZ,0,{%s}", Command.KEY_TIMEZONE);
default:
Log.warning(new UnsupportedOperationException(command.getType()));
break;
}
return null;
}
}
|