blob: 51a434324a1542c0fccbcd37c815036eeb33a634 [file] [log] [blame]
Andreas Hubere46b7be2009-07-14 16:56:47 -07001/*
2 * Copyright (C) 2009 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 FILE_SOURCE_H_
18
19#define FILE_SOURCE_H_
20
21#include <stdio.h>
22
23#include <media/stagefright/DataSource.h>
24#include <media/stagefright/MediaErrors.h>
25#include <utils/threads.h>
Gloria Wangd5770912010-06-22 13:55:38 -070026#include <drm/DrmManagerClient.h>
Andreas Hubere46b7be2009-07-14 16:56:47 -070027
28namespace android {
29
30class FileSource : public DataSource {
31public:
32 FileSource(const char *filename);
Andreas Huber744043f2009-11-16 15:34:01 -080033 FileSource(int fd, int64_t offset, int64_t length);
Andreas Huber9a12baf2009-10-23 10:22:30 -070034
35 virtual status_t initCheck() const;
36
James Dongb1262a82010-11-16 14:04:54 -080037 virtual ssize_t readAt(off64_t offset, void *data, size_t size);
Andreas Huber9a12baf2009-10-23 10:22:30 -070038
James Dongb1262a82010-11-16 14:04:54 -080039 virtual status_t getSize(off64_t *size);
Andreas Huber744043f2009-11-16 15:34:01 -080040
Gloria Wangc2dc4722011-02-07 11:41:11 -080041 virtual DecryptHandle* DrmInitialization();
Gloria Wangd5770912010-06-22 13:55:38 -070042
43 virtual void getDrmInfo(DecryptHandle **handle, DrmManagerClient **client);
44
Andreas Huber9a12baf2009-10-23 10:22:30 -070045protected:
Andreas Hubere46b7be2009-07-14 16:56:47 -070046 virtual ~FileSource();
47
Andreas Hubere46b7be2009-07-14 16:56:47 -070048private:
Gloria Wangd5770912010-06-22 13:55:38 -070049 int mFd;
Andreas Huber744043f2009-11-16 15:34:01 -080050 int64_t mOffset;
51 int64_t mLength;
Andreas Hubere46b7be2009-07-14 16:56:47 -070052 Mutex mLock;
53
Gloria Wangd5770912010-06-22 13:55:38 -070054 /*for DRM*/
55 DecryptHandle *mDecryptHandle;
56 DrmManagerClient *mDrmManagerClient;
57 int64_t mDrmBufOffset;
58 int64_t mDrmBufSize;
59 unsigned char *mDrmBuf;
60
James Dongb1262a82010-11-16 14:04:54 -080061 ssize_t readAtDRM(off64_t offset, void *data, size_t size);
Gloria Wangd5770912010-06-22 13:55:38 -070062
Andreas Hubere46b7be2009-07-14 16:56:47 -070063 FileSource(const FileSource &);
64 FileSource &operator=(const FileSource &);
65};
66
67} // namespace android
68
69#endif // FILE_SOURCE_H_
70