上饶市公安局wvp平台
zhongrj
2025-01-16 f1d079f9c0b3d384090477ca54e0548373d62b57
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
package com.genersoft.iot.vmp.service.impl;
 
import com.genersoft.iot.vmp.common.StreamInfo;
import com.genersoft.iot.vmp.gb28181.bean.Device;
import com.genersoft.iot.vmp.gb28181.bean.DeviceChannel;
import com.genersoft.iot.vmp.gb28181.bean.MobilePosition;
import com.genersoft.iot.vmp.gb28181.utils.Coordtransform;
import com.genersoft.iot.vmp.service.IDeviceChannelService;
import com.genersoft.iot.vmp.storager.IRedisCatchStorage;
import com.genersoft.iot.vmp.storager.IVideoManagerStorage;
import com.genersoft.iot.vmp.storager.dao.DeviceChannelMapper;
import com.genersoft.iot.vmp.storager.dao.DeviceMapper;
import com.genersoft.iot.vmp.utils.DateUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Service;
 
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
/**
 * @author lin
 */
@Service
public class DeviceChannelServiceImpl implements IDeviceChannelService {
 
    private final static Logger logger = LoggerFactory.getLogger(DeviceChannelServiceImpl.class);
 
    @Autowired
    private IRedisCatchStorage redisCatchStorage;
 
    @Autowired
    private DeviceChannelMapper channelMapper;
 
    @Autowired
    private DeviceMapper deviceMapper;
 
 
    @Autowired
    private IVideoManagerStorage storager;
 
    @Override
    public DeviceChannel updateGps(DeviceChannel deviceChannel, Device device) {
        if (deviceChannel.getLongitude()*deviceChannel.getLatitude() > 0) {
            if (device == null) {
                device = deviceMapper.getDeviceByDeviceId(deviceChannel.getDeviceId());
            }
 
            if ("WGS84".equals(device.getGeoCoordSys())) {
                deviceChannel.setLongitudeWgs84(deviceChannel.getLongitude());
                deviceChannel.setLatitudeWgs84(deviceChannel.getLatitude());
                Double[] position = Coordtransform.WGS84ToGCJ02(deviceChannel.getLongitude(), deviceChannel.getLatitude());
                deviceChannel.setLongitudeGcj02(position[0]);
                deviceChannel.setLatitudeGcj02(position[1]);
            }else if ("GCJ02".equals(device.getGeoCoordSys())) {
                deviceChannel.setLongitudeGcj02(deviceChannel.getLongitude());
                deviceChannel.setLatitudeGcj02(deviceChannel.getLatitude());
                Double[] position = Coordtransform.GCJ02ToWGS84(deviceChannel.getLongitude(), deviceChannel.getLatitude());
                deviceChannel.setLongitudeWgs84(position[0]);
                deviceChannel.setLatitudeWgs84(position[1]);
            }else {
                deviceChannel.setLongitudeGcj02(0.00);
                deviceChannel.setLatitudeGcj02(0.00);
                deviceChannel.setLongitudeWgs84(0.00);
                deviceChannel.setLatitudeWgs84(0.00);
            }
        }else {
            deviceChannel.setLongitudeGcj02(deviceChannel.getLongitude());
            deviceChannel.setLatitudeGcj02(deviceChannel.getLatitude());
            deviceChannel.setLongitudeWgs84(deviceChannel.getLongitude());
            deviceChannel.setLatitudeWgs84(deviceChannel.getLatitude());
        }
        return deviceChannel;
    }
 
    @Override
    public void updateChannel(String deviceId, DeviceChannel channel) {
        String channelId = channel.getChannelId();
        channel.setDeviceId(deviceId);
        StreamInfo streamInfo = redisCatchStorage.queryPlayByDevice(deviceId, channelId);
        if (streamInfo != null) {
            channel.setStreamId(streamInfo.getStream());
        }
        String now = DateUtil.getNow();
        channel.setUpdateTime(now);
        DeviceChannel deviceChannel = channelMapper.queryChannel(deviceId, channelId);
        channel = updateGps(channel, null);
 
        //组装坐标
        String position = channel.getLongitude() + " " + channel.getLatitude();
        channel.setCoordinate("'POINT("+position+")'");
 
        if (deviceChannel == null) {
            channel.setCreateTime(now);
            channelMapper.add(channel);
        }else {
            channelMapper.update(channel);
        }
        channelMapper.updateChannelSubCount(deviceId,channel.getParentId());
        // 更新移动位置信息
//        updateMobilePosition(channel);
        //更新坐标绑定关系
        handleBindPosition(deviceChannel,channel);
    }
 
    /**
     * 添加移动位置信息
     * @param channel
     */
    private void updateMobilePosition(DeviceChannel channel) {
        MobilePosition mobilePosition = new MobilePosition();
        mobilePosition.setDeviceId(channel.getDeviceId());
        mobilePosition.setChannelId(channel.getChannelId());
        mobilePosition.setLongitude(channel.getLongitude());
        mobilePosition.setLatitude(channel.getLatitude());
        mobilePosition.setTime(channel.getGpsTime());
        mobilePosition.setCreateTime(channel.getGpsTime());
 
        mobilePosition.setLongitudeWgs84(channel.getLongitudeWgs84());
        mobilePosition.setLatitudeWgs84(channel.getLatitudeWgs84());
        mobilePosition.setLongitudeGcj02(channel.getLongitudeGcj02());
        mobilePosition.setLatitudeGcj02(channel.getLatitudeGcj02());
        storager.insertMobilePosition(mobilePosition);
    }
 
    /**
     * 更新坐标绑定关系
     * @param deviceChannel
     * @param channel
     */
//    @Async
    public void handleBindPosition(DeviceChannel deviceChannel,DeviceChannel channel) {
        //需要判断是否有ip,坐标
        if (null!=channel.getIpAddress() && !channel.getIpAddress().equals("")) {
            //通过坐标比对得到对应的辖区(需要注意坐标系)
            String point = "'POINT(" + channel.getLongitude() + " " + channel.getLatitude() + ")'";
//        String point = "'POINT(" + channel.getLatitude() + " " + channel.getLongitude() + ")'";
            List<Long> list = channelMapper.getPoliceStationInfo(point);
            if (list.size() > 0) {
                if (null != deviceChannel) {
                    //更新
                    String deptId = list.get(0).toString();
                    // 更新关联数据
                    channelMapper.updateHandleBindPosition(channel.getId(), deptId);
                } else {
                    //更新
                    String deptId = list.get(0).toString();
                    //判断是否已存在,如果已存在则不插入,不存在则插入
                    int count = channelMapper.queryExistByDeptIdAndDeviceChannelId(channel.getId(), deptId);
                    if (count == 0) {
                        //插入关联数据
                        channelMapper.saveHandleBindPosition(channel.getId(), deptId);
                    } else {
                        // 更新关联数据
                        channelMapper.updateHandleBindPosition(channel.getId(), deptId);
                    }
                }
            }
        }
    }
 
    @Override
    public int updateChannels(String deviceId, List<DeviceChannel> channels) {
        String deptId = null;
        List<DeviceChannel> addChannels = new ArrayList<>();
        List<DeviceChannel> updateChannels = new ArrayList<>();
        HashMap<String, DeviceChannel> channelsInStore = new HashMap<>();
        Device device = deviceMapper.getDeviceByDeviceId(deviceId);
        if (channels != null && channels.size() > 0) {
            List<DeviceChannel> channelList = channelMapper.queryChannels(deviceId, null, null, null, null,deptId);
            if (channelList.size() == 0) {
                for (DeviceChannel channel : channels) {
                    channel.setDeviceId(deviceId);
                    StreamInfo streamInfo = redisCatchStorage.queryPlayByDevice(deviceId, channel.getChannelId());
                    if (streamInfo != null) {
                        channel.setStreamId(streamInfo.getStream());
                    }
                    String now = DateUtil.getNow();
                    channel.setUpdateTime(now);
                    channel.setCreateTime(now);
                    channel = updateGps(channel, device);
 
                    //组装坐标
                    String position = channel.getLongitude() + " " + channel.getLatitude();
                    channel.setCoordinate("'POINT("+position+")'");
 
 
                    addChannels.add(channel);
                }
            }else {
                for (DeviceChannel deviceChannel : channelList) {
                    channelsInStore.put(deviceChannel.getChannelId(), deviceChannel);
                }
                for (DeviceChannel channel : channels) {
                    channel.setDeviceId(deviceId);
                    StreamInfo streamInfo = redisCatchStorage.queryPlayByDevice(deviceId, channel.getChannelId());
                    if (streamInfo != null) {
                        channel.setStreamId(streamInfo.getStream());
                    }
                    String now = DateUtil.getNow();
                    channel.setUpdateTime(now);
                    channel = updateGps(channel, device);
 
                    String position = channel.getLongitude() + " " + channel.getLatitude();
                    channel.setCoordinate("'POINT("+position+")'");
 
                    if (channelsInStore.get(channel.getChannelId()) != null) {
                        updateChannels.add(channel);
                    }else {
                        addChannels.add(channel);
                        channel.setCreateTime(now);
                    }
                }
            }
            int limitCount = 300;
            if (addChannels.size() > 0) {
                if (addChannels.size() > limitCount) {
                    for (int i = 0; i < addChannels.size(); i += limitCount) {
                        int toIndex = i + limitCount;
                        if (i + limitCount > addChannels.size()) {
                            toIndex = addChannels.size();
                        }
                        channelMapper.batchAdd(addChannels.subList(i, toIndex));
                    }
                }else {
                    channelMapper.batchAdd(addChannels);
                }
            }
            if (updateChannels.size() > 0) {
                if (updateChannels.size() > limitCount) {
                    for (int i = 0; i < updateChannels.size(); i += limitCount) {
                        int toIndex = i + limitCount;
                        if (i + limitCount > updateChannels.size()) {
                            toIndex = updateChannels.size();
                        }
                        channelMapper.batchUpdate(updateChannels.subList(i, toIndex));
                    }
                }else {
                    channelMapper.batchUpdate(updateChannels);
                }
            }
        }
        return addChannels.size() + updateChannels.size();
    }
}