-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathPersistentStreamPlayer.m
472 lines (388 loc) · 15 KB
/
PersistentStreamPlayer.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
/* see http://vombat.tumblr.com/post/86294492874/caching-audio-streamed-using-avplayer
* see https://gist.github.com/anonymous/83a93746d1ea52e9d23f
*/
#import "PersistentStreamPlayer.h"
#import "FileUtils.h"
#import <MobileCoreServices/MobileCoreServices.h>
@interface PersistentStreamPlayer () <NSURLConnectionDataDelegate, AVAssetResourceLoaderDelegate>
@property (nonatomic, strong) NSURL *remoteURL;
@property (nonatomic, strong) NSURL *localURL;
@property (nonatomic, strong) NSURL *tempURL;
@property (nonatomic, assign) NSUInteger fullAudioDataLength;
@property (nonatomic, strong) AVPlayer *player;
@property (nonatomic, strong) NSURLConnection *connection;
@property (nonatomic, strong) NSHTTPURLResponse *response;
@property (nonatomic, strong) NSMutableArray *pendingRequests;
@property (nonatomic, strong) NSTimer *healthCheckTimer;
@property (nonatomic, strong) NSString *originalURLScheme;
@property (nonatomic, assign) BOOL isObserving;
@property (nonatomic, assign) BOOL hasForcedDurationLoad;
@property (nonatomic, assign) BOOL isStalled;
@property (nonatomic, assign) BOOL connectionHasFinishedLoading;
@property (nonatomic, strong) AVAudioPlayer *loopingLocalAudioPlayer;
@property (nonatomic, assign) BOOL isDestroyed;
@end
@implementation PersistentStreamPlayer
- (instancetype)initWithRemoteURL:(NSURL *)remoteURL
localURL:(NSURL *)localURL
{
if (!remoteURL || !localURL) {
return nil;
}
self = [super init];
if (self) {
self.remoteURL = remoteURL;
self.localURL = localURL;
self.tempURL = [FileUtils randomTempFileURL];
[self prepareToPlay];
[self addObservers];
}
return self;
}
- (void)dealloc
{
[self destroy];
}
- (void)prepareToPlay
{
self.pendingRequests = [NSMutableArray array];
AVURLAsset *asset = [AVURLAsset URLAssetWithURL:self.audioRemoteStreamingURL options:nil];
[asset.resourceLoader setDelegate:self queue:dispatch_get_main_queue()];
AVPlayerItem *playerItem = [AVPlayerItem playerItemWithAsset:asset automaticallyLoadedAssetKeys:@[@"duration"]];
self.player = [[AVPlayer alloc] initWithPlayerItem:playerItem];
[self.player.currentItem addObserver:self
forKeyPath:@"status"
options:NSKeyValueObservingOptionNew
context:NULL];
}
- (void)addObservers
{
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(playerItemDidReachEnd:)
name:AVPlayerItemDidPlayToEndTimeNotification
object:[self.player currentItem]];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(playerItemDidStall:)
name:AVPlayerItemPlaybackStalledNotification
object:[self.player currentItem]];
}
- (void)removeObservers
{
[[NSNotificationCenter defaultCenter] removeObserver:self];
}
- (void)pause
{
[self.player pause];
[self stopHealthCheckTimer];
[self.loopingLocalAudioPlayer pause];
}
- (void)destroy
{
if (self.isDestroyed) {
return;
}
self.isDestroyed = YES;
[self removeObservers];
[self stopHealthCheckTimer];
[self.player pause];
[self.player.currentItem removeObserver:self forKeyPath:@"status"];
[self.player.currentItem cancelPendingSeeks];
[self.player.currentItem.asset cancelLoading];
self.player.rate = 0.0;
self.player = nil;
[self.connection cancel];
self.connection = nil;
[self.loopingLocalAudioPlayer stop];
self.loopingLocalAudioPlayer = nil;
}
- (NSURL *)audioRemoteStreamingURL
{
if (!self.remoteURL) {
return nil;
}
NSURLComponents *components = [[NSURLComponents alloc] initWithURL:self.remoteURL resolvingAgainstBaseURL:NO];
self.originalURLScheme = components.scheme;
components.scheme = @"streaming";
return components.URL;
}
- (void)play
{
[self.player play];
[self startHealthCheckTimer];
[self.loopingLocalAudioPlayer play];
}
- (BOOL)playing
{
if (self.loopingLocalAudioPlayer) {
return self.loopingLocalAudioPlayer.playing;
}
return self.player.rate != 0 && !self.player.error;
}
/* See "in beta" warning in header file. */
#pragma mark - seeking
- (void)seekToTime:(NSTimeInterval)time
{
CMTime seekTime = CMTimeMakeWithSeconds(MAX(time, 0), self.player.currentTime.timescale);
[self.player seekToTime:seekTime];
}
#pragma mark - NSURLConnection delegate
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
self.fullAudioDataLength = 0;
self.response = (NSHTTPURLResponse *)response;
[self processPendingRequests];
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
self.fullAudioDataLength += data.length;
[self appendDataToTempFile:data];
[self processPendingRequests];
}
- (void)appendDataToTempFile:(NSData *)data
{
if(!self.tempFileExists) {
[FileUtils saveData:data toURL:self.tempURL];
} else {
NSFileHandle *fileHandle = [NSFileHandle fileHandleForWritingAtPath:self.tempURL.path];;
[fileHandle seekToEndOfFile];
[fileHandle writeData:data];
}
}
- (BOOL)tempFileExists
{
return [[NSFileManager defaultManager] fileExistsAtPath:self.tempURL.path];
}
- (NSData *)dataFromFileInRange:(NSRange)range
{
NSFileHandle *fileHandle = [NSFileHandle fileHandleForReadingAtPath:self.currentURLForDataFile.path];;
[fileHandle seekToFileOffset:range.location];
return [fileHandle readDataOfLength:range.length];
}
- (NSURL *)currentURLForDataFile
{
return self.connectionHasFinishedLoading ? self.localURL : self.tempURL;
}
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
self.connectionHasFinishedLoading = YES;
[self processPendingRequests];
[FileUtils moveFileFromURL:self.tempURL toURL:self.localURL];
if ([self.delegate respondsToSelector:@selector(persistentStreamPlayerDidPersistAsset:)]) {
[self.delegate persistentStreamPlayerDidPersistAsset:self];
}
}
- (float)volume
{
return self.loopingLocalAudioPlayer ? self.loopingLocalAudioPlayer.volume : self.player.volume;
}
- (void)setVolume:(float)volume
{
if (self.loopingLocalAudioPlayer) {
self.loopingLocalAudioPlayer.volume = volume;
} else if (self.player) {
self.player.volume = volume;
}
}
#pragma mark - AVURLAsset resource loading
- (void)processPendingRequests
{
NSMutableArray *requestsCompleted = [NSMutableArray array];
for (AVAssetResourceLoadingRequest *loadingRequest in self.pendingRequests) {
[self fillInContentInformation:loadingRequest.contentInformationRequest];
BOOL didRespondCompletely = [self respondWithDataForRequest:loadingRequest.dataRequest];
if (didRespondCompletely) {
[requestsCompleted addObject:loadingRequest];
[loadingRequest finishLoading];
}
}
[self.pendingRequests removeObjectsInArray:requestsCompleted];
}
- (void)fillInContentInformation:(AVAssetResourceLoadingContentInformationRequest *)contentInformationRequest
{
if (contentInformationRequest == nil || self.response == nil) {
return;
}
NSString *mimeType = [self.response MIMEType];
CFStringRef contentType = UTTypeCreatePreferredIdentifierForTag(kUTTagClassMIMEType, (__bridge CFStringRef)(mimeType), NULL);
contentInformationRequest.byteRangeAccessSupported = YES;
contentInformationRequest.contentType = CFBridgingRelease(contentType);
contentInformationRequest.contentLength = [self.response expectedContentLength];
}
- (BOOL)respondWithDataForRequest:(AVAssetResourceLoadingDataRequest *)dataRequest
{
long long startOffset = dataRequest.requestedOffset;
if (dataRequest.currentOffset != 0) {
startOffset = dataRequest.currentOffset;
}
// Don't have any data at all for this request
if (self.fullAudioDataLength < startOffset) {
return NO;
}
// This is the total data we have from startOffset to whatever has been downloaded so far
NSUInteger unreadBytes = self.fullAudioDataLength - (NSUInteger)startOffset;
// Respond with whatever is available if we can't satisfy the request fully yet
NSUInteger numberOfBytesToRespondWith = MIN((NSUInteger)dataRequest.requestedLength, unreadBytes);
NSRange range = NSMakeRange((NSUInteger)startOffset, numberOfBytesToRespondWith);
NSData *subData = [self dataFromFileInRange:range];
[dataRequest respondWithData:subData];
long long endOffset = startOffset + dataRequest.requestedLength;
BOOL didRespondFully = self.fullAudioDataLength >= endOffset;
return didRespondFully;
}
- (BOOL) resourceLoader:(AVAssetResourceLoader *)resourceLoader
shouldWaitForLoadingOfRequestedResource:(AVAssetResourceLoadingRequest *)loadingRequest
{
[self.pendingRequests addObject:loadingRequest];
if (self.connectionHasFinishedLoading) {
[self processPendingRequests];
return YES;
}
if (!self.connection) {
self.connectionHasFinishedLoading = NO;
NSURL *interceptedURL = loadingRequest.request.URL;
NSURLComponents *actualURLComponents = [[NSURLComponents alloc] initWithURL:interceptedURL resolvingAgainstBaseURL:NO];
actualURLComponents.scheme = self.originalURLScheme ?: @"http";
NSURLRequest *request = [NSURLRequest requestWithURL:actualURLComponents.URL];
self.connection = [[NSURLConnection alloc] initWithRequest:request delegate:self startImmediately:NO];
[self.connection setDelegateQueue:[NSOperationQueue mainQueue]];
[self.connection start];
}
return YES;
}
- (void)resourceLoader:(AVAssetResourceLoader *)resourceLoader didCancelLoadingRequest:(AVAssetResourceLoadingRequest *)loadingRequest
{
[self.pendingRequests removeObject:loadingRequest];
}
#pragma mark - KVO
- (void)observeValueForKeyPath:(NSString *)keyPath
ofObject:(id)object
change:(NSDictionary *)change
context:(void *)context
{
if (self.player.currentItem.status == AVPlayerItemStatusReadyToPlay) {
[self.player play];
}
}
#pragma mark - health check timer
- (void)startHealthCheckTimer
{
[self healthCheckTimerDidFire]; // fires once immediately
self.healthCheckTimer = [NSTimer scheduledTimerWithTimeInterval:0.5
target:self
selector:@selector(healthCheckTimerDidFire)
userInfo:nil
repeats:YES];
}
- (void)stopHealthCheckTimer
{
[self.healthCheckTimer invalidate];
self.healthCheckTimer = nil;
}
/* this method is basically a health check that is run consistently to keep things healthy during streaming */
- (void)healthCheckTimerDidFire
{
if (self.isDestroyed) {
return;
}
[self loadAssetIfNecessary];
[self tryToPlayIfStalled];
}
- (void)tryToPlayIfStalled
{
if (!self.isStalled) {
return;
}
if (self.player.currentItem.playbackLikelyToKeepUp ||
(self.timeBuffered - self.currentTime) > 5.0)
{
self.isStalled = NO;
[self play];
}
}
- (void)playerItemDidReachEnd:(NSNotification *)notification
{
if ([self.delegate respondsToSelector:@selector(persistentStreamPlayerDidFinishPlaying:)]) {
[self.delegate persistentStreamPlayerDidFinishPlaying:self];
}
[self tryToStartLocalLoop];
}
- (void)tryToStartLocalLoop
{
if (!self.looping) {
return;
}
self.loopingLocalAudioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:self.localURL
error:nil];
[self.loopingLocalAudioPlayer prepareToPlay];
self.loopingLocalAudioPlayer.numberOfLoops = -1;
self.loopingLocalAudioPlayer.volume = 1.0;
[self.loopingLocalAudioPlayer play];
}
- (void)playerItemDidStall:(NSNotification *)notification
{
self.isStalled = YES;
if ([self.delegate respondsToSelector:@selector(persistentStreamPlayerStreamingDidStall:)]) {
[self.delegate persistentStreamPlayerStreamingDidStall:self];
}
}
#pragma mark - asset and duration
- (NSTimeInterval)duration
{
if (!self.isAssetLoaded) {
return 5 * 60.0; // give it a good guess of 5 min before asset loads...
}
return CMTimeGetSeconds(self.player.currentItem.asset.duration);
}
- (void)loadAssetIfNecessary
{
if (self.hasForcedDurationLoad) {
return;
}
if (self.isAssetLoaded) {
return;
}
if (self.player.status == AVPlayerStatusReadyToPlay) {
[self forceLoadOfDuration];
self.hasForcedDurationLoad = YES;
return;
}
if (self.player.status == AVPlayerStatusFailed) {
if ([self.delegate respondsToSelector:@selector(persistentStreamPlayerDidFailToLoadAsset:)]) {
[self.delegate persistentStreamPlayerDidFailToLoadAsset:self];
}
return;
}
}
- (BOOL)isAssetLoaded
{
AVKeyValueStatus durationStatus = [self.player.currentItem.asset statusOfValueForKey:@"duration" error:NULL];
return durationStatus == AVKeyValueStatusLoaded && self.player.status == AVPlayerStatusReadyToPlay;
}
- (void)forceLoadOfDuration
{
[self.player.currentItem.asset loadValuesAsynchronouslyForKeys:@[@"duration"]
completionHandler:^{
if (self.isAssetLoaded) {
if ([self.delegate respondsToSelector:@selector(persistentStreamPlayerDidLoadAsset:)]) {
[self.delegate persistentStreamPlayerDidLoadAsset:self];
}
} else {
if ([self.delegate respondsToSelector:@selector(persistentStreamPlayerDidFailToLoadAsset:)]) {
[self.delegate persistentStreamPlayerDidFailToLoadAsset:self];
}
}
}];
}
- (NSTimeInterval)timeBuffered
{
CMTimeRange timeRange = [[self.player.currentItem.loadedTimeRanges lastObject] CMTimeRangeValue];
return CMTimeGetSeconds(timeRange.start) + CMTimeGetSeconds(timeRange.duration);
}
- (NSTimeInterval)currentTime
{
if (self.loopingLocalAudioPlayer) {
return self.loopingLocalAudioPlayer.currentTime;
}
return CMTimeGetSeconds(self.player.currentTime);
}
@end