aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010 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 | */ |
| 16 | |
| 17 | #ifndef __IDRM_MANAGER_SERVICE_H__ |
| 18 | #define __IDRM_MANAGER_SERVICE_H__ |
| 19 | |
| 20 | #include <utils/RefBase.h> |
| 21 | #include <binder/IInterface.h> |
| 22 | #include <binder/Parcel.h> |
| 23 | #include <drm/drm_framework_common.h> |
| 24 | #include "IDrmServiceListener.h" |
| 25 | |
| 26 | namespace android { |
| 27 | |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 28 | class DrmConstraints; |
Takeshi Aimi | 3473846 | 2010-11-16 13:56:11 +0900 | [diff] [blame] | 29 | class DrmMetadata; |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 30 | class DrmRights; |
| 31 | class DrmInfo; |
| 32 | class DrmInfoStatus; |
| 33 | class DrmInfoRequest; |
| 34 | class DrmSupportInfo; |
| 35 | class DrmConvertedStatus; |
| 36 | class String8; |
| 37 | class ActionDescription; |
| 38 | |
| 39 | /** |
| 40 | * This is the interface class for DRM Manager service. |
| 41 | * |
| 42 | */ |
| 43 | class IDrmManagerService : public IInterface |
| 44 | { |
| 45 | public: |
| 46 | enum { |
Takeshi Aimi | 2272ee2 | 2010-09-20 23:40:41 +0900 | [diff] [blame] | 47 | ADD_UNIQUEID = IBinder::FIRST_CALL_TRANSACTION, |
| 48 | REMOVE_UNIQUEID, |
Takeshi Aimi | e943f84 | 2010-10-08 23:05:49 +0900 | [diff] [blame] | 49 | ADD_CLIENT, |
| 50 | REMOVE_CLIENT, |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 51 | SET_DRM_SERVICE_LISTENER, |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 52 | INSTALL_DRM_ENGINE, |
| 53 | GET_CONSTRAINTS_FROM_CONTENT, |
Takeshi Aimi | 3473846 | 2010-11-16 13:56:11 +0900 | [diff] [blame] | 54 | GET_METADATA_FROM_CONTENT, |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 55 | CAN_HANDLE, |
| 56 | PROCESS_DRM_INFO, |
| 57 | ACQUIRE_DRM_INFO, |
| 58 | SAVE_RIGHTS, |
| 59 | GET_ORIGINAL_MIMETYPE, |
| 60 | GET_DRM_OBJECT_TYPE, |
| 61 | CHECK_RIGHTS_STATUS, |
| 62 | CONSUME_RIGHTS, |
| 63 | SET_PLAYBACK_STATUS, |
| 64 | VALIDATE_ACTION, |
| 65 | REMOVE_RIGHTS, |
| 66 | REMOVE_ALL_RIGHTS, |
| 67 | OPEN_CONVERT_SESSION, |
| 68 | CONVERT_DATA, |
| 69 | CLOSE_CONVERT_SESSION, |
| 70 | GET_ALL_SUPPORT_INFO, |
| 71 | OPEN_DECRYPT_SESSION, |
Takeshi Aimi | e943f84 | 2010-10-08 23:05:49 +0900 | [diff] [blame] | 72 | OPEN_DECRYPT_SESSION_FROM_URI, |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 73 | CLOSE_DECRYPT_SESSION, |
| 74 | INITIALIZE_DECRYPT_UNIT, |
| 75 | DECRYPT, |
| 76 | FINALIZE_DECRYPT_UNIT, |
| 77 | PREAD |
| 78 | }; |
| 79 | |
| 80 | public: |
| 81 | DECLARE_META_INTERFACE(DrmManagerService); |
| 82 | |
| 83 | public: |
Gloria Wang | 8f00151 | 2011-07-21 15:10:22 -0700 | [diff] [blame] | 84 | virtual int addUniqueId(bool isNative) = 0; |
Takeshi Aimi | 2272ee2 | 2010-09-20 23:40:41 +0900 | [diff] [blame] | 85 | |
| 86 | virtual void removeUniqueId(int uniqueId) = 0; |
| 87 | |
Takeshi Aimi | e943f84 | 2010-10-08 23:05:49 +0900 | [diff] [blame] | 88 | virtual void addClient(int uniqueId) = 0; |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 89 | |
Takeshi Aimi | e943f84 | 2010-10-08 23:05:49 +0900 | [diff] [blame] | 90 | virtual void removeClient(int uniqueId) = 0; |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 91 | |
| 92 | virtual status_t setDrmServiceListener( |
| 93 | int uniqueId, const sp<IDrmServiceListener>& infoListener) = 0; |
| 94 | |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 95 | virtual status_t installDrmEngine(int uniqueId, const String8& drmEngineFile) = 0; |
| 96 | |
| 97 | virtual DrmConstraints* getConstraints( |
| 98 | int uniqueId, const String8* path, const int action) = 0; |
| 99 | |
Takeshi Aimi | 3473846 | 2010-11-16 13:56:11 +0900 | [diff] [blame] | 100 | virtual DrmMetadata* getMetadata(int uniqueId, const String8* path) = 0; |
| 101 | |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 102 | virtual bool canHandle(int uniqueId, const String8& path, const String8& mimeType) = 0; |
| 103 | |
| 104 | virtual DrmInfoStatus* processDrmInfo(int uniqueId, const DrmInfo* drmInfo) = 0; |
| 105 | |
| 106 | virtual DrmInfo* acquireDrmInfo(int uniqueId, const DrmInfoRequest* drmInforequest) = 0; |
| 107 | |
Takeshi Aimi | 2272ee2 | 2010-09-20 23:40:41 +0900 | [diff] [blame] | 108 | virtual status_t saveRights(int uniqueId, const DrmRights& drmRights, |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 109 | const String8& rightsPath, const String8& contentPath) = 0; |
| 110 | |
| 111 | virtual String8 getOriginalMimeType(int uniqueId, const String8& path) = 0; |
| 112 | |
| 113 | virtual int getDrmObjectType( |
| 114 | int uniqueId, const String8& path, const String8& mimeType) = 0; |
| 115 | |
| 116 | virtual int checkRightsStatus(int uniqueId, const String8& path, int action) = 0; |
| 117 | |
Takeshi Aimi | 2272ee2 | 2010-09-20 23:40:41 +0900 | [diff] [blame] | 118 | virtual status_t consumeRights( |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 119 | int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) = 0; |
| 120 | |
Takeshi Aimi | 2272ee2 | 2010-09-20 23:40:41 +0900 | [diff] [blame] | 121 | virtual status_t setPlaybackStatus( |
Gloria Wang | a2cd44c | 2010-11-19 15:19:36 -0800 | [diff] [blame] | 122 | int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position) = 0; |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 123 | |
| 124 | virtual bool validateAction( |
| 125 | int uniqueId, const String8& path, |
| 126 | int action, const ActionDescription& description) = 0; |
| 127 | |
Takeshi Aimi | 2272ee2 | 2010-09-20 23:40:41 +0900 | [diff] [blame] | 128 | virtual status_t removeRights(int uniqueId, const String8& path) = 0; |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 129 | |
Takeshi Aimi | 2272ee2 | 2010-09-20 23:40:41 +0900 | [diff] [blame] | 130 | virtual status_t removeAllRights(int uniqueId) = 0; |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 131 | |
| 132 | virtual int openConvertSession(int uniqueId, const String8& mimeType) = 0; |
| 133 | |
| 134 | virtual DrmConvertedStatus* convertData( |
| 135 | int uniqueId, int convertId, const DrmBuffer* inputData) = 0; |
| 136 | |
| 137 | virtual DrmConvertedStatus* closeConvertSession(int uniqueId, int convertId) = 0; |
| 138 | |
| 139 | virtual status_t getAllSupportInfo( |
| 140 | int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray) = 0; |
| 141 | |
James Dong | 9d2f386 | 2012-01-10 08:24:37 -0800 | [diff] [blame^] | 142 | virtual DecryptHandle* openDecryptSession( |
| 143 | int uniqueId, int fd, off64_t offset, |
| 144 | off64_t length, const char* mime) = 0; |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 145 | |
James Dong | 9d2f386 | 2012-01-10 08:24:37 -0800 | [diff] [blame^] | 146 | virtual DecryptHandle* openDecryptSession( |
| 147 | int uniqueId, const char* uri, const char* mime) = 0; |
Takeshi Aimi | e943f84 | 2010-10-08 23:05:49 +0900 | [diff] [blame] | 148 | |
Takeshi Aimi | 2272ee2 | 2010-09-20 23:40:41 +0900 | [diff] [blame] | 149 | virtual status_t closeDecryptSession(int uniqueId, DecryptHandle* decryptHandle) = 0; |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 150 | |
Takeshi Aimi | 2272ee2 | 2010-09-20 23:40:41 +0900 | [diff] [blame] | 151 | virtual status_t initializeDecryptUnit(int uniqueId, DecryptHandle* decryptHandle, |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 152 | int decryptUnitId, const DrmBuffer* headerInfo) = 0; |
| 153 | |
Takeshi Aimi | 2272ee2 | 2010-09-20 23:40:41 +0900 | [diff] [blame] | 154 | virtual status_t decrypt(int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId, |
| 155 | const DrmBuffer* encBuffer, DrmBuffer** decBuffer, DrmBuffer* IV) = 0; |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 156 | |
Takeshi Aimi | 2272ee2 | 2010-09-20 23:40:41 +0900 | [diff] [blame] | 157 | virtual status_t finalizeDecryptUnit( |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 158 | int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId) = 0; |
| 159 | |
| 160 | virtual ssize_t pread(int uniqueId, DecryptHandle* decryptHandle, |
Gloria Wang | a2cd44c | 2010-11-19 15:19:36 -0800 | [diff] [blame] | 161 | void* buffer, ssize_t numBytes,off64_t offset) = 0; |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 162 | }; |
| 163 | |
| 164 | /** |
| 165 | * This is the Binder implementation class for DRM Manager service. |
| 166 | */ |
| 167 | class BpDrmManagerService: public BpInterface<IDrmManagerService> |
| 168 | { |
| 169 | public: |
| 170 | BpDrmManagerService(const sp<IBinder>& impl) |
| 171 | : BpInterface<IDrmManagerService>(impl) {} |
| 172 | |
Gloria Wang | 8f00151 | 2011-07-21 15:10:22 -0700 | [diff] [blame] | 173 | virtual int addUniqueId(bool isNative); |
Takeshi Aimi | 2272ee2 | 2010-09-20 23:40:41 +0900 | [diff] [blame] | 174 | |
| 175 | virtual void removeUniqueId(int uniqueId); |
| 176 | |
Takeshi Aimi | e943f84 | 2010-10-08 23:05:49 +0900 | [diff] [blame] | 177 | virtual void addClient(int uniqueId); |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 178 | |
Takeshi Aimi | e943f84 | 2010-10-08 23:05:49 +0900 | [diff] [blame] | 179 | virtual void removeClient(int uniqueId); |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 180 | |
| 181 | virtual status_t setDrmServiceListener( |
| 182 | int uniqueId, const sp<IDrmServiceListener>& infoListener); |
| 183 | |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 184 | virtual status_t installDrmEngine(int uniqueId, const String8& drmEngineFile); |
| 185 | |
| 186 | virtual DrmConstraints* getConstraints(int uniqueId, const String8* path, const int action); |
| 187 | |
Takeshi Aimi | 3473846 | 2010-11-16 13:56:11 +0900 | [diff] [blame] | 188 | virtual DrmMetadata* getMetadata(int uniqueId, const String8* path); |
| 189 | |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 190 | virtual bool canHandle(int uniqueId, const String8& path, const String8& mimeType); |
| 191 | |
| 192 | virtual DrmInfoStatus* processDrmInfo(int uniqueId, const DrmInfo* drmInfo); |
| 193 | |
| 194 | virtual DrmInfo* acquireDrmInfo(int uniqueId, const DrmInfoRequest* drmInforequest); |
| 195 | |
Takeshi Aimi | 2272ee2 | 2010-09-20 23:40:41 +0900 | [diff] [blame] | 196 | virtual status_t saveRights(int uniqueId, const DrmRights& drmRights, |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 197 | const String8& rightsPath, const String8& contentPath); |
| 198 | |
| 199 | virtual String8 getOriginalMimeType(int uniqueId, const String8& path); |
| 200 | |
| 201 | virtual int getDrmObjectType(int uniqueId, const String8& path, const String8& mimeType); |
| 202 | |
| 203 | virtual int checkRightsStatus(int uniqueId, const String8& path, int action); |
| 204 | |
Takeshi Aimi | 2272ee2 | 2010-09-20 23:40:41 +0900 | [diff] [blame] | 205 | virtual status_t consumeRights( |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 206 | int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve); |
| 207 | |
Takeshi Aimi | 2272ee2 | 2010-09-20 23:40:41 +0900 | [diff] [blame] | 208 | virtual status_t setPlaybackStatus( |
Gloria Wang | a2cd44c | 2010-11-19 15:19:36 -0800 | [diff] [blame] | 209 | int uniqueId, DecryptHandle* decryptHandle, int playbackStatus, int64_t position); |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 210 | |
| 211 | virtual bool validateAction( |
| 212 | int uniqueId, const String8& path, int action, const ActionDescription& description); |
| 213 | |
Takeshi Aimi | 2272ee2 | 2010-09-20 23:40:41 +0900 | [diff] [blame] | 214 | virtual status_t removeRights(int uniqueId, const String8& path); |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 215 | |
Takeshi Aimi | 2272ee2 | 2010-09-20 23:40:41 +0900 | [diff] [blame] | 216 | virtual status_t removeAllRights(int uniqueId); |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 217 | |
| 218 | virtual int openConvertSession(int uniqueId, const String8& mimeType); |
| 219 | |
| 220 | virtual DrmConvertedStatus* convertData( |
| 221 | int uniqueId, int convertId, const DrmBuffer* inputData); |
| 222 | |
| 223 | virtual DrmConvertedStatus* closeConvertSession(int uniqueId, int convertId); |
| 224 | |
| 225 | virtual status_t getAllSupportInfo( |
| 226 | int uniqueId, int* length, DrmSupportInfo** drmSupportInfoArray); |
| 227 | |
James Dong | 9d2f386 | 2012-01-10 08:24:37 -0800 | [diff] [blame^] | 228 | virtual DecryptHandle* openDecryptSession( |
| 229 | int uniqueId, int fd, off64_t offset, off64_t length, |
| 230 | const char* mime); |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 231 | |
James Dong | 9d2f386 | 2012-01-10 08:24:37 -0800 | [diff] [blame^] | 232 | virtual DecryptHandle* openDecryptSession( |
| 233 | int uniqueId, const char* uri, const char* mime); |
Takeshi Aimi | e943f84 | 2010-10-08 23:05:49 +0900 | [diff] [blame] | 234 | |
Takeshi Aimi | 2272ee2 | 2010-09-20 23:40:41 +0900 | [diff] [blame] | 235 | virtual status_t closeDecryptSession(int uniqueId, DecryptHandle* decryptHandle); |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 236 | |
Takeshi Aimi | 2272ee2 | 2010-09-20 23:40:41 +0900 | [diff] [blame] | 237 | virtual status_t initializeDecryptUnit(int uniqueId, DecryptHandle* decryptHandle, |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 238 | int decryptUnitId, const DrmBuffer* headerInfo); |
| 239 | |
Takeshi Aimi | 2272ee2 | 2010-09-20 23:40:41 +0900 | [diff] [blame] | 240 | virtual status_t decrypt(int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId, |
| 241 | const DrmBuffer* encBuffer, DrmBuffer** decBuffer, DrmBuffer* IV); |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 242 | |
Takeshi Aimi | 2272ee2 | 2010-09-20 23:40:41 +0900 | [diff] [blame] | 243 | virtual status_t finalizeDecryptUnit( |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 244 | int uniqueId, DecryptHandle* decryptHandle, int decryptUnitId); |
| 245 | |
| 246 | virtual ssize_t pread(int uniqueId, DecryptHandle* decryptHandle, |
Gloria Wang | a2cd44c | 2010-11-19 15:19:36 -0800 | [diff] [blame] | 247 | void* buffer, ssize_t numBytes, off64_t offset); |
aimitakeshi | 27ed8ad | 2010-07-29 10:12:27 +0900 | [diff] [blame] | 248 | }; |
| 249 | |
| 250 | /** |
| 251 | * This is the Binder implementation class for DRM Manager service. |
| 252 | */ |
| 253 | class BnDrmManagerService: public BnInterface<IDrmManagerService> |
| 254 | { |
| 255 | public: |
| 256 | virtual status_t onTransact( |
| 257 | uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags = 0); |
| 258 | }; |
| 259 | |
| 260 | }; |
| 261 | |
| 262 | #endif /* __IDRM_MANAGER_SERVICE_H__ */ |
| 263 | |