| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246 |
- /*
- * Copyright 2017 Google
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #import "Firestore/Source/Local/FSTLevelDB.h"
- #include <leveldb/db.h>
- #import "FIRFirestoreErrors.h"
- #import "Firestore/Source/Core/FSTDatabaseInfo.h"
- #import "Firestore/Source/Local/FSTLevelDBMutationQueue.h"
- #import "Firestore/Source/Local/FSTLevelDBQueryCache.h"
- #import "Firestore/Source/Local/FSTLevelDBRemoteDocumentCache.h"
- #import "Firestore/Source/Local/FSTWriteGroup.h"
- #import "Firestore/Source/Local/FSTWriteGroupTracker.h"
- #import "Firestore/Source/Model/FSTDatabaseID.h"
- #import "Firestore/Source/Remote/FSTSerializerBeta.h"
- #import "Firestore/Source/Util/FSTAssert.h"
- #import "Firestore/Source/Util/FSTLogger.h"
- NS_ASSUME_NONNULL_BEGIN
- static NSString *const kReservedPathComponent = @"firestore";
- using leveldb::DB;
- using leveldb::Options;
- using leveldb::Status;
- using leveldb::WriteOptions;
- @interface FSTLevelDB ()
- @property(nonatomic, copy) NSString *directory;
- @property(nonatomic, strong) FSTWriteGroupTracker *writeGroupTracker;
- @property(nonatomic, assign, getter=isStarted) BOOL started;
- @property(nonatomic, strong, readonly) FSTLocalSerializer *serializer;
- @end
- @implementation FSTLevelDB
- - (instancetype)initWithDirectory:(NSString *)directory
- serializer:(FSTLocalSerializer *)serializer {
- if (self = [super init]) {
- _directory = [directory copy];
- _writeGroupTracker = [FSTWriteGroupTracker tracker];
- _serializer = serializer;
- }
- return self;
- }
- + (NSString *)documentsDirectory {
- #if TARGET_OS_IPHONE
- NSArray<NSString *> *directories =
- NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
- return [directories[0] stringByAppendingPathComponent:kReservedPathComponent];
- #elif TARGET_OS_MAC
- NSString *dotPrefixed = [@"." stringByAppendingString:kReservedPathComponent];
- return [NSHomeDirectory() stringByAppendingPathComponent:dotPrefixed];
- #else
- #error "local storage on tvOS"
- // TODO(mcg): Writing to NSDocumentsDirectory on tvOS will fail; we need to write to Caches
- // https://developer.apple.com/library/content/documentation/General/Conceptual/AppleTV_PG/
- #endif
- }
- + (NSString *)storageDirectoryForDatabaseInfo:(FSTDatabaseInfo *)databaseInfo
- documentsDirectory:(NSString *)documentsDirectory {
- // Use two different path formats:
- //
- // * persistenceKey / projectID . databaseID / name
- // * persistenceKey / projectID / name
- //
- // projectIDs are DNS-compatible names and cannot contain dots so there's
- // no danger of collisions.
- NSString *directory = documentsDirectory;
- directory = [directory stringByAppendingPathComponent:databaseInfo.persistenceKey];
- NSString *segment = databaseInfo.databaseID.projectID;
- if (![databaseInfo.databaseID isDefaultDatabase]) {
- segment = [NSString stringWithFormat:@"%@.%@", segment, databaseInfo.databaseID.databaseID];
- }
- directory = [directory stringByAppendingPathComponent:segment];
- // Reserve one additional path component to allow multiple physical databases
- directory = [directory stringByAppendingPathComponent:@"main"];
- return directory;
- }
- #pragma mark - Startup
- - (BOOL)start:(NSError **)error {
- FSTAssert(!self.isStarted, @"FSTLevelDB double-started!");
- self.started = YES;
- NSString *directory = self.directory;
- if (![self ensureDirectory:directory error:error]) {
- return NO;
- }
- DB *database = [self createDBWithDirectory:directory error:error];
- if (!database) {
- return NO;
- }
- _ptr.reset(database);
- return YES;
- }
- /** Creates the directory at @a directory and marks it as excluded from iCloud backup. */
- - (BOOL)ensureDirectory:(NSString *)directory error:(NSError **)error {
- NSError *localError;
- NSFileManager *files = [NSFileManager defaultManager];
- BOOL success = [files createDirectoryAtPath:directory
- withIntermediateDirectories:YES
- attributes:nil
- error:&localError];
- if (!success) {
- *error =
- [NSError errorWithDomain:FIRFirestoreErrorDomain
- code:FIRFirestoreErrorCodeInternal
- userInfo:@{
- NSLocalizedDescriptionKey : @"Failed to create persistence directory",
- NSUnderlyingErrorKey : localError
- }];
- return NO;
- }
- NSURL *dirURL = [NSURL fileURLWithPath:directory];
- success = [dirURL setResourceValue:@YES forKey:NSURLIsExcludedFromBackupKey error:&localError];
- if (!success) {
- *error = [NSError errorWithDomain:FIRFirestoreErrorDomain
- code:FIRFirestoreErrorCodeInternal
- userInfo:@{
- NSLocalizedDescriptionKey :
- @"Failed mark persistence directory as excluded from backups",
- NSUnderlyingErrorKey : localError
- }];
- return NO;
- }
- return YES;
- }
- /** Opens the database within the given directory. */
- - (nullable DB *)createDBWithDirectory:(NSString *)directory error:(NSError **)error {
- Options options;
- options.create_if_missing = true;
- DB *database;
- Status status = DB::Open(options, [directory UTF8String], &database);
- if (!status.ok()) {
- if (error) {
- NSString *name = [directory lastPathComponent];
- *error =
- [FSTLevelDB errorWithStatus:status
- description:@"Failed to create database %@ at path %@", name, directory];
- }
- return nullptr;
- }
- return database;
- }
- #pragma mark - Persistence Factory methods
- - (id<FSTMutationQueue>)mutationQueueForUser:(FSTUser *)user {
- return [FSTLevelDBMutationQueue mutationQueueWithUser:user db:_ptr serializer:self.serializer];
- }
- - (id<FSTQueryCache>)queryCache {
- return [[FSTLevelDBQueryCache alloc] initWithDB:_ptr serializer:self.serializer];
- }
- - (id<FSTRemoteDocumentCache>)remoteDocumentCache {
- return [[FSTLevelDBRemoteDocumentCache alloc] initWithDB:_ptr serializer:self.serializer];
- }
- - (FSTWriteGroup *)startGroupWithAction:(NSString *)action {
- return [self.writeGroupTracker startGroupWithAction:action];
- }
- - (void)commitGroup:(FSTWriteGroup *)group {
- [self.writeGroupTracker endGroup:group];
- NSString *description = [group description];
- FSTLog(@"Committing %@", description);
- Status status = [group writeToDB:_ptr];
- if (!status.ok()) {
- FSTFail(@"%@ failed with status: %s, description: %@", group.action, status.ToString().c_str(),
- description);
- }
- }
- - (void)shutdown {
- FSTAssert(self.isStarted, @"FSTLevelDB shutdown without start!");
- self.started = NO;
- _ptr.reset();
- }
- #pragma mark - Error and Status
- + (nullable NSError *)errorWithStatus:(Status)status description:(NSString *)description, ... {
- if (status.ok()) {
- return nil;
- }
- va_list args;
- va_start(args, description);
- NSString *message = [[NSString alloc] initWithFormat:description arguments:args];
- NSString *reason = [self descriptionOfStatus:status];
- NSError *result = [NSError errorWithDomain:FIRFirestoreErrorDomain
- code:FIRFirestoreErrorCodeInternal
- userInfo:@{
- NSLocalizedDescriptionKey : message,
- NSLocalizedFailureReasonErrorKey : reason
- }];
- va_end(args);
- return result;
- }
- + (NSString *)descriptionOfStatus:(Status)status {
- return [NSString stringWithCString:status.ToString().c_str() encoding:NSUTF8StringEncoding];
- }
- @end
- NS_ASSUME_NONNULL_END
|