This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-iOS/Pod/Classes/DoricContextManager.m

82 lines
2.4 KiB
Mathematica
Raw Normal View History

2019-10-21 09:59:22 +08:00
/*
* Copyright [2019] [Doric.Pub]
*
* 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.
*/
2019-07-29 13:48:27 +08:00
//
// DoricContextManager.m
// Doric
//
// Created by pengfei.zhou on 2019/7/29.
//
#import "DoricContextManager.h"
2019-10-12 14:48:19 +08:00
@interface DoricContextManager ()
2019-07-29 13:48:27 +08:00
2019-10-12 14:48:19 +08:00
@property(nonatomic) NSInteger counter;
2020-02-27 14:34:40 +08:00
@property(nonatomic, strong) NSMutableDictionary <NSString *, NSValue *> *doricContextMap;
2019-10-12 14:48:19 +08:00
@property(nonatomic, strong) dispatch_queue_t mapQueue;
2019-07-29 13:48:27 +08:00
@end
@implementation DoricContextManager
2019-10-12 14:48:19 +08:00
2019-07-29 13:48:27 +08:00
- (instancetype)init {
2019-10-12 14:48:19 +08:00
if (self = [super init]) {
2019-07-29 13:48:27 +08:00
_doricContextMap = [[NSMutableDictionary alloc] init];
_counter = 0;
_mapQueue = dispatch_queue_create("doric.contextmap", DISPATCH_QUEUE_SERIAL);
}
return self;
}
2019-10-12 14:48:19 +08:00
+ (instancetype)instance {
2019-07-29 13:48:27 +08:00
static DoricContextManager *_instance;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
_instance = [[DoricContextManager alloc] init];
});
return _instance;
}
2019-07-29 14:51:35 +08:00
- (void)createContext:(DoricContext *)context script:(NSString *)script source:(NSString *)source {
context.contextId = [NSString stringWithFormat:@"%ld", (long) ++self.counter];
2019-10-12 14:48:19 +08:00
dispatch_sync(self.mapQueue, ^() {
2019-07-29 14:51:35 +08:00
NSValue *value = [NSValue valueWithNonretainedObject:context];
2020-02-27 14:34:40 +08:00
self.doricContextMap[context.contextId] = value;
2019-07-29 13:48:27 +08:00
});
[context.driver createContext:context.contextId script:script source:source];
2019-07-29 13:48:27 +08:00
}
2019-07-29 20:23:00 +08:00
- (DoricContext *)getContext:(NSString *)contextId {
__block DoricContext *context;
dispatch_sync(self.mapQueue, ^{
2020-02-27 14:34:40 +08:00
NSValue *value = self.doricContextMap[contextId];
2019-07-29 20:23:00 +08:00
context = value.nonretainedObjectValue;
});
return context;
}
2019-07-29 14:51:35 +08:00
- (void)destroyContext:(DoricContext *)context {
2019-07-29 13:48:27 +08:00
NSString *contextId = context.contextId;
dispatch_sync(self.mapQueue, ^() {
[self.doricContextMap removeObjectForKey:contextId];
});
2019-07-29 13:48:27 +08:00
}
2019-08-14 10:08:33 +08:00
- (NSArray *)aliveContexts {
return [self.doricContextMap allValues];
}
2019-07-29 13:48:27 +08:00
@end