Fix VNC connection

This commit is contained in:
Pierre HUBERT 2023-10-18 18:36:24 +02:00
parent 197fbcf259
commit b007826710
2 changed files with 51 additions and 43 deletions

View File

@ -84,11 +84,27 @@ impl VNCActor {
let mut buff: [u8; 5000] = [0; 5000];
loop {
match read_half.read(&mut buff).await {
Ok(l) => {
Ok(mut l) => {
if l == 0 {
log::error!("Got empty read. Closing read end...");
addr.do_send(CloseWebSocketReq);
return;
log::warn!("Got empty read!");
// Ugly hack made to wait for next byte
let mut one_byte_buff: [u8; 1] = [0; 1];
match read_half.read_exact(&mut one_byte_buff).await {
Ok(b) => {
if b == 0 {
log::error!("Did not get a byte !");
let _ = addr.send(CloseWebSocketReq).await;
break;
}
buff[0] = one_byte_buff[0];
l = 1;
}
Err(e) => {
log::error!("Failed to read 1 BYTE from remote socket. Stopping now... {:?}", e);
break;
}
}
}
let to_send = SendBytesReq(Vec::from(&buff[0..l]));

View File

@ -1,4 +1,3 @@
import { CircularProgress } from "@mui/material";
import React from "react";
import { useParams } from "react-router-dom";
import { VncScreen } from "react-vnc";
@ -28,15 +27,15 @@ export function VNCRoute(): React.ReactElement {
function VNCInner(p: { vm: VMInfo }): React.ReactElement {
const snackbar = useSnackbar();
const counter = React.useRef(false);
const [url, setURL] = React.useState<string | undefined>();
const urlRef = React.useRef<string | undefined>();
const load = async () => {
try {
const u = await VMApi.OneShotVNCURL(p.vm);
console.info(u);
if (urlRef.current === undefined) {
urlRef.current = u;
if (counter.current === false) {
counter.current = true;
setURL(u);
}
} catch (e) {
@ -45,25 +44,18 @@ function VNCInner(p: { vm: VMInfo }): React.ReactElement {
}
};
React.useEffect(() => {
load();
});
if (urlRef.current === undefined)
return (
<div
style={{
display: "flex",
alignItems: "center",
justifyContent: "center",
height: "100%",
}}
>
<CircularProgress />
</div>
);
const reconnect = () => {
counter.current = false;
setURL(undefined);
};
return (
<AsyncWidget
loadKey={counter.current}
load={load}
ready={url !== undefined && counter.current}
errMsg="Failed to get a token to initialize VNC connection!"
build={() => (
<div
style={{
display: "flex",
@ -73,14 +65,14 @@ function VNCInner(p: { vm: VMInfo }): React.ReactElement {
}}
>
<VncScreen
url={urlRef.current}
url={url!}
onDisconnect={() => {
console.info("VNC disconnected " + urlRef.current);
urlRef.current = undefined;
load();
setURL(undefined);
console.info("VNC disconnected " + url);
reconnect();
}}
/>
</div>
)}
/>
);
}