58 lines
1.6 KiB
Mathematica
58 lines
1.6 KiB
Mathematica
|
//
|
||
|
// DoricContextManager.m
|
||
|
// Doric
|
||
|
//
|
||
|
// Created by pengfei.zhou on 2019/7/29.
|
||
|
//
|
||
|
|
||
|
#import "DoricContextManager.h"
|
||
|
#import "DoricContext.h"
|
||
|
|
||
|
@interface DoricContextManager()
|
||
|
|
||
|
@property (nonatomic) NSInteger counter;
|
||
|
@property (nonatomic,strong) NSMutableDictionary *doricContextMap;
|
||
|
@property (nonatomic,strong) dispatch_queue_t mapQueue;
|
||
|
@end
|
||
|
|
||
|
@implementation DoricContextManager
|
||
|
|
||
|
- (instancetype)init {
|
||
|
if(self = [super init]){
|
||
|
_doricContextMap = [[NSMutableDictionary alloc] init];
|
||
|
_counter = 0;
|
||
|
_mapQueue = dispatch_queue_create("doric.contextmap", DISPATCH_QUEUE_SERIAL);
|
||
|
}
|
||
|
return self;
|
||
|
}
|
||
|
|
||
|
+ (instancetype)instance{
|
||
|
static DoricContextManager *_instance;
|
||
|
static dispatch_once_t onceToken;
|
||
|
dispatch_once(&onceToken, ^{
|
||
|
_instance = [[DoricContextManager alloc] init];
|
||
|
});
|
||
|
return _instance;
|
||
|
}
|
||
|
|
||
|
- (DoricContext *)createContext:(NSString *)script source:(NSString *)source {
|
||
|
DoricContext *doricContext = [[DoricContext alloc] init];
|
||
|
doricContext.contextId = [NSString stringWithFormat:@"%ld", (long)self.counter++];
|
||
|
[doricContext.driver createContext:doricContext.contextId script:script source:source];
|
||
|
dispatch_sync(self.mapQueue, ^(){
|
||
|
[self.doricContextMap setValue:doricContext forKey:doricContext.contextId];
|
||
|
});
|
||
|
return doricContext;
|
||
|
}
|
||
|
|
||
|
- (void) destroyContext:(DoricContext *)context {
|
||
|
NSString *contextId = context.contextId;
|
||
|
[[context.driver destroyContext:contextId] setFinishCallback:^(){
|
||
|
dispatch_sync(self.mapQueue, ^(){
|
||
|
[self.doricContextMap removeObjectForKey:contextId];
|
||
|
});
|
||
|
}];
|
||
|
}
|
||
|
|
||
|
@end
|