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"
|
2021-07-21 17:56:03 +08:00
|
|
|
#import "DoricSingleton.h"
|
2019-07-29 13:48:27 +08:00
|
|
|
|
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;
|
2021-02-09 15:09:52 +08:00
|
|
|
@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);
|
2021-02-09 15:09:52 +08:00
|
|
|
_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 {
|
2021-07-21 17:56:03 +08:00
|
|
|
return DoricSingleton.instance.contextManager;
|
2019-07-29 13:48:27 +08:00
|
|
|
}
|
|
|
|
|
2019-07-29 14:51:35 +08:00
|
|
|
- (void)createContext:(DoricContext *)context script:(NSString *)script source:(NSString *)source {
|
2019-11-08 10:30:06 +08:00
|
|
|
context.contextId = [NSString stringWithFormat:@"%ld", (long) ++self.counter];
|
2021-03-29 17:53:27 +08:00
|
|
|
context.performanceProfile = [[DoricPerformanceProfile alloc] initWithName:context.contextId];
|
2021-07-20 10:50:24 +08:00
|
|
|
if (context.driver.registry.globalPerformanceAnchorHook) {
|
|
|
|
[context.performanceProfile addAnchorHook:context.driver.registry.globalPerformanceAnchorHook];
|
|
|
|
}
|
2019-10-12 14:48:19 +08:00
|
|
|
dispatch_sync(self.mapQueue, ^() {
|
2021-02-09 15:09:52 +08:00
|
|
|
[self.contextMapTable setObject:context forKey:context.contextId];
|
2019-07-29 13:48:27 +08:00
|
|
|
});
|
2020-03-07 10:38:42 +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, ^{
|
2021-02-09 15:09:52 +08:00
|
|
|
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;
|
2020-02-27 13:40:02 +08:00
|
|
|
dispatch_sync(self.mapQueue, ^() {
|
2021-02-09 15:09:52 +08:00
|
|
|
[self.contextMapTable removeObjectForKey:contextId];
|
2020-02-27 13:40:02 +08:00
|
|
|
});
|
2019-07-29 13:48:27 +08:00
|
|
|
}
|
|
|
|
|
2021-02-09 15:09:52 +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
|