summaryrefslogtreecommitdiffhomepage
path: root/static/js/ws.js
blob: bc814ffa01ee0160c43130a88911b6a5644d5c48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/* 	
 * 	 Copyright (C) 2026 Private Island Networks Inc.
 *
 *   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.
 *	
 *	 file: ws.js
 *	
 */

"use strict";

let socket = new WebSocket("ws://localhost:8010/logger");
console.log("here we go");
let state = "Wait";
let log = document.getElementById('mc-log');

function log_msg(msg) {
	let msg_str = '';

	if (msg.num_cmds > 1) {
		console.log('multi commands');
	}

	for (let i = 0; i < msg.num_cmds; i++) {
		if (msg.cmds[i][0].includes('RDREG') || msg.cmds[i][0].includes('GETTEMP')) {
			msg_str += msg.cmds[i][0] + ' ' + msg.cmds[i][1] + '<br>';
		}
		else if (msg.cmds[i][0] == "" && (msg.cmds[i][1] == "PHY1_STATUS" || msg.cmds[i][1] == "PHY2_STATUS")) {
			let val = parseInt(msg.cmds[i][2], 16) & 0x8;
			if (val) {
				msg_str += msg.cmds[i][1] + ': LOS = 1' + '<br>';
			}
			else {
				msg_str += msg.cmds[i][1] + ': LOS = 0' + '<br>';
			}
		}
		else {
			msg_str += msg.cmds[i][0] + ' ' + msg.cmds[i][1] + ' ' + msg.cmds[i][2] + '<br>';
		}
	}

	return msg_str;
}

// setInterval(function(){console.log(state)},1000);

socket.onopen = function(e) {
	console.log("[open] Connection established");
	console.log("Sending to server");
	socket.send("open"); // can send data as a string, Blob, or ArrayBuffer.
};

function update_mode(mode) {
	if (mode == MODE_IDLE)
		$('#mc-mode').innerText = "Idle";
	else if (mode == MODE_LIVE || mode == MODE_FILE)
		$('#mc-mode').innerText = "Running";
	else
		console.log("unsupported mode")
}

socket.onmessage = function(event) {
	let num_msgs = 0;

	let msg = JSON.parse(event.data);
	if (msg.format == MSG_FORMAT_BASIC) {
		if (typeof msg['mode'] !== "undefined") {
			console.log("mode: ", msg['mode']);
			update_mode(msg['mode']);
		}
		else if (typeof msg['fw_version'] !== "undefined") {
			console.log("fw_version: ", msg['fw_version']);
			update_fw_version(msg['fw_version']);
		}
		else if (typeof msg['fw_increment'] !== "undefined") {
			console.log("fw_increment: ", msg['fw_increment']);
			update_fw_increment(msg['fw_increment']);
		}
		else if (typeof msg['temperature'] !== "undefined") {
			console.log("temperature: ", msg['temperature']);
			update_temperature(msg['temperature']);
		}
		else
			console.log("unsupported control");

		return;
	}

	let height = 2 * msg.num_cmds;
	if (height == 0) {
		height = 2;
	}

	num_msgs += 1;
	console.log("From server:", num_msgs, ': ', msg);

	if (msg.port == PORT_PC) {
		log.innerHTML += '<div class="mc-log-row style=height:' + height.toString() + 'rem"><div class="mc-log-col-time">' + msg.time + '</div>' +
			'<div class="mc-log-col-pc">' + log_msg(msg) + '</div>' +
			'<div class="mc-log-col-phy0"></div>' +
			'<div class="mc-log-col-phy1"></div></div>';
	}
	else if (msg.port == PORT_PHY0) {
		log.innerHTML += '<div class="mc-log-row"><div class="mc-log-col-time">' + msg.time + '</div>' +
			'<div class="mc-log-col-pc"></div>' +
			'<div class="mc-log-col-phy0">' + log_msg(msg) +
			'</div><div class="mc-log-col-phy1"></div></div>';
	}
	else if (msg.port == PORT_PHY1) {
		log.innerHTML += '<div class="mc-log-row"><div class="mc-log-col-time">' + msg.time + '</div>' +
			'<div class="mc-log-col-pc"></div>' +
			'<div class="mc-log-col-phy0"></div>' +
			'<div class="mc-log-col-phy1">' + log_msg(msg) + '</div></div>';
	}

	// socket.send("request");
	state = "Request"
};

socket.onclose = function(event) {
	state = "Closed"
	if (event.wasClean) {
		console.log(`[close] Connection closed cleanly, code=${event.code} reason=${event.reason}`);
	} else {
		// e.g. server process killed or network down
		// event.code is usually 1006 in this case
		console.log('[close] Connection died');
	}
};

socket.onerror = function(error) {
	state = "Error"
	console.log(`[error]`);
};

// When you've finished using the WebSocket connection,
// call the WebSocket method close():

Highly Recommended Verilog Books