panlinlin
2021-04-26 39078225f1104eeaed21b24a024457b892fa7f7a
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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
package com.genersoft.iot.vmp.gb28181.transmit.request.impl;
 
import java.io.ByteArrayInputStream;
import java.text.ParseException;
import java.util.*;
 
import javax.sip.address.SipURI;
 
import javax.sip.header.FromHeader;
import javax.sip.header.HeaderAddress;
import javax.sip.header.ToHeader;
import javax.sip.InvalidArgumentException;
import javax.sip.ListeningPoint;
import javax.sip.ObjectInUseException;
import javax.sip.RequestEvent;
import javax.sip.SipException;
import javax.sip.SipProvider;
import javax.sip.message.Request;
import javax.sip.message.Response;
 
import com.alibaba.fastjson.JSONObject;
import com.genersoft.iot.vmp.VManageBootstrap;
import com.genersoft.iot.vmp.common.StreamInfo;
import com.genersoft.iot.vmp.common.VideoManagerConstants;
import com.genersoft.iot.vmp.conf.UserSetup;
import com.genersoft.iot.vmp.gb28181.bean.*;
import com.genersoft.iot.vmp.gb28181.event.DeviceOffLineDetector;
import com.genersoft.iot.vmp.gb28181.event.EventPublisher;
import com.genersoft.iot.vmp.gb28181.transmit.callback.CheckForAllRecordsThread;
import com.genersoft.iot.vmp.gb28181.transmit.callback.DeferredResultHolder;
import com.genersoft.iot.vmp.gb28181.transmit.callback.RequestMessage;
import com.genersoft.iot.vmp.gb28181.transmit.cmd.impl.SIPCommander;
import com.genersoft.iot.vmp.gb28181.transmit.cmd.impl.SIPCommanderFroPlatform;
import com.genersoft.iot.vmp.gb28181.transmit.request.SIPRequestAbstractProcessor;
import com.genersoft.iot.vmp.gb28181.utils.DateUtil;
import com.genersoft.iot.vmp.gb28181.utils.NumericUtil;
import com.genersoft.iot.vmp.gb28181.utils.XmlUtil;
import com.genersoft.iot.vmp.storager.IRedisCatchStorage;
import com.genersoft.iot.vmp.storager.IVideoManagerStorager;
import com.genersoft.iot.vmp.utils.GpsUtil;
import com.genersoft.iot.vmp.utils.SpringBeanFactory;
import com.genersoft.iot.vmp.utils.redis.RedisUtil;
import com.genersoft.iot.vmp.vmanager.gb28181.platform.bean.ChannelReduce;
 
import gov.nist.javax.sip.SipStackImpl;
import gov.nist.javax.sip.address.AddressImpl;
import gov.nist.javax.sip.address.SipUri;
 
import org.dom4j.Document;
import org.dom4j.DocumentException;
import org.dom4j.Element;
import org.dom4j.io.SAXReader;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.util.StringUtils;
 
/**
 * @Description:MESSAGE请求处理器
 * @author: swwheihei
 * @date: 2020年5月3日 下午5:32:41
 */
@SuppressWarnings(value={"unchecked", "rawtypes"})
public class MessageRequestProcessor extends SIPRequestAbstractProcessor {
 
    public static volatile List<String> threadNameList = new ArrayList();
 
    private UserSetup userSetup = (UserSetup) SpringBeanFactory.getBean("userSetup");
 
    private final static Logger logger = LoggerFactory.getLogger(MessageRequestProcessor.class);
 
    private SIPCommander cmder;
 
    private SIPCommanderFroPlatform cmderFroPlatform;
 
    private IVideoManagerStorager storager;
 
    private IRedisCatchStorage redisCatchStorage;
 
    private EventPublisher publisher;
 
    private RedisUtil redis;
 
    private DeferredResultHolder deferredResultHolder;
 
    private DeviceOffLineDetector offLineDetector;
 
    private final static String CACHE_RECORDINFO_KEY = "CACHE_RECORDINFO_";
 
    private static final String MESSAGE_KEEP_ALIVE = "Keepalive";
    private static final String MESSAGE_CONFIG_DOWNLOAD = "ConfigDownload";
    private static final String MESSAGE_CATALOG = "Catalog";
    private static final String MESSAGE_DEVICE_INFO = "DeviceInfo";
    private static final String MESSAGE_ALARM = "Alarm";
    private static final String MESSAGE_RECORD_INFO = "RecordInfo";
    private static final String MESSAGE_MEDIA_STATUS = "MediaStatus";
    private static final String MESSAGE_BROADCAST = "Broadcast";
    private static final String MESSAGE_DEVICE_STATUS = "DeviceStatus";
    private static final String MESSAGE_DEVICE_CONTROL = "DeviceControl";
    private static final String MESSAGE_DEVICE_CONFIG = "DeviceConfig";
    private static final String MESSAGE_MOBILE_POSITION = "MobilePosition";
    // private static final String MESSAGE_MOBILE_POSITION_INTERVAL = "Interval";
    private static final String MESSAGE_PRESET_QUERY = "PresetQuery";
 
    /**
     * 处理MESSAGE请求
     * 
     * @param evt
     */
    @Override
    public void process(RequestEvent evt) {
 
        try {
            Element rootElement = getRootElement(evt);
            String cmd = XmlUtil.getText(rootElement, "CmdType");
 
            if (MESSAGE_KEEP_ALIVE.equals(cmd)) {
                logger.debug("接收到KeepAlive消息");
                processMessageKeepAlive(evt);
            } else if (MESSAGE_CONFIG_DOWNLOAD.equals(cmd)) {
                logger.debug("接收到ConfigDownload消息");
                processMessageConfigDownload(evt);
            } else if (MESSAGE_CATALOG.equals(cmd)) {
                logger.debug("接收到Catalog消息");
                processMessageCatalogList(evt);
            } else if (MESSAGE_DEVICE_INFO.equals(cmd)) {
                // DeviceInfo消息处理
                processMessageDeviceInfo(evt);
            } else if (MESSAGE_DEVICE_STATUS.equals(cmd)) {
                // DeviceStatus消息处理
                processMessageDeviceStatus(evt);
            } else if (MESSAGE_DEVICE_CONTROL.equals(cmd)) {
                logger.debug("接收到DeviceControl消息");
                processMessageDeviceControl(evt);
            } else if (MESSAGE_DEVICE_CONFIG.equals(cmd)) {
                logger.info("接收到DeviceConfig消息");
                processMessageDeviceConfig(evt);
            } else if (MESSAGE_ALARM.equals(cmd)) {
                logger.debug("接收到Alarm消息");
                processMessageAlarm(evt);
            } else if (MESSAGE_RECORD_INFO.equals(cmd)) {
                logger.debug("接收到RecordInfo消息");
                processMessageRecordInfo(evt);
            }else if (MESSAGE_MEDIA_STATUS.equals(cmd)) {
                logger.debug("接收到MediaStatus消息");
                processMessageMediaStatus(evt);
            } else if (MESSAGE_MOBILE_POSITION.equals(cmd)) {
                logger.debug("接收到MobilePosition消息");
                processMessageMobilePosition(evt);
            } else if (MESSAGE_PRESET_QUERY.equals(cmd)) {
                logger.debug("接收到PresetQuery消息");
                processMessagePresetQuery(evt);
            } else if (MESSAGE_BROADCAST.equals(cmd)) {
                // Broadcast消息处理
                processMessageBroadcast(evt);
            } else {
                logger.debug("接收到消息:" + cmd);
                responseAck(evt);
            }
        } catch (DocumentException | SipException |InvalidArgumentException | ParseException e) {
            e.printStackTrace();
        }
    }
 
    /**
     * 处理MobilePosition移动位置消息
     * 
     * @param evt
     */
    private void processMessageMobilePosition(RequestEvent evt) {
        try {
            Element rootElement = getRootElement(evt);
            MobilePosition mobilePosition = new MobilePosition();
            Element deviceIdElement = rootElement.element("DeviceID");
            String deviceId = deviceIdElement.getTextTrim().toString();
            Device device = storager.queryVideoDevice(deviceId);
            if (device != null) {
                if (!StringUtils.isEmpty(device.getName())) {
                    mobilePosition.setDeviceName(device.getName());
                }
            }
            mobilePosition.setDeviceId(XmlUtil.getText(rootElement, "DeviceID"));
            mobilePosition.setTime(XmlUtil.getText(rootElement, "Time"));
            mobilePosition.setLongitude(Double.parseDouble(XmlUtil.getText(rootElement, "Longitude")));
            mobilePosition.setLatitude(Double.parseDouble(XmlUtil.getText(rootElement, "Latitude")));
            if (NumericUtil.isDouble(XmlUtil.getText(rootElement, "Speed"))) {
                mobilePosition.setSpeed(Double.parseDouble(XmlUtil.getText(rootElement, "Speed")));
            } else {
                mobilePosition.setSpeed(0.0);
            }
            if (NumericUtil.isDouble(XmlUtil.getText(rootElement, "Direction"))) {
                mobilePosition.setDirection(Double.parseDouble(XmlUtil.getText(rootElement, "Direction")));
            } else {
                mobilePosition.setDirection(0.0);
            }
            if (NumericUtil.isDouble(XmlUtil.getText(rootElement, "Altitude"))) {
                mobilePosition.setAltitude(Double.parseDouble(XmlUtil.getText(rootElement, "Altitude")));
            } else {
                mobilePosition.setAltitude(0.0);
            }
            mobilePosition.setReportSource("Mobile Position");
            BaiduPoint bp = new BaiduPoint();
            bp = GpsUtil.Wgs84ToBd09(String.valueOf(mobilePosition.getLongitude()), String.valueOf(mobilePosition.getLatitude()));
            logger.info("百度坐标:" + bp.getBdLng() + ", " + bp.getBdLat());
            mobilePosition.setGeodeticSystem("BD-09");
            mobilePosition.setCnLng(bp.getBdLng());
            mobilePosition.setCnLat(bp.getBdLat());
            if (!userSetup.getSavePositionHistory()) {
                storager.clearMobilePositionsByDeviceId(deviceId);
            }
            storager.insertMobilePosition(mobilePosition);
            //回复 200 OK
            responseAck(evt);
        } catch (DocumentException | SipException | InvalidArgumentException | ParseException e) {
            e.printStackTrace();
        }
    }
 
    /**
     * 处理DeviceStatus设备状态Message
     * 
     * @param evt
     */
    private void processMessageDeviceStatus(RequestEvent evt) {
        try {
            Element rootElement = getRootElement(evt);
            String name = rootElement.getName();
            Element deviceIdElement = rootElement.element("DeviceID");
            String deviceId = deviceIdElement.getText();
 
            if (name.equalsIgnoreCase("Query")) { // 区分是Response——查询响应,还是Query——查询请求
                logger.info("接收到DeviceStatus查询消息");
                FromHeader fromHeader = (FromHeader) evt.getRequest().getHeader(FromHeader.NAME);
                String platformId = ((SipUri) fromHeader.getAddress().getURI()).getUser();
                    if (platformId == null) {
                    response404Ack(evt);
                    return;
                } else {
                    // 回复200 OK
                    responseAck(evt);
                    String sn = rootElement.element("SN").getText();
                    ParentPlatform parentPlatform = storager.queryParentPlatByServerGBId(platformId);
                    cmderFroPlatform.deviceStatusResponse(parentPlatform, sn, fromHeader.getTag());
                }
            } else {
                logger.info("接收到DeviceStatus应答消息");
                // 检查设备是否存在, 不存在则不回复
                if (storager.exists(deviceId)) {
                    // 回复200 OK
                    responseAck(evt);
                    JSONObject json = new JSONObject();
                    XmlUtil.node2Json(rootElement, json);
                    if (logger.isDebugEnabled()) {
                        logger.debug(json.toJSONString());
                    }
                    RequestMessage msg = new RequestMessage();
                    msg.setDeviceId(deviceId);
                    msg.setType(DeferredResultHolder.CALLBACK_CMD_DEVICESTATUS);
                    msg.setData(json);
                    deferredResultHolder.invokeResult(msg);
 
                    if (offLineDetector.isOnline(deviceId)) {
                        publisher.onlineEventPublish(deviceId, VideoManagerConstants.EVENT_ONLINE_KEEPLIVE);
                    } else {
                    }
                }
            }
 
        } catch (ParseException | SipException | InvalidArgumentException | DocumentException e) {
            e.printStackTrace();
        }
    }
 
    /**
     * 处理DeviceControl设备状态Message
     * 
     * @param evt
     */
    private void processMessageDeviceControl(RequestEvent evt) {
        try {
            Element rootElement = getRootElement(evt);
            String deviceId = XmlUtil.getText(rootElement, "DeviceID");
            //String result = XmlUtil.getText(rootElement, "Result");
            // 回复200 OK
            responseAck(evt);
            if (rootElement.getName().equals("Response")) {//} !XmlUtil.isEmpty(result)) {
                // 此处是对本平台发出DeviceControl指令的应答
                JSONObject json = new JSONObject();
                XmlUtil.node2Json(rootElement, json);
                if (logger.isDebugEnabled()) {
                    logger.debug(json.toJSONString());
                }
                RequestMessage msg = new RequestMessage();
                msg.setDeviceId(deviceId);
                msg.setType(DeferredResultHolder.CALLBACK_CMD_DEVICECONTROL);
                msg.setData(json);
                deferredResultHolder.invokeResult(msg);
            } else {
                // 此处是上级发出的DeviceControl指令
                String platformId = ((SipURI) ((HeaderAddress) evt.getRequest().getHeader(FromHeader.NAME)).getAddress().getURI()).getUser();
                String targetGBId = ((SipURI) ((HeaderAddress) evt.getRequest().getHeader(ToHeader.NAME)).getAddress().getURI()).getUser();
                // 远程启动功能
                if (!XmlUtil.isEmpty(XmlUtil.getText(rootElement, "TeleBoot"))) {
                    if (deviceId.equals(targetGBId)) {
                        // 远程启动本平台:需要在重新启动程序后先对SipStack解绑
                        logger.info("执行远程启动本平台命令");
                        ParentPlatform parentPlatform = storager.queryParentPlatByServerGBId(platformId);
                        cmderFroPlatform.unregister(parentPlatform, null, null);
    
                        Thread restartThread = new Thread(new Runnable() {
                            @Override
                            public void run() {
                                try {
                                    Thread.sleep(3000);
                                    SipProvider up = (SipProvider) SpringBeanFactory.getBean("udpSipProvider");
                                    SipStackImpl stack = (SipStackImpl)up.getSipStack();
                                    stack.stop();
                                    Iterator listener = stack.getListeningPoints();
                                    while (listener.hasNext()) {
                                        stack.deleteListeningPoint((ListeningPoint) listener.next());
                                    }
                                    Iterator providers = stack.getSipProviders();
                                    while (providers.hasNext()) {
                                        stack.deleteSipProvider((SipProvider) providers.next());
                                    }
                                    VManageBootstrap.restart();
                                } catch (InterruptedException ignored) {
                                } catch (ObjectInUseException e) {
                                    e.printStackTrace();
                                }
                            }
                        });
            
                        restartThread.setDaemon(false);
                        restartThread.start();
                    } else {
                        // 远程启动指定设备
                    }
                }
                // 云台/前端控制命令
                if (!XmlUtil.isEmpty(XmlUtil.getText(rootElement,"PTZCmd")) && !deviceId.equals(targetGBId)) {
                    String cmdString = XmlUtil.getText(rootElement,"PTZCmd");
                    Device device = storager.queryVideoDeviceByPlatformIdAndChannelId(platformId, deviceId);
                    cmder.fronEndCmd(device, deviceId, cmdString);
                }
            }
        } catch (ParseException | SipException | InvalidArgumentException | DocumentException e) {
            e.printStackTrace();
        }
    }
 
    /**
     * 处理DeviceConfig设备状态Message
     * 
     * @param evt
     */
    private void processMessageDeviceConfig(RequestEvent evt) {
        try {
            Element rootElement = getRootElement(evt);
            String deviceId = XmlUtil.getText(rootElement, "DeviceID");
            // 回复200 OK
            responseAck(evt);
            if (rootElement.getName().equals("Response")) {
                    // 此处是对本平台发出DeviceControl指令的应答
                JSONObject json = new JSONObject();
                XmlUtil.node2Json(rootElement, json);
                if (logger.isDebugEnabled()) {
                    logger.debug(json.toJSONString());
                }
                RequestMessage msg = new RequestMessage();
                msg.setDeviceId(deviceId);
                msg.setType(DeferredResultHolder.CALLBACK_CMD_DEVICECONFIG);
                msg.setData(json);
                deferredResultHolder.invokeResult(msg);
            } else {
                // 此处是上级发出的DeviceConfig指令
            }
        } catch (ParseException | SipException | InvalidArgumentException | DocumentException e) {
            e.printStackTrace();
        }
    }
 
    /**
     * 处理ConfigDownload设备状态Message
     * 
     * @param evt
     */
    private void processMessageConfigDownload(RequestEvent evt) {
        try {
            Element rootElement = getRootElement(evt);
            String deviceId = XmlUtil.getText(rootElement, "DeviceID");
            // 回复200 OK
            responseAck(evt);
            if (rootElement.getName().equals("Response")) {
                    // 此处是对本平台发出DeviceControl指令的应答
                JSONObject json = new JSONObject();
                XmlUtil.node2Json(rootElement, json);
                if (logger.isDebugEnabled()) {
                    logger.debug(json.toJSONString());
                }
                RequestMessage msg = new RequestMessage();
                msg.setDeviceId(deviceId);
                msg.setType(DeferredResultHolder.CALLBACK_CMD_CONFIGDOWNLOAD);
                msg.setData(json);
                deferredResultHolder.invokeResult(msg);
            } else {
                // 此处是上级发出的DeviceConfig指令
            }
        } catch (ParseException | SipException | InvalidArgumentException | DocumentException e) {
            e.printStackTrace();
        }
    }
 
    /**
     * 处理PresetQuery预置位列表Message
     * 
     * @param evt
     */
    private void processMessagePresetQuery(RequestEvent evt) {
        try {
            Element rootElement = getRootElement(evt);
            String deviceId = XmlUtil.getText(rootElement, "DeviceID");
            // 回复200 OK
            responseAck(evt);
            if (rootElement.getName().equals("Response")) {//   !XmlUtil.isEmpty(result)) {
                // 此处是对本平台发出DeviceControl指令的应答
                JSONObject json = new JSONObject();
                XmlUtil.node2Json(rootElement, json);
                if (logger.isDebugEnabled()) {
                    logger.debug(json.toJSONString());
                }
                RequestMessage msg = new RequestMessage();
                msg.setDeviceId(deviceId);
                msg.setType(DeferredResultHolder.CALLBACK_CMD_PRESETQUERY);
                msg.setData(json);
                deferredResultHolder.invokeResult(msg);
            } else {
                // 此处是上级发出的DeviceControl指令
            }
        } catch (ParseException | SipException | InvalidArgumentException | DocumentException e) {
            e.printStackTrace();
        }
    }
 
    /**
     * 处理DeviceInfo设备信息Message
     * 
     * @param evt
     */
    private void processMessageDeviceInfo(RequestEvent evt) {
        try {
            Element rootElement = getRootElement(evt);
            String requestName = rootElement.getName();
            Element deviceIdElement = rootElement.element("DeviceID");
            String deviceId = deviceIdElement.getTextTrim().toString();
            if (requestName.equals("Query")) {
                logger.info("接收到DeviceInfo查询消息");
                FromHeader fromHeader = (FromHeader) evt.getRequest().getHeader(FromHeader.NAME);
                String platformId = ((SipUri) fromHeader.getAddress().getURI()).getUser();
                    if (platformId == null) {
                    response404Ack(evt);
                    return;
                } else {
                    // 回复200 OK
                    responseAck(evt);
                    String sn = rootElement.element("SN").getText();
                    ParentPlatform parentPlatform = storager.queryParentPlatByServerGBId(platformId);
                    cmderFroPlatform.deviceInfoResponse(parentPlatform, sn, fromHeader.getTag());
                }
            } else {
                logger.debug("接收到DeviceInfo应答消息");
                Device device = storager.queryVideoDevice(deviceId);
                if (device == null) {
                    return;
                }
                device.setName(XmlUtil.getText(rootElement, "DeviceName"));
                device.setManufacturer(XmlUtil.getText(rootElement, "Manufacturer"));
                device.setModel(XmlUtil.getText(rootElement, "Model"));
                device.setFirmware(XmlUtil.getText(rootElement, "Firmware"));
                if (StringUtils.isEmpty(device.getStreamMode())) {
                    device.setStreamMode("UDP");
                }
                storager.updateDevice(device);
    
                RequestMessage msg = new RequestMessage();
                msg.setDeviceId(deviceId);
                msg.setType(DeferredResultHolder.CALLBACK_CMD_DEVICEINFO);
                msg.setData(device);
                deferredResultHolder.invokeResult(msg);
                // 回复200 OK
                responseAck(evt);
                if (offLineDetector.isOnline(deviceId)) {
                    publisher.onlineEventPublish(deviceId, VideoManagerConstants.EVENT_ONLINE_KEEPLIVE);
                }
            }
        } catch (DocumentException | SipException | InvalidArgumentException | ParseException e) {
            e.printStackTrace();
        }
    }
 
    /***
     * 收到catalog设备目录列表请求 处理
     * 
     * @param evt
     */
    private void processMessageCatalogList(RequestEvent evt) {
        try {
            Element rootElement = getRootElement(evt);
            String name = rootElement.getName();
            Element deviceIdElement = rootElement.element("DeviceID");
            String deviceId = deviceIdElement.getText();
            Element deviceListElement = rootElement.element("DeviceList");
 
            FromHeader fromHeader = (FromHeader) evt.getRequest().getHeader(FromHeader.NAME);
            AddressImpl address = (AddressImpl) fromHeader.getAddress();
            SipUri uri = (SipUri) address.getURI();
            String platformId = uri.getUser();
            // if (deviceListElement == null) { // 存在DeviceList则为响应 catalog, 不存在DeviceList则为查询请求
            if (name.equalsIgnoreCase("Query")) { // 区分是Response——查询响应,还是Query——查询请求
                // TODO 后续将代码拆分
                ParentPlatform parentPlatform = storager.queryParentPlatByServerGBId(platformId);
                if (parentPlatform == null) {
                    response404Ack(evt);
                    return;
                } else {
                    // 回复200 OK
                    responseAck(evt);
 
                    Element snElement = rootElement.element("SN");
                    String sn = snElement.getText();
                    // 准备回复通道信息
                    List<ChannelReduce> channelReduces = storager.queryChannelListInParentPlatform(parentPlatform.getServerGBId());
                    // 查询关联的直播通道
                    List<GbStream> gbStreams = storager.queryGbStreamListInPlatform(parentPlatform.getServerGBId());
                    int size = channelReduces.size() + gbStreams.size();
                    // 回复级联的通道
                    if (channelReduces.size() > 0) {
                        for (ChannelReduce channelReduce : channelReduces) {
                            DeviceChannel deviceChannel = storager.queryChannel(channelReduce.getDeviceId(), channelReduce.getChannelId());
                            cmderFroPlatform.catalogQuery(deviceChannel, parentPlatform, sn, fromHeader.getTag(), size);
                        }
                    }
                    // 回复直播的通道
                    if (gbStreams.size() > 0) {
                        for (GbStream gbStream : gbStreams) {
                            DeviceChannel deviceChannel = new DeviceChannel();
                            deviceChannel.setChannelId(gbStream.getGbId());
                            deviceChannel.setName(gbStream.getName());
                            deviceChannel.setLongitude(gbStream.getLongitude());
                            deviceChannel.setLatitude(gbStream.getLatitude());
                            deviceChannel.setDeviceId(parentPlatform.getDeviceGBId());
                            deviceChannel.setManufacture("wvp-pro");
                            deviceChannel.setStatus(gbStream.isStatus()?1:0);
//                            deviceChannel.setParentId(parentPlatform.getDeviceGBId());
                            deviceChannel.setRegisterWay(1);
                            deviceChannel.setCivilCode(cmder.getSipConfig().getSipDomain());
                            deviceChannel.setModel("live");
                            deviceChannel.setOwner("wvp-pro");
//                            deviceChannel.setAddress("test");
                            deviceChannel.setParental(0);
                            deviceChannel.setSecrecy("0");
                            deviceChannel.setSecrecy("0");
 
                            cmderFroPlatform.catalogQuery(deviceChannel, parentPlatform, sn, fromHeader.getTag(), size);
                        }
                    }
                    if (size == 0) {
                        // 回复无通道
                        cmderFroPlatform.catalogQuery(null, parentPlatform, sn, fromHeader.getTag(), size);
                    }
                }
 
 
            } else {
                Iterator<Element> deviceListIterator = deviceListElement.elementIterator();
                if (deviceListIterator != null) {
                    Device device = storager.queryVideoDevice(deviceId);
                    if (device == null) {
                        return;
                    }
                    // 遍历DeviceList
                    while (deviceListIterator.hasNext()) {
                        Element itemDevice = deviceListIterator.next();
                        Element channelDeviceElement = itemDevice.element("DeviceID");
                        if (channelDeviceElement == null) {
                            continue;
                        }
                        String channelDeviceId = channelDeviceElement.getText();
                        Element channdelNameElement = itemDevice.element("Name");
                        String channelName = channdelNameElement != null ? channdelNameElement.getTextTrim().toString() : "";
                        Element statusElement = itemDevice.element("Status");
                        String status = statusElement != null ? statusElement.getText().toString() : "ON";
                        DeviceChannel deviceChannel = new DeviceChannel();
                        deviceChannel.setName(channelName);
                        deviceChannel.setChannelId(channelDeviceId);
                        // ONLINE OFFLINE  HIKVISION DS-7716N-E4 NVR的兼容性处理
                        if (status.equals("ON") || status.equals("On") || status.equals("ONLINE")) {
                            deviceChannel.setStatus(1);
                        }
                        if (status.equals("OFF") || status.equals("Off") || status.equals("OFFLINE")) {
                            deviceChannel.setStatus(0);
                        }
 
                        deviceChannel.setManufacture(XmlUtil.getText(itemDevice, "Manufacturer"));
                        deviceChannel.setModel(XmlUtil.getText(itemDevice, "Model"));
                        deviceChannel.setOwner(XmlUtil.getText(itemDevice, "Owner"));
                        deviceChannel.setCivilCode(XmlUtil.getText(itemDevice, "CivilCode"));
                        deviceChannel.setBlock(XmlUtil.getText(itemDevice, "Block"));
                        deviceChannel.setAddress(XmlUtil.getText(itemDevice, "Address"));
                        if (XmlUtil.getText(itemDevice, "Parental") == null || XmlUtil.getText(itemDevice, "Parental") == "") {
                            deviceChannel.setParental(0);
                        } else {
                            deviceChannel.setParental(Integer.parseInt(XmlUtil.getText(itemDevice, "Parental")));
                        }
                        deviceChannel.setParentId(XmlUtil.getText(itemDevice, "ParentID"));
                        if (XmlUtil.getText(itemDevice, "SafetyWay") == null || XmlUtil.getText(itemDevice, "SafetyWay") == "") {
                            deviceChannel.setSafetyWay(0);
                        } else {
                            deviceChannel.setSafetyWay(Integer.parseInt(XmlUtil.getText(itemDevice, "SafetyWay")));
                        }
                        if (XmlUtil.getText(itemDevice, "RegisterWay") == null || XmlUtil.getText(itemDevice, "RegisterWay") == "") {
                            deviceChannel.setRegisterWay(1);
                        } else {
                            deviceChannel.setRegisterWay(Integer.parseInt(XmlUtil.getText(itemDevice, "RegisterWay")));
                        }
                        deviceChannel.setCertNum(XmlUtil.getText(itemDevice, "CertNum"));
                        if (XmlUtil.getText(itemDevice, "Certifiable") == null || XmlUtil.getText(itemDevice, "Certifiable") == "") {
                            deviceChannel.setCertifiable(0);
                        } else {
                            deviceChannel.setCertifiable(Integer.parseInt(XmlUtil.getText(itemDevice, "Certifiable")));
                        }
                        if (XmlUtil.getText(itemDevice, "ErrCode") == null || XmlUtil.getText(itemDevice, "ErrCode") == "") {
                            deviceChannel.setErrCode(0);
                        } else {
                            deviceChannel.setErrCode(Integer.parseInt(XmlUtil.getText(itemDevice, "ErrCode")));
                        }
                        deviceChannel.setEndTime(XmlUtil.getText(itemDevice, "EndTime"));
                        deviceChannel.setSecrecy(XmlUtil.getText(itemDevice, "Secrecy"));
                        deviceChannel.setIpAddress(XmlUtil.getText(itemDevice, "IPAddress"));
                        if (XmlUtil.getText(itemDevice, "Port") == null || XmlUtil.getText(itemDevice, "Port") == "") {
                            deviceChannel.setPort(0);
                        } else {
                            deviceChannel.setPort(Integer.parseInt(XmlUtil.getText(itemDevice, "Port")));
                        }
                        deviceChannel.setPassword(XmlUtil.getText(itemDevice, "Password"));
                        if (NumericUtil.isDouble(XmlUtil.getText(itemDevice, "Longitude"))) {
                            deviceChannel.setLongitude(Double.parseDouble(XmlUtil.getText(itemDevice, "Longitude")));
                        } else {
                            deviceChannel.setLongitude(0.00);
                        }
                        if (NumericUtil.isDouble(XmlUtil.getText(itemDevice, "Latitude"))) {
                            deviceChannel.setLatitude(Double.parseDouble(XmlUtil.getText(itemDevice, "Latitude")));
                        } else {
                            deviceChannel.setLatitude(0.00);
                        }
                        if (XmlUtil.getText(itemDevice, "PTZType") == null || XmlUtil.getText(itemDevice, "PTZType") == "") {
                            deviceChannel.setPTZType(0);
                        } else {
                            deviceChannel.setPTZType(Integer.parseInt(XmlUtil.getText(itemDevice, "PTZType")));
                        }
                        deviceChannel.setHasAudio(true); // 默认含有音频,播放时再检查是否有音频及是否AAC
                        storager.updateChannel(device.getDeviceId(), deviceChannel);
                    }
 
                    RequestMessage msg = new RequestMessage();
                    msg.setDeviceId(deviceId);
                    msg.setType(DeferredResultHolder.CALLBACK_CMD_CATALOG);
                    msg.setData(device);
                    deferredResultHolder.invokeResult(msg);
                    // 回复200 OK
                    responseAck(evt);
                    if (offLineDetector.isOnline(deviceId)) {
                        publisher.onlineEventPublish(deviceId, VideoManagerConstants.EVENT_ONLINE_KEEPLIVE);
                    }
                }
            }
        } catch (DocumentException | SipException | InvalidArgumentException | ParseException e) {
            e.printStackTrace();
        }
    }
 
    /***
     * 收到alarm设备报警信息 处理
     * 
     * @param evt
     */
    private void processMessageAlarm(RequestEvent evt) {
        try {
            Element rootElement = getRootElement(evt);
            Element deviceIdElement = rootElement.element("DeviceID");
            String deviceId = deviceIdElement.getText().toString();
            // 回复200 OK
            responseAck(evt);
 
            Device device = storager.queryVideoDevice(deviceId);
            if (device == null) {
                return;
            }
 
            if (rootElement.getName().equals("Notify")) {    // 处理报警通知
                DeviceAlarm deviceAlarm = new DeviceAlarm();
                deviceAlarm.setDeviceId(deviceId);
                deviceAlarm.setAlarmPriority(XmlUtil.getText(rootElement, "AlarmPriority"));
                deviceAlarm.setAlarmMethod(XmlUtil.getText(rootElement, "AlarmMethod"));
                deviceAlarm.setAlarmTime(XmlUtil.getText(rootElement, "AlarmTime"));
                if (XmlUtil.getText(rootElement, "AlarmDescription") == null) {
                    deviceAlarm.setAlarmDescription("");
                } else {
                    deviceAlarm.setAlarmDescription(XmlUtil.getText(rootElement, "AlarmDescription"));
                }
                if (NumericUtil.isDouble(XmlUtil.getText(rootElement, "Longitude"))) {
                    deviceAlarm.setLongitude(Double.parseDouble(XmlUtil.getText(rootElement, "Longitude")));
                } else {
                    deviceAlarm.setLongitude(0.00);
                }
                if (NumericUtil.isDouble(XmlUtil.getText(rootElement, "Latitude"))) {
                    deviceAlarm.setLatitude(Double.parseDouble(XmlUtil.getText(rootElement, "Latitude")));
                } else {
                    deviceAlarm.setLatitude(0.00);
                }
    
                if (!XmlUtil.isEmpty(deviceAlarm.getAlarmMethod())) {
                    if ( deviceAlarm.getAlarmMethod().equals("4")) {
                        MobilePosition mobilePosition = new MobilePosition();
                        mobilePosition.setDeviceId(deviceAlarm.getDeviceId());
                        mobilePosition.setTime(deviceAlarm.getAlarmTime());
                        mobilePosition.setLongitude(deviceAlarm.getLongitude());
                        mobilePosition.setLatitude(deviceAlarm.getLatitude());
                        mobilePosition.setReportSource("GPS Alarm");
                        BaiduPoint bp = new BaiduPoint();
                        bp = GpsUtil.Wgs84ToBd09(String.valueOf(mobilePosition.getLongitude()), String.valueOf(mobilePosition.getLatitude()));
                        logger.info("百度坐标:" + bp.getBdLng() + ", " + bp.getBdLat());
                        mobilePosition.setGeodeticSystem("BD-09");
                        mobilePosition.setCnLng(bp.getBdLng());
                        mobilePosition.setCnLat(bp.getBdLat());
                        if (!userSetup.getSavePositionHistory()) {
                            storager.clearMobilePositionsByDeviceId(deviceId);
                        }
                        storager.insertMobilePosition(mobilePosition);
                    }
                }
                // TODO: 需要实现存储报警信息、报警分类
    
                if (offLineDetector.isOnline(deviceId)) {
                    publisher.deviceAlarmEventPublish(deviceAlarm);
                }
            } else if (rootElement.getName().equals("Response")) {    // 处理报警查询响应
                JSONObject json = new JSONObject();
                XmlUtil.node2Json(rootElement, json);
                if (logger.isDebugEnabled()) {
                    logger.debug(json.toJSONString());
                }
                RequestMessage msg = new RequestMessage();
                msg.setDeviceId(deviceId);
                msg.setType(DeferredResultHolder.CALLBACK_CMD_ALARM);
                msg.setData(json);
                deferredResultHolder.invokeResult(msg);
            }
        } catch (DocumentException | SipException | InvalidArgumentException | ParseException e) {
            // } catch (DocumentException e) {
            e.printStackTrace();
        }
    }
 
    /***
     * 收到keepalive请求 处理
     * 
     * @param evt
     */
    private void processMessageKeepAlive(RequestEvent evt) {
        try {
            Element rootElement = getRootElement(evt);
            String deviceId = XmlUtil.getText(rootElement, "DeviceID");
            Device device = storager.queryVideoDevice(deviceId);
            // 检查设备是否存在并在线, 不存在则不回复
            if (device != null && device.getOnline() == 1) {
                // 回复200 OK
                responseAck(evt);
                if (offLineDetector.isOnline(deviceId)) {
                    publisher.onlineEventPublish(deviceId, VideoManagerConstants.EVENT_ONLINE_KEEPLIVE);
                } else {
                }
            }else {
                logger.warn("收到[ "+deviceId+" ]心跳信息, 但是设备" + (device == null? "不存在":"离线") + ", 心跳信息不予以回复");
            }
        } catch (ParseException | SipException | InvalidArgumentException | DocumentException e) {
            e.printStackTrace();
        }
    }
 
    /***
     * 处理RecordInfo设备录像列表Message请求 TODO 过期时间暂时写死180秒,后续与DeferredResult超时时间保持一致
     * 
     * @param evt
     */
    private void processMessageRecordInfo(RequestEvent evt) {
        try {
            // 回复200 OK
            responseAck(evt);
            String uuid = UUID.randomUUID().toString().replace("-", "");
            RecordInfo recordInfo = new RecordInfo();
            Element rootElement = getRootElement(evt);
            Element deviceIdElement = rootElement.element("DeviceID");
            String deviceId = deviceIdElement.getText().toString();
            recordInfo.setDeviceId(deviceId);
            recordInfo.setName(XmlUtil.getText(rootElement, "Name"));
            if (XmlUtil.getText(rootElement, "SumNum")== null || XmlUtil.getText(rootElement, "SumNum") =="") {
                recordInfo.setSumNum(0);
            } else {
                recordInfo.setSumNum(Integer.parseInt(XmlUtil.getText(rootElement, "SumNum")));
            }
            String sn = XmlUtil.getText(rootElement, "SN");
            Element recordListElement = rootElement.element("RecordList");
            if (recordListElement == null || recordInfo.getSumNum() == 0) {
                logger.info("无录像数据");
                RequestMessage msg = new RequestMessage();
                msg.setDeviceId(deviceId);
                msg.setType(DeferredResultHolder.CALLBACK_CMD_RECORDINFO);
                msg.setData(recordInfo);
                deferredResultHolder.invokeResult(msg);
            } else {
                Iterator<Element> recordListIterator = recordListElement.elementIterator();
                List<RecordItem> recordList = new ArrayList<RecordItem>();
                if (recordListIterator != null) {
                    RecordItem record = new RecordItem();
                    logger.info("处理录像列表数据...");
                    // 遍历DeviceList
                    while (recordListIterator.hasNext()) {
                        Element itemRecord = recordListIterator.next();
                        Element recordElement = itemRecord.element("DeviceID");
                        if (recordElement == null) {
                            logger.info("记录为空,下一个...");
                            continue;
                        }
                        record = new RecordItem();
                        record.setDeviceId(XmlUtil.getText(itemRecord, "DeviceID"));
                        record.setName(XmlUtil.getText(itemRecord, "Name"));
                        record.setFilePath(XmlUtil.getText(itemRecord, "FilePath"));
                        record.setAddress(XmlUtil.getText(itemRecord, "Address"));
                        record.setStartTime(
                                DateUtil.ISO8601Toyyyy_MM_dd_HH_mm_ss(XmlUtil.getText(itemRecord, "StartTime")));
                        record.setEndTime(
                                DateUtil.ISO8601Toyyyy_MM_dd_HH_mm_ss(XmlUtil.getText(itemRecord, "EndTime")));
                        record.setSecrecy(itemRecord.element("Secrecy") == null ? 0
                                : Integer.parseInt(XmlUtil.getText(itemRecord, "Secrecy")));
                        record.setType(XmlUtil.getText(itemRecord, "Type"));
                        record.setRecorderId(XmlUtil.getText(itemRecord, "RecorderID"));
                        recordList.add(record);
                    }
                    recordInfo.setRecordList(recordList);
                }
 
                // 改用单独线程统计已获取录像文件数量,避免多包并行分别统计不完整的问题
                String cacheKey = CACHE_RECORDINFO_KEY + deviceId + sn;
                redis.set(cacheKey + "_" + uuid, recordList, 90);
                if (!threadNameList.contains(cacheKey)) {
                    threadNameList.add(cacheKey);
                    CheckForAllRecordsThread chk = new CheckForAllRecordsThread(cacheKey, recordInfo);
                    chk.setName(cacheKey);
                    chk.setDeferredResultHolder(deferredResultHolder);
                    chk.setRedis(redis);
                    chk.setLogger(logger);
                    chk.start();
                    if (logger.isDebugEnabled()) {
                        logger.debug("Start Thread " + cacheKey + ".");
                    }
                } else {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Thread " + cacheKey + " already started.");
                    }
                }
 
                // 存在录像且如果当前录像明细个数小于总条数,说明拆包返回,需要组装,暂不返回
                // if (recordInfo.getSumNum() > 0 && recordList.size() > 0 && recordList.size() < recordInfo.getSumNum()) {
                //     // 为防止连续请求该设备的录像数据,返回数据错乱,特增加sn进行区分
                //     String cacheKey = CACHE_RECORDINFO_KEY + deviceId + sn;
 
                //     redis.set(cacheKey + "_" + uuid, recordList, 90);
                //     List<Object> cacheKeys = redis.scan(cacheKey + "_*");
                //     List<RecordItem> totalRecordList = new ArrayList<RecordItem>();
                //     for (int i = 0; i < cacheKeys.size(); i++) {
                //         totalRecordList.addAll((List<RecordItem>) redis.get(cacheKeys.get(i).toString()));
                //     }
                //     if (totalRecordList.size() < recordInfo.getSumNum()) {
                //         logger.info("已获取" + totalRecordList.size() + "项录像数据,共" + recordInfo.getSumNum() + "项");
                //         return;
                //     }
                //     logger.info("录像数据已全部获取,共" + recordInfo.getSumNum() + "项");
                //     recordInfo.setRecordList(totalRecordList);
                //     for (int i = 0; i < cacheKeys.size(); i++) {
                //         redis.del(cacheKeys.get(i).toString());
                //     }
                // }
                // // 自然顺序排序, 元素进行升序排列
                // recordInfo.getRecordList().sort(Comparator.naturalOrder());
            }
            // 走到这里,有以下可能:1、没有录像信息,第一次收到recordinfo的消息即返回响应数据,无redis操作
            // 2、有录像数据,且第一次即收到完整数据,返回响应数据,无redis操作
            // 3、有录像数据,在超时时间内收到多次包组装后数量足够,返回数据
 
            // RequestMessage msg = new RequestMessage();
            // msg.setDeviceId(deviceId);
            // msg.setType(DeferredResultHolder.CALLBACK_CMD_RECORDINFO);
            // msg.setData(recordInfo);
            // deferredResultHolder.invokeResult(msg);
            // logger.info("处理完成,返回结果");
        } catch (DocumentException | SipException | InvalidArgumentException | ParseException e) {
            e.printStackTrace();
        }
    }
 
    /**
     * 收到MediaStatus消息处理
      *  
      * @param evt
      */
    private void processMessageMediaStatus(RequestEvent evt){
        try {
            // 回复200 OK
            responseAck(evt);
            Element rootElement = getRootElement(evt);
            String deviceId = XmlUtil.getText(rootElement, "DeviceID");
            String NotifyType =XmlUtil.getText(rootElement, "NotifyType");
            if (NotifyType.equals("121")){
                logger.info("媒体播放完毕,通知关流");
                StreamInfo streamInfo = redisCatchStorage.queryPlaybackByDevice(deviceId, "*");
                if (streamInfo != null) {
                    redisCatchStorage.stopPlayback(streamInfo);
                    cmder.streamByeCmd(streamInfo.getDeviceID(), streamInfo.getChannelId());
                }
            }
        } catch (ParseException | SipException | InvalidArgumentException | DocumentException e) {
            e.printStackTrace();
        }
    }
 
    /**
     * 处理AudioBroadcast语音广播Message
     * 
     * @param evt
     */
    private void processMessageBroadcast(RequestEvent evt) {
        try {
            Element rootElement = getRootElement(evt);
            String deviceId = XmlUtil.getText(rootElement, "DeviceID");
            // 回复200 OK
            responseAck(evt);
            if (rootElement.getName().equals("Response")) {
                    // 此处是对本平台发出Broadcast指令的应答
                JSONObject json = new JSONObject();
                XmlUtil.node2Json(rootElement, json);
                if (logger.isDebugEnabled()) {
                    logger.debug(json.toJSONString());
                }
                RequestMessage msg = new RequestMessage();
                msg.setDeviceId(deviceId);
                msg.setType(DeferredResultHolder.CALLBACK_CMD_BROADCAST);
                msg.setData(json);
                deferredResultHolder.invokeResult(msg);
            } else {
                // 此处是上级发出的Broadcast指令
            }
        } catch (ParseException | SipException | InvalidArgumentException | DocumentException e) {
            e.printStackTrace();
        }
    }
 
 
    /***
     * 回复200 OK
     * @param evt
     * @throws SipException
     * @throws InvalidArgumentException
     * @throws ParseException
     */
    private void responseAck(RequestEvent evt) throws SipException, InvalidArgumentException, ParseException {
        Response response = getMessageFactory().createResponse(Response.OK, evt.getRequest());
        getServerTransaction(evt).sendResponse(response);
    }
 
    /***
     * 回复404
     * @param evt
     * @throws SipException
     * @throws InvalidArgumentException
     * @throws ParseException
     */
    private void response404Ack(RequestEvent evt) throws SipException, InvalidArgumentException, ParseException {
        Response response = getMessageFactory().createResponse(Response.NOT_FOUND, evt.getRequest());
        getServerTransaction(evt).sendResponse(response);
    }
 
    private Element getRootElement(RequestEvent evt) throws DocumentException {
        Request request = evt.getRequest();
        SAXReader reader = new SAXReader();
        reader.setEncoding("gbk");
        Document xml = reader.read(new ByteArrayInputStream(request.getRawContent()));
        return xml.getRootElement();
    }
 
    public void setCmder(SIPCommander cmder) {
        this.cmder = cmder;
    }
 
    public void setStorager(IVideoManagerStorager storager) {
        this.storager = storager;
    }
 
    public void setPublisher(EventPublisher publisher) {
        this.publisher = publisher;
    }
 
    public void setRedis(RedisUtil redis) {
        this.redis = redis;
    }
 
    public void setDeferredResultHolder(DeferredResultHolder deferredResultHolder) {
        this.deferredResultHolder = deferredResultHolder;
    }
 
    public void setOffLineDetector(DeviceOffLineDetector offLineDetector) {
        this.offLineDetector = offLineDetector;
    }
 
    public IRedisCatchStorage getRedisCatchStorage() {
        return redisCatchStorage;
    }
 
    public void setRedisCatchStorage(IRedisCatchStorage redisCatchStorage) {
        this.redisCatchStorage = redisCatchStorage;
    }
 
    public SIPCommanderFroPlatform getCmderFroPlatform() {
        return cmderFroPlatform;
    }
 
    public void setCmderFroPlatform(SIPCommanderFroPlatform cmderFroPlatform) {
        this.cmderFroPlatform = cmderFroPlatform;
    }
}