PlaylistFetcher.h revision 7d8e3ccfbf326b5e190b416590e956c2fc3021f7
1/*
2 * Copyright (C) 2012 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 PLAYLIST_FETCHER_H_
18
19#define PLAYLIST_FETCHER_H_
20
21#include <media/stagefright/foundation/AHandler.h>
22
23#include "mpeg2ts/ATSParser.h"
24#include "LiveSession.h"
25
26namespace android {
27
28struct ABuffer;
29struct AnotherPacketSource;
30struct DataSource;
31struct HTTPBase;
32struct LiveDataSource;
33struct M3UParser;
34struct String8;
35
36struct PlaylistFetcher : public AHandler {
37    enum {
38        kWhatStarted,
39        kWhatPaused,
40        kWhatStopped,
41        kWhatError,
42        kWhatDurationUpdate,
43        kWhatTemporarilyDoneFetching,
44        kWhatPrepared,
45        kWhatPreparationFailed,
46        kWhatStartedAt,
47    };
48
49    PlaylistFetcher(
50            const sp<AMessage> &notify,
51            const sp<LiveSession> &session,
52            const char *uri);
53
54    sp<DataSource> getDataSource();
55
56    void startAsync(
57            const sp<AnotherPacketSource> &audioSource,
58            const sp<AnotherPacketSource> &videoSource,
59            const sp<AnotherPacketSource> &subtitleSource,
60            int64_t startTimeUs = -1ll,
61            int64_t minStartTimeUs = 0ll /* start after this timestamp */,
62            int32_t startSeqNumberHint = -1 /* try starting at this sequence number */);
63
64    void pauseAsync();
65
66    void stopAsync(bool selfTriggered = false);
67
68    void resumeUntilAsync(const sp<AMessage> &params);
69
70protected:
71    virtual ~PlaylistFetcher();
72    virtual void onMessageReceived(const sp<AMessage> &msg);
73
74private:
75    enum {
76        kMaxNumRetries         = 5,
77    };
78
79    enum {
80        kWhatStart          = 'strt',
81        kWhatPause          = 'paus',
82        kWhatStop           = 'stop',
83        kWhatMonitorQueue   = 'moni',
84        kWhatResumeUntil    = 'rsme',
85        kWhatDownloadNext   = 'dlnx',
86    };
87
88    static const int64_t kMinBufferedDurationUs;
89    static const int64_t kMaxMonitorDelayUs;
90    static const int32_t kDownloadBlockSize;
91    static const int32_t kNumSkipFrames;
92
93    static bool bufferStartsWithTsSyncByte(const sp<ABuffer>& buffer);
94    static bool bufferStartsWithWebVTTMagicSequence(const sp<ABuffer>& buffer);
95
96    // notifications to mSession
97    sp<AMessage> mNotify;
98    sp<AMessage> mStartTimeUsNotify;
99
100    sp<LiveSession> mSession;
101    AString mURI;
102
103    uint32_t mStreamTypeMask;
104    int64_t mStartTimeUs;
105    int64_t mMinStartTimeUs; // start fetching no earlier than this value
106    sp<AMessage> mStopParams; // message containing the latest timestamps we should fetch.
107
108    KeyedVector<LiveSession::StreamType, sp<AnotherPacketSource> >
109        mPacketSources;
110
111    KeyedVector<AString, sp<ABuffer> > mAESKeyForURI;
112
113    int64_t mLastPlaylistFetchTimeUs;
114    sp<M3UParser> mPlaylist;
115    int32_t mSeqNumber;
116    int32_t mNumRetries;
117    bool mStartup;
118    bool mPrepared;
119    int64_t mNextPTSTimeUs;
120
121    int32_t mMonitorQueueGeneration;
122
123    enum RefreshState {
124        INITIAL_MINIMUM_RELOAD_DELAY,
125        FIRST_UNCHANGED_RELOAD_ATTEMPT,
126        SECOND_UNCHANGED_RELOAD_ATTEMPT,
127        THIRD_UNCHANGED_RELOAD_ATTEMPT
128    };
129    RefreshState mRefreshState;
130
131    uint8_t mPlaylistHash[16];
132
133    sp<ATSParser> mTSParser;
134
135    bool mFirstPTSValid;
136    uint64_t mFirstPTS;
137    int64_t mAbsoluteTimeAnchorUs;
138
139    // Stores the initialization vector to decrypt the next block of cipher text, which can
140    // either be derived from the sequence number, read from the manifest, or copied from
141    // the last block of cipher text (cipher-block chaining).
142    unsigned char mAESInitVec[16];
143
144    // Set first to true if decrypting the first segment of a playlist segment. When
145    // first is true, reset the initialization vector based on the available
146    // information in the manifest; otherwise, use the initialization vector as
147    // updated by the last call to AES_cbc_encrypt.
148    //
149    // For the input to decrypt correctly, decryptBuffer must be called on
150    // consecutive byte ranges on block boundaries, e.g. 0..15, 16..47, 48..63,
151    // and so on.
152    status_t decryptBuffer(
153            size_t playlistIndex, const sp<ABuffer> &buffer,
154            bool first = true);
155    status_t checkDecryptPadding(const sp<ABuffer> &buffer);
156
157    void postMonitorQueue(int64_t delayUs = 0, int64_t minDelayUs = 0);
158    void cancelMonitorQueue();
159
160    int64_t delayUsToRefreshPlaylist() const;
161    status_t refreshPlaylist();
162
163    // Returns the media time in us of the segment specified by seqNumber.
164    // This is computed by summing the durations of all segments before it.
165    int64_t getSegmentStartTimeUs(int32_t seqNumber) const;
166
167    status_t onStart(const sp<AMessage> &msg);
168    void onPause();
169    void onStop(const sp<AMessage> &msg);
170    void onMonitorQueue();
171    void onDownloadNext();
172
173    // Resume a fetcher to continue until the stopping point stored in msg.
174    status_t onResumeUntil(const sp<AMessage> &msg);
175
176    status_t extractAndQueueAccessUnitsFromTs(const sp<ABuffer> &buffer);
177
178    status_t extractAndQueueAccessUnits(
179            const sp<ABuffer> &buffer, const sp<AMessage> &itemMeta);
180
181    void notifyError(status_t err);
182
183    void queueDiscontinuity(
184            ATSParser::DiscontinuityType type, const sp<AMessage> &extra);
185
186    int32_t getSeqNumberForTime(int64_t timeUs) const;
187
188    void updateDuration();
189
190    // Before resuming a fetcher in onResume, check the remaining duration is longer than that
191    // returned by resumeThreshold.
192    int64_t resumeThreshold(const sp<AMessage> &msg);
193
194    DISALLOW_EVIL_CONSTRUCTORS(PlaylistFetcher);
195};
196
197}  // namespace android
198
199#endif  // PLAYLIST_FETCHER_H_
200
201