blob: 412b5576c5144bd4a0a20230bd4291cb81cba85f [file] [log] [blame]
Jeff Tinkerb075caa2016-12-06 23:15:20 -08001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed 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 */
Jeff Tinkerda002fe2017-01-19 14:41:11 -080016#ifndef ANDROID_HARDWARE_DRM_V1_0__CRYPTOFACTORY_H
17#define ANDROID_HARDWARE_DRM_V1_0__CRYPTOFACTORY_H
Jeff Tinkerb075caa2016-12-06 23:15:20 -080018
Jeff Tinkerda002fe2017-01-19 14:41:11 -080019#include <android/hardware/drm/1.0/ICryptoFactory.h>
Jeff Tinkerb075caa2016-12-06 23:15:20 -080020#include <hidl/Status.h>
21#include <media/hardware/CryptoAPI.h>
22#include <media/PluginLoader.h>
23#include <media/SharedLibrary.h>
24
25namespace android {
26namespace hardware {
27namespace drm {
Jeff Tinkerb075caa2016-12-06 23:15:20 -080028namespace V1_0 {
29namespace implementation {
30
Jeff Tinkerda002fe2017-01-19 14:41:11 -080031using ::android::hardware::drm::V1_0::ICryptoFactory;
32using ::android::hardware::drm::V1_0::ICryptoPlugin;
Jeff Tinkerb075caa2016-12-06 23:15:20 -080033using ::android::hardware::hidl_array;
34using ::android::hardware::hidl_string;
35using ::android::hardware::hidl_vec;
36using ::android::hardware::Return;
37using ::android::hardware::Void;
38using ::android::sp;
39
40struct CryptoFactory : public ICryptoFactory {
41 CryptoFactory();
42 virtual ~CryptoFactory() {}
43
Jeff Tinker9a33bb22017-02-14 21:04:31 +000044 // Methods from ::android::hardware::drm::V1_0::ICryptoFactory follow.
45
Jeff Tinkerb075caa2016-12-06 23:15:20 -080046 Return<bool> isCryptoSchemeSupported(const hidl_array<uint8_t, 16>& uuid)
47 override;
48
49 Return<void> createPlugin(const hidl_array<uint8_t, 16>& uuid,
50 const hidl_vec<uint8_t>& initData, createPlugin_cb _hidl_cb)
51 override;
52
53private:
Jeff Tinker9a33bb22017-02-14 21:04:31 +000054 android::PluginLoader<android::CryptoFactory> loader;
Jeff Tinkerb075caa2016-12-06 23:15:20 -080055
56 CryptoFactory(const CryptoFactory &) = delete;
57 void operator=(const CryptoFactory &) = delete;
58};
59
60extern "C" ICryptoFactory* HIDL_FETCH_ICryptoFactory(const char* name);
61
62} // namespace implementation
63} // namespace V1_0
Jeff Tinkerb075caa2016-12-06 23:15:20 -080064} // namespace drm
65} // namespace hardware
66} // namespace android
67
Jeff Tinkerda002fe2017-01-19 14:41:11 -080068#endif // ANDROID_HARDWARE_DRM_V1_0__CRYPTOFACTORY_H