blob: b1038bc7d69220edcf955b0a117b22de24439200 [file] [log] [blame]
Henry Fanga9f93652019-10-11 17:30:15 -07001/*
2 * Copyright (C) 2019 The Android Open Source Project
3 *
4 icensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17//#define LOG_NDEBUG 0
18#define LOG_TAG "android.hardware.cas@1.1-CasImpl"
19
20#include <android/hardware/cas/1.1/ICasListener.h>
21#include <android/hardware/cas/1.2/ICasListener.h>
22#include <media/cas/CasAPI.h>
23#include <utils/Log.h>
24
25#include "CasImpl.h"
26#include "SharedLibrary.h"
27#include "TypeConvert.h"
28
29namespace android {
30namespace hardware {
31namespace cas {
32namespace V1_1 {
33namespace implementation {
34
35CasImpl::CasImpl(const sp<ICasListener>& listener) : mListener(listener) {
36 ALOGV("CTOR");
37}
38
39CasImpl::~CasImpl() {
40 ALOGV("DTOR");
41 release();
42}
43
44// static
45void CasImpl::OnEvent(void* appData, int32_t event, int32_t arg, uint8_t* data, size_t size) {
46 if (appData == NULL) {
47 ALOGE("Invalid appData!");
48 return;
49 }
50 CasImpl* casImpl = static_cast<CasImpl*>(appData);
51 casImpl->onEvent(event, arg, data, size);
52}
53
54// static
55void CasImpl::CallBackExt(void* appData, int32_t event, int32_t arg, uint8_t* data, size_t size,
56 const CasSessionId* sessionId) {
57 if (appData == NULL) {
58 ALOGE("Invalid appData!");
59 return;
60 }
61 CasImpl* casImpl = static_cast<CasImpl*>(appData);
62 casImpl->onEvent(sessionId, event, arg, data, size);
63}
64
65// static
66void CasImpl::StatusUpdate(void* appData, int32_t event, int32_t arg) {
67 if (appData == NULL) {
68 ALOGE("Invalid appData!");
69 return;
70 }
71 CasImpl* casImpl = static_cast<CasImpl*>(appData);
72 casImpl->onStatusUpdate(event, arg);
73}
74
75void CasImpl::init(const sp<SharedLibrary>& library, CasPlugin* plugin) {
76 mLibrary = library;
77 std::shared_ptr<CasPlugin> holder(plugin);
78 std::atomic_store(&mPluginHolder, holder);
79}
80
81void CasImpl::onEvent(int32_t event, int32_t arg, uint8_t* data, size_t size) {
82 if (mListener == NULL) {
83 return;
84 }
85
86 HidlCasData eventData;
87 if (data != NULL) {
88 eventData.setToExternal(data, size);
89 }
90
91 mListener->onEvent(event, arg, eventData);
92}
93
94void CasImpl::onEvent(const CasSessionId* sessionId, int32_t event, int32_t arg, uint8_t* data,
95 size_t size) {
96 if (mListener == NULL) {
97 return;
98 }
99
100 HidlCasData eventData;
101 if (data != NULL) {
102 eventData.setToExternal(data, size);
103 }
104
105 if (sessionId != NULL) {
106 mListener->onSessionEvent(*sessionId, event, arg, eventData);
107 } else {
108 mListener->onEvent(event, arg, eventData);
109 }
110}
111
112void CasImpl::onStatusUpdate(int32_t event, int32_t arg) {
113 if (mListener == NULL) {
114 return;
115 }
116 sp<V1_2::ICasListener> listenerV1_2 = V1_2::ICasListener::castFrom(mListener);
117
118 if (listenerV1_2 != NULL) {
119 listenerV1_2->onStatusUpdate(static_cast<StatusEvent>(event), arg);
120 }
121}
122
123Return<Status> CasImpl::setPluginStatusUpdateCallback() {
124 ALOGV("%s", __FUNCTION__);
125 std::shared_ptr<CasPlugin> holder = std::atomic_load(&mPluginHolder);
126 if (holder.get() == nullptr) {
127 return toStatus(INVALID_OPERATION);
128 }
129 return toStatus(holder->setStatusCallback(&CasImpl::StatusUpdate));
130}
131
132Return<Status> CasImpl::setPrivateData(const HidlCasData& pvtData) {
133 ALOGV("%s", __FUNCTION__);
134 std::shared_ptr<CasPlugin> holder = std::atomic_load(&mPluginHolder);
135 if (holder.get() == nullptr) {
136 return toStatus(INVALID_OPERATION);
137 }
138 return toStatus(holder->setPrivateData(pvtData));
139}
140
141Return<void> CasImpl::openSession(openSession_cb _hidl_cb) {
142 ALOGV("%s", __FUNCTION__);
143 CasSessionId sessionId;
144
145 std::shared_ptr<CasPlugin> holder = std::atomic_load(&mPluginHolder);
146 status_t err = INVALID_OPERATION;
147 if (holder.get() != nullptr) {
148 err = holder->openSession(&sessionId);
149 holder.reset();
150 }
151
152 _hidl_cb(toStatus(err), sessionId);
153
154 return Void();
155}
156
157Return<void> CasImpl::openSession_1_2(const SessionIntent intent, const ScramblingMode mode,
158 openSession_1_2_cb _hidl_cb) {
159 ALOGV("%s", __FUNCTION__);
160 CasSessionId sessionId;
161
162 std::shared_ptr<CasPlugin> holder = std::atomic_load(&mPluginHolder);
163 status_t err = INVALID_OPERATION;
164 if (holder.get() != nullptr) {
165 err = holder->openSession(static_cast<uint32_t>(intent), static_cast<uint32_t>(mode),
166 &sessionId);
167 holder.reset();
168 }
169
170 _hidl_cb(toStatus_1_2(err), sessionId);
171
172 return Void();
173}
174
175Return<Status> CasImpl::setSessionPrivateData(const HidlCasSessionId& sessionId,
176 const HidlCasData& pvtData) {
Tomasz Wasilczyk3e74f0b2023-08-11 16:04:23 +0000177 ALOGV("%s: sessionId=%s", __FUNCTION__, sessionIdToString(sessionId).c_str());
Henry Fanga9f93652019-10-11 17:30:15 -0700178 std::shared_ptr<CasPlugin> holder = std::atomic_load(&mPluginHolder);
179 if (holder.get() == nullptr) {
180 return toStatus(INVALID_OPERATION);
181 }
182 return toStatus(holder->setSessionPrivateData(sessionId, pvtData));
183}
184
185Return<Status> CasImpl::closeSession(const HidlCasSessionId& sessionId) {
Tomasz Wasilczyk3e74f0b2023-08-11 16:04:23 +0000186 ALOGV("%s: sessionId=%s", __FUNCTION__, sessionIdToString(sessionId).c_str());
Henry Fanga9f93652019-10-11 17:30:15 -0700187 std::shared_ptr<CasPlugin> holder = std::atomic_load(&mPluginHolder);
188 if (holder.get() == nullptr) {
189 return toStatus(INVALID_OPERATION);
190 }
191 return toStatus(holder->closeSession(sessionId));
192}
193
194Return<Status> CasImpl::processEcm(const HidlCasSessionId& sessionId, const HidlCasData& ecm) {
Tomasz Wasilczyk3e74f0b2023-08-11 16:04:23 +0000195 ALOGV("%s: sessionId=%s", __FUNCTION__, sessionIdToString(sessionId).c_str());
Henry Fanga9f93652019-10-11 17:30:15 -0700196 std::shared_ptr<CasPlugin> holder = std::atomic_load(&mPluginHolder);
197 if (holder.get() == nullptr) {
198 return toStatus(INVALID_OPERATION);
199 }
200
201 return toStatus(holder->processEcm(sessionId, ecm));
202}
203
204Return<Status> CasImpl::processEmm(const HidlCasData& emm) {
205 ALOGV("%s", __FUNCTION__);
206 std::shared_ptr<CasPlugin> holder = std::atomic_load(&mPluginHolder);
207 if (holder.get() == nullptr) {
208 return toStatus(INVALID_OPERATION);
209 }
210
211 return toStatus(holder->processEmm(emm));
212}
213
214Return<Status> CasImpl::sendEvent(int32_t event, int32_t arg, const HidlCasData& eventData) {
215 ALOGV("%s", __FUNCTION__);
216 std::shared_ptr<CasPlugin> holder = std::atomic_load(&mPluginHolder);
217 if (holder.get() == nullptr) {
218 return toStatus(INVALID_OPERATION);
219 }
220
221 status_t err = holder->sendEvent(event, arg, eventData);
222 return toStatus(err);
223}
224
225Return<Status> CasImpl::sendSessionEvent(const HidlCasSessionId& sessionId, int32_t event,
226 int32_t arg, const HidlCasData& eventData) {
227 ALOGV("%s", __FUNCTION__);
228 std::shared_ptr<CasPlugin> holder = std::atomic_load(&mPluginHolder);
229 if (holder.get() == nullptr) {
230 return toStatus(INVALID_OPERATION);
231 }
232
233 status_t err = holder->sendSessionEvent(sessionId, event, arg, eventData);
234 return toStatus(err);
235}
236
237Return<Status> CasImpl::provision(const hidl_string& provisionString) {
238 ALOGV("%s: provisionString=%s", __FUNCTION__, provisionString.c_str());
239 std::shared_ptr<CasPlugin> holder = std::atomic_load(&mPluginHolder);
240 if (holder.get() == nullptr) {
241 return toStatus(INVALID_OPERATION);
242 }
243
244 return toStatus(holder->provision(String8(provisionString.c_str())));
245}
246
247Return<Status> CasImpl::refreshEntitlements(int32_t refreshType, const HidlCasData& refreshData) {
248 ALOGV("%s", __FUNCTION__);
249 std::shared_ptr<CasPlugin> holder = std::atomic_load(&mPluginHolder);
250 if (holder.get() == nullptr) {
251 return toStatus(INVALID_OPERATION);
252 }
253
254 status_t err = holder->refreshEntitlements(refreshType, refreshData);
255 return toStatus(err);
256}
257
258Return<Status> CasImpl::release() {
259 ALOGV("%s: plugin=%p", __FUNCTION__, mPluginHolder.get());
260
261 std::shared_ptr<CasPlugin> holder(nullptr);
262 std::atomic_store(&mPluginHolder, holder);
263
264 return Status::OK;
265}
266
267} // namespace implementation
268} // namespace V1_1
269} // namespace cas
270} // namespace hardware
271} // namespace android