| package com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.notify.cmd; | 
|   | 
| import com.genersoft.iot.vmp.common.StreamInfo; | 
| import com.genersoft.iot.vmp.gb28181.bean.Device; | 
| import com.genersoft.iot.vmp.gb28181.bean.ParentPlatform; | 
| import com.genersoft.iot.vmp.gb28181.transmit.cmd.impl.SIPCommander; | 
| import com.genersoft.iot.vmp.gb28181.transmit.event.request.SIPRequestProcessorParent; | 
| import com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.IMessageHandler; | 
| import com.genersoft.iot.vmp.gb28181.transmit.event.request.impl.message.notify.NotifyMessageHandler; | 
| import com.genersoft.iot.vmp.storager.IRedisCatchStorage; | 
| import org.dom4j.Element; | 
| import org.slf4j.Logger; | 
| import org.slf4j.LoggerFactory; | 
| import org.springframework.beans.factory.InitializingBean; | 
| import org.springframework.beans.factory.annotation.Autowired; | 
| import org.springframework.stereotype.Component; | 
|   | 
| import javax.sip.InvalidArgumentException; | 
| import javax.sip.RequestEvent; | 
| import javax.sip.SipException; | 
| import javax.sip.message.Response; | 
| import java.text.ParseException; | 
|   | 
| import static com.genersoft.iot.vmp.gb28181.utils.XmlUtil.getText; | 
|   | 
| @Component | 
| public class MediaStatusNotifyMessageHandler extends SIPRequestProcessorParent implements InitializingBean, IMessageHandler { | 
|   | 
|     private Logger logger = LoggerFactory.getLogger(MediaStatusNotifyMessageHandler.class); | 
|     private final String cmdType = "MediaStatus"; | 
|   | 
|     @Autowired | 
|     private NotifyMessageHandler notifyMessageHandler; | 
|   | 
|     @Autowired | 
|     private SIPCommander cmder; | 
|   | 
|     @Autowired | 
|     private IRedisCatchStorage redisCatchStorage; | 
|   | 
|     @Override | 
|     public void afterPropertiesSet() throws Exception { | 
|         notifyMessageHandler.addHandler(cmdType, this); | 
|     } | 
|   | 
|     @Override | 
|     public void handForDevice(RequestEvent evt, Device device, Element rootElement) { | 
|   | 
|         // 回复200 OK | 
|         try { | 
|             responseAck(evt, Response.OK); | 
|         } catch (SipException e) { | 
|             e.printStackTrace(); | 
|         } catch (InvalidArgumentException e) { | 
|             e.printStackTrace(); | 
|         } catch (ParseException e) { | 
|             e.printStackTrace(); | 
|         } | 
|         String NotifyType =getText(rootElement, "NotifyType"); | 
|         if (NotifyType.equals("121")){ | 
|             logger.info("媒体播放完毕,通知关流"); | 
|             StreamInfo streamInfo = redisCatchStorage.queryPlaybackByDevice(device.getDeviceId(), "*"); | 
|             if (streamInfo != null) { | 
|                 redisCatchStorage.stopPlayback(streamInfo); | 
|                 cmder.streamByeCmd(streamInfo.getDeviceID(), streamInfo.getChannelId()); | 
|             } | 
|         } | 
|     } | 
|   | 
|     @Override | 
|     public void handForPlatform(RequestEvent evt, ParentPlatform parentPlatform, Element element) { | 
|   | 
|     } | 
| } |