DOUAudioFileProvider.m
19.3 KB
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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
/* vim: set ft=objc fenc=utf-8 sw=2 ts=2 et: */
/*
* DOUAudioStreamer - A Core Audio based streaming audio player for iOS/Mac:
*
* https://github.com/douban/DOUAudioStreamer
*
* Copyright 2013-2016 Douban Inc. All rights reserved.
*
* Use and distribution licensed under the BSD license. See
* the LICENSE file for full text.
*
* Authors:
* Chongyu Zhu <i@lembacon.com>
*
*/
#import "DOUAudioFileProvider.h"
#import "DOUSimpleHTTPRequest.h"
#import "NSData+DOUAudioMappedFile.h"
#import "DOUAudioStreamer+Options.h"
#include <CommonCrypto/CommonDigest.h>
#include <AudioToolbox/AudioToolbox.h>
#if TARGET_OS_IPHONE
#include <MobileCoreServices/MobileCoreServices.h>
#else /* TARGET_OS_IPHONE */
#include <CoreServices/CoreServices.h>
#endif /* TARGET_OS_IPHONE */
#if TARGET_OS_IPHONE
#import "DOUMPMediaLibraryAssetLoader.h"
#endif /* TARGET_OS_IPHONE */
static id <DOUAudioFile> gHintFile = nil;
static DOUAudioFileProvider *gHintProvider = nil;
static BOOL gLastProviderIsFinished = NO;
@interface DOUAudioFileProvider () {
@protected
id <DOUAudioFile> _audioFile;
DOUAudioFileProviderEventBlock _eventBlock;
NSString *_cachedPath;
NSURL *_cachedURL;
NSString *_mimeType;
NSString *_fileExtension;
NSString *_sha256;
NSData *_mappedData;
NSUInteger _expectedLength;
NSUInteger _receivedLength;
BOOL _failed;
}
- (instancetype)_initWithAudioFile:(id <DOUAudioFile>)audioFile;
@end
@interface _DOUAudioLocalFileProvider : DOUAudioFileProvider
@end
@interface _DOUAudioRemoteFileProvider : DOUAudioFileProvider {
@private
DOUSimpleHTTPRequest *_request;
NSURL *_audioFileURL;
NSString *_audioFileHost;
CC_SHA256_CTX *_sha256Ctx;
AudioFileStreamID _audioFileStreamID;
BOOL _requiresCompleteFile;
BOOL _readyToProducePackets;
BOOL _requestCompleted;
}
@end
#if TARGET_OS_IPHONE
@interface _DOUAudioMediaLibraryFileProvider : DOUAudioFileProvider {
@private
DOUMPMediaLibraryAssetLoader *_assetLoader;
BOOL _loaderCompleted;
}
@end
#endif /* TARGET_OS_IPHONE */
#pragma mark - Concrete Audio Local File Provider
@implementation _DOUAudioLocalFileProvider
- (instancetype)_initWithAudioFile:(id <DOUAudioFile>)audioFile
{
self = [super _initWithAudioFile:audioFile];
if (self) {
_cachedURL = [audioFile audioFileURL];
_cachedPath = [_cachedURL path];
BOOL isDirectory = NO;
if (![[NSFileManager defaultManager] fileExistsAtPath:_cachedPath
isDirectory:&isDirectory] ||
isDirectory) {
return nil;
}
_mappedData = [NSData dou_dataWithMappedContentsOfFile:_cachedPath];
_expectedLength = [_mappedData length];
_receivedLength = [_mappedData length];
}
return self;
}
- (NSString *)mimeType
{
if (_mimeType == nil &&
[self fileExtension] != nil) {
CFStringRef uti = UTTypeCreatePreferredIdentifierForTag(kUTTagClassFilenameExtension, (__bridge CFStringRef)[self fileExtension], NULL);
if (uti != NULL) {
_mimeType = CFBridgingRelease(UTTypeCopyPreferredTagWithClass(uti, kUTTagClassMIMEType));
CFRelease(uti);
}
}
return _mimeType;
}
- (NSString *)fileExtension
{
if (_fileExtension == nil) {
_fileExtension = [[[self audioFile] audioFileURL] pathExtension];
}
return _fileExtension;
}
- (NSString *)sha256
{
if (_sha256 == nil &&
[DOUAudioStreamer options] & DOUAudioStreamerRequireSHA256 &&
[self mappedData] != nil) {
unsigned char hash[CC_SHA256_DIGEST_LENGTH];
CC_SHA256([[self mappedData] bytes], (CC_LONG)[[self mappedData] length], hash);
NSMutableString *result = [NSMutableString stringWithCapacity:CC_SHA256_DIGEST_LENGTH * 2];
for (size_t i = 0; i < CC_SHA256_DIGEST_LENGTH; ++i) {
[result appendFormat:@"%02x", hash[i]];
}
_sha256 = [result copy];
}
return _sha256;
}
- (NSUInteger)downloadSpeed
{
return _receivedLength;
}
- (BOOL)isReady
{
return YES;
}
- (BOOL)isFinished
{
return YES;
}
@end
#pragma mark - Concrete Audio Remote File Provider
@implementation _DOUAudioRemoteFileProvider
@synthesize finished = _requestCompleted;
- (instancetype)_initWithAudioFile:(id <DOUAudioFile>)audioFile
{
self = [super _initWithAudioFile:audioFile];
if (self) {
_audioFileURL = [audioFile audioFileURL];
if ([audioFile respondsToSelector:@selector(audioFileHost)]) {
_audioFileHost = [audioFile audioFileHost];
}
if ([DOUAudioStreamer options] & DOUAudioStreamerRequireSHA256) {
_sha256Ctx = (CC_SHA256_CTX *)malloc(sizeof(CC_SHA256_CTX));
CC_SHA256_Init(_sha256Ctx);
}
[self _openAudioFileStream];
[self _createRequest];
[_request start];
}
return self;
}
- (void)dealloc
{
@synchronized(_request) {
[_request setCompletedBlock:NULL];
[_request setProgressBlock:NULL];
[_request setDidReceiveResponseBlock:NULL];
[_request setDidReceiveDataBlock:NULL];
[_request cancel];
}
if (_sha256Ctx != NULL) {
free(_sha256Ctx);
}
[self _closeAudioFileStream];
if ([DOUAudioStreamer options] & DOUAudioStreamerRemoveCacheOnDeallocation) {
[[NSFileManager defaultManager] removeItemAtPath:_cachedPath error:NULL];
}
}
+ (NSString *)_sha256ForAudioFileURL:(NSURL *)audioFileURL
{
NSString *string = [audioFileURL absoluteString];
unsigned char hash[CC_SHA256_DIGEST_LENGTH];
CC_SHA256([string UTF8String], (CC_LONG)[string lengthOfBytesUsingEncoding:NSUTF8StringEncoding], hash);
NSMutableString *result = [NSMutableString stringWithCapacity:CC_SHA256_DIGEST_LENGTH * 2];
for (size_t i = 0; i < CC_SHA256_DIGEST_LENGTH; ++i) {
[result appendFormat:@"%02x", hash[i]];
}
return result;
}
+ (NSString *)_cachedPathForAudioFileURL:(NSURL *)audioFileURL
{
NSString *filename = [NSString stringWithFormat:@"douas-%@.tmp", [self _sha256ForAudioFileURL:audioFileURL]];
return [NSTemporaryDirectory() stringByAppendingPathComponent:filename];
}
- (void)_invokeEventBlock
{
if (_eventBlock != NULL) {
_eventBlock();
}
}
- (void)_requestDidComplete
{
if ([_request isFailed] ||
!([_request statusCode] >= 200 && [_request statusCode] < 300)
|| _receivedLength == 0) {
_failed = YES;
}
else {
_requestCompleted = YES;
[_mappedData dou_synchronizeMappedFile];
}
if (!_failed &&
_sha256Ctx != NULL) {
unsigned char hash[CC_SHA256_DIGEST_LENGTH];
CC_SHA256_Final(hash, _sha256Ctx);
NSMutableString *result = [NSMutableString stringWithCapacity:CC_SHA256_DIGEST_LENGTH * 2];
for (size_t i = 0; i < CC_SHA256_DIGEST_LENGTH; ++i) {
[result appendFormat:@"%02x", hash[i]];
}
_sha256 = [result copy];
}
if (gHintFile != nil &&
gHintProvider == nil) {
gHintProvider = [[[self class] alloc] _initWithAudioFile:gHintFile];
}
[self _invokeEventBlock];
}
- (void)_requestDidReportProgress:(double)progress
{
[self _invokeEventBlock];
}
- (void)_requestDidReceiveResponse
{
_expectedLength = [_request responseContentLength];
_cachedPath = [[self class] _cachedPathForAudioFileURL:_audioFileURL];
_cachedURL = [NSURL fileURLWithPath:_cachedPath];
[[NSFileManager defaultManager] createFileAtPath:_cachedPath contents:nil attributes:nil];
#if TARGET_OS_IPHONE
[[NSFileManager defaultManager] setAttributes:@{NSFileProtectionKey: NSFileProtectionNone}
ofItemAtPath:_cachedPath
error:NULL];
#endif /* TARGET_OS_IPHONE */
[[NSFileHandle fileHandleForWritingAtPath:_cachedPath] truncateFileAtOffset:_expectedLength];
_mimeType = [[_request responseHeaders] objectForKey:@"Content-Type"];
_mappedData = [NSData dou_modifiableDataWithMappedContentsOfFile:_cachedPath];
}
- (void)_requestDidReceiveData:(NSData *)data
{
if (_mappedData == nil) {
return;
}
NSUInteger availableSpace = _expectedLength - _receivedLength;
NSUInteger bytesToWrite = MIN(availableSpace, [data length]);
memcpy((uint8_t *)[_mappedData bytes] + _receivedLength, [data bytes], bytesToWrite);
_receivedLength += bytesToWrite;
if (_sha256Ctx != NULL) {
CC_SHA256_Update(_sha256Ctx, [data bytes], (CC_LONG)[data length]);
}
if (!_readyToProducePackets && !_failed && !_requiresCompleteFile) {
OSStatus status = kAudioFileStreamError_UnsupportedFileType;
if (_audioFileStreamID != NULL) {
status = AudioFileStreamParseBytes(_audioFileStreamID,
(UInt32)[data length],
[data bytes],
0);
}
if (status != noErr && status != kAudioFileStreamError_NotOptimized) {
NSArray *fallbackTypeIDs = [self _fallbackTypeIDs];
for (NSNumber *typeIDNumber in fallbackTypeIDs) {
AudioFileTypeID typeID = (AudioFileTypeID)[typeIDNumber unsignedLongValue];
[self _closeAudioFileStream];
[self _openAudioFileStreamWithFileTypeHint:typeID];
if (_audioFileStreamID != NULL) {
status = AudioFileStreamParseBytes(_audioFileStreamID,
(UInt32)_receivedLength,
[_mappedData bytes],
0);
if (status == noErr || status == kAudioFileStreamError_NotOptimized) {
break;
}
}
}
if (status != noErr && status != kAudioFileStreamError_NotOptimized) {
_failed = YES;
}
}
if (status == kAudioFileStreamError_NotOptimized) {
[self _closeAudioFileStream];
_requiresCompleteFile = YES;
}
}
}
- (void)_createRequest
{
_request = [DOUSimpleHTTPRequest requestWithURL:_audioFileURL];
if (_audioFileHost != nil) {
[_request setHost:_audioFileHost];
}
__unsafe_unretained _DOUAudioRemoteFileProvider *_self = self;
[_request setCompletedBlock:^{
[_self _requestDidComplete];
}];
[_request setProgressBlock:^(double downloadProgress) {
[_self _requestDidReportProgress:downloadProgress];
}];
[_request setDidReceiveResponseBlock:^{
[_self _requestDidReceiveResponse];
}];
[_request setDidReceiveDataBlock:^(NSData *data) {
[_self _requestDidReceiveData:data];
}];
}
- (void)_handleAudioFileStreamProperty:(AudioFileStreamPropertyID)propertyID
{
if (propertyID == kAudioFileStreamProperty_ReadyToProducePackets) {
_readyToProducePackets = YES;
}
}
- (void)_handleAudioFileStreamPackets:(const void *)packets
numberOfBytes:(UInt32)numberOfBytes
numberOfPackets:(UInt32)numberOfPackets
packetDescriptions:(AudioStreamPacketDescription *)packetDescriptioins
{
}
static void audio_file_stream_property_listener_proc(void *inClientData,
AudioFileStreamID inAudioFileStream,
AudioFileStreamPropertyID inPropertyID,
UInt32 *ioFlags)
{
__unsafe_unretained _DOUAudioRemoteFileProvider *fileProvider = (__bridge _DOUAudioRemoteFileProvider *)inClientData;
[fileProvider _handleAudioFileStreamProperty:inPropertyID];
}
static void audio_file_stream_packets_proc(void *inClientData,
UInt32 inNumberBytes,
UInt32 inNumberPackets,
const void *inInputData,
AudioStreamPacketDescription *inPacketDescriptions)
{
__unsafe_unretained _DOUAudioRemoteFileProvider *fileProvider = (__bridge _DOUAudioRemoteFileProvider *)inClientData;
[fileProvider _handleAudioFileStreamPackets:inInputData
numberOfBytes:inNumberBytes
numberOfPackets:inNumberPackets
packetDescriptions:inPacketDescriptions];
}
- (void)_openAudioFileStream
{
[self _openAudioFileStreamWithFileTypeHint:0];
}
- (void)_openAudioFileStreamWithFileTypeHint:(AudioFileTypeID)fileTypeHint
{
OSStatus status = AudioFileStreamOpen((__bridge void *)self,
audio_file_stream_property_listener_proc,
audio_file_stream_packets_proc,
fileTypeHint,
&_audioFileStreamID);
if (status != noErr) {
_audioFileStreamID = NULL;
}
}
- (void)_closeAudioFileStream
{
if (_audioFileStreamID != NULL) {
AudioFileStreamClose(_audioFileStreamID);
_audioFileStreamID = NULL;
}
}
- (NSArray *)_fallbackTypeIDs
{
NSMutableArray *fallbackTypeIDs = [NSMutableArray array];
NSMutableSet *fallbackTypeIDSet = [NSMutableSet set];
struct {
CFStringRef specifier;
AudioFilePropertyID propertyID;
} properties[] = {
{ (__bridge CFStringRef)[self mimeType], kAudioFileGlobalInfo_TypesForMIMEType },
{ (__bridge CFStringRef)[self fileExtension], kAudioFileGlobalInfo_TypesForExtension }
};
const size_t numberOfProperties = sizeof(properties) / sizeof(properties[0]);
for (size_t i = 0; i < numberOfProperties; ++i) {
if (properties[i].specifier == NULL) {
continue;
}
UInt32 outSize = 0;
OSStatus status;
status = AudioFileGetGlobalInfoSize(properties[i].propertyID,
sizeof(properties[i].specifier),
&properties[i].specifier,
&outSize);
if (status != noErr) {
continue;
}
size_t count = outSize / sizeof(AudioFileTypeID);
AudioFileTypeID *buffer = (AudioFileTypeID *)malloc(outSize);
if (buffer == NULL) {
continue;
}
status = AudioFileGetGlobalInfo(properties[i].propertyID,
sizeof(properties[i].specifier),
&properties[i].specifier,
&outSize,
buffer);
if (status != noErr) {
free(buffer);
continue;
}
for (size_t j = 0; j < count; ++j) {
NSNumber *tid = [NSNumber numberWithUnsignedLong:buffer[j]];
if ([fallbackTypeIDSet containsObject:tid]) {
continue;
}
[fallbackTypeIDs addObject:tid];
[fallbackTypeIDSet addObject:tid];
}
free(buffer);
}
return fallbackTypeIDs;
}
- (NSString *)fileExtension
{
if (_fileExtension == nil) {
_fileExtension = [[[[self audioFile] audioFileURL] path] pathExtension];
}
return _fileExtension;
}
- (NSUInteger)downloadSpeed
{
return [_request downloadSpeed];
}
- (BOOL)isReady
{
if (!_requiresCompleteFile) {
return _readyToProducePackets;
}
return _requestCompleted;
}
@end
#pragma mark - Concrete Audio Media Library File Provider
#if TARGET_OS_IPHONE
@implementation _DOUAudioMediaLibraryFileProvider
- (instancetype)_initWithAudioFile:(id <DOUAudioFile>)audioFile
{
self = [super _initWithAudioFile:audioFile];
if (self) {
[self _createAssetLoader];
[_assetLoader start];
}
return self;
}
- (void)dealloc
{
@synchronized(_assetLoader) {
[_assetLoader setCompletedBlock:NULL];
[_assetLoader cancel];
}
[[NSFileManager defaultManager] removeItemAtPath:[_assetLoader cachedPath]
error:NULL];
}
- (void)_invokeEventBlock
{
if (_eventBlock != NULL) {
_eventBlock();
}
}
- (void)_assetLoaderDidComplete
{
if ([_assetLoader isFailed]) {
_failed = YES;
[self _invokeEventBlock];
return;
}
_mimeType = [_assetLoader mimeType];
_fileExtension = [_assetLoader fileExtension];
_cachedPath = [_assetLoader cachedPath];
_cachedURL = [NSURL fileURLWithPath:_cachedPath];
_mappedData = [NSData dou_dataWithMappedContentsOfFile:_cachedPath];
_expectedLength = [_mappedData length];
_receivedLength = [_mappedData length];
_loaderCompleted = YES;
[self _invokeEventBlock];
}
- (void)_createAssetLoader
{
_assetLoader = [DOUMPMediaLibraryAssetLoader loaderWithURL:[_audioFile audioFileURL]];
__weak typeof(self) weakSelf = self;
[_assetLoader setCompletedBlock:^{
__strong typeof(weakSelf) strongSelf = weakSelf;
[strongSelf _assetLoaderDidComplete];
}];
}
- (NSString *)sha256
{
if (_sha256 == nil &&
[DOUAudioStreamer options] & DOUAudioStreamerRequireSHA256 &&
[self mappedData] != nil) {
unsigned char hash[CC_SHA256_DIGEST_LENGTH];
CC_SHA256([[self mappedData] bytes], (CC_LONG)[[self mappedData] length], hash);
NSMutableString *result = [NSMutableString stringWithCapacity:CC_SHA256_DIGEST_LENGTH * 2];
for (size_t i = 0; i < CC_SHA256_DIGEST_LENGTH; ++i) {
[result appendFormat:@"%02x", hash[i]];
}
_sha256 = [result copy];
}
return _sha256;
}
- (NSUInteger)downloadSpeed
{
return _receivedLength;
}
- (BOOL)isReady
{
return _loaderCompleted;
}
- (BOOL)isFinished
{
return _loaderCompleted;
}
@end
#endif /* TARGET_OS_IPHONE */
#pragma mark - Abstract Audio File Provider
@implementation DOUAudioFileProvider
@synthesize audioFile = _audioFile;
@synthesize eventBlock = _eventBlock;
@synthesize cachedPath = _cachedPath;
@synthesize cachedURL = _cachedURL;
@synthesize mimeType = _mimeType;
@synthesize fileExtension = _fileExtension;
@synthesize sha256 = _sha256;
@synthesize mappedData = _mappedData;
@synthesize expectedLength = _expectedLength;
@synthesize receivedLength = _receivedLength;
@synthesize failed = _failed;
+ (instancetype)_fileProviderWithAudioFile:(id <DOUAudioFile>)audioFile
{
if (audioFile == nil) {
return nil;
}
NSURL *audioFileURL = [audioFile audioFileURL];
if (audioFileURL == nil) {
return nil;
}
if ([audioFileURL isFileURL]) {
return [[_DOUAudioLocalFileProvider alloc] _initWithAudioFile:audioFile];
}
#if TARGET_OS_IPHONE
else if ([[audioFileURL scheme] isEqualToString:@"ipod-library"]) {
return [[_DOUAudioMediaLibraryFileProvider alloc] _initWithAudioFile:audioFile];
}
#endif /* TARGET_OS_IPHONE */
else {
return [[_DOUAudioRemoteFileProvider alloc] _initWithAudioFile:audioFile];
}
}
+ (instancetype)fileProviderWithAudioFile:(id <DOUAudioFile>)audioFile
{
if ((audioFile == gHintFile ||
[audioFile isEqual:gHintFile]) &&
gHintProvider != nil) {
DOUAudioFileProvider *provider = gHintProvider;
gHintFile = nil;
gHintProvider = nil;
gLastProviderIsFinished = [provider isFinished];
return provider;
}
gHintFile = nil;
gHintProvider = nil;
gLastProviderIsFinished = NO;
return [self _fileProviderWithAudioFile:audioFile];
}
+ (void)setHintWithAudioFile:(id <DOUAudioFile>)audioFile
{
if (audioFile == gHintFile ||
[audioFile isEqual:gHintFile]) {
return;
}
gHintFile = nil;
gHintProvider = nil;
if (audioFile == nil) {
return;
}
NSURL *audioFileURL = [audioFile audioFileURL];
if (audioFileURL == nil ||
#if TARGET_OS_IPHONE
[[audioFileURL scheme] isEqualToString:@"ipod-library"] ||
#endif /* TARGET_OS_IPHONE */
[audioFileURL isFileURL]) {
return;
}
gHintFile = audioFile;
if (gLastProviderIsFinished) {
gHintProvider = [self _fileProviderWithAudioFile:gHintFile];
}
}
- (instancetype)_initWithAudioFile:(id <DOUAudioFile>)audioFile
{
self = [super init];
if (self) {
_audioFile = audioFile;
}
return self;
}
- (NSUInteger)downloadSpeed
{
[self doesNotRecognizeSelector:_cmd];
return 0;
}
- (BOOL)isReady
{
[self doesNotRecognizeSelector:_cmd];
return NO;
}
- (BOOL)isFinished
{
[self doesNotRecognizeSelector:_cmd];
return NO;
}
@end