Archived
141 lines
4.5 KiB
Objective-C
141 lines
4.5 KiB
Objective-C
/*
|
|
* Copyright 2018 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 "GDTCORLibrary/Public/GDTCORRegistrar.h"
|
|
|
|
#import "GDTCORLibrary/Private/GDTCORRegistrar_Private.h"
|
|
|
|
@implementation GDTCORRegistrar {
|
|
/** Backing ivar for targetToUploader property. */
|
|
NSMutableDictionary<NSNumber *, id<GDTCORUploader>> *_targetToUploader;
|
|
|
|
/** Backing ivar for targetToPrioritizer property. */
|
|
NSMutableDictionary<NSNumber *, id<GDTCORPrioritizer>> *_targetToPrioritizer;
|
|
}
|
|
|
|
+ (instancetype)sharedInstance {
|
|
static GDTCORRegistrar *sharedInstance;
|
|
static dispatch_once_t onceToken;
|
|
dispatch_once(&onceToken, ^{
|
|
sharedInstance = [[GDTCORRegistrar alloc] init];
|
|
});
|
|
return sharedInstance;
|
|
}
|
|
|
|
- (instancetype)init {
|
|
self = [super init];
|
|
if (self) {
|
|
_registrarQueue =
|
|
dispatch_queue_create("com.google.GDTCORRegistrar", DISPATCH_QUEUE_CONCURRENT);
|
|
_targetToPrioritizer = [[NSMutableDictionary alloc] init];
|
|
_targetToUploader = [[NSMutableDictionary alloc] init];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)registerUploader:(id<GDTCORUploader>)backend target:(GDTCORTarget)target {
|
|
__weak GDTCORRegistrar *weakSelf = self;
|
|
dispatch_barrier_async(_registrarQueue, ^{
|
|
GDTCORRegistrar *strongSelf = weakSelf;
|
|
if (strongSelf) {
|
|
strongSelf->_targetToUploader[@(target)] = backend;
|
|
}
|
|
});
|
|
}
|
|
|
|
- (void)registerPrioritizer:(id<GDTCORPrioritizer>)prioritizer target:(GDTCORTarget)target {
|
|
__weak GDTCORRegistrar *weakSelf = self;
|
|
dispatch_barrier_async(_registrarQueue, ^{
|
|
GDTCORRegistrar *strongSelf = weakSelf;
|
|
if (strongSelf) {
|
|
strongSelf->_targetToPrioritizer[@(target)] = prioritizer;
|
|
}
|
|
});
|
|
}
|
|
|
|
- (NSMutableDictionary<NSNumber *, id<GDTCORUploader>> *)targetToUploader {
|
|
__block NSMutableDictionary<NSNumber *, id<GDTCORUploader>> *targetToUploader;
|
|
__weak GDTCORRegistrar *weakSelf = self;
|
|
dispatch_sync(_registrarQueue, ^{
|
|
GDTCORRegistrar *strongSelf = weakSelf;
|
|
if (strongSelf) {
|
|
targetToUploader = strongSelf->_targetToUploader;
|
|
}
|
|
});
|
|
return targetToUploader;
|
|
}
|
|
|
|
- (NSMutableDictionary<NSNumber *, id<GDTCORPrioritizer>> *)targetToPrioritizer {
|
|
__block NSMutableDictionary<NSNumber *, id<GDTCORPrioritizer>> *targetToPrioritizer;
|
|
__weak GDTCORRegistrar *weakSelf = self;
|
|
dispatch_sync(_registrarQueue, ^{
|
|
GDTCORRegistrar *strongSelf = weakSelf;
|
|
if (strongSelf) {
|
|
targetToPrioritizer = strongSelf->_targetToPrioritizer;
|
|
}
|
|
});
|
|
return targetToPrioritizer;
|
|
}
|
|
|
|
#pragma mark - GDTCORLifecycleProtocol
|
|
|
|
- (void)appWillBackground:(nonnull GDTCORApplication *)app {
|
|
dispatch_async(_registrarQueue, ^{
|
|
for (id<GDTCORUploader> uploader in [self->_targetToUploader allValues]) {
|
|
if ([uploader respondsToSelector:@selector(appWillBackground:)]) {
|
|
[uploader appWillBackground:app];
|
|
}
|
|
}
|
|
for (id<GDTCORPrioritizer> prioritizer in [self->_targetToPrioritizer allValues]) {
|
|
if ([prioritizer respondsToSelector:@selector(appWillBackground:)]) {
|
|
[prioritizer appWillBackground:app];
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
- (void)appWillForeground:(nonnull GDTCORApplication *)app {
|
|
dispatch_async(_registrarQueue, ^{
|
|
for (id<GDTCORUploader> uploader in [self->_targetToUploader allValues]) {
|
|
if ([uploader respondsToSelector:@selector(appWillForeground:)]) {
|
|
[uploader appWillForeground:app];
|
|
}
|
|
}
|
|
for (id<GDTCORPrioritizer> prioritizer in [self->_targetToPrioritizer allValues]) {
|
|
if ([prioritizer respondsToSelector:@selector(appWillForeground:)]) {
|
|
[prioritizer appWillForeground:app];
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
- (void)appWillTerminate:(nonnull GDTCORApplication *)app {
|
|
dispatch_sync(_registrarQueue, ^{
|
|
for (id<GDTCORUploader> uploader in [self->_targetToUploader allValues]) {
|
|
if ([uploader respondsToSelector:@selector(appWillTerminate:)]) {
|
|
[uploader appWillTerminate:app];
|
|
}
|
|
}
|
|
for (id<GDTCORPrioritizer> prioritizer in [self->_targetToPrioritizer allValues]) {
|
|
if ([prioritizer respondsToSelector:@selector(appWillTerminate:)]) {
|
|
[prioritizer appWillTerminate:app];
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
@end
|