Andreas Huber | 20111aa | 2009-07-14 16:56:47 -0700 | [diff] [blame] | 1 | /* |
Dongwon Kang | 9c6f790 | 2019-10-14 11:16:39 -0700 | [diff] [blame] | 2 | * Copyright (C) 2018 The Android Open Source Project |
Andreas Huber | 20111aa | 2009-07-14 16:56:47 -0700 | [diff] [blame] | 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 | |
Dongwon Kang | 9c6f790 | 2019-10-14 11:16:39 -0700 | [diff] [blame] | 23 | #include <media/DataSource.h> |
Andreas Huber | 20111aa | 2009-07-14 16:56:47 -0700 | [diff] [blame] | 24 | #include <media/stagefright/MediaErrors.h> |
| 25 | #include <utils/threads.h> |
| 26 | |
| 27 | namespace android { |
| 28 | |
Dongwon Kang | 9c6f790 | 2019-10-14 11:16:39 -0700 | [diff] [blame] | 29 | class FileSource : public DataSource { |
Andreas Huber | 20111aa | 2009-07-14 16:56:47 -0700 | [diff] [blame] | 30 | public: |
| 31 | FileSource(const char *filename); |
Glenn Kasten | 2301acc | 2014-01-17 10:21:00 -0800 | [diff] [blame] | 32 | // FileSource takes ownership and will close the fd |
Andreas Huber | 03475f5 | 2009-11-16 15:34:01 -0800 | [diff] [blame] | 33 | FileSource(int fd, int64_t offset, int64_t length); |
Andreas Huber | 34769bc | 2009-10-23 10:22:30 -0700 | [diff] [blame] | 34 | |
Dongwon Kang | 9c6f790 | 2019-10-14 11:16:39 -0700 | [diff] [blame] | 35 | virtual status_t initCheck() const; |
| 36 | |
James Dong | c7fc37a | 2010-11-16 14:04:54 -0800 | [diff] [blame] | 37 | virtual ssize_t readAt(off64_t offset, void *data, size_t size); |
Andreas Huber | 34769bc | 2009-10-23 10:22:30 -0700 | [diff] [blame] | 38 | |
Dongwon Kang | 9c6f790 | 2019-10-14 11:16:39 -0700 | [diff] [blame] | 39 | virtual status_t getSize(off64_t *size); |
Gloria Wang | dcd25ef | 2010-06-22 13:55:38 -0700 | [diff] [blame] | 40 | |
Dongwon Kang | 9c6f790 | 2019-10-14 11:16:39 -0700 | [diff] [blame] | 41 | virtual uint32_t flags() { |
| 42 | return kIsLocalFileSource; |
| 43 | } |
| 44 | |
| 45 | virtual String8 toString() { |
| 46 | return mName; |
| 47 | } |
Andy Hung | d49dbd6 | 2016-07-07 14:20:35 -0700 | [diff] [blame] | 48 | |
Andreas Huber | 34769bc | 2009-10-23 10:22:30 -0700 | [diff] [blame] | 49 | protected: |
Andreas Huber | 20111aa | 2009-07-14 16:56:47 -0700 | [diff] [blame] | 50 | virtual ~FileSource(); |
Dongwon Kang | 9c6f790 | 2019-10-14 11:16:39 -0700 | [diff] [blame] | 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; |
Andreas Huber | 20111aa | 2009-07-14 16:56:47 -0700 | [diff] [blame] | 57 | |
Andreas Huber | 20111aa | 2009-07-14 16:56:47 -0700 | [diff] [blame] | 58 | private: |
Dongwon Kang | 9c6f790 | 2019-10-14 11:16:39 -0700 | [diff] [blame] | 59 | String8 mName; |
Gloria Wang | dcd25ef | 2010-06-22 13:55:38 -0700 | [diff] [blame] | 60 | |
Andreas Huber | 20111aa | 2009-07-14 16:56:47 -0700 | [diff] [blame] | 61 | FileSource(const FileSource &); |
| 62 | FileSource &operator=(const FileSource &); |
| 63 | }; |
| 64 | |
| 65 | } // namespace android |
| 66 | |
| 67 | #endif // FILE_SOURCE_H_ |
| 68 | |