|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import javax.sip.InvalidArgumentException; | 
|---|
|  |  |  | import javax.sip.RequestEvent; | 
|---|
|  |  |  | import javax.sip.ServerTransaction; | 
|---|
|  |  |  | import javax.sip.SipException; | 
|---|
|  |  |  | import javax.sip.address.SipURI; | 
|---|
|  |  |  | import javax.sip.header.CSeqHeader; | 
|---|
|  |  |  | import javax.sip.header.CallIdHeader; | 
|---|
|  |  |  | import javax.sip.message.Request; | 
|---|
|  |  |  | import javax.sip.message.Response; | 
|---|
|  |  |  | import java.text.ParseException; | 
|---|
|  |  |  | import java.util.Map; | 
|---|
|  |  |  | 
|---|
|  |  |  | @Override | 
|---|
|  |  |  | public void process(RequestEvent evt) { | 
|---|
|  |  |  | SIPRequest sipRequest = (SIPRequest)evt.getRequest(); | 
|---|
|  |  |  | logger.debug("接收到消息:" + evt.getRequest()); | 
|---|
|  |  |  | //        logger.info("接收到消息:" + evt.getRequest()); | 
|---|
|  |  |  | String deviceId = SipUtils.getUserIdFromFromHeader(evt.getRequest()); | 
|---|
|  |  |  | CallIdHeader callIdHeader = sipRequest.getCallIdHeader(); | 
|---|
|  |  |  | // 先从会话内查找 | 
|---|
|  |  |  | 
|---|
|  |  |  | if (ssrcTransaction != null) { | 
|---|
|  |  |  | deviceId = ssrcTransaction.getDeviceId(); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | ServerTransaction serverTransaction = getServerTransaction(evt); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | SIPRequest request = (SIPRequest) evt.getRequest(); | 
|---|
|  |  |  | // 查询设备是否存在 | 
|---|
|  |  |  | Device device = redisCatchStorage.getDevice(deviceId); | 
|---|
|  |  |  | // 查询上级平台是否存在 | 
|---|
|  |  |  | ParentPlatform parentPlatform = storage.queryParentPlatByServerGBId(deviceId); | 
|---|
|  |  |  | try { | 
|---|
|  |  |  | if (device != null && parentPlatform != null) { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | logger.warn("[重复]平台与设备编号重复:{}", deviceId); | 
|---|
|  |  |  | SIPRequest request = (SIPRequest) evt.getRequest(); | 
|---|
|  |  |  | String hostAddress = request.getRemoteAddress().getHostAddress(); | 
|---|
|  |  |  | int remotePort = request.getRemotePort(); | 
|---|
|  |  |  | if (device.getHostAddress().equals(hostAddress + ":" + remotePort)) { | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | if (device == null && parentPlatform == null) { | 
|---|
|  |  |  | // 不存在则回复404 | 
|---|
|  |  |  | responseAck(serverTransaction, Response.NOT_FOUND, "device "+ deviceId +" not found"); | 
|---|
|  |  |  | logger.warn("[设备未找到 ]: {}", deviceId); | 
|---|
|  |  |  | responseAck(request, Response.NOT_FOUND, "device "+ deviceId +" not found"); | 
|---|
|  |  |  | logger.warn("[设备未找到 ]deviceId: {}, callId: {}", deviceId, callIdHeader.getCallId()); | 
|---|
|  |  |  | if (sipSubscribe.getErrorSubscribe(callIdHeader.getCallId()) != null){ | 
|---|
|  |  |  | SipSubscribe.EventResult eventResult = new SipSubscribe.EventResult(new DeviceNotFoundEvent(evt.getDialog())); | 
|---|
|  |  |  | DeviceNotFoundEvent deviceNotFoundEvent = new DeviceNotFoundEvent(evt.getDialog()); | 
|---|
|  |  |  | deviceNotFoundEvent.setCallId(callIdHeader.getCallId()); | 
|---|
|  |  |  | SipSubscribe.EventResult eventResult = new SipSubscribe.EventResult(deviceNotFoundEvent); | 
|---|
|  |  |  | sipSubscribe.getErrorSubscribe(callIdHeader.getCallId()).response(eventResult); | 
|---|
|  |  |  | }; | 
|---|
|  |  |  | }else { | 
|---|
|  |  |  | 
|---|
|  |  |  | rootElement = getRootElement(evt); | 
|---|
|  |  |  | if (rootElement == null) { | 
|---|
|  |  |  | logger.error("处理MESSAGE请求  未获取到消息体{}", evt.getRequest()); | 
|---|
|  |  |  | responseAck(serverTransaction, Response.BAD_REQUEST, "content is null"); | 
|---|
|  |  |  | responseAck(request, Response.BAD_REQUEST, "content is null"); | 
|---|
|  |  |  | return; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } catch (DocumentException e) { | 
|---|
|  |  |  | logger.warn("解析XML消息内容异常", e); | 
|---|
|  |  |  | // 不存在则回复404 | 
|---|
|  |  |  | responseAck(serverTransaction, Response.BAD_REQUEST, e.getMessage()); | 
|---|
|  |  |  | responseAck(request, Response.BAD_REQUEST, e.getMessage()); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | String name = rootElement.getName(); | 
|---|
|  |  |  | IMessageHandler messageHandler = messageHandlerMap.get(name); | 
|---|
|  |  |  | 
|---|
|  |  |  | }else { | 
|---|
|  |  |  | // 不支持的message | 
|---|
|  |  |  | // 不存在则回复415 | 
|---|
|  |  |  | responseAck(serverTransaction, Response.UNSUPPORTED_MEDIA_TYPE, "Unsupported message type, must Control/Notify/Query/Response"); | 
|---|
|  |  |  | responseAck(request, Response.UNSUPPORTED_MEDIA_TYPE, "Unsupported message type, must Control/Notify/Query/Response"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } catch (SipException e) { | 
|---|