summaryrefslogtreecommitdiff
path: root/android/media/MediaCasStateException.java
blob: 26c57923912d1244eb8a10671626a61034281687 (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
/*
 * Copyright (C) 2017 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package android.media;

import android.annotation.NonNull;
import android.annotation.Nullable;

import android.hardware.cas.V1_0.Status;

/**
 * Base class for MediaCas runtime exceptions
 */
public class MediaCasStateException extends IllegalStateException {
    private final int mErrorCode;
    private final String mDiagnosticInfo;

    private MediaCasStateException(int err, @Nullable String msg, @Nullable String diagnosticInfo) {
        super(msg);
        mErrorCode = err;
        mDiagnosticInfo = diagnosticInfo;
    }

    static void throwExceptionIfNeeded(int err) {
        throwExceptionIfNeeded(err, null /* msg */);
    }

    static void throwExceptionIfNeeded(int err, @Nullable String msg) {
        if (err == Status.OK) {
            return;
        }
        if (err == Status.BAD_VALUE) {
            throw new IllegalArgumentException();
        }

        String diagnosticInfo = "";
        switch (err) {
        case Status.ERROR_CAS_UNKNOWN:
            diagnosticInfo = "General CAS error";
            break;
        case Status.ERROR_CAS_NO_LICENSE:
            diagnosticInfo = "No license";
            break;
        case Status.ERROR_CAS_LICENSE_EXPIRED:
            diagnosticInfo = "License expired";
            break;
        case Status.ERROR_CAS_SESSION_NOT_OPENED:
            diagnosticInfo = "Session not opened";
            break;
        case Status.ERROR_CAS_CANNOT_HANDLE:
            diagnosticInfo = "Unsupported scheme or data format";
            break;
        case Status.ERROR_CAS_INVALID_STATE:
            diagnosticInfo = "Invalid CAS state";
            break;
        case Status.ERROR_CAS_INSUFFICIENT_OUTPUT_PROTECTION:
            diagnosticInfo = "Insufficient output protection";
            break;
        case Status.ERROR_CAS_TAMPER_DETECTED:
            diagnosticInfo = "Tamper detected";
            break;
        case Status.ERROR_CAS_DECRYPT_UNIT_NOT_INITIALIZED:
            diagnosticInfo = "Not initialized";
            break;
        case Status.ERROR_CAS_DECRYPT:
            diagnosticInfo = "Decrypt error";
            break;
        default:
            diagnosticInfo = "Unknown CAS state exception";
            break;
        }
        throw new MediaCasStateException(err, msg,
                String.format("%s (err=%d)", diagnosticInfo, err));
    }

    /**
     * Retrieve the associated error code
     *
     * @hide
     */
    public int getErrorCode() {
        return mErrorCode;
    }

    /**
     * Retrieve a developer-readable diagnostic information string
     * associated with the exception. Do not show this to end-users,
     * since this string will not be localized or generally comprehensible
     * to end-users.
     */
    @NonNull
    public String getDiagnosticInfo() {
        return mDiagnosticInfo;
    }
}