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

88 lines
2.7 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;
@property(nonatomic, strong) NSMapTable <NSString *, DoricContext *> *contextMapTable;
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
_counter = 0;
_mapQueue = dispatch_queue_create("doric.contextmap", DISPATCH_QUEUE_SERIAL);
_contextMapTable = [[NSMapTable alloc] initWithKeyOptions:NSPointerFunctionsCopyIn
valueOptions:NSPointerFunctionsWeakMemory
capacity:0];
2019-07-29 13:48:27 +08:00
}
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, ^() {
[self.contextMapTable setObject:context forKey:context.contextId];
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, ^{
context = [self.contextMapTable objectForKey:contextId];
2019-07-29 20:23:00 +08:00
});
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.contextMapTable removeObjectForKey:contextId];
});
2019-07-29 13:48:27 +08:00
}
- (NSArray <DoricContext *> *)aliveContexts {
NSEnumerator *enumerator = [self.contextMapTable objectEnumerator];
NSMutableArray *ret = [NSMutableArray new];
DoricContext *context;
while ((context = [enumerator nextObject])) {
[ret addObject:context];
}
return ret;
2019-08-14 10:08:33 +08:00
}
2019-07-29 13:48:27 +08:00
@end