blob: be83748d7463297a02524d085b32aef5c587fb47 [file] [log] [blame]
Dongwon Kang1e1bcaa2018-08-01 12:44:46 -07001/*
2 * Copyright (C) 2018 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 CLEAR_FILE_SOURCE_H_
18
19#define CLEAR_FILE_SOURCE_H_
20
21#include <stdio.h>
22
23#include <media/DataSource.h>
24#include <media/stagefright/MediaErrors.h>
25#include <utils/threads.h>
26
27namespace android {
28
29class ClearFileSource : public DataSource {
30public:
31 ClearFileSource(const char *filename);
32 // ClearFileSource takes ownership and will close the fd
33 ClearFileSource(int fd, int64_t offset, int64_t length);
34
35 virtual status_t initCheck() const;
36
37 virtual ssize_t readAt(off64_t offset, void *data, size_t size);
38
39 virtual status_t getSize(off64_t *size);
40
41 virtual uint32_t flags() {
42 return kIsLocalFileSource;
43 }
44
45 virtual String8 toString() {
46 return mName;
47 }
48
49protected:
50 virtual ~ClearFileSource();
51 virtual ssize_t readAt_l(off64_t offset, void *data, size_t size);
52
53 int mFd;
54 int64_t mOffset;
55 int64_t mLength;
56 Mutex mLock;
57
58private:
59 String8 mName;
60
61 ClearFileSource(const ClearFileSource &);
62 ClearFileSource &operator=(const ClearFileSource &);
63};
64
65} // namespace android
66
67#endif // CLEAR_FILE_SOURCE_H_
68