blob: ed3e265c0cff00299861b8953bf521635e94eab8 [file] [log] [blame]
Andreas Huberb2063192010-06-10 11:09:36 -07001/*
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 NU_CACHED_SOURCE_2_H_
18
19#define NU_CACHED_SOURCE_2_H_
20
21#include <media/stagefright/foundation/ABase.h>
22#include <media/stagefright/foundation/AHandlerReflector.h>
23#include <media/stagefright/DataSource.h>
24
25namespace android {
26
27struct ALooper;
28struct PageCache;
29
30struct NuCachedSource2 : public DataSource {
31 NuCachedSource2(const sp<DataSource> &source);
32
33 virtual status_t initCheck() const;
34
James Dongb1262a82010-11-16 14:04:54 -080035 virtual ssize_t readAt(off64_t offset, void *data, size_t size);
Andreas Huberb2063192010-06-10 11:09:36 -070036
James Dongb1262a82010-11-16 14:04:54 -080037 virtual status_t getSize(off64_t *size);
Andreas Huberb2063192010-06-10 11:09:36 -070038 virtual uint32_t flags();
39
Gloria Wangae775272011-02-24 16:40:57 -080040 virtual sp<DecryptHandle> DrmInitialization();
41 virtual void getDrmInfo(sp<DecryptHandle> &handle, DrmManagerClient **client);
Gloria Wang43cd12d2010-11-09 15:06:51 -080042 virtual String8 getUri();
Andreas Hubera2e57ca2011-03-30 11:15:27 -070043
44 virtual String8 getMIMEType() const;
45
Andreas Huberb2063192010-06-10 11:09:36 -070046 ////////////////////////////////////////////////////////////////////////////
47
48 size_t cachedSize();
Bryan Mawhinneye26275b2011-01-18 19:12:21 +000049 size_t approxDataRemaining(status_t *finalStatus);
Andreas Huberb2063192010-06-10 11:09:36 -070050
Andreas Huber10b920c2010-11-11 15:37:17 -080051 void resumeFetchingIfNecessary();
52
Andreas Huberb2063192010-06-10 11:09:36 -070053protected:
54 virtual ~NuCachedSource2();
55
56private:
57 friend struct AHandlerReflector<NuCachedSource2>;
58
59 enum {
Andreas Huber909a8cf2010-06-25 10:44:24 -070060 kPageSize = 65536,
Andreas Huber52c78322011-01-11 15:05:28 -080061 kHighWaterThreshold = 20 * 1024 * 1024,
62 kLowWaterThreshold = 4 * 1024 * 1024,
Andreas Hubera48675402010-06-22 08:57:34 -070063
64 // Read data after a 15 sec timeout whether we're actively
65 // fetching or not.
66 kKeepAliveIntervalUs = 15000000,
Andreas Huberb2063192010-06-10 11:09:36 -070067 };
68
69 enum {
70 kWhatFetchMore = 'fetc',
71 kWhatRead = 'read',
72 };
73
74 sp<DataSource> mSource;
75 sp<AHandlerReflector<NuCachedSource2> > mReflector;
76 sp<ALooper> mLooper;
77
78 Mutex mSerializer;
79 Mutex mLock;
80 Condition mCondition;
81
82 PageCache *mCache;
James Dongb1262a82010-11-16 14:04:54 -080083 off64_t mCacheOffset;
Andreas Huberb2063192010-06-10 11:09:36 -070084 status_t mFinalStatus;
James Dongb1262a82010-11-16 14:04:54 -080085 off64_t mLastAccessPos;
Andreas Huberb2063192010-06-10 11:09:36 -070086 sp<AMessage> mAsyncResult;
87 bool mFetching;
Andreas Hubera48675402010-06-22 08:57:34 -070088 int64_t mLastFetchTimeUs;
Andreas Huberb2063192010-06-10 11:09:36 -070089
90 void onMessageReceived(const sp<AMessage> &msg);
91 void onFetch();
92 void onRead(const sp<AMessage> &msg);
Andreas Huberb2063192010-06-10 11:09:36 -070093
94 void fetchInternal();
James Dongb1262a82010-11-16 14:04:54 -080095 ssize_t readInternal(off64_t offset, void *data, size_t size);
96 status_t seekInternal_l(off64_t offset);
Andreas Huberb2063192010-06-10 11:09:36 -070097
Bryan Mawhinneye26275b2011-01-18 19:12:21 +000098 size_t approxDataRemaining_l(status_t *finalStatus);
Andreas Huberbb32a942011-04-19 10:04:08 -070099
100 void restartPrefetcherIfNecessary_l(
101 bool ignoreLowWaterThreshold = false, bool force = false);
Andreas Huberb2063192010-06-10 11:09:36 -0700102
103 DISALLOW_EVIL_CONSTRUCTORS(NuCachedSource2);
104};
105
106} // namespace android
107
108#endif // NU_CACHED_SOURCE_2_H_