| | |
| | | package com.genersoft.iot.vmp.gb28181.transmit; |
| | | |
| | | import com.genersoft.iot.vmp.gb28181.event.EventPublisher; |
| | | import com.genersoft.iot.vmp.gb28181.event.SipSubscribe; |
| | | import com.genersoft.iot.vmp.gb28181.transmit.event.request.ISIPRequestProcessor; |
| | | import com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.RegisterRequestProcessor; |
| | | import com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.notify.cmd.KeepaliveNotifyMessageHandler; |
| | | import com.genersoft.iot.vmp.gb28181.transmit.event.response.ISIPResponseProcessor; |
| | | import com.genersoft.iot.vmp.gb28181.transmit.event.timeout.ITimeoutProcessor; |
| | | import org.slf4j.Logger; |
| | |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | import javax.sip.*; |
| | | import javax.sip.header.CSeqHeader; |
| | | import javax.sip.header.CallIdHeader; |
| | | import javax.sip.address.SipURI; |
| | | import javax.sip.address.URI; |
| | | import javax.sip.header.*; |
| | | import javax.sip.message.Request; |
| | | import javax.sip.message.Response; |
| | | import java.util.Map; |
| | | import java.util.Objects; |
| | | import java.util.concurrent.ConcurrentHashMap; |
| | | |
| | | /** |
| | |
| | | @Autowired |
| | | private SipSubscribe sipSubscribe; |
| | | |
| | | @Autowired |
| | | private EventPublisher eventPublisher; |
| | | |
| | | // @Autowired |
| | | // @Qualifier(value = "taskExecutor") |
| | | // private ThreadPoolTaskExecutor poolTaskExecutor; |
| | | |
| | | |
| | | |
| | | /** |
| | | * 添加 request订阅 |
| | |
| | | * @param processor 处理程序 |
| | | */ |
| | | public void addTimeoutProcessor(ITimeoutProcessor processor) { |
| | | this.timeoutProcessor = processor; |
| | | timeoutProcessor = processor; |
| | | } |
| | | |
| | | /** |
| | |
| | | */ |
| | | @Override |
| | | public void processTimeout(TimeoutEvent timeoutEvent) { |
| | | if(timeoutProcessor != null) { |
| | | timeoutProcessor.process(timeoutEvent); |
| | | logger.info("[消息发送超时]"); |
| | | ClientTransaction clientTransaction = timeoutEvent.getClientTransaction(); |
| | | eventPublisher.requestTimeOut(timeoutEvent); |
| | | if (clientTransaction != null) { |
| | | Request request = clientTransaction.getRequest(); |
| | | if (request != null) { |
| | | CallIdHeader callIdHeader = (CallIdHeader) request.getHeader(CallIdHeader.NAME); |
| | | if (callIdHeader != null) { |
| | | SipSubscribe.Event subscribe = sipSubscribe.getErrorSubscribe(callIdHeader.getCallId()); |
| | | SipSubscribe.EventResult eventResult = new SipSubscribe.EventResult(timeoutEvent); |
| | | subscribe.response(eventResult); |
| | | sipSubscribe.removeErrorSubscribe(callIdHeader.getCallId()); |
| | | } |
| | | } |
| | | } |
| | | |
| | | // Timeout timeout = timeoutEvent.getTimeout(); |
| | | // ServerTransaction serverTransaction = timeoutEvent.getServerTransaction(); |
| | | // if (serverTransaction != null) { |
| | | // Request request = serverTransaction.getRequest(); |
| | | // URI requestURI = request.getRequestURI(); |
| | | // Header header = request.getHeader(FromHeader.NAME); |
| | | // } |
| | | // if(timeoutProcessor != null) { |
| | | // timeoutProcessor.process(timeoutEvent); |
| | | // } |
| | | } |
| | | |
| | | @Override |