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

com.smartdevicelink.proxy.rpc.VideoStreamingCapability Maven / Gradle / Ivy

Go to download

The app library component of SDL is meant to run on the end user’s smart-device from within SDL enabled apps, as an embedded app, or connected to the cloud. App libraries allow the apps to connect to SDL enabled head-units and hardware through bluetooth, USB, and TCP for Android, and cloud and embedded apps can connect through web sockets, Java Beans, and other custom transports. Once the library establishes a connection between the smart device and head-unit through the preferred method of transport, the two components are able to communicate using the SDL defined protocol. The app integrating this library project is then able to expose its functionality to the head-unit through text, media, and other interactive elements.

There is a newer version: 5.7.0
Show newest version
/*
 * Copyright (c) 2017 - 2019, SmartDeviceLink Consortium, Inc.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * Redistributions of source code must retain the above copyright notice, this
 * list of conditions and the following disclaimer.
 *
 * Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following
 * disclaimer in the documentation and/or other materials provided with the
 * distribution.
 *
 * Neither the name of the SmartDeviceLink Consortium, Inc. nor the names of its
 * contributors may be used to endorse or promote products derived from this
 * software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */
package com.smartdevicelink.proxy.rpc;

import com.smartdevicelink.proxy.RPCStruct;
import com.smartdevicelink.util.SdlDataTypeConverter;
import com.smartdevicelink.util.Version;

import java.util.ArrayList;
import java.util.Hashtable;
import java.util.List;

/**
 * Contains information about this system's video streaming capabilities.
 */

public class VideoStreamingCapability extends RPCStruct {
    public static final String KEY_PREFERRED_RESOLUTION = "preferredResolution";
    public static final String KEY_MAX_BITRATE = "maxBitrate";
    public static final String KEY_SUPPORTED_FORMATS = "supportedFormats";
    public static final String KEY_HAPTIC_SPATIAL_DATA_SUPPORTED = "hapticSpatialDataSupported";
    public static final String KEY_DIAGONAL_SCREEN_SIZE = "diagonalScreenSize";
    public static final String KEY_PIXEL_PER_INCH = "pixelPerInch";
    public static final String KEY_SCALE = "scale";
    public static final String KEY_PREFERRED_FPS = "preferredFPS";
    /**
     * @since SmartDeviceLink 7.1.0
     */
    public static final String KEY_ADDITIONAL_VIDEO_STREAMING_CAPABILITIES = "additionalVideoStreamingCapabilities";

    public VideoStreamingCapability() {
    }

    public VideoStreamingCapability(Hashtable hash) {
        super(hash);
    }

    public VideoStreamingCapability setPreferredResolution(ImageResolution res) {
        setValue(KEY_PREFERRED_RESOLUTION, res);
        return this;
    }

    public ImageResolution getPreferredResolution() {
        return (ImageResolution) getObject(ImageResolution.class, KEY_PREFERRED_RESOLUTION);
    }

    /**
     * Set the max bitrate supported by this module.
     *
     * NOTE:  Unit is in kbps.
     *
     * @param maxBitrate in kbps
     */
    public VideoStreamingCapability setMaxBitrate(Integer maxBitrate) {
        setValue(KEY_MAX_BITRATE, maxBitrate);
        return this;
    }

    /**
     * Retrieves the max bitrate supported by this module.
     *
     * NOTE:  Unit is in kbps.
     *
     * @return max bitrate in kbps
     */
    public Integer getMaxBitrate() {
        return getInteger(KEY_MAX_BITRATE);
    }

    public VideoStreamingCapability setSupportedFormats(List formats) {
        setValue(KEY_SUPPORTED_FORMATS, formats);
        return this;
    }

    public List getSupportedFormats() {
        return (List) getObject(VideoStreamingFormat.class, KEY_SUPPORTED_FORMATS);
    }

    /**
     * @deprecated use {@link #isHapticSpatialDataSupported()} instead.
     */
    @Deprecated
    public Boolean getIsHapticSpatialDataSupported() {
        return isHapticSpatialDataSupported();
    }

    /**
     * @deprecated use {@link #setHapticSpatialDataSupported(Boolean hapticSpatialDataSupported)} instead.
     */
    @Deprecated
    public VideoStreamingCapability setIsHapticSpatialDataSupported(Boolean hapticSpatialDataSupported) {
        return setHapticSpatialDataSupported(hapticSpatialDataSupported);
    }

    /**
     * Gets whether the dead unit supports HapticSpatialData
     *
     * @return True if the system can utilize the haptic spatial data from the source being streamed. If not included, it can be assumed the module doesn't support haptic spatial data.
     */
    public Boolean isHapticSpatialDataSupported() {
        return getBoolean(KEY_HAPTIC_SPATIAL_DATA_SUPPORTED);
    }

    /**
     * Sets whether the dead unit supports HapticSpatialData
     *
     * @param hapticSpatialDataSupported True if the system can utilize the haptic spatial data from the source being streamed. If not included, it can be assumed the module doesn't support haptic spatial data.
     */
    public VideoStreamingCapability setHapticSpatialDataSupported(Boolean hapticSpatialDataSupported) {
        setValue(KEY_HAPTIC_SPATIAL_DATA_SUPPORTED, hapticSpatialDataSupported);
        return this;
    }

    /**
     * @return the diagonal screen size in inches.
     */
    public Double getDiagonalScreenSize() {
        Object object = getValue(KEY_DIAGONAL_SCREEN_SIZE);
        return SdlDataTypeConverter.objectToDouble(object);
    }

    /**
     * @param diagonalScreenSize the diagonal screen size in inches.
     */
    public VideoStreamingCapability setDiagonalScreenSize(Double diagonalScreenSize) {
        setValue(KEY_DIAGONAL_SCREEN_SIZE, diagonalScreenSize);
        return this;
    }

    /**
     * @return the diagonal resolution in pixels divided by the diagonal screen size in inches.
     */
    public Double getPixelPerInch() {
        Object object = getValue(KEY_PIXEL_PER_INCH);
        return SdlDataTypeConverter.objectToDouble(object);
    }

    /**
     * @param pixelPerInch the diagonal resolution in pixels divided by the diagonal screen size in inches.
     */
    public VideoStreamingCapability setPixelPerInch(Double pixelPerInch) {
        setValue(KEY_PIXEL_PER_INCH, pixelPerInch);
        return this;
    }

    /**
     * @return the scaling factor the app should use to change the size of the projecting view.
     */
    public Double getScale() {
        Object object = getValue(KEY_SCALE);
        return SdlDataTypeConverter.objectToDouble(object);
    }

    /**
     * @param scale the scaling factor the app should use to change the size of the projecting view.
     */
    public VideoStreamingCapability setScale(Double scale) {
        setValue(KEY_SCALE, scale);
        return this;
    }


    /**
     * Gets the additionalVideoStreamingCapabilities.
     *
     * @return List
     * {"array_min_size": 1, "array_max_size": 100}
     * @since SmartDeviceLink 7.1.0
     */
    @SuppressWarnings("unchecked")
    public List getAdditionalVideoStreamingCapabilities() {
        return (List) getObject(VideoStreamingCapability.class, KEY_ADDITIONAL_VIDEO_STREAMING_CAPABILITIES);
    }

    /**
     * Sets the additionalVideoStreamingCapabilities.
     *
     * @param additionalVideoStreamingCapabilities
     * {"array_min_size": 1, "array_max_size": 100}
     * @since SmartDeviceLink 7.1.0
     */
    public VideoStreamingCapability setAdditionalVideoStreamingCapabilities(List additionalVideoStreamingCapabilities) {
        setValue(KEY_ADDITIONAL_VIDEO_STREAMING_CAPABILITIES, additionalVideoStreamingCapabilities);
        return this;
    }


    /**
     * @return the preferred frame rate per second (FPS) specified by head unit.
     */
    public Integer getPreferredFPS() {
        return getInteger(KEY_PREFERRED_FPS);
    }

    /**
     * @param preferredFPS preferred frame rate per second
     */
    public VideoStreamingCapability setPreferredFPS(Integer preferredFPS) {
        setValue(KEY_PREFERRED_FPS, preferredFPS);
        return this;
    }

    @Override
    public void format(Version rpcVersion, boolean formatParams) {
        if (getAdditionalVideoStreamingCapabilities() != null && getAdditionalVideoStreamingCapabilities().contains(this)) {
            List copyList = new ArrayList<>(getAdditionalVideoStreamingCapabilities());

            while (copyList.contains(this)) {
                copyList.remove(this);
            }

            VideoStreamingCapability copyRootVideoStreamCapability = new VideoStreamingCapability();
            copyRootVideoStreamCapability.setPreferredResolution(this.getPreferredResolution());
            copyRootVideoStreamCapability.setMaxBitrate(this.getMaxBitrate());
            copyRootVideoStreamCapability.setSupportedFormats(this.getSupportedFormats());
            copyRootVideoStreamCapability.setHapticSpatialDataSupported(this.isHapticSpatialDataSupported());
            copyRootVideoStreamCapability.setDiagonalScreenSize(this.getDiagonalScreenSize());
            copyRootVideoStreamCapability.setPixelPerInch(this.getPixelPerInch());
            copyRootVideoStreamCapability.setScale(this.getScale());
            copyRootVideoStreamCapability.setPreferredFPS(this.getPreferredFPS());

            copyList.add(copyRootVideoStreamCapability);
            this.setAdditionalVideoStreamingCapabilities(copyList);
        }

        super.format(rpcVersion, formatParams);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy