FreeDATA/gui/sock.js

242 lines
7.9 KiB
JavaScript
Raw Normal View History

2021-07-17 07:03:40 +00:00
var net = require('net');
2021-09-04 18:23:58 +00:00
const path = require('path')
2021-07-24 07:06:22 +00:00
const {
ipcRenderer
2021-09-04 18:23:58 +00:00
} = require('electron')
// https://stackoverflow.com/a/26227660
2021-09-04 19:37:56 +00:00
var appDataFolder = process.env.APPDATA || (process.platform == 'darwin' ? process.env.HOME + '/Library/Application Support' : process.env.HOME + "/.config")
2021-09-13 16:27:50 +00:00
var configFolder = path.join(appDataFolder, "FreeDATA");
2021-09-04 18:23:58 +00:00
var configPath = path.join(configFolder, 'config.json')
const config = require(configPath);
2021-07-17 07:03:40 +00:00
var client = new net.Socket();
var msg = ''; // Current message, per connection.
2021-08-23 14:24:49 +00:00
// globals for getting new data only if available
var rxBufferLengthTnc = 0
var rxBufferLengthGui = 0
// network connection Timeout
2021-07-24 07:06:22 +00:00
setTimeout(connectTNC, 3000)
2021-07-17 07:03:40 +00:00
2021-07-24 07:06:22 +00:00
function connectTNC() {
//exports.connectTNC = function(){
2021-09-04 14:33:17 +00:00
//console.log('connecting to TNC...')
2021-07-24 07:06:22 +00:00
2021-07-17 07:03:40 +00:00
//clear message buffer after reconnecting or inital connection
msg = '';
2021-09-04 18:23:58 +00:00
if (config.tnclocation == 'localhost') {
client.connect(3000, '127.0.0.1')
2021-09-04 14:33:17 +00:00
} else {
client.connect(config.tnc_port, config.tnc_host)
}
2021-07-17 07:03:40 +00:00
}
client.on('connect', function(data) {
2021-07-24 07:06:22 +00:00
console.log('TNC connection established')
2021-07-17 07:03:40 +00:00
})
client.on('error', function(data) {
2021-07-24 07:06:22 +00:00
console.log('TNC connection error');
let Data = {
busy_state: "-",
arq_state: "-",
channel_state: "-",
frequency: "-",
mode: "-",
bandwith: "-",
rms_level: 0
2021-07-17 07:03:40 +00:00
2021-07-24 07:06:22 +00:00
};
ipcRenderer.send('request-update-tnc-state', Data);
2021-07-17 07:03:40 +00:00
setTimeout(connectTNC, 2000)
2021-07-24 07:06:22 +00:00
// setTimeout( function() { exports.connectTNC(tnc_host, tnc_port); }, 2000 );
2021-07-17 07:03:40 +00:00
});
/*
client.on('close', function(data) {
console.log(' TNC connection closed');
2021-09-13 16:27:50 +00:00
setTimeout(connectTNC, 2000)
2021-07-17 07:03:40 +00:00
});
*/
client.on('end', function(data) {
2021-07-24 07:06:22 +00:00
console.log('TNC connection ended');
2021-09-13 16:27:50 +00:00
//setTimeout(connectTNC, 2000)
2021-07-24 07:06:22 +00:00
setTimeout(connectTNC, 0)
2021-07-24 07:06:22 +00:00
// setTimeout( function() { exports.connectTNC(tnc_host, tnc_port); }, 2000 );
2021-07-17 07:03:40 +00:00
});
2021-09-13 16:27:50 +00:00
//exports.writeTncCommand = function(command){
2021-07-24 07:06:22 +00:00
writeTncCommand = function(command) {
2021-09-04 14:33:17 +00:00
//console.log(command)
2021-07-17 07:03:40 +00:00
// we use the writingCommand function to update our TCPIP state because we are calling this function a lot
2021-07-24 07:06:22 +00:00
// if socket openend, we are able to run commands
if (client.readyState == 'open') {
//uiMain.setTNCconnection('open')
client.write(command + '\n');
2021-07-17 07:03:40 +00:00
}
2021-07-24 07:06:22 +00:00
if (client.readyState == 'closed') {
//uiMain.setTNCconnection('closed')
2021-09-04 14:33:17 +00:00
//console.log("CLOSED!!!!!")
2021-07-24 07:06:22 +00:00
}
2021-07-24 07:06:22 +00:00
if (client.readyState == 'opening') {
//uiMain.setTNCconnection('opening')
2021-09-04 14:33:17 +00:00
//console.log("OPENING!!!!!")
console.log('connecting to TNC...')
2021-07-24 07:06:22 +00:00
}
2021-07-17 07:03:40 +00:00
}
client.on('data', function(data) {
2021-09-13 16:27:50 +00:00
/*
2021-07-24 07:06:22 +00:00
stackoverflow.com questions 9070700 nodejs-net-createserver-large-amount-of-data-coming-in
*/
2021-07-17 07:03:40 +00:00
data = data.toString('utf8'); // convert data to string
msg += data.toString('utf8'); // append data to buffer so we can stick long data together
2021-08-07 18:57:36 +00:00
//console.log(data)
2021-07-24 07:06:22 +00:00
// check if we reached an EOF, if true, clear buffer and parse JSON data
2021-08-23 16:14:24 +00:00
if (data.endsWith('"EOF":"EOF"}')) {
2021-07-24 07:06:22 +00:00
//console.log(msg)
try {
//console.log(msg)
data = JSON.parse(msg)
} catch (e) {
console.log(e); /* "SyntaxError*/
}
msg = '';
/* console.log("EOF detected!") */
2021-08-23 16:14:24 +00:00
//console.log(data)
2021-07-24 07:06:22 +00:00
if (data['COMMAND'] == 'TNC_STATE') {
2021-09-04 14:33:17 +00:00
//console.log(data)
2021-08-23 14:24:49 +00:00
rxBufferLengthTnc = data['RX_BUFFER_LENGTH']
2021-09-04 18:23:58 +00:00
2021-07-24 07:06:22 +00:00
let Data = {
2021-08-08 09:43:50 +00:00
toe: Date.now() - data['TIMESTAMP'], // time of execution
2021-07-24 07:06:22 +00:00
ptt_state: data['PTT_STATE'],
busy_state: data['TNC_STATE'],
arq_state: data['ARQ_STATE'],
channel_state: data['CHANNEL_STATE'],
frequency: data['FREQUENCY'],
mode: data['MODE'],
bandwith: data['BANDWITH'],
2021-07-25 14:35:50 +00:00
rms_level: (data['AUDIO_RMS'] / 1000) * 100,
2021-09-05 09:26:09 +00:00
fft: data['FFT'],
scatter: data['SCATTER'],
rx_buffer_length: data['RX_BUFFER_LENGTH'],
tx_n_max_retries: data['TX_N_MAX_RETRIES'],
arq_tx_n_frames_per_burst: data['ARQ_TX_N_FRAMES_PER_BURST'],
arq_tx_n_bursts: data['ARQ_TX_N_BURSTS'],
arq_tx_n_current_arq_frame: data['ARQ_TX_N_CURRENT_ARQ_FRAME'],
arq_tx_n_total_arq_frames: data['ARQ_TX_N_TOTAL_ARQ_FRAMES'],
arq_rx_frame_n_bursts: data['ARQ_RX_FRAME_N_BURSTS'],
arq_rx_n_current_arq_frame: data['ARQ_RX_N_CURRENT_ARQ_FRAME'],
arq_n_arq_frames_per_data_frame: data['ARQ_N_ARQ_FRAMES_PER_DATA_FRAME'],
2021-08-15 15:30:50 +00:00
arq_bytes_per_minute: data['ARQ_BYTES_PER_MINUTE'],
total_bytes: data['TOTAL_BYTES'],
2021-09-04 14:33:17 +00:00
arq_transmission_percent: data['ARQ_TRANSMISSION_PERCENT'],
stations: data['STATIONS'],
2021-07-24 07:06:22 +00:00
};
2021-09-04 14:33:17 +00:00
//console.log(Data)
2021-07-24 07:06:22 +00:00
ipcRenderer.send('request-update-tnc-state', Data);
}
2021-09-04 18:23:58 +00:00
2021-08-16 17:39:20 +00:00
if (data['COMMAND'] == 'RX_BUFFER') {
2021-09-04 18:23:58 +00:00
2021-08-23 14:24:49 +00:00
rxBufferLengthGui = data['DATA-ARRAY'].length
2021-09-04 14:33:17 +00:00
//console.log(rxBufferLengthGui)
2021-08-16 17:39:20 +00:00
let Data = {
2021-09-04 18:23:58 +00:00
data: data['DATA-ARRAY'],
2021-08-16 17:39:20 +00:00
};
2021-09-04 14:33:17 +00:00
//console.log(Data)
2021-08-16 17:39:20 +00:00
ipcRenderer.send('request-update-rx-buffer', Data);
}
2021-07-24 07:06:22 +00:00
// check if EOF ...
2021-07-17 07:03:40 +00:00
}
2021-07-24 07:06:22 +00:00
2021-07-17 07:03:40 +00:00
});
function hexToBytes(hex) {
for (var bytes = [], c = 0; c < hex.length; c += 2)
2021-07-24 07:06:22 +00:00
bytes.push(parseInt(hex.substr(c, 2), 16));
2021-07-17 07:03:40 +00:00
return bytes;
}
2021-09-13 16:27:50 +00:00
//Save myCall
2021-07-24 07:06:22 +00:00
exports.saveMyCall = function(callsign) {
2021-09-04 18:23:58 +00:00
command = '{"type" : "SET", "command": "MYCALLSIGN" , "parameter": "' + callsign + '", "timestamp" : ' + Date.now() + '}'
2021-07-24 07:06:22 +00:00
writeTncCommand(command)
2021-07-17 07:03:40 +00:00
}
// Save myGrid
2021-07-24 07:06:22 +00:00
exports.saveMyGrid = function(grid) {
2021-09-04 18:23:58 +00:00
command = '{"type" : "SET", "command": "MYGRID" , "parameter": "' + grid + '", "timestamp" : ' + Date.now() + '}'
2021-07-24 07:06:22 +00:00
writeTncCommand(command)
2021-07-17 07:03:40 +00:00
}
//Get TNC State
2021-07-24 07:06:22 +00:00
exports.getTncState = function() {
2021-09-04 18:23:58 +00:00
command = '{"type" : "GET", "command" : "TNC_STATE", "timestamp" : ' + Date.now() + '}';
2021-07-24 07:06:22 +00:00
writeTncCommand(command)
2021-07-17 07:03:40 +00:00
}
2021-07-23 15:40:44 +00:00
//Get DATA State
2021-07-24 07:06:22 +00:00
exports.getDataState = function() {
2021-09-04 18:23:58 +00:00
command = '{"type" : "GET", "command" : "DATA_STATE", "timestamp" : ' + Date.now() + '}';
2021-07-25 16:19:51 +00:00
//writeTncCommand(command)
2021-07-23 15:40:44 +00:00
}
//Get Heard Stations
2021-07-24 07:06:22 +00:00
exports.getHeardStations = function() {
2021-09-04 18:23:58 +00:00
command = '{"type" : "GET", "command" : "HEARD_STATIONS", "timestamp" : ' + Date.now() + '}';
2021-07-24 07:06:22 +00:00
writeTncCommand(command)
2021-07-23 15:40:44 +00:00
}
// Send Ping
2021-07-24 07:06:22 +00:00
exports.sendPing = function(dxcallsign) {
2021-09-04 18:23:58 +00:00
command = '{"type" : "PING", "command" : "PING", "dxcallsign" : "' + dxcallsign + '", "timestamp" : ' + Date.now() + '}'
2021-07-24 07:06:22 +00:00
writeTncCommand(command)
}
// Send CQ
2021-07-24 07:06:22 +00:00
exports.sendCQ = function() {
2021-09-04 18:23:58 +00:00
command = '{"type" : "CQ", "command" : "CQCQCQ", "timestamp" : ' + Date.now() + '}'
2021-07-24 07:06:22 +00:00
writeTncCommand(command)
2021-07-26 16:09:04 +00:00
}
// Send File
exports.sendFile = function(dxcallsign, mode, frames, filename, filetype, data, checksum) {
2021-09-04 18:23:58 +00:00
command = '{"type" : "ARQ", "command" : "sendFile", "dxcallsign" : "' + dxcallsign + '", "mode" : "' + mode + '", "n_frames" : "' + frames + '", "filename" : "' + filename + '", "filetype" : "' + filetype + '", "data" : "' + data + '", "checksum" : "' + checksum + '", "timestamp" : ' + Date.now() + '}'
2021-07-26 16:09:04 +00:00
writeTncCommand(command)
}
// Send Message
exports.sendMessage = function(dxcallsign, mode, frames, data, checksum) {
2021-09-04 18:23:58 +00:00
command = '{"type" : "ARQ", "command" : "sendMessage", "dxcallsign" : " ' + dxcallsign + ' ", "mode" : " ' + mode + ' ", "n_frames" : " ' + frames + ' ", "data" : ' + data + ' , "checksum" : " ' + checksum + ' ", "timestamp" : ' + Date.now() + '}'
2021-07-26 16:09:04 +00:00
writeTncCommand(command)
2021-08-15 15:30:50 +00:00
}
// Get RX BUffer
exports.getRxBuffer = function() {
2021-09-04 18:23:58 +00:00
command = '{"type" : "GET", "command" : "RX_BUFFER", "timestamp" : ' + Date.now() + '}'
2021-08-23 14:24:49 +00:00
// call command only if new data arrived
2021-09-04 18:23:58 +00:00
if (rxBufferLengthGui != rxBufferLengthTnc) {
2021-08-23 14:24:49 +00:00
writeTncCommand(command)
}
2021-09-05 09:26:09 +00:00
}