All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.xingshuangs.iot.protocol.rtsp.model.RtspSetupResponse Maven / Gradle / Ivy

package com.github.xingshuangs.iot.protocol.rtsp.model;


import com.github.xingshuangs.iot.exceptions.RtspCommException;
import com.github.xingshuangs.iot.protocol.rtsp.model.base.RtspSessionInfo;
import com.github.xingshuangs.iot.protocol.rtsp.model.base.RtspTransport;
import lombok.Getter;

import java.util.Map;

import static com.github.xingshuangs.iot.protocol.rtsp.constant.RtspCommonKey.*;

/**
 * Setup响应
 *
 * @author xingshuang
 */
@Getter
public final class RtspSetupResponse extends RtspMessageResponse {

    /**
     * 通道
     */
    private RtspTransport transport;

    /**
     * 特殊的会话信息
     */
    private RtspSessionInfo sessionInfo;

    public static RtspSetupResponse fromHeaderString(String src) {
        if (src == null || src.equals("")) {
            throw new RtspCommException("解析RtspSetupResponse时字符串为空");
        }
        RtspSetupResponse response = new RtspSetupResponse();
        Map map = response.parseHeaderAndReturnMap(src);
        if (map.containsKey(SESSION)) {
            response.sessionInfo = RtspSessionInfo.fromString(map.get(SESSION).trim());
            response.session = response.sessionInfo.getSessionId();
        }
        if (map.containsKey(TRANSPORT)) {
            response.transport = RtspTransport.fromString(map.get(TRANSPORT).trim());
        }
        return response;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy