blob: 3aecb3d35c80628c5df7ee2e22d8db0417ae705d [file] [log] [blame]
aimitakeshid074e302010-07-29 10:12:27 +09001/*
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#include <drm/DrmRights.h>
Takeshi Aimidc549d62010-09-20 23:40:41 +090018#include <ReadWriteUtils.h>
aimitakeshid074e302010-07-29 10:12:27 +090019
20using namespace android;
21
22DrmRights::DrmRights(const String8& rightsFilePath, const String8& mimeType,
Takeshi Aimidc549d62010-09-20 23:40:41 +090023 const String8& accountId, const String8& subscriptionId) :
24 mMimeType(mimeType),
25 mAccountId(accountId),
26 mSubscriptionId(subscriptionId),
27 mRightsFromFile(NULL) {
28 int rightsLength = 0;
29 if (String8("") != rightsFilePath) {
30 rightsLength = ReadWriteUtils::readBytes(rightsFilePath, &mRightsFromFile);
31 }
32 mData = DrmBuffer(mRightsFromFile, rightsLength);
aimitakeshid074e302010-07-29 10:12:27 +090033}
34
35DrmRights::DrmRights(const DrmBuffer& rightsData, const String8& mimeType,
36 const String8& accountId, const String8& subscriptionId) :
37 mData(rightsData),
38 mMimeType(mimeType),
39 mAccountId(accountId),
Takeshi Aimidc549d62010-09-20 23:40:41 +090040 mSubscriptionId(subscriptionId),
41 mRightsFromFile(NULL) {
42}
43
44DrmRights::~DrmRights() {
45 delete[] mRightsFromFile; mRightsFromFile = NULL;
aimitakeshid074e302010-07-29 10:12:27 +090046}
47
48const DrmBuffer& DrmRights::getData(void) const {
49 return mData;
50}
51
52String8 DrmRights::getMimeType(void) const {
53 return mMimeType;
54}
55
56String8 DrmRights::getAccountId(void) const {
57 return mAccountId;
58}
59
60String8 DrmRights::getSubscriptionId(void) const {
61 return mSubscriptionId;
62}
63