[*] 日常优化
This commit is contained in:
@@ -94,13 +94,11 @@ const signalChannel = {
|
||||
}
|
||||
me.heartbeatTimer = setTimeout(async () => {
|
||||
if (me.connected()) {
|
||||
me.push(
|
||||
protocol.buildMessage("client::heartbeat", {
|
||||
me.taoyao.push(protocol.buildMessage("client::heartbeat", {
|
||||
// TODO:电池信息
|
||||
battery : 100,
|
||||
charging: true,
|
||||
})
|
||||
);
|
||||
}));
|
||||
me.heartbeat();
|
||||
} else {
|
||||
console.warn("心跳失败", me.address);
|
||||
@@ -136,8 +134,7 @@ const signalChannel = {
|
||||
me.channel = new WebSocket(me.address, { rejectUnauthorized: false, handshakeTimeout: 5000 });
|
||||
me.channel.on("open", async () => {
|
||||
console.info("打开信令通道", me.address);
|
||||
me.push(
|
||||
protocol.buildMessage("client::register", {
|
||||
const { body } = await me.taoyao.request(protocol.buildMessage("client::register", {
|
||||
name : config.signal.name,
|
||||
clientId : config.signal.clientId,
|
||||
clientType: config.signal.clientType,
|
||||
@@ -146,8 +143,9 @@ const signalChannel = {
|
||||
// TODO:电池信息
|
||||
battery : 100,
|
||||
charging : true,
|
||||
})
|
||||
);
|
||||
}));
|
||||
protocol.clientIndex = body.index;
|
||||
console.info("终端注册成功", protocol.clientIndex);
|
||||
me.reconnectionTimeout = me.minReconnectionDelay;
|
||||
me.taoyao.connect = true;
|
||||
me.heartbeat();
|
||||
@@ -206,19 +204,6 @@ const signalChannel = {
|
||||
me.maxReconnectionDelay
|
||||
);
|
||||
},
|
||||
/**
|
||||
* 异步请求
|
||||
*
|
||||
* @param {*} message 消息
|
||||
*/
|
||||
push(message) {
|
||||
const me = this;
|
||||
try {
|
||||
me.channel.send(JSON.stringify(message));
|
||||
} catch (error) {
|
||||
console.error("异步请求异常", message, error);
|
||||
}
|
||||
},
|
||||
/**
|
||||
* 关闭通道
|
||||
*/
|
||||
@@ -409,9 +394,6 @@ class Taoyao {
|
||||
case "client::reboot":
|
||||
me.clientReboot(message, body);
|
||||
break;
|
||||
case "client::register":
|
||||
me.clientRegister(message, body);
|
||||
break;
|
||||
case "client::shutdown":
|
||||
me.clientShutdown(message, body);
|
||||
break;
|
||||
@@ -587,17 +569,6 @@ class Taoyao {
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* 终端注册信令
|
||||
*
|
||||
* @param {*} message 消息
|
||||
* @param {*} body 消息主体
|
||||
*/
|
||||
clientRegister(message, body) {
|
||||
protocol.clientIndex = body.index;
|
||||
console.info("终端注册成功", protocol.clientIndex);
|
||||
}
|
||||
|
||||
/**
|
||||
* 关闭终端信令
|
||||
*
|
||||
|
||||
@@ -101,7 +101,7 @@ const signalChannel = {
|
||||
me.heartbeatTimer = setTimeout(async () => {
|
||||
if (me.connected()) {
|
||||
const battery = await navigator.getBattery();
|
||||
me.push(protocol.buildMessage("client::heartbeat", {
|
||||
me.taoyao.push(protocol.buildMessage("client::heartbeat", {
|
||||
battery : battery.level * 100,
|
||||
charging: battery.charging,
|
||||
}));
|
||||
@@ -141,7 +141,7 @@ const signalChannel = {
|
||||
me.channel.onopen = async () => {
|
||||
console.info("打开信令通道", me.address);
|
||||
const battery = await navigator.getBattery();
|
||||
me.push(protocol.buildMessage("client::register", {
|
||||
const { body } = await me.taoyao.request(protocol.buildMessage("client::register", {
|
||||
name : me.taoyao.name,
|
||||
clientId : me.taoyao.clientId,
|
||||
clientType: config.signal.clientType,
|
||||
@@ -150,6 +150,8 @@ const signalChannel = {
|
||||
battery : battery.level * 100,
|
||||
charging : battery.charging,
|
||||
}));
|
||||
protocol.clientIndex = body.index;
|
||||
console.info("终端注册成功", protocol.clientIndex);
|
||||
me.reconnectionTimeout = me.minReconnectionDelay;
|
||||
me.taoyao.connect = true;
|
||||
me.heartbeat();
|
||||
@@ -209,19 +211,6 @@ const signalChannel = {
|
||||
me.maxReconnectionDelay
|
||||
);
|
||||
},
|
||||
/**
|
||||
* 异步请求
|
||||
*
|
||||
* @param {*} message 消息
|
||||
*/
|
||||
push(message) {
|
||||
const me = this;
|
||||
try {
|
||||
me.channel.send(JSON.stringify(message));
|
||||
} catch (error) {
|
||||
console.error("异步请求异常", message, error);
|
||||
}
|
||||
},
|
||||
/**
|
||||
* 关闭通道
|
||||
*/
|
||||
@@ -763,9 +752,6 @@ class Taoyao extends RemoteClient {
|
||||
case "client::config":
|
||||
me.defaultClientConfig(message);
|
||||
break;
|
||||
case "client::register":
|
||||
me.defaultClientRegister(message);
|
||||
break;
|
||||
case "media::consume":
|
||||
await me.defaultMediaConsume(message);
|
||||
break;
|
||||
@@ -1047,10 +1033,21 @@ class Taoyao extends RemoteClient {
|
||||
*/
|
||||
defaultClientBroadcast(message) {
|
||||
const me = this;
|
||||
const { header, body } = message;
|
||||
const {
|
||||
header,
|
||||
body,
|
||||
} = message;
|
||||
console.debug("终端广播", header, body);
|
||||
}
|
||||
|
||||
/**
|
||||
* 关闭终端信令
|
||||
*/
|
||||
clientClose() {
|
||||
const me = this;
|
||||
me.push(protocol.buildMessage("client::close", {}));
|
||||
}
|
||||
|
||||
/**
|
||||
* 终端配置信令
|
||||
*
|
||||
@@ -1108,17 +1105,6 @@ class Taoyao extends RemoteClient {
|
||||
location.reload();
|
||||
}
|
||||
|
||||
/**
|
||||
* 终端注册信令
|
||||
*
|
||||
* @param {*} message 信令消息
|
||||
*/
|
||||
defaultClientRegister(message) {
|
||||
const { body } = message;
|
||||
protocol.clientIndex = body.index;
|
||||
console.info("终端注册成功", protocol.clientIndex);
|
||||
}
|
||||
|
||||
/**
|
||||
* 关闭终端信令
|
||||
*
|
||||
@@ -2150,7 +2136,9 @@ class Taoyao extends RemoteClient {
|
||||
*/
|
||||
async mediaProduce(audioTrack, videoTrack) {
|
||||
const me = this;
|
||||
if(!audioTrack || !videoTrack) {
|
||||
me.checkDevice();
|
||||
}
|
||||
await me.createSendTransport();
|
||||
await me.createRecvTransport();
|
||||
await me.produceAudio(audioTrack);
|
||||
|
||||
@@ -40,6 +40,10 @@ public abstract class ClientAdapter<T extends AutoCloseable> implements Client {
|
||||
* 终端实例
|
||||
*/
|
||||
protected final T instance;
|
||||
/**
|
||||
* 是否关闭
|
||||
*/
|
||||
protected boolean close;
|
||||
/**
|
||||
* 是否授权
|
||||
*/
|
||||
@@ -62,6 +66,7 @@ public abstract class ClientAdapter<T extends AutoCloseable> implements Client {
|
||||
this.time = System.currentTimeMillis();
|
||||
this.timeout = timeout;
|
||||
this.instance = instance;
|
||||
this.close = false;
|
||||
this.authorized = false;
|
||||
this.status = new ClientStatus();
|
||||
this.requestMessage = new ConcurrentHashMap<>();
|
||||
@@ -152,6 +157,10 @@ public abstract class ClientAdapter<T extends AutoCloseable> implements Client {
|
||||
|
||||
@Override
|
||||
public void close() throws Exception {
|
||||
if(this.close) {
|
||||
return;
|
||||
}
|
||||
this.close = true;
|
||||
log.info("关闭终端实例:{} - {}", this.ip, this.clientId);
|
||||
this.instance.close();
|
||||
}
|
||||
|
||||
@@ -24,10 +24,14 @@ import lombok.extern.slf4j.Slf4j;
|
||||
@Slf4j
|
||||
@Protocol
|
||||
@Description(
|
||||
memo = "同时释放所有资源,所以如果终端意外掉线重连,需要终端实现音视频重连逻辑。",
|
||||
memo = """
|
||||
信令连接断开以后执行,同时释放所有资源。
|
||||
如果终端意外掉线,需要自己实现重连逻辑。
|
||||
""",
|
||||
flow = {
|
||||
"终端->信令服务->终端",
|
||||
"终端->信令服务-[终端下线])终端"
|
||||
"终端-[关闭终端]>信令服务-[终端下线])终端",
|
||||
"终端-[连接断开]>信令服务-[终端下线])终端"
|
||||
}
|
||||
)
|
||||
public class ClientCloseProtocol extends ProtocolClientAdapter implements ApplicationListener<ClientCloseEvent> {
|
||||
|
||||
@@ -27,6 +27,7 @@ import com.acgist.taoyao.signal.protocol.ProtocolClientAdapter;
|
||||
*/
|
||||
@Protocol
|
||||
@Description(
|
||||
memo = "终端应该在收到配置之后进行媒体操作",
|
||||
body = """
|
||||
{
|
||||
"media" : "媒体配置(可选)",
|
||||
@@ -34,7 +35,7 @@ import com.acgist.taoyao.signal.protocol.ProtocolClientAdapter;
|
||||
"datetime": "日期时间(yyyyMMddHHmmss)"
|
||||
}
|
||||
""",
|
||||
flow = "终端=[终端注册]>信令服务->终端"
|
||||
flow = "终端=[终端注册]>信令服务-[终端配置]>终端"
|
||||
)
|
||||
public class ClientConfigProtocol extends ProtocolClientAdapter implements ApplicationListener<ClientConfigEvent> {
|
||||
|
||||
@@ -72,7 +73,7 @@ public class ClientConfigProtocol extends ProtocolClientAdapter implements Appli
|
||||
final Map<String, Object> config = new HashMap<>();
|
||||
// 日期时间
|
||||
config.put(Constant.DATETIME, DateUtils.format(LocalDateTime.now(), DateTimeStyle.YYYYMMDDHH24MMSS));
|
||||
// Web、摄像头:媒体配置
|
||||
// 媒体终端:媒体配置
|
||||
if(clientType.mediaClient()) {
|
||||
config.put(Constant.MEDIA, this.mediaProperties);
|
||||
config.put(Constant.WEBRTC, this.webrtcProperties);
|
||||
|
||||
@@ -29,6 +29,7 @@ import lombok.extern.slf4j.Slf4j;
|
||||
@Slf4j
|
||||
@Protocol
|
||||
@Description(
|
||||
memo = "收到注册响应之后应该设置终端的终端索引",
|
||||
body = """
|
||||
{
|
||||
"username": "信令用户",
|
||||
|
||||
Reference in New Issue
Block a user