2019-12-04 13:29:26 +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.
|
|
|
|
*/
|
|
|
|
//
|
|
|
|
// DoricContext.m
|
|
|
|
// Doric
|
|
|
|
//
|
|
|
|
// Created by pengfei.zhou on 2019/7/25.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "DoricContext.h"
|
|
|
|
#import "DoricContextManager.h"
|
|
|
|
#import "DoricRootNode.h"
|
|
|
|
#import "DoricConstant.h"
|
|
|
|
#import "DoricExtensions.h"
|
2020-02-26 11:50:18 +08:00
|
|
|
#import "DoricNativeDriver.h"
|
2019-12-04 13:29:26 +08:00
|
|
|
|
|
|
|
@implementation DoricContext
|
|
|
|
|
2019-12-09 20:32:33 +08:00
|
|
|
- (instancetype)initWithScript:(NSString *)script source:(NSString *)source extra:(NSString *)extra {
|
2019-12-04 13:29:26 +08:00
|
|
|
if (self = [super init]) {
|
2020-02-26 11:50:18 +08:00
|
|
|
_driver = [DoricNativeDriver instance];
|
2019-12-04 13:29:26 +08:00
|
|
|
_pluginInstanceMap = [NSMutableDictionary new];
|
|
|
|
_script = script;
|
|
|
|
_source = source;
|
|
|
|
_initialParams = [@{@"width": @(0), @"height": @(0)} mutableCopy];
|
2020-03-07 10:38:42 +08:00
|
|
|
[[DoricContextManager instance] createContext:self script:script source:source];
|
|
|
|
_headNodes = [NSMutableDictionary new];
|
|
|
|
DoricRootNode *rootNode = [[DoricRootNode alloc] initWithContext:self];
|
|
|
|
_rootNode = rootNode;
|
2020-03-19 13:35:04 +08:00
|
|
|
[self init:extra];
|
2019-12-04 13:29:26 +08:00
|
|
|
[self callEntity:DORIC_ENTITY_CREATE, nil];
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (DoricViewNode *)targetViewNode:(NSString *)viewId {
|
|
|
|
if ([self.rootNode.viewId isEqualToString:viewId]) {
|
|
|
|
return self.rootNode;
|
|
|
|
} else {
|
2020-01-09 19:00:53 +08:00
|
|
|
for (NSMutableDictionary <NSString *, DoricViewNode *> *map in self.headNodes.allValues) {
|
|
|
|
if ([[map allKeys] containsObject:viewId]) {
|
|
|
|
return map[viewId];
|
|
|
|
}
|
|
|
|
}
|
2019-12-04 13:29:26 +08:00
|
|
|
}
|
2020-01-09 19:00:53 +08:00
|
|
|
return nil;
|
2019-12-04 13:29:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)dealloc {
|
|
|
|
[self callEntity:DORIC_ENTITY_DESTROY, nil];
|
|
|
|
[[DoricContextManager instance] destroyContext:self];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (DoricAsyncResult *)callEntity:(NSString *)method, ... {
|
|
|
|
va_list args;
|
|
|
|
va_start(args, method);
|
|
|
|
DoricAsyncResult *ret = [self.driver invokeContextEntity:self.contextId method:method arguments:args];
|
|
|
|
va_end(args);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (DoricAsyncResult *)callEntity:(NSString *)method withArguments:(va_list)args {
|
|
|
|
return [self.driver invokeContextEntity:self.contextId method:method arguments:args];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (DoricAsyncResult *)callEntity:(NSString *)method withArgumentsArray:(NSArray *)args {
|
|
|
|
return [self.driver invokeContextEntity:self.contextId method:method argumentsArray:args];
|
|
|
|
}
|
|
|
|
|
2020-03-19 13:35:04 +08:00
|
|
|
- (void)init:(NSString *)initData {
|
|
|
|
self.extra = initData;
|
|
|
|
if (initData) {
|
|
|
|
[self callEntity:DORIC_ENTITY_INIT, initData, nil];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)build:(CGSize)size {
|
2019-12-04 13:29:26 +08:00
|
|
|
[self.initialParams also:^(NSMutableDictionary *it) {
|
2020-03-19 13:35:04 +08:00
|
|
|
it[@"width"] = @(size.width);
|
|
|
|
it[@"height"] = @(size.height);
|
2019-12-04 13:29:26 +08:00
|
|
|
}];
|
2020-03-19 13:35:04 +08:00
|
|
|
[self callEntity:DORIC_ENTITY_BUILD, self.initialParams, nil];
|
2019-12-04 13:29:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)reload:(NSString *)script {
|
|
|
|
self.rootNode.viewId = nil;
|
|
|
|
self.script = script;
|
|
|
|
[self.driver createContext:self.contextId script:script source:self.source];
|
2020-03-19 13:35:04 +08:00
|
|
|
[self init:self.extra];
|
2020-02-29 15:00:46 +08:00
|
|
|
[self callEntity:DORIC_ENTITY_CREATE, nil];
|
2020-03-19 13:35:04 +08:00
|
|
|
[self callEntity:DORIC_ENTITY_BUILD, self.initialParams, nil];
|
2019-12-09 19:50:21 +08:00
|
|
|
[self onShow];
|
2019-12-04 13:29:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)onShow {
|
|
|
|
[self callEntity:DORIC_ENTITY_SHOW, nil];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)onHidden {
|
|
|
|
[self callEntity:DORIC_ENTITY_HIDDEN, nil];
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|