/* * 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. */ // // DoricDev.m // Doric // // Created by jingpeng.wang on 2020/2/25. // #import #import #import #import "DoricDev.h" #import "DoricDebugDriver.h" #import "DoricDevViewController.h" #import "DoricDevMonitor.h" @interface DoricContextDebuggable : NSObject @property(nonatomic, weak) DoricContext *doricContext; @property(nonatomic, weak) id nativeDriver; @property(nonatomic, weak) DoricWSClient *wsClient; @end @implementation DoricContextDebuggable - (instancetype)initWithWSClient:(DoricWSClient *)client context:(DoricContext *)context { if (self = [super init]) { _wsClient = client; _doricContext = context; _nativeDriver = context.driver; } return self; } - (void)startDebug { [self.doricContext setDriver:[[DoricDebugDriver alloc] initWithWSClient:self.wsClient]]; [self.doricContext reload:self.doricContext.script]; } - (void)stopDebug:(BOOL)resume { id driver = self.doricContext.driver; if ([driver isKindOfClass:DoricDebugDriver.class]) { } if (resume) { self.doricContext.driver = self.nativeDriver; [self.doricContext reload:self.doricContext.script]; } } @end @interface DoricDev () @property(nonatomic, strong) DoricContextDebuggable *debuggable; @end @implementation DoricDev - (instancetype)init { if (self = [super init]) { [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onOpenEvent) name:@"OpenEvent" object:nil]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onEOFEvent) name:@"EOFEvent" object:nil]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(onConnectExceptionEvent) name:@"ConnectExceptionEvent" object:nil]; [DoricNativeDriver.instance.registry registerMonitor:[DoricDevMonitor new]]; } return self; } + (instancetype)instance { static DoricDev *_instance; static dispatch_once_t onceToken; dispatch_once(&onceToken, ^{ _instance = [[DoricDev alloc] init]; }); return _instance; } - (void)openDevMode { DoricDevViewController *devViewController = [DoricDevViewController new]; UIViewController *viewController = [UIApplication sharedApplication].delegate.window.rootViewController; UINavigationController *navigationController; if ([viewController isKindOfClass:[UINavigationController class]]) { navigationController = (UINavigationController *) viewController; } else { navigationController = viewController.navigationController; } [navigationController pushViewController:devViewController animated:NO]; } - (void)closeDevMode { if (self.wsClient) { [self.wsClient close]; self.wsClient = nil; } } - (BOOL)isInDevMode { return self.wsClient != nil; } - (void)connectDevKit:(NSString *)url { if (self.wsClient) { [self.wsClient close]; } self.wsClient = [[DoricWSClient alloc] initWithUrl:url]; } - (void)onOpenEvent { ShowToast(@"dev kit connected", DoricGravityBottom); } - (void)onEOFEvent { ShowToast(@"dev kit eof exception", DoricGravityBottom); } - (void)onConnectExceptionEvent { ShowToast(@"dev kit connection exception", DoricGravityBottom); } - (DoricContext *)matchContext:(NSString *)source { for (DoricContext *context in [DoricContextManager.instance aliveContexts]) { if ([source containsString:context.source] || [context.source isEqualToString:@"__dev__"]) { return context; } } return nil; } - (void)reload:(NSString *)source script:(NSString *)script { DoricContext *context = [self matchContext:source]; if (context) { if ([context.driver isKindOfClass:DoricDebugDriver.class]) { DoricLog(@"Context source %@ in debugging,skip reload", source); } else { DoricLog(@"Context reload :id %@,source %@", context.contextId, source); [context reload:script]; } } else { DoricLog(@"Cannot find context source %@ for reload", source); } } - (void)startDebugging:(NSString *)source { [self.debuggable stopDebug:YES]; DoricContext *context = [self matchContext:source]; if (context) { [self.wsClient sendToDebugger:@"DEBUG_RES" payload:@{ @"contextId": context.contextId }]; self.debuggable = [[DoricContextDebuggable alloc] initWithWSClient:self.wsClient context:context]; [self.debuggable startDebug]; } else { DoricLog(@"Cannot find context source %@ for debugging", source); [self.wsClient sendToDebugger:@"DEBUG_STOP" payload:@{ @"msg": @"Cannot find suitable alive context for debugging" }]; } }; - (void)stopDebugging:(BOOL)resume { [self.wsClient sendToDebugger:@"DEBUG_STOP" payload:@{ @"msg": @"Stop debugging" }]; [self.debuggable stopDebug:resume]; self.debuggable = nil; } @end