RNFetchBlobFS.m
27 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
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
// RNFetchBlobFS.m
// RNFetchBlob
//
// Created by Ben Hsieh on 2016/6/6.
// Copyright © 2016年 suzuri04x2. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "RNFetchBlob.h"
#import "RNFetchBlobFS.h"
#import "RNFetchBlobConst.h"
#import "IOS7Polyfill.h"
@import AssetsLibrary;
#if __has_include(<React/RCTAssert.h>)
#import <React/RCTBridge.h>
#import <React/RCTEventDispatcher.h>
#else
#import "RCTBridge.h"
#import "RCTEventDispatcher.h"
#endif
NSMutableDictionary *fileStreams = nil;
////////////////////////////////////////
//
// File system access methods
//
////////////////////////////////////////
@interface RNFetchBlobFS() {
UIDocumentInteractionController * docCtrl;
}
@end
@implementation RNFetchBlobFS
@synthesize outStream;
@synthesize inStream;
@synthesize encoding;
@synthesize callback;
@synthesize taskId;
@synthesize path;
@synthesize appendData;
@synthesize bufferSize;
- (id)init {
self = [super init];
return self;
}
- (id)initWithCallback:(RCTResponseSenderBlock)callback {
self = [super init];
self.callback = callback;
return self;
}
- (id)initWithBridgeRef:(RCTBridge *)bridgeRef {
self = [super init];
self.bridge = bridgeRef;
return self;
}
// static member getter
+ (NSArray *) getFileStreams {
if(fileStreams == nil)
fileStreams = [[NSMutableDictionary alloc] init];
return fileStreams;
}
+(void) setFileStream:(RNFetchBlobFS *) instance withId:(NSString *) uuid {
if(fileStreams == nil)
fileStreams = [[NSMutableDictionary alloc] init];
[fileStreams setValue:instance forKey:uuid];
}
+(NSString *) getPathOfAsset:(NSString *)assetURI
{
// get file path of an app asset
if([assetURI hasPrefix:ASSET_PREFIX])
{
assetURI = [assetURI stringByReplacingOccurrencesOfString:ASSET_PREFIX withString:@""];
assetURI = [[NSBundle mainBundle] pathForResource: [assetURI stringByDeletingPathExtension]
ofType: [assetURI pathExtension]];
}
return assetURI;
}
#pragma mark - system directories
+ (NSString *) getMainBundleDir {
return [[NSBundle mainBundle] bundlePath];
}
+ (NSString *) getCacheDir {
return [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) firstObject];
}
+ (NSString *) getDocumentDir {
return [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) firstObject];
}
+ (NSString *) getMusicDir {
return [NSSearchPathForDirectoriesInDomains(NSMusicDirectory, NSUserDomainMask, YES) firstObject];
}
+ (NSString *) getMovieDir {
return [NSSearchPathForDirectoriesInDomains(NSMoviesDirectory, NSUserDomainMask, YES) firstObject];
}
+ (NSString *) getPictureDir {
return [NSSearchPathForDirectoriesInDomains(NSPicturesDirectory, NSUserDomainMask, YES) firstObject];
}
+ (NSString *) getTempPath {
return NSTemporaryDirectory();
}
+ (NSString *) getTempPath:(NSString*)taskId withExtension:(NSString *)ext {
NSString * documentDir = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) firstObject];
NSString * filename = [NSString stringWithFormat:@"/RNFetchBlob_tmp/RNFetchBlobTmp_%@", taskId];
if(ext != nil)
filename = [filename stringByAppendingString: [NSString stringWithFormat:@".%@", ext]];
NSString * tempPath = [documentDir stringByAppendingString: filename];
return tempPath;
}
+ (NSString *) getPathForAppGroup:(NSString *)groupName {
NSFileManager* fileManager = [NSFileManager defaultManager];
NSURL* containerURL = [fileManager containerURLForSecurityApplicationGroupIdentifier:groupName];
if(containerURL) {
return [containerURL path];
} else {
return nil;
}
}
#pragma margk - readStream
+ (void) readStream:(NSString *)uri
encoding:(NSString * )encoding
bufferSize:(int)bufferSize
tick:(int)tick
streamId:(NSString *)streamId
bridgeRef:(RCTBridge *)bridgeRef
{
[[self class] getPathFromUri:uri completionHandler:^(NSString *path, ALAssetRepresentation *asset) {
__block RCTEventDispatcher * event = bridgeRef.eventDispatcher;
__block int read = 0;
__block int backoff = tick *1000;
__block int chunkSize = bufferSize;
// allocate buffer in heap instead of stack
uint8_t * buffer;
@try
{
buffer = (uint8_t *) malloc(bufferSize);
if(path != nil)
{
if([[NSFileManager defaultManager] fileExistsAtPath:path] == NO)
{
NSString * message = [NSString stringWithFormat:@"File not exists at path %@", path];
NSDictionary * payload = @{ @"event": FS_EVENT_ERROR, @"detail": message };
[event sendDeviceEventWithName:streamId body:payload];
free(buffer);
return ;
}
NSInputStream * stream = [[NSInputStream alloc] initWithFileAtPath:path];
[stream open];
while((read = [stream read:buffer maxLength:bufferSize]) > 0)
{
[[self class] emitDataChunks:[NSData dataWithBytes:buffer length:read] encoding:encoding streamId:streamId event:event];
if(tick > 0)
{
usleep(backoff);
}
}
[stream close];
}
else if (asset != nil)
{
int cursor = 0;
NSError * err;
while((read = [asset getBytes:buffer fromOffset:cursor length:bufferSize error:&err]) > 0)
{
cursor += read;
[[self class] emitDataChunks:[NSData dataWithBytes:buffer length:read] encoding:encoding streamId:streamId event:event];
if(tick > 0)
{
usleep(backoff);
}
}
}
else
{
NSDictionary * payload = @{ @"event": FS_EVENT_ERROR, @"detail": @"RNFetchBlob.readStream unable to resolve URI" };
[event sendDeviceEventWithName:streamId body:payload];
}
// release buffer
if(buffer != nil)
free(buffer);
}
@catch (NSError * err)
{
NSDictionary * payload = @{ @"event": FS_EVENT_ERROR, @"detail": [NSString stringWithFormat:@"RNFetchBlob.readStream error %@", [err description]] };
[event sendDeviceEventWithName:streamId body:payload];
}
@finally
{
NSDictionary * payload = @{ @"event": FS_EVENT_END, @"detail": @"" };
[event sendDeviceEventWithName:streamId body:payload];
}
}];
}
// send read stream chunks via native event emitter
+ (void) emitDataChunks:(NSData *)data encoding:(NSString *) encoding streamId:(NSString *)streamId event:(RCTEventDispatcher *)event
{
@try
{
NSString * encodedChunk = @"";
if([[encoding lowercaseString] isEqualToString:@"utf8"])
{
NSDictionary * payload = @{
@"event": FS_EVENT_DATA,
@"detail" : [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]
};
[event sendDeviceEventWithName:streamId body:payload];
}
else if ([[encoding lowercaseString] isEqualToString:@"base64"])
{
NSDictionary * payload = @{ @"event": FS_EVENT_DATA, @"detail" : [data base64EncodedStringWithOptions:0] };
[event sendDeviceEventWithName:streamId body:payload];
}
else if([[encoding lowercaseString] isEqualToString:@"ascii"])
{
// RCTBridge only emits string data, so we have to create JSON byte array string
NSMutableArray * asciiArray = [NSMutableArray array];
unsigned char *bytePtr;
if (data.length > 0)
{
bytePtr = (unsigned char *)[data bytes];
NSInteger byteLen = data.length/sizeof(uint8_t);
for (int i = 0; i < byteLen; i++)
{
[asciiArray addObject:[NSNumber numberWithChar:bytePtr[i]]];
}
}
NSDictionary * payload = @{ @"event": FS_EVENT_DATA, @"detail" : asciiArray };
[event sendDeviceEventWithName:streamId body:payload];
}
}
@catch (NSException * ex)
{
NSString * message = [NSString stringWithFormat:@"Failed to convert data to '%@' encoded string, this might due to the source data is not able to convert using this encoding. source = %@", encoding, [ex description]];
[event
sendDeviceEventWithName:streamId
body:@{
@"event" : MSG_EVENT_ERROR,
@"detail" : message
}];
[event
sendDeviceEventWithName:MSG_EVENT
body:@{
@"event" : MSG_EVENT_WARN,
@"detail" : message
}];
}
}
# pragma write file from file
+ (NSNumber *) writeFileFromFile:(NSString *)src toFile:(NSString *)dest append:(BOOL)append callback:(void(^)(NSString * errMsg, NSNumber *size))callback
{
[[self class] getPathFromUri:src completionHandler:^(NSString *path, ALAssetRepresentation *asset) {
if(path != nil)
{
__block NSInputStream * is = [[NSInputStream alloc] initWithFileAtPath:path];
__block NSOutputStream * os = [[NSOutputStream alloc] initToFileAtPath:dest append:append];
[is open];
[os open];
uint8_t buffer[10240];
__block long written = 0;
int read = [is read:buffer maxLength:10240];
written += read;
while(read > 0) {
[os write:buffer maxLength:read];
read = [is read:buffer maxLength:10240];
written += read;
}
[os close];
[is close];
__block NSNumber * size = [NSNumber numberWithLong:written];
callback(nil, size);
}
else if(asset != nil)
{
__block NSOutputStream * os = [[NSOutputStream alloc] initToFileAtPath:dest append:append];
int read = 0;
int cursor = 0;
__block long written = 0;
uint8_t buffer[10240];
[os open];
while((read = [asset getBytes:buffer fromOffset:cursor length:10240 error:nil]) > 0)
{
cursor += read;
[os write:buffer maxLength:read];
}
__block NSNumber * size = [NSNumber numberWithLong:written];
[os close];
callback(nil, size);
}
else
callback(@"failed to resolve path", nil);
}];
return 0;
}
# pragma mark - write file
+ (void) writeFile:(NSString *)path encoding:(NSString *)encoding data:(NSString *)data append:(BOOL)append resolver:(RCTPromiseResolveBlock)resolve rejecter:(RCTPromiseRejectBlock)reject
{
@try {
NSFileManager * fm = [NSFileManager defaultManager];
NSError * err = nil;
// check if the folder exists, if not exists, create folders recursively
// after the folders created, write data into the file
NSString * folder = [path stringByDeletingLastPathComponent];
encoding = [encoding lowercaseString];
if(![fm fileExistsAtPath:folder]) {
[fm createDirectoryAtPath:folder withIntermediateDirectories:YES attributes:NULL error:&err];
[fm createFileAtPath:path contents:nil attributes:nil];
}
if(err != nil) {
reject(@"RNFetchBlob writeFile Error", @"could not create file at path", nil);
return;
}
NSFileHandle *fileHandle = [NSFileHandle fileHandleForWritingAtPath:path];
NSData * content = nil;
if([encoding RNFBContainsString:@"base64"]) {
content = [[NSData alloc] initWithBase64EncodedString:data options:0];
}
else if([encoding isEqualToString:@"uri"]) {
NSNumber* size = [[self class] writeFileFromFile:data toFile:path append:append callback:^(NSString *errMsg, NSNumber *size) {
if(errMsg != nil)
reject(@"RNFetchBlob writeFile Error", errMsg, nil);
else
resolve(size);
}];
return;
}
else {
content = [data dataUsingEncoding:NSUTF8StringEncoding];
}
if(append == YES) {
[fileHandle seekToEndOfFile];
[fileHandle writeData:content];
[fileHandle closeFile];
}
else {
[content writeToFile:path atomically:YES];
}
fm = nil;
resolve([NSNumber numberWithInteger:[content length]]);
}
@catch (NSException * e)
{
reject(@"RNFetchBlob writeFile Error", @"Error", [e description]);
}
}
# pragma mark - write file (array)
+ (void) writeFileArray:(NSString *)path data:(NSArray *)data append:(BOOL)append resolver:(RCTPromiseResolveBlock)resolve rejecter:(RCTPromiseRejectBlock)reject {
@try {
NSFileManager * fm = [NSFileManager defaultManager];
NSError * err = nil;
// check if the folder exists, if not exists, create folders recursively
// after the folders created, write data into the file
NSString * folder = [path stringByDeletingLastPathComponent];
if(![fm fileExistsAtPath:folder]) {
[fm createDirectoryAtPath:folder withIntermediateDirectories:YES attributes:NULL error:&err];
}
NSMutableData * fileContent = [NSMutableData alloc];
// prevent stack overflow, alloc on heap
char * bytes = (char*) malloc([data count]);
for(int i = 0; i < data.count; i++) {
bytes[i] = [[data objectAtIndex:i] charValue];
}
[fileContent appendBytes:bytes length:data.count];
if(![fm fileExistsAtPath:path]) {
[fm createFileAtPath:path contents:fileContent attributes:NULL];
}
// if file exists, write file
else {
if(append == YES) {
NSFileHandle *fileHandle = [NSFileHandle fileHandleForWritingAtPath:path];
[fileHandle seekToEndOfFile];
[fileHandle writeData:fileContent];
[fileHandle closeFile];
}
else {
[fileContent writeToFile:path atomically:YES];
}
}
free(bytes);
fm = nil;
resolve([NSNumber numberWithInteger: data.count]);
}
@catch (NSException * e)
{
reject(@"RNFetchBlob writeFile Error", @"Error", [e description]);
}
}
# pragma mark - read file
+ (void) readFile:(NSString *)path
encoding:(NSString *)encoding
onComplete:(void (^)(id content, NSString * errMsg))onComplete
{
[[self class] getPathFromUri:path completionHandler:^(NSString *path, ALAssetRepresentation *asset) {
__block NSData * fileContent;
NSError * err;
__block Byte * buffer;
if(asset != nil)
{
buffer = malloc(asset.size);
[asset getBytes:buffer fromOffset:0 length:asset.size error:&err];
if(err != nil)
{
onComplete(nil, [err description]);
free(buffer);
return;
}
fileContent = [NSData dataWithBytes:buffer length:asset.size];
free(buffer);
}
else
{
if(![[NSFileManager defaultManager] fileExistsAtPath:path]) {
onComplete(nil, @"file not exists");
return;
}
fileContent = [NSData dataWithContentsOfFile:path];
}
if(encoding != nil)
{
if([[encoding lowercaseString] isEqualToString:@"utf8"])
{
NSString * utf8 = [[NSString alloc] initWithData:fileContent encoding:NSUTF8StringEncoding];
if(utf8 == nil)
onComplete([[NSString alloc] initWithData:fileContent encoding:NSISOLatin1StringEncoding], nil);
else
onComplete(utf8, nil);
}
else if ([[encoding lowercaseString] isEqualToString:@"base64"]) {
onComplete([fileContent base64EncodedStringWithOptions:0], nil);
}
else if ([[encoding lowercaseString] isEqualToString:@"ascii"]) {
NSMutableArray * resultArray = [NSMutableArray array];
char * bytes = [fileContent bytes];
for(int i=0;i<[fileContent length];i++) {
[resultArray addObject:[NSNumber numberWithChar:bytes[i]]];
}
onComplete(resultArray, nil);
}
}
else
{
onComplete(fileContent, nil);
}
}];
}
# pragma mark - mkdir
+ (BOOL) mkdir:(NSString *) path {
BOOL isDir;
NSError * err = nil;
// if temp folder not exists, create one
if(![[NSFileManager defaultManager] fileExistsAtPath: path isDirectory:&isDir]) {
[[NSFileManager defaultManager] createDirectoryAtPath:path withIntermediateDirectories:YES attributes:nil error:&err];
}
return err == nil;
}
# pragma mark - stat
+ (NSDictionary *) stat:(NSString *) path error:(NSError **) error {
BOOL isDir = NO;
NSFileManager * fm = [NSFileManager defaultManager];
if([fm fileExistsAtPath:path isDirectory:&isDir] == NO) {
return nil;
}
NSDictionary * info = [fm attributesOfItemAtPath:path error:&error];
NSString * size = [NSString stringWithFormat:@"%d", [info fileSize]];
NSString * filename = [path lastPathComponent];
NSDate * lastModified;
[[NSURL fileURLWithPath:path] getResourceValue:&lastModified forKey:NSURLContentModificationDateKey error:&error];
return @{
@"size" : size,
@"filename" : filename,
@"path" : path,
@"lastModified" : [NSNumber numberWithLong:(time_t) [lastModified timeIntervalSince1970]*1000],
@"type" : isDir ? @"directory" : @"file"
};
}
# pragma mark - exists
+ (void) exists:(NSString *) path callback:(RCTResponseSenderBlock)callback
{
[[self class] getPathFromUri:path completionHandler:^(NSString *path, ALAssetRepresentation *asset) {
if(path != nil)
{
BOOL isDir = NO;
BOOL exists = NO;
exists = [[NSFileManager defaultManager] fileExistsAtPath:path isDirectory: &isDir];
callback(@[@(exists), @(isDir)]);
}
else if(asset != nil)
{
callback(@[@YES, @NO]);
}
else
{
callback(@[@NO, @NO]);
}
}];
}
# pragma mark - open file stream
// Create file stream for write data
- (NSString *)openWithPath:(NSString *)destPath encode:(nullable NSString *)encode appendData:(BOOL)append {
self.outStream = [[NSOutputStream alloc] initToFileAtPath:destPath append:append];
self.encoding = encode;
[self.outStream scheduleInRunLoop:[NSRunLoop currentRunLoop] forMode:NSRunLoopCommonModes];
[self.outStream open];
NSString *uuid = [[NSUUID UUID] UUIDString];
self.streamId = uuid;
[RNFetchBlobFS setFileStream:self withId:uuid];
return uuid;
}
# pragma mark - file stream write chunk
// Write file chunk into an opened stream
- (void)writeEncodeChunk:(NSString *) chunk {
NSData * decodedData = nil;
if([[self.encoding lowercaseString] isEqualToString:@"base64"]) {
decodedData = [[NSData alloc] initWithBase64EncodedString:chunk options: NSDataBase64DecodingIgnoreUnknownCharacters];
}
else if([[self.encoding lowercaseString] isEqualToString:@"utf8"]) {
decodedData = [chunk dataUsingEncoding:NSUTF8StringEncoding];
}
else if([[self.encoding lowercaseString] isEqualToString:@"ascii"]) {
decodedData = [chunk dataUsingEncoding:NSASCIIStringEncoding];
}
NSUInteger left = [decodedData length];
NSUInteger nwr = 0;
do {
nwr = [self.outStream write:[decodedData bytes] maxLength:left];
if (-1 == nwr) break;
left -= nwr;
} while (left > 0);
if (left) {
NSLog(@"stream error: %@", [self.outStream streamError]);
}
}
// Write file chunk into an opened stream
- (void)write:(NSData *) chunk {
NSUInteger left = [chunk length];
NSUInteger nwr = 0;
do {
nwr = [self.outStream write:[chunk bytes] maxLength:left];
if (-1 == nwr) break;
left -= nwr;
} while (left > 0);
if (left) {
NSLog(@"stream error: %@", [self.outStream streamError]);
}
}
// close file write stream
- (void)closeOutStream {
if(self.outStream != nil) {
[self.outStream close];
self.outStream = nil;
}
}
// Slice a file into another file, generally for support Blob implementation.
+ (void)slice:(NSString *)path
dest:(NSString *)dest
start:(nonnull NSNumber *)start
end:(nonnull NSNumber *)end
encode:(NSString *)encode
resolver:(RCTPromiseResolveBlock)resolve
rejecter:(RCTPromiseRejectBlock)reject
{
[[self class] getPathFromUri:path completionHandler:^(NSString *path, ALAssetRepresentation *asset)
{
if(path != nil)
{
long expected = [end longValue] - [start longValue];
long read = 0;
NSFileHandle * handle = [NSFileHandle fileHandleForReadingAtPath:path];
NSFileManager * fm = [NSFileManager defaultManager];
NSOutputStream * os = [[NSOutputStream alloc] initToFileAtPath:dest append:NO];
[os open];
// abort for the source file not exists
if([fm fileExistsAtPath:path] == NO)
{
reject(@"RNFetchBlob slice failed : the file does not exists", path, nil);
return;
}
long size = [fm attributesOfItemAtPath:path error:nil].fileSize;
long max = MIN(size, [end longValue]);
if(![fm fileExistsAtPath:dest]) {
[fm createFileAtPath:dest contents:@"" attributes:nil];
}
[handle seekToFileOffset:[start longValue]];
while(read < expected)
{
NSData * chunk;
long chunkSize = 0;
if([start longValue] + read + 10240 > max)
{
NSLog(@"read chunk %lu", max - read - [start longValue]);
chunkSize = max - read - [start longValue];
chunk = [handle readDataOfLength:chunkSize];
}
else
{
NSLog(@"read chunk %lu", 10240);
chunkSize = 10240;
chunk = [handle readDataOfLength:10240];
}
if([chunk length] <= 0)
break;
long remain = expected - read;
[os write:[chunk bytes] maxLength:chunkSize];
read += [chunk length];
}
[handle closeFile];
[os close];
resolve(dest);
}
else if (asset != nil)
{
long expected = [end longValue] - [start longValue];
long read = 0;
long chunkRead = 0;
NSOutputStream * os = [[NSOutputStream alloc] initToFileAtPath:dest append:NO];
[os open];
long size = asset.size;
long max = MIN(size, [end longValue]);
while(read < expected)
{
uint8_t * chunk[10240];
long chunkSize = 0;
if([start longValue] + read + 10240 > max)
{
NSLog(@"read chunk %lu", max - read - [start longValue]);
chunkSize = max - read - [start longValue];
chunkRead = [asset getBytes:chunk fromOffset:[start longValue] + read length:chunkSize error:nil];
}
else
{
NSLog(@"read chunk %lu", 10240);
chunkSize = 10240;
chunkRead = [asset getBytes:chunk fromOffset:[start longValue] + read length:chunkSize error:nil];
}
if( chunkRead <= 0)
break;
long remain = expected - read;
[os write:chunk maxLength:chunkSize];
read += chunkRead;
}
[os close];
resolve(dest);
}
else
{
reject(@"slice error", [NSString stringWithFormat: @"could not resolve URI %@", path ], nil);
}
}];
}
// close file read stream
- (void)closeInStream
{
if(self.inStream != nil) {
[self.inStream close];
[self.inStream removeFromRunLoop:[NSRunLoop currentRunLoop] forMode:NSRunLoopCommonModes];
[[RNFetchBlobFS getFileStreams] setValue:nil forKey:self.streamId];
self.streamId = nil;
}
}
# pragma mark - get absolute path of resource
+ (void) getPathFromUri:(NSString *)uri completionHandler:(void(^)(NSString * path, ALAssetRepresentation *asset)) onComplete
{
if([uri hasPrefix:AL_PREFIX])
{
NSURL *asseturl = [NSURL URLWithString:uri];
__block ALAssetsLibrary* assetslibrary = [[ALAssetsLibrary alloc] init];
[assetslibrary assetForURL:asseturl
resultBlock:^(ALAsset *asset) {
__block ALAssetRepresentation * present = [asset defaultRepresentation];
onComplete(nil, present);
}
failureBlock:^(NSError *error) {
onComplete(nil, nil);
}];
}
else
{
onComplete([[self class] getPathOfAsset:uri], nil);
}
}
#pragma mark - get disk space
+(void) df:(RCTResponseSenderBlock)callback
{
NSError *error = nil;
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSDictionary *dictionary = [[NSFileManager defaultManager] attributesOfFileSystemForPath:[paths lastObject] error: &error];
if (dictionary) {
NSNumber *fileSystemSizeInBytes = [dictionary objectForKey: NSFileSystemSize];
NSNumber *freeFileSystemSizeInBytes = [dictionary objectForKey:NSFileSystemFreeSize];
callback(@[[NSNull null], @{
@"free" : freeFileSystemSizeInBytes,
@"total" : fileSystemSizeInBytes,
}]);
} else {
callback(@[@"failed to get storage usage."]);
}
}
+ (void) writeAssetToPath:(ALAssetRepresentation * )rep dest:(NSString *)dest
{
int read = 0;
int cursor = 0;
Byte * buffer = (Byte *)malloc(10240);
NSOutputStream * ostream = [[NSOutputStream alloc] initToFileAtPath:dest append:NO];
[ostream open];
while((read = [rep getBytes:buffer fromOffset:cursor length:10240 error:nil]) > 0)
{
cursor+=10240;
[ostream write:buffer maxLength:read];
}
[ostream close];
free(buffer);
return;
}
@end