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-08-14 10:08:33 +08:00
|
|
|
|
//
|
|
|
|
|
// WSClient.m
|
|
|
|
|
// Doric
|
|
|
|
|
//
|
|
|
|
|
// Created by pengfei.zhou on 2019/8/14.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#import "DoricWSClient.h"
|
2020-10-23 16:48:44 +08:00
|
|
|
|
#import "SRWebSocket.h"
|
2021-02-22 19:03:34 +08:00
|
|
|
|
#import <DoricCore/Doric.h>
|
|
|
|
|
#import <DoricCore/DoricContextManager.h>
|
|
|
|
|
#import <DoricCore/NSString+JsonString.h>
|
|
|
|
|
#import "DoricDev.h"
|
2019-08-14 10:08:33 +08:00
|
|
|
|
|
2019-10-12 14:48:19 +08:00
|
|
|
|
@interface DoricWSClient () <SRWebSocketDelegate>
|
|
|
|
|
@property(nonatomic, strong) SRWebSocket *websocket;
|
2021-02-22 19:03:34 +08:00
|
|
|
|
@property(nonatomic, strong) NSHashTable <id <DoricWSClientInterceptor>> *interceptors;
|
2019-08-14 10:08:33 +08:00
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
@implementation DoricWSClient
|
|
|
|
|
- (instancetype)initWithUrl:(NSString *)url {
|
2019-10-12 14:48:19 +08:00
|
|
|
|
if (self = [super init]) {
|
2021-02-22 19:03:34 +08:00
|
|
|
|
_interceptors = [NSHashTable hashTableWithOptions:NSPointerFunctionsWeakMemory];
|
2019-08-14 10:08:33 +08:00
|
|
|
|
_websocket = [[SRWebSocket alloc] initWithURL:[NSURL URLWithString:url]];
|
|
|
|
|
_websocket.delegate = self;
|
2021-03-04 12:53:42 +08:00
|
|
|
|
_websocket.delegateDispatchQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0);
|
2019-08-14 10:08:33 +08:00
|
|
|
|
[_websocket open];
|
|
|
|
|
}
|
|
|
|
|
return self;
|
|
|
|
|
}
|
2019-10-12 14:48:19 +08:00
|
|
|
|
|
2019-08-14 10:08:33 +08:00
|
|
|
|
- (void)webSocketDidOpen:(SRWebSocket *)webSocket {
|
|
|
|
|
DoricLog(@"webSocketDidOpen");
|
2021-02-24 15:35:44 +08:00
|
|
|
|
[DoricDev.instance onOpen];
|
2019-08-14 10:08:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)webSocket:(SRWebSocket *)webSocket didReceivePong:(NSData *)pongPayload {
|
|
|
|
|
DoricLog(@"webSocketdidReceivePong");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)webSocket:(SRWebSocket *)webSocket didReceiveMessage:(id)message {
|
|
|
|
|
NSData *jsonData = [message dataUsingEncoding:NSUTF8StringEncoding];
|
|
|
|
|
NSError *err;
|
|
|
|
|
NSDictionary *dic = [NSJSONSerialization JSONObjectWithData:jsonData
|
|
|
|
|
options:NSJSONReadingMutableContainers
|
|
|
|
|
error:&err];
|
2019-10-12 14:48:19 +08:00
|
|
|
|
if (err) {
|
|
|
|
|
DoricLog(@"webSocketdidReceiveMessage parse error:%@", err);
|
2019-08-14 10:08:33 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
2021-02-22 19:03:34 +08:00
|
|
|
|
|
|
|
|
|
NSString *type = dic[@"type"];
|
|
|
|
|
NSString *cmd = dic[@"cmd"];
|
|
|
|
|
NSDictionary *payload = dic[@"payload"];
|
|
|
|
|
for (id <DoricWSClientInterceptor> interceptor in self.interceptors) {
|
|
|
|
|
if ([interceptor interceptType:type command:cmd payload:payload]) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ([cmd isEqualToString:@"DEBUG_REQ"]) {
|
|
|
|
|
NSString *source = payload[@"source"];
|
|
|
|
|
[DoricDev.instance startDebugging:source];
|
|
|
|
|
} else if ([cmd isEqualToString:@"DEBUG_STOP"]) {
|
|
|
|
|
[DoricDev.instance stopDebugging:YES];
|
|
|
|
|
} else if ([cmd isEqualToString:@"RELOAD"]) {
|
|
|
|
|
NSString *source = payload[@"source"];
|
|
|
|
|
NSString *script = payload[@"script"];
|
|
|
|
|
[DoricDev.instance reload:source script:script];
|
|
|
|
|
}
|
2019-08-14 10:08:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)webSocket:(SRWebSocket *)webSocket didFailWithError:(NSError *)error {
|
|
|
|
|
DoricLog(@"webSocketdidFailWithError");
|
2021-02-24 15:35:44 +08:00
|
|
|
|
[DoricDev.instance onFailure:error];
|
2019-08-14 10:08:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)webSocket:(SRWebSocket *)webSocket didCloseWithCode:(NSInteger)code reason:(NSString *)reason wasClean:(BOOL)wasClean {
|
|
|
|
|
DoricLog(@"webSocketdidCloseWithCode");
|
2021-02-24 15:35:44 +08:00
|
|
|
|
[DoricDev.instance onClose];
|
2019-08-14 10:08:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-02-22 19:03:34 +08:00
|
|
|
|
- (void)send:(NSDictionary *)command {
|
|
|
|
|
NSString *jsonStr = [NSString dc_convertToJsonWithDic:command];
|
|
|
|
|
[_websocket send:jsonStr];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)addInterceptor:(id <DoricWSClientInterceptor>)interceptor {
|
|
|
|
|
[self.interceptors addObject:interceptor];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)removeInterceptor:(id <DoricWSClientInterceptor>)interceptor {
|
|
|
|
|
[self.interceptors removeObject:interceptor];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)sendToDebugger:(NSString *)cmd payload:(NSDictionary *)payload {
|
|
|
|
|
[self send:@{
|
|
|
|
|
@"type": @"C2D",
|
|
|
|
|
@"cmd": cmd,
|
|
|
|
|
@"payload": payload,
|
|
|
|
|
}];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)sendToServer:(NSString *)cmd payload:(NSDictionary *)payload {
|
|
|
|
|
[self send:@{
|
|
|
|
|
@"type": @"C2S",
|
|
|
|
|
@"cmd": cmd,
|
|
|
|
|
@"payload": payload,
|
|
|
|
|
}];
|
2020-02-26 14:51:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-08-14 10:08:33 +08:00
|
|
|
|
- (void)close {
|
|
|
|
|
[self.websocket close];
|
2021-02-24 16:51:23 +08:00
|
|
|
|
[DoricDev.instance onClose];
|
2019-08-14 10:08:33 +08:00
|
|
|
|
}
|
|
|
|
|
@end
|