//初始化方法
function recordInit(scriptName){
//let ipInfoJson = getIP()
// let ip = ipInfoJson.cip
// let location = ipInfoJson.cname
let deviceIMEI = '',deviceBrand='',deviceModel='',AndroidVer='',deviceWH='',deviceBoard='',deviceMac='',AndroidId=''
try {
deviceBrand = device.brand;//制造厂商
deviceBoard = device.board;//主板
deviceMac = device.getMacAddress()//Mac地址
AndroidId = device.getAndroidId()//安卓ID data={
"category":1,
"uuid":"55421",
"device_code":"086",
"configure":"5656E",
"owner":"1",
"model":device.model,
"release": device.release,
"memory":~~(device.getAvailMem()/1024/1024)+'MB',
"imei":device.getIMEI(),
"width":device.width,
"height":device.height,
"battery":device.getBattery()
}
var token=setting.storage.get('access_token')
var res = http.postJson(setting.api_domain+'device/?access-token='+token,data);
if(res.statusCode==200){
log('已添加')
return true
}
else if(res.statusCode==201){
log("已更新")
return true
}else{
log("添加设备失败")
return false
} } catch (error) {
log(error)
return false;
}
} var ws = {
run:function(){
setting.ws_status =true;
console.log('使用软件的过程中,请确保您的网络流畅~')
console.log('Websocket连接中..')
setting.ws = web.newWebSocket(setting.websocket_domain, {
//eventThread: 'this'
}); //ws监听
setting.ws.on("open", (res) => {
log("WebSocket连接成功!");
//心跳检测 let hi={'type':'connect','uuid':'033246','device_code':'003'}
setting.ws.send(JSON.stringify(hi)); setting.heartbeat = threads.start(function(){
setInterval(function(){
console.log('发送心跳包');
}, 10000);
}); }).on("failure", (err, res) => {
// 关闭心跳包线程
setting.heartbeat.interrupt();
//console.error(err);
setting.ws_status =false;
// 断线重连
if(setting.allow_ws_re){
console.error('与总控的连接已断开,五秒后重连...');
sleep(5000)
this.run()
}
// 改变“连接总控”颜色
ui.run(function(){
ui.start.setBackgroundColor(colors.parseColor("#d6d7d7"))
ui.start.text("连接总控")
ui.start.setTextColor(colors.parseColor("#000000"))
});
//alert("提示","ws通道已断开!");
//exit();
}).on("closing", (code, reason) => {
log("WebSocket关闭中");
}).on("text", (text) => {
log("收到消息") try { let data = JSON.parse(text);
switch(data.type){
case 'init':
console.log('等待总控响应...')
var ret=recordInit('init')
console.error("初始化返回:"+ret )
if(ret){
toastLog('成功与总控建立连接')
console.info('大功告成,您可以在总控端控制该终端了~');
// 改变"连接总控"颜色
ui.run(function(){
// 如果在主界面
if(ui.start){
if(setting.sys_name == "闲鱼助手"){
ui.start.setBackgroundColor(colors.parseColor("#009688"))
}else{
ui.start.setTextColor(colors.parseColor("#ffffff"))
ui.start.setBackgroundColor(colors.parseColor(setting.baozeng_colour))
}
ui.start.text("已连接")
} });
device.vibrate(500);//震动700毫秒
}else{
setting.ws_status =false;
let err_msg = r['msg']
alert(err_msg);console.error(err_msg)
}
break; case 'start':
log('接到任务:',json.task)
let sid = json.sid
stopEngine()
try {try {if(main_thread) main_thread.interrupt()} catch (error) { }} catch (error) { }
if(getScriptConfig(sid)){
send_Log('[开始运行]'+json.task,true)
main_thread = threads.start(function () {
doTask(sid)
});
}else{
send_Log('[启动失败]设备获取脚本配置失败!',true)
}
break; case 'web_to_aj_command':
//执行web发来的命令
//console.warn(data.task_type + '('+data.task_id+')');
threads.start(function () {
eval(data.task_type + '('+data.task_id+')');
console.log('等待总控命令中....')
});
break; case 'exec_command': break;
case 'NO':
log(data.msg)
toast(data.msg)
setting.ws.closed();
break; case 'web_to_aj_chat_message':
//web_to_aj_chat_message
console.log(data)
// console.log('web_to_aj_chat_message')
setting.message.push({name:data['name'],message:data['message']})
break;
default:
console.log('defautl')
console.log(data)
} } catch (error) {
log("解析返回来的数据错误")
log(error)
}
}).on("closed", (code, reason) => {
//log("WebSocket已关闭: code = %d, reason = %s", code, reason);
setting.ws_status =false;
alert("提示","ws通道已断开2");
console.error('ws通道已断开2')
//exit();
});
}
} // 函数导出
module.exports = ws;

autojs websocket 核心示例代码,云控技术的更多相关文章

  1. Python如何爬取实时变化的WebSocket数据【华为云技术分享】

    一.前言 作为一名爬虫工程师,在工作中常常会遇到爬取实时数据的需求,比如体育赛事实时数据.股市实时数据或币圈实时变化的数据.如下图: Web 领域中,用于实现数据'实时'更新的手段有轮询和 WebSo ...

  2. C# WebSocket 服务端示例代码 + HTML5客户端示例代码

    WebSocket服务端 C#示例代码 using System; using System.Collections.Generic; using System.Linq; using System. ...

  3. SkylineGlobe TerraExplorer Pro 7.0 Web 控件版 第一行示例代码

    SkylineGlobe TerraExplorer Pro 7.0 是原生的64位应用程序,在Web端用插件方式开发的第一行示例代码如下: 常规代码,需要IE64位: <!DOCTYPE ht ...

  4. 【荐】JavaScript图片放大技术(放大镜)示例代码

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...

  5. AIR32F103(五) FreeRTOSv202112核心库的集成和示例代码

    目录 AIR32F103(一) 合宙AIR32F103CBT6开发板上手报告 AIR32F103(二) Linux环境和LibOpenCM3项目模板 AIR32F103(三) Linux环境基于标准外 ...

  6. 工控图表控件ProEssentials创建3D柱状图示例代码

    使用ProEssentials可以创建3D柱状图,柱状图的形式包括线框.实体和阴影. 类似于Graph control,3D柱状图只需要YData. Subsets定义沿z轴有多少行,Points定义 ...

  7. GitHub C 和 C++ 开源库的清单(含示例代码)

    内容包括:标准库.Web应用框架.人工智能.数据库.图片处理.机器学习.日志.代码分析等. 标准库 C++标准库,包括了STL容器,算法和函数等. C++ Standard Library:是一系列类 ...

  8. 灵雀云Istio技术实践专题整理

    Istio技术实践专题(1) Service Mesh Istio 基本概念和架构基础 Istio被称作Kubernetes的最佳云原生拍档.从今天起,我们推出"Istio技术实践" ...

  9. C/C++ 开源库及示例代码

    C/C++ 开源库及示例代码 Table of Contents 说明 1 综合性的库 2 数据结构 & 算法 2.1 容器 2.1.1 标准容器 2.1.2 Lockfree 的容器 2.1 ...

随机推荐

  1. 2Git分支问题

    1,查看所有分支: git branch *号在哪表明当前分支在哪. 2,新建一个分支: git branch featureq(分支名) 转到该分支下: git checkout featureq ...

  2. notepad++覆盖了eclipse的快捷键

    好长时间发现eclipse快捷键alt+/无法使用,今天决定解决一下 1.Windows Hotkey Explorer 用此工具找到是notepad++占用了快捷键 2.C:\Program Fil ...

  3. spring mvc 基础知识

    spring mvc 在web.xml中的配置: 例子: <?xml version="1.0" encoding="UTF-8"?> <we ...

  4. python实战GUI界面+mysql

    前言 前面用tkinter做了一个巨丑的GUI界面,今天想把它变漂亮起来,重新找回page做了一个界面,它也是基于tkinter开发的所见即所得的界面编辑器,前面因为代码搞不明白没用上,现在重新研究一 ...

  5. Ceph 状态报警告 pool rbd has many more objects per pg than average (too few pgs?)

    定位问题 [root@lab8106 ~]# ceph -s cluster fa7ec1a1-662a-4ba3-b478-7cb570482b62 health HEALTH_WARN pool ...

  6. Python_Tips

    Python绝对路径与相对路径读写文件[上级目录: os.path.dirname(os.getcwd())] # coding:utf8 ''' 知识点:Python读写文件时候的相对路径与绝对路径 ...

  7. SQL Server 不同数据间建立链接服务器进行连接查询

        在平时查询以及导数据时,经常会遇到需要使用两个数据库里数据的情况,这时就会用到在两个服务器之间建立一个链接,进行操作,脚本语句如下: 举例:例如你在测试服务器上想要查询业务库里的数据信息,此脚 ...

  8. H265Nalu头部解析

    一 NALU头部解析 F: 必须为0,为1表示语法错误.整包将被丢弃 NalType:nalu包的类型,其中VCL NAL和non-VCL NAL各有32类.0-31是vcl nal单元:32-63, ...

  9. Java(7)泛型

    目录 一.泛型概述 1.什么是泛型 2.为什么用泛型 3.在集合中使用泛型 二.自定义泛型结构 1.泛型类.接口 2.泛型方法 三.举例泛型类和泛型方法的使用场景 1.泛型类举例: 2.泛型方法举例 ...

  10. 攻防世界-Web_php_include (四种解法)

    攻防世界-Web_php_include   (考察的是文件包含) 打开页面是这样一段代码从代码中得知page中带有php://的都会被替换成空 str_replace()以其他字符替换字符串中的一些 ...