|  |  |  | 
|---|
|  |  |  | import org.slf4j.Logger; | 
|---|
|  |  |  | import org.slf4j.LoggerFactory; | 
|---|
|  |  |  | import org.springframework.beans.factory.annotation.Autowired; | 
|---|
|  |  |  | import org.springframework.beans.factory.annotation.Qualifier; | 
|---|
|  |  |  | import org.springframework.scheduling.annotation.Async; | 
|---|
|  |  |  | import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor; | 
|---|
|  |  |  | import org.springframework.stereotype.Component; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import javax.sip.*; | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Autowired | 
|---|
|  |  |  | private SipSubscribe sipSubscribe; | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //    @Autowired | 
|---|
|  |  |  | //    @Qualifier(value = "taskExecutor") | 
|---|
|  |  |  | 
|---|
|  |  |  | @Override | 
|---|
|  |  |  | @Async | 
|---|
|  |  |  | public void processRequest(RequestEvent requestEvent) { | 
|---|
|  |  |  | logger.debug("\n收到请求:\n{}", requestEvent.getRequest()); | 
|---|
|  |  |  | String method = requestEvent.getRequest().getMethod(); | 
|---|
|  |  |  | ISIPRequestProcessor sipRequestProcessor = requestProcessorMap.get(method); | 
|---|
|  |  |  | if (sipRequestProcessor == null) { | 
|---|
|  |  |  | 
|---|
|  |  |  | @Override | 
|---|
|  |  |  | @Async | 
|---|
|  |  |  | public void processResponse(ResponseEvent responseEvent) { | 
|---|
|  |  |  | logger.debug(responseEvent.getResponse().toString()); | 
|---|
|  |  |  | Response response = responseEvent.getResponse(); | 
|---|
|  |  |  | logger.debug(responseEvent.getResponse().toString()); | 
|---|
|  |  |  | logger.debug("\n收到响应:\n{}", responseEvent.getResponse()); | 
|---|
|  |  |  | int status = response.getStatusCode(); | 
|---|
|  |  |  | if (((status >= 200) && (status < 300)) || status == 401) { // Success! | 
|---|
|  |  |  | //            ISIPResponseProcessor processor = processorFactory.createResponseProcessor(evt); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | if (((status >= 200) && (status < 300)) || status == Response.UNAUTHORIZED) { // Success! | 
|---|
|  |  |  | CSeqHeader cseqHeader = (CSeqHeader) responseEvent.getResponse().getHeader(CSeqHeader.NAME); | 
|---|
|  |  |  | String method = cseqHeader.getMethod(); | 
|---|
|  |  |  | ISIPResponseProcessor sipRequestProcessor = responseProcessorMap.get(method); | 
|---|
|  |  |  | if (sipRequestProcessor != null) { | 
|---|
|  |  |  | sipRequestProcessor.process(responseEvent); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | if (responseEvent.getResponse() != null && sipSubscribe.getOkSubscribesSize() > 0 ) { | 
|---|
|  |  |  | if (status != Response.UNAUTHORIZED && responseEvent.getResponse() != null && sipSubscribe.getOkSubscribesSize() > 0 ) { | 
|---|
|  |  |  | CallIdHeader callIdHeader = (CallIdHeader)responseEvent.getResponse().getHeader(CallIdHeader.NAME); | 
|---|
|  |  |  | if (callIdHeader != null) { | 
|---|
|  |  |  | SipSubscribe.Event subscribe = sipSubscribe.getOkSubscribe(callIdHeader.getCallId()); | 
|---|
|  |  |  | if (subscribe != null) { | 
|---|
|  |  |  | SipSubscribe.EventResult eventResult = new SipSubscribe.EventResult(responseEvent); | 
|---|
|  |  |  | sipSubscribe.removeOkSubscribe(callIdHeader.getCallId()); | 
|---|
|  |  |  | subscribe.response(eventResult); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | 
|---|
|  |  |  | if (subscribe != null) { | 
|---|
|  |  |  | SipSubscribe.EventResult eventResult = new SipSubscribe.EventResult(responseEvent); | 
|---|
|  |  |  | subscribe.response(eventResult); | 
|---|
|  |  |  | sipSubscribe.removeErrorSubscribe(callIdHeader.getCallId()); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | } | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Override | 
|---|
|  |  |  | public void processIOException(IOExceptionEvent exceptionEvent) { | 
|---|
|  |  |  | System.out.println("processIOException"); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Override | 
|---|
|  |  |  | public void processTransactionTerminated(TransactionTerminatedEvent transactionTerminatedEvent) { | 
|---|
|  |  |  | //        Transaction transaction = null; | 
|---|
|  |  |  | //        System.out.println("processTransactionTerminated"); | 
|---|
|  |  |  | //        if (transactionTerminatedEvent.isServerTransaction()) { | 
|---|
|  |  |  | //            transaction = transactionTerminatedEvent.getServerTransaction(); | 
|---|
|  |  |  | //        }else { | 
|---|
|  |  |  | //            transaction = transactionTerminatedEvent.getClientTransaction(); | 
|---|
|  |  |  | //        } | 
|---|
|  |  |  | // | 
|---|
|  |  |  | //        System.out.println(transaction.getBranchId()); | 
|---|
|  |  |  | //        System.out.println(transaction.getState()); | 
|---|
|  |  |  | //        System.out.println(transaction.getRequest().getMethod()); | 
|---|
|  |  |  | //        CallIdHeader header = (CallIdHeader)transaction.getRequest().getHeader(CallIdHeader.NAME); | 
|---|
|  |  |  | //        SipSubscribe.EventResult<TransactionTerminatedEvent> terminatedEventEventResult = new SipSubscribe.EventResult<>(transactionTerminatedEvent); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //        sipSubscribe.getErrorSubscribe(header.getCallId()).response(terminatedEventEventResult); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Override | 
|---|