summaryrefslogtreecommitdiff
path: root/base/src/main/java/com/smartdevicelink/proxy/rpc/VideoStreamingCapability.java
blob: 2b63ef2a03ecba5516e3efb6b2994b1b4e8956ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
/*
 * 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<String, Object> 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.
     *
     * <b>NOTE: </b> 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.
     *
     * <b>NOTE: </b> Unit is in kbps.
     *
     * @return max bitrate in kbps
     */
    public Integer getMaxBitrate() {
        return getInteger(KEY_MAX_BITRATE);
    }

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

    public List<VideoStreamingFormat> getSupportedFormats() {
        return (List<VideoStreamingFormat>) 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<VideoStreamingCapability> getAdditionalVideoStreamingCapabilities() {
        return (List<VideoStreamingCapability>) 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<VideoStreamingCapability> 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<VideoStreamingCapability> 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);
    }
}