more stable p2p v2 connection to server+
parent
7cebb5eafc
commit
c4632a0564
|
@ -28,7 +28,7 @@ parentPort.on('message',(data) => {
|
|||
config = Object.assign({},data.config)
|
||||
lang = Object.assign({},data.lang)
|
||||
remoteConnectionPort = config.ssl ? config.ssl.port || 443 : config.port || 8080
|
||||
initialize(config,data.lang)
|
||||
initialize()
|
||||
break;
|
||||
case'exit':
|
||||
s.debugLog('Closing P2P Connection...')
|
||||
|
@ -43,6 +43,11 @@ var onClosedTimeout = null
|
|||
let stayDisconnected = false
|
||||
const requestConnections = {}
|
||||
const requestConnectionsData = {}
|
||||
function getRequestConnection(requestId){
|
||||
return requestConnections[requestId] || {
|
||||
write: () => {}
|
||||
}
|
||||
}
|
||||
function clearAllTimeouts(){
|
||||
clearInterval(heartbeatTimer)
|
||||
clearTimeout(heartBeatCheckTimout)
|
||||
|
@ -50,7 +55,7 @@ function clearAllTimeouts(){
|
|||
}
|
||||
function startConnection(p2pServerAddress,subscriptionId){
|
||||
console.log('P2P : Connecting to Konekta P2P Server...')
|
||||
let tunnelToShinobi
|
||||
let tunnelToP2P
|
||||
stayDisconnected = false
|
||||
const allMessageHandlers = []
|
||||
async function startWebsocketConnection(key,callback){
|
||||
|
@ -60,28 +65,28 @@ function startConnection(p2pServerAddress,subscriptionId){
|
|||
return new Promise((resolve,reject) => {
|
||||
try{
|
||||
stayDisconnected = true
|
||||
if(tunnelToShinobi)tunnelToShinobi.close()
|
||||
if(tunnelToP2P)tunnelToP2P.close()
|
||||
}catch(err){
|
||||
console.log(err)
|
||||
}
|
||||
tunnelToShinobi = new WebSocket(p2pServerAddress || 'ws://172.16.101.218:81');
|
||||
tunnelToP2P = new WebSocket(p2pServerAddress);
|
||||
stayDisconnected = false;
|
||||
tunnelToShinobi.on('open', function(){
|
||||
resolve(tunnelToShinobi)
|
||||
tunnelToP2P.on('open', function(){
|
||||
resolve(tunnelToP2P)
|
||||
})
|
||||
tunnelToShinobi.on('error', (err) => {
|
||||
console.log(`P2P tunnelToShinobi Error : `,err)
|
||||
tunnelToP2P.on('error', (err) => {
|
||||
console.log(`P2P tunnelToP2P Error : `,err)
|
||||
console.log(`P2P Restarting...`)
|
||||
// disconnectedConnection()
|
||||
})
|
||||
tunnelToShinobi.on('close', () => {
|
||||
tunnelToP2P.on('close', () => {
|
||||
console.log(`P2P Connection Closed!`)
|
||||
clearAllTimeouts()
|
||||
onClosedTimeout = setTimeout(() => {
|
||||
disconnectedConnection();
|
||||
},5000)
|
||||
});
|
||||
tunnelToShinobi.onmessage = function(event){
|
||||
tunnelToP2P.onmessage = function(event){
|
||||
const data = bson.deserialize(Buffer.from(event.data))
|
||||
allMessageHandlers.forEach((handler) => {
|
||||
if(data.f === handler.key){
|
||||
|
@ -92,8 +97,8 @@ function startConnection(p2pServerAddress,subscriptionId){
|
|||
|
||||
clearInterval(socketCheckTimer)
|
||||
socketCheckTimer = setInterval(() => {
|
||||
s.debugLog('Tunnel Ready State :',tunnelToShinobi.readyState)
|
||||
if(tunnelToShinobi.readyState !== 1){
|
||||
s.debugLog('Tunnel Ready State :',tunnelToP2P.readyState)
|
||||
if(tunnelToP2P.readyState !== 1){
|
||||
s.debugLog('Tunnel NOT Ready! Reconnecting...')
|
||||
disconnectedConnection()
|
||||
}
|
||||
|
@ -107,7 +112,7 @@ function startConnection(p2pServerAddress,subscriptionId){
|
|||
if(stayDisconnected)return;
|
||||
s.debugLog('RESTARTING!')
|
||||
setTimeout(() => {
|
||||
if(tunnelToShinobi && tunnelToShinobi.readyState !== 1)startWebsocketConnection()
|
||||
if(tunnelToP2P && tunnelToP2P.readyState !== 1)startWebsocketConnection()
|
||||
},2000)
|
||||
}
|
||||
s.debugLog(p2pServerAddress)
|
||||
|
@ -123,11 +128,11 @@ function startConnection(p2pServerAddress,subscriptionId){
|
|||
})
|
||||
}, 1000 * 10)
|
||||
setTimeout(() => {
|
||||
if(tunnelToShinobi.readyState !== 1)refreshHeartBeatCheck()
|
||||
if(tunnelToP2P.readyState !== 1)refreshHeartBeatCheck()
|
||||
},5000)
|
||||
}
|
||||
function sendDataToTunnel(data){
|
||||
tunnelToShinobi.send(
|
||||
tunnelToP2P.send(
|
||||
bson.serialize(data)
|
||||
)
|
||||
}
|
||||
|
@ -145,31 +150,43 @@ function startConnection(p2pServerAddress,subscriptionId){
|
|||
rid: requestId
|
||||
})
|
||||
}
|
||||
function createRemoteSocket(host,port,requestId){
|
||||
async function createRemoteSocket(host,port,requestId,initData){
|
||||
// if(requestConnections[requestId]){
|
||||
// remotesocket.off('data')
|
||||
// remotesocket.off('drain')
|
||||
// remotesocket.off('close')
|
||||
// requestConnections[requestId].end()
|
||||
// }
|
||||
const responseTunnel = await getResponseTunnel(requestId)
|
||||
let remotesocket = new net.Socket();
|
||||
remotesocket.connect(port || remoteConnectionPort, host || 'localhost');
|
||||
requestConnections[requestId] = remotesocket
|
||||
remotesocket.on('ready',() => {
|
||||
remotesocket.write(initData.buffer)
|
||||
})
|
||||
remotesocket.on('data', function(data) {
|
||||
requestConnectionsData[requestId] = data.toString()
|
||||
outboundMessage('data',data,requestId)
|
||||
responseTunnel.send('data',data)
|
||||
})
|
||||
remotesocket.on('drain', function() {
|
||||
outboundMessage('resume',{},requestId)
|
||||
responseTunnel.send('resume',{})
|
||||
});
|
||||
remotesocket.on('close', function() {
|
||||
delete(requestConnectionsData[requestId])
|
||||
outboundMessage('end',{},requestId)
|
||||
responseTunnel.send('end',{})
|
||||
setTimeout(() => {
|
||||
if(
|
||||
responseTunnel &&
|
||||
(responseTunnel.readyState === 0 || responseTunnel.readyState === 1)
|
||||
){
|
||||
responseTunnel.close()
|
||||
}
|
||||
},5000)
|
||||
});
|
||||
remotesocket.connect(port || remoteConnectionPort, host || 'localhost');
|
||||
requestConnections[requestId] = remotesocket
|
||||
return remotesocket
|
||||
}
|
||||
function writeToServer(data,requestId){
|
||||
var flushed = requestConnections[requestId].write(data.buffer)
|
||||
var flushed = getRequestConnection(requestId).write(data.buffer)
|
||||
if (!flushed) {
|
||||
outboundMessage('pause',{},requestId)
|
||||
}
|
||||
|
@ -182,18 +199,14 @@ function startConnection(p2pServerAddress,subscriptionId){
|
|||
}
|
||||
// onIncomingMessage('connect',(data,requestId) => {
|
||||
// console.log('New Request Incoming',requestId)
|
||||
// createRemoteSocket('172.16.101.94', 8080, requestId)
|
||||
// await createRemoteSocket('172.16.101.94', 8080, requestId)
|
||||
// })
|
||||
onIncomingMessage('connect',(data,requestId) => {
|
||||
onIncomingMessage('connect',async (data,requestId) => {
|
||||
// const hostParts = data.host.split(':')
|
||||
// const host = hostParts[0]
|
||||
// const port = parseInt(hostParts[1]) || 80
|
||||
s.debugLog('New Request Incoming', null, null, requestId)
|
||||
const socket = createRemoteSocket(null, null, requestId)
|
||||
socket.on('ready',() => {
|
||||
s.debugLog('READY')
|
||||
writeToServer(data.init,requestId)
|
||||
})
|
||||
const socket = await createRemoteSocket(null, null, requestId, data.init)
|
||||
})
|
||||
onIncomingMessage('data',writeToServer)
|
||||
onIncomingMessage('shell',function(data,requestId){
|
||||
|
@ -246,10 +259,73 @@ function startConnection(p2pServerAddress,subscriptionId){
|
|||
stayDisconnected = data && !data.retryLater
|
||||
})
|
||||
}
|
||||
|
||||
function initialize(config,lang){
|
||||
const responseTunnels = {}
|
||||
async function getResponseTunnel(originalRequestId){
|
||||
return responseTunnels[originalRequestId] || await createResponseTunnel(originalRequestId)
|
||||
}
|
||||
function createResponseTunnel(originalRequestId){
|
||||
const responseTunnelMessageHandlers = []
|
||||
function onMessage(key,callback){
|
||||
responseTunnelMessageHandlers.push({
|
||||
key: key,
|
||||
callback: callback,
|
||||
})
|
||||
}
|
||||
return new Promise((resolve,reject) => {
|
||||
const responseTunnel = new WebSocket(config.selectedHost);
|
||||
function sendToResponseTunnel(data){
|
||||
responseTunnel.send(
|
||||
bson.serialize(data)
|
||||
)
|
||||
}
|
||||
function sendData(key,data){
|
||||
sendToResponseTunnel({
|
||||
f: key,
|
||||
data: data,
|
||||
rid: originalRequestId
|
||||
})
|
||||
}
|
||||
responseTunnel.on('open', function(){
|
||||
sendToResponseTunnel({
|
||||
responseTunnel: originalRequestId,
|
||||
subscriptionId: config.p2pApiKey,
|
||||
})
|
||||
})
|
||||
responseTunnel.on('close', function(){
|
||||
delete(responseTunnels[originalRequestId])
|
||||
})
|
||||
onMessage('ready', function(){
|
||||
const finalData = {
|
||||
onMessage,
|
||||
send: sendData,
|
||||
sendRaw: sendToResponseTunnel,
|
||||
close: responseTunnel.close
|
||||
}
|
||||
responseTunnels[originalRequestId] = finalData;
|
||||
resolve(finalData)
|
||||
})
|
||||
responseTunnel.onmessage = function(event){
|
||||
const data = bson.deserialize(Buffer.from(event.data))
|
||||
responseTunnelMessageHandlers.forEach((handler) => {
|
||||
if(data.f === handler.key){
|
||||
handler.callback(data.data,data.rid)
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
function closeResponseTunnel(originalRequestId){
|
||||
// also should be handled server side
|
||||
try{
|
||||
responseTunnels[originalRequestId].close()
|
||||
}catch(err){
|
||||
s.debugLog('closeResponseTunnel',err)
|
||||
}
|
||||
}
|
||||
function initialize(){
|
||||
const selectedP2PServerId = config.p2pServerList[config.p2pHostSelected] ? config.p2pHostSelected : Object.keys(config.p2pServerList)[0]
|
||||
const p2pServerDetails = config.p2pServerList[selectedP2PServerId]
|
||||
const selectedHost = 'ws://' + p2pServerDetails.host + ':' + p2pServerDetails.p2pPort
|
||||
config.selectedHost = selectedHost
|
||||
startConnection(selectedHost,config.p2pApiKey)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue