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/iOS/Pod/Classes/DoricContextManager.m

70 lines
1.9 KiB
Mathematica
Raw Normal View History

2019-07-29 13:48:27 +08:00
//
// DoricContextManager.m
// Doric
//
// Created by pengfei.zhou on 2019/7/29.
//
#import "DoricContextManager.h"
#import "DoricContext.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) NSMutableDictionary *doricContextMap;
@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 {
2019-10-12 14:48:19 +08:00
context.contextId = [NSString stringWithFormat:@"%ld", (long) self.counter++];
2019-07-29 14:51:35 +08:00
[context.driver createContext:context.contextId script:script source:source];
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];
[self.doricContextMap setValue:value forKey:context.contextId];
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, ^{
NSValue *value = [self.doricContextMap valueForKey:contextId];
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;
2019-07-30 15:20:11 +08:00
[context.driver destroyContext:contextId].finishCallback = ^{
2019-10-12 14:48:19 +08:00
dispatch_sync(self.mapQueue, ^() {
2019-07-29 13:48:27 +08:00
[self.doricContextMap removeObjectForKey:contextId];
});
2019-07-30 15:20:11 +08:00
};
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