aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/traccar/protocol/B2316ProtocolDecoder.java
blob: 854107a209bc936496d7865f379af2472b01138d (plain)
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
/*
 * Copyright 2021 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 io.netty.channel.Channel;
import org.traccar.BaseProtocolDecoder;
import org.traccar.DeviceSession;
import org.traccar.Protocol;
import org.traccar.model.CellTower;
import org.traccar.model.Network;
import org.traccar.model.Position;
import org.traccar.model.WifiAccessPoint;

import javax.json.Json;
import javax.json.JsonArray;
import javax.json.JsonObject;
import java.io.StringReader;
import java.net.SocketAddress;
import java.util.Date;
import java.util.LinkedList;
import java.util.List;

public class B2316ProtocolDecoder extends BaseProtocolDecoder {

    public B2316ProtocolDecoder(Protocol protocol) {
        super(protocol);
    }

    private String decodeAlarm(int value) {
        switch (value) {
            case 1:
                return Position.ALARM_LOW_BATTERY;
            case 2:
                return Position.ALARM_SOS;
            case 3:
                return Position.ALARM_POWER_OFF;
            case 4:
                return Position.ALARM_REMOVING;
            default:
                return null;
        }
    }

    private Integer decodeBattery(int value) {
        switch (value) {
            case 0:
                return 10;
            case 1:
                return 30;
            case 2:
                return 60;
            case 3:
                return 80;
            case 4:
                return 100;
            default:
                return null;
        }
    }

    @Override
    protected Object decode(
            Channel channel, SocketAddress remoteAddress, Object msg) throws Exception {

        JsonObject root = Json.createReader(new StringReader((String) msg)).readObject();

        DeviceSession deviceSession = getDeviceSession(channel, remoteAddress, root.getString("imei"));
        if (deviceSession == null) {
            return null;
        }

        List<Position> positions = new LinkedList<>();
        JsonArray data = root.getJsonArray("data");
        for (int i = 0; i < data.size(); i++) {

            Position position = new Position(getProtocolName());
            position.setDeviceId(deviceSession.getDeviceId());

            Network network = new Network();

            JsonObject item = data.getJsonObject(i);
            Date time = new Date(item.getJsonNumber("tm").longValue() * 1000);

            if (item.containsKey("gp")) {
                String[] coordinates = item.getString("gp").split(",");
                position.setLongitude(Double.parseDouble(coordinates[0]));
                position.setLatitude(Double.parseDouble(coordinates[1]));
                position.setValid(true);
                position.setTime(time);
            } else {
                getLastLocation(position, time);
            }

            if (item.containsKey("ci")) {
                String[] cell = item.getString("ci").split(",");
                network.addCellTower(CellTower.from(
                        Integer.parseInt(cell[0]), Integer.parseInt(cell[1]),
                        Integer.parseInt(cell[2]), Integer.parseInt(cell[3]),
                        Integer.parseInt(cell[4])));
            }

            if (item.containsKey("wi")) {
                String[] points = item.getString("wi").split(";");
                for (String point : points) {
                    String[] values = point.split(",");
                    network.addWifiAccessPoint(WifiAccessPoint.from(
                            values[0].replaceAll("(..)", "$1:"), Integer.parseInt(values[1])));
                }
            }

            if (item.containsKey("wn")) {
                position.set(Position.KEY_ALARM, decodeAlarm(item.getInt("wn")));
            }
            if (item.containsKey("ic")) {
                position.set(Position.KEY_ICCID, item.getString("ic"));
            }
            if (item.containsKey("ve")) {
                position.set(Position.KEY_VERSION_FW, item.getString("ve"));
            }
            if (item.containsKey("te")) {
                String[] temperatures = item.getString("te").split(",");
                for (int j = 0; j < temperatures.length; j++) {
                    position.set(Position.PREFIX_TEMP + (j + 1), Integer.parseInt(temperatures[j]) * 0.1);
                }
            }
            if (item.containsKey("st")) {
                position.set(Position.KEY_STEPS, item.getInt("st"));
            }
            if (item.containsKey("ba")) {
                position.set(Position.KEY_BATTERY_LEVEL, decodeBattery(item.getInt("ba")));
            }
            if (item.containsKey("sn")) {
                position.set(Position.KEY_RSSI, item.getInt("sn"));
            }
            if (item.containsKey("hr")) {
                position.set(Position.KEY_HEART_RATE, item.getInt("hr"));
            }

            if (network.getCellTowers() != null || network.getWifiAccessPoints() != null) {
                position.setNetwork(network);
            }

            positions.add(position);
        }

        return positions.isEmpty() ? null : positions;
    }

}