This repository has been archived by the owner on Aug 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ios] Implemented offline API in iOS SDK
Fixes #3892.
- Loading branch information
Showing
14 changed files
with
545 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#import <Foundation/Foundation.h> | ||
|
||
#import "MGLTypes.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@class MGLDownloadable; | ||
@protocol MGLDownloadRegion; | ||
|
||
typedef void (^MGLDownloadableRegistrationCompletionHandler)(MGLDownloadable *downloadable, NSError *error); | ||
typedef void (^MGLDownloadableRemovalCompletionHandler)(NSError *error); | ||
typedef void (^MGLDownloadablesRequestCompletionHandler)(NS_ARRAY_OF(MGLDownloadable *) *downloadables, NSError *error); | ||
|
||
@interface MGLDownloadController : NSObject | ||
|
||
+ (instancetype)sharedController; | ||
|
||
- (instancetype)init NS_UNAVAILABLE; | ||
|
||
- (void)addDownloadableForRegion:(id <MGLDownloadRegion>)downloadRegion withContext:(NSData *)context completionHandler:(MGLDownloadableRegistrationCompletionHandler)completion; | ||
|
||
- (void)removeDownloadable:(MGLDownloadable *)downloadable withCompletionHandler:(MGLDownloadableRemovalCompletionHandler)completion; | ||
|
||
- (void)requestDownloadablesWithCompletionHandler:(MGLDownloadablesRequestCompletionHandler)completion; | ||
|
||
- (void)setMaximumAllowedMapboxTiles:(uint64_t)maximumCount; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#import <Foundation/Foundation.h> | ||
|
||
#import "MGLTypes.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@protocol MGLDownloadRegion <NSObject> | ||
|
||
@property (nonatomic, readonly) NSURL *styleURL; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
#import <Foundation/Foundation.h> | ||
|
||
#import "MGLDownloadRegion.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@protocol MGLDownloadableDelegate; | ||
|
||
typedef NS_ENUM (NSInteger, MGLDownloadableState) { | ||
MGLDownloadableStateInactive = 0, | ||
MGLDownloadableStateActive = 1, | ||
MGLDownloadableStateComplete = 2, | ||
}; | ||
|
||
typedef struct MGLDownloadableProgress { | ||
uint64_t countOfResourcesCompleted; | ||
uint64_t countOfBytesCompleted; | ||
uint64_t countOfResourcesExpected; | ||
uint64_t maximumResourcesExpected; | ||
} MGLDownloadableProgress; | ||
|
||
@interface MGLDownloadable : NSObject | ||
|
||
@property (nonatomic, readonly) id <MGLDownloadRegion> region; | ||
@property (nonatomic, readonly) NSData *context; | ||
@property (nonatomic, readonly) MGLDownloadableState state; | ||
@property (nonatomic, readonly) MGLDownloadableProgress progress; | ||
@property (nonatomic, weak, nullable) id <MGLDownloadableDelegate> delegate; | ||
|
||
- (instancetype)init NS_UNAVAILABLE; | ||
|
||
- (void)resume; | ||
- (void)suspend; | ||
|
||
- (void)requestProgress; | ||
|
||
@end | ||
|
||
@protocol MGLDownloadableDelegate <NSObject> | ||
|
||
@optional | ||
|
||
- (void)downloadable:(MGLDownloadable *)downloadable progressDidChange:(MGLDownloadableProgress)progress; | ||
- (void)downloadable:(MGLDownloadable *)downloadable didReceiveError:(NSError *)error; | ||
- (void)downloadable:(MGLDownloadable *)downloadable didReceiveMaximumAllowedMapboxTiles:(uint64_t)maximumCount; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#import <Foundation/Foundation.h> | ||
|
||
#import "MGLDownloadRegion.h" | ||
#import "MGLGeometry.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface MGLTilePyramidDownloadRegion : NSObject <MGLDownloadRegion> | ||
|
||
@property (nonatomic, readonly) MGLCoordinateBounds bounds; | ||
@property (nonatomic, readonly) double minimumZoomLevel; | ||
@property (nonatomic, readonly) double maximumZoomLevel; | ||
|
||
- (instancetype)init NS_UNAVAILABLE; | ||
- (instancetype)initWithStyleURL:(nullable NSURL *)styleURL bounds:(MGLCoordinateBounds)bounds fromZoomLevel:(double)minimumZoomLevel toZoomLevel:(double)maximumZoomLevel NS_DESIGNATED_INITIALIZER; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
#import "MGLDownloadController_Private.h" | ||
|
||
#import "MGLAccountManager_Private.h" | ||
#import "MGLGeometry_Private.h" | ||
#import "MGLDownloadable_Private.h" | ||
#import "MGLDownloadRegion_Private.h" | ||
#import "MGLTilePyramidDownloadRegion.h" | ||
|
||
#include <mbgl/util/string.hpp> | ||
|
||
@interface MGLDownloadController () | ||
|
||
@property (nonatomic) mbgl::DefaultFileSource *mbglFileSource; | ||
|
||
- (instancetype)initWithFileName:(NSString *)fileName NS_DESIGNATED_INITIALIZER; | ||
|
||
@end | ||
|
||
@implementation MGLDownloadController | ||
|
||
+ (instancetype)sharedController { | ||
static dispatch_once_t onceToken; | ||
static MGLDownloadController *sharedController; | ||
dispatch_once(&onceToken, ^{ | ||
sharedController = [[self alloc] initWithFileName:@"offline.db"]; | ||
}); | ||
return sharedController; | ||
} | ||
|
||
- (instancetype)initWithFileName:(NSString *)fileName { | ||
if (self = [super init]) { | ||
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); | ||
NSString *fileCachePath = [paths.firstObject stringByAppendingPathComponent:fileName]; | ||
_mbglFileSource = new mbgl::DefaultFileSource(fileCachePath.UTF8String, [NSBundle mainBundle].resourceURL.path.UTF8String); | ||
|
||
// Observe for changes to the global access token (and find out the current one). | ||
[[MGLAccountManager sharedManager] addObserver:self | ||
forKeyPath:@"accessToken" | ||
options:(NSKeyValueObservingOptionInitial | | ||
NSKeyValueObservingOptionNew) | ||
context:NULL]; | ||
} | ||
return self; | ||
} | ||
|
||
- (void)dealloc { | ||
[[MGLAccountManager sharedManager] removeObserver:self forKeyPath:@"accessToken"]; | ||
|
||
delete _mbglFileSource; | ||
_mbglFileSource = nullptr; | ||
} | ||
|
||
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NS_DICTIONARY_OF(NSString *, id) *)change context:(__unused void *)context { | ||
// Synchronize the file source’s access token with the global one in MGLAccountManager. | ||
if ([keyPath isEqualToString:@"accessToken"] && object == [MGLAccountManager sharedManager]) { | ||
NSString *accessToken = change[NSKeyValueChangeNewKey]; | ||
if (![accessToken isKindOfClass:[NSNull class]]) { | ||
self.mbglFileSource->setAccessToken(accessToken.UTF8String); | ||
} | ||
} | ||
} | ||
|
||
- (void)addDownloadableForRegion:(id <MGLDownloadRegion>)downloadRegion withContext:(NSData *)context completionHandler:(MGLDownloadableRegistrationCompletionHandler)completion { | ||
if (![downloadRegion conformsToProtocol:@protocol(MGLDownloadRegion_Private)]) { | ||
[NSException raise:@"Unsupported region type" format: | ||
@"Regions of type %@ are unsupported.", NSStringFromClass([downloadRegion class])]; | ||
return; | ||
} | ||
|
||
const mbgl::OfflineTilePyramidRegionDefinition regionDefinition = [(id <MGLDownloadRegion_Private>)downloadRegion offlineRegionDefinition]; | ||
mbgl::OfflineRegionMetadata metadata(context.length); | ||
[context getBytes:&metadata[0] length:metadata.size()]; | ||
self.mbglFileSource->createOfflineRegion(regionDefinition, metadata, [&, completion](std::exception_ptr exception, mbgl::optional<mbgl::OfflineRegion> region) { | ||
NSError *error; | ||
if (exception) { | ||
NSString *errorDescription = @(mbgl::util::toString(exception).c_str()); | ||
error = [NSError errorWithDomain:MGLErrorDomain code:-1 userInfo:errorDescription ? @{ | ||
NSLocalizedDescriptionKey: errorDescription, | ||
} : nil]; | ||
} | ||
if (completion) { | ||
MGLDownloadable *downloadable = [[MGLDownloadable alloc] initWithMBGLRegion:new mbgl::OfflineRegion(std::move(*region))]; | ||
dispatch_async(dispatch_get_main_queue(), [&, completion, error, downloadable](void) { | ||
completion(downloadable, error); | ||
}); | ||
} | ||
}); | ||
} | ||
|
||
- (void)removeDownloadable:(MGLDownloadable *)downloadable withCompletionHandler:(MGLDownloadableRemovalCompletionHandler)completion { | ||
self.mbglFileSource->deleteOfflineRegion(std::move(*downloadable.mbglOfflineRegion), [&, completion](std::exception_ptr exception) { | ||
NSError *error; | ||
if (exception) { | ||
error = [NSError errorWithDomain:MGLErrorDomain code:-1 userInfo:@{ | ||
NSLocalizedDescriptionKey: @(mbgl::util::toString(exception).c_str()), | ||
}]; | ||
} | ||
if (completion) { | ||
dispatch_async(dispatch_get_main_queue(), [&, completion, error](void) { | ||
completion(error); | ||
}); | ||
} | ||
}); | ||
} | ||
|
||
- (void)requestDownloadablesWithCompletionHandler:(MGLDownloadablesRequestCompletionHandler)completion { | ||
self.mbglFileSource->listOfflineRegions([&, completion](std::exception_ptr exception, mbgl::optional<std::vector<mbgl::OfflineRegion>> regions) { | ||
NSError *error; | ||
if (exception) { | ||
error = [NSError errorWithDomain:MGLErrorDomain code:-1 userInfo:@{ | ||
NSLocalizedDescriptionKey: @(mbgl::util::toString(exception).c_str()), | ||
}]; | ||
} | ||
NSMutableArray *downloadables; | ||
if (regions) { | ||
downloadables = [NSMutableArray arrayWithCapacity:regions->size()]; | ||
for (mbgl::OfflineRegion ®ion : *regions) { | ||
MGLDownloadable *downloadable = [[MGLDownloadable alloc] initWithMBGLRegion:new mbgl::OfflineRegion(std::move(region))]; | ||
[downloadables addObject:downloadable]; | ||
} | ||
} | ||
if (completion) { | ||
dispatch_async(dispatch_get_main_queue(), [&, completion, error, downloadables](void) { | ||
completion(downloadables, error); | ||
}); | ||
} | ||
}); | ||
} | ||
|
||
- (void)setMaximumAllowedMapboxTiles:(uint64_t)maximumCount { | ||
_mbglFileSource->setOfflineMapboxTileCountLimit(maximumCount); | ||
} | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#import "MGLDownloadController.h" | ||
|
||
#import "MGLDownloadable.h" | ||
|
||
#include <mbgl/storage/default_file_source.hpp> | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface MGLDownloadController (Private) | ||
|
||
@property (nonatomic) mbgl::DefaultFileSource *mbglFileSource; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#import <Foundation/Foundation.h> | ||
|
||
#import "MGLDownloadRegion.h" | ||
|
||
#include <mbgl/storage/offline.hpp> | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@protocol MGLDownloadRegion_Private <MGLDownloadRegion> | ||
|
||
- (instancetype)initWithOfflineRegionDefinition:(const mbgl::OfflineRegionDefinition &)definition; | ||
|
||
- (const mbgl::OfflineRegionDefinition)offlineRegionDefinition; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
Oops, something went wrong.