mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-11-24 04:12:20 +08:00
vdi: new message loop
This commit is contained in:
parent
bbc6c98775
commit
3d5e8e0276
1
vdi/host/Cargo.lock
generated
1
vdi/host/Cargo.lock
generated
@ -1528,7 +1528,6 @@ version = "0.1.0"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"clap",
|
||||
"derivative",
|
||||
"hbb_common",
|
||||
"image",
|
||||
"qemu-display",
|
||||
|
@ -9,6 +9,5 @@ qemu-display = { git = "https://github.com/rustdesk/qemu-display" }
|
||||
hbb_common = { path = "../../libs/hbb_common" }
|
||||
clap = { version = "4.1", features = ["derive"] }
|
||||
zbus = { version = "3.0" }
|
||||
derivative = "2.2"
|
||||
image = "0.24"
|
||||
async-trait = "0.1"
|
||||
|
@ -1 +1,11 @@
|
||||
use hbb_common::{message_proto::*, tokio, ResultType};
|
||||
pub use tokio::sync::{mpsc, Mutex};
|
||||
pub struct Connection {
|
||||
pub tx: mpsc::UnboundedSender<Message>,
|
||||
}
|
||||
|
||||
impl Connection {
|
||||
pub async fn on_message(&mut self, message: Message) -> ResultType<bool> {
|
||||
Ok(true)
|
||||
}
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
use hbb_common::{log, tokio, ResultType};
|
||||
use hbb_common::{tokio, ResultType};
|
||||
use image::GenericImage;
|
||||
use qemu_display::{Console, ConsoleListenerHandler, MouseButton};
|
||||
use std::{collections::HashSet, sync::Arc, time};
|
||||
use std::{collections::HashSet, sync::Arc};
|
||||
pub use tokio::sync::{mpsc, Mutex};
|
||||
|
||||
#[derive(Debug)]
|
||||
@ -54,42 +54,11 @@ impl ConsoleListenerHandler for ConsoleListener {
|
||||
}
|
||||
|
||||
fn disconnected(&mut self) {
|
||||
dbg!();
|
||||
self.tx.send(Event::Disconnected).ok();
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(derivative::Derivative)]
|
||||
#[derivative(Debug)]
|
||||
pub struct Client {
|
||||
#[derivative(Debug = "ignore")]
|
||||
console: Arc<Mutex<Console>>,
|
||||
last_update: Option<time::Instant>,
|
||||
has_update: bool,
|
||||
req_update: bool,
|
||||
last_buttons: HashSet<MouseButton>,
|
||||
dimensions: (u16, u16),
|
||||
image: Arc<Mutex<BgraImage>>,
|
||||
}
|
||||
|
||||
impl Client {
|
||||
pub fn new(console: Arc<Mutex<Console>>, image: Arc<Mutex<BgraImage>>) -> Self {
|
||||
Self {
|
||||
console,
|
||||
image,
|
||||
last_update: None,
|
||||
has_update: false,
|
||||
req_update: false,
|
||||
last_buttons: HashSet::new(),
|
||||
dimensions: (0, 0),
|
||||
}
|
||||
}
|
||||
|
||||
pub fn update_pending(&self) -> bool {
|
||||
self.has_update && self.req_update
|
||||
}
|
||||
|
||||
pub async fn key_event(&self, qnum: u32, down: bool) -> ResultType<()> {
|
||||
let console = self.console.lock().await;
|
||||
pub async fn key_event(console: &mut Console, qnum: u32, down: bool) -> ResultType<()> {
|
||||
if down {
|
||||
console.keyboard.press(qnum).await?;
|
||||
} else {
|
||||
@ -98,49 +67,6 @@ impl Client {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
pub async fn desktop_resize(&mut self) -> ResultType<()> {
|
||||
let image = self.image.lock().await;
|
||||
let (width, height) = (image.width() as _, image.height() as _);
|
||||
if (width, height) == self.dimensions {
|
||||
return Ok(());
|
||||
}
|
||||
self.dimensions = (width, height);
|
||||
Ok(())
|
||||
}
|
||||
|
||||
pub async fn send_framebuffer_update(&mut self) -> ResultType<()> {
|
||||
self.desktop_resize().await?;
|
||||
if self.has_update && self.req_update {
|
||||
if let Some(last_update) = self.last_update {
|
||||
if last_update.elapsed().as_millis() < 10 {
|
||||
log::info!("TODO: <10ms, could delay update..")
|
||||
}
|
||||
}
|
||||
// self.server.send_framebuffer_update(&self.vnc_server)?;
|
||||
self.last_update = Some(time::Instant::now());
|
||||
self.has_update = false;
|
||||
self.req_update = false;
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
|
||||
pub async fn handle_event(&mut self, event: Option<Event>) -> ResultType<bool> {
|
||||
match event {
|
||||
Some(Event::ConsoleUpdate(_)) => {
|
||||
self.has_update = true;
|
||||
}
|
||||
Some(Event::Disconnected) => {
|
||||
return Ok(false);
|
||||
}
|
||||
None => {
|
||||
self.send_framebuffer_update().await?;
|
||||
}
|
||||
}
|
||||
|
||||
Ok(true)
|
||||
}
|
||||
}
|
||||
|
||||
fn image_from_vec(format: u32, width: u32, height: u32, stride: u32, data: Vec<u8>) -> BgraImage {
|
||||
if format != PIXMAN_X8R8G8B8 {
|
||||
todo!("unhandled pixman format: {}", format)
|
||||
|
@ -1,13 +1,18 @@
|
||||
use clap::Parser;
|
||||
use hbb_common::{anyhow::Context, log, tokio, ResultType};
|
||||
use qemu_display::{Console, VMProxy};
|
||||
use std::{
|
||||
borrow::Borrow,
|
||||
net::{TcpListener, TcpStream},
|
||||
sync::Arc,
|
||||
thread,
|
||||
use hbb_common::{
|
||||
allow_err,
|
||||
anyhow::{bail, Context},
|
||||
log,
|
||||
message_proto::*,
|
||||
protobuf::Message as _,
|
||||
tokio,
|
||||
tokio::net::TcpListener,
|
||||
ResultType, Stream,
|
||||
};
|
||||
use qemu_display::{Console, VMProxy};
|
||||
use std::{borrow::Borrow, sync::Arc};
|
||||
|
||||
use crate::connection::*;
|
||||
use crate::console::*;
|
||||
|
||||
#[derive(Parser, Debug)]
|
||||
@ -37,8 +42,10 @@ struct Cli {
|
||||
#[derive(Debug)]
|
||||
struct Server {
|
||||
vm_name: String,
|
||||
rx: mpsc::UnboundedReceiver<Event>,
|
||||
tx: mpsc::UnboundedSender<Event>,
|
||||
rx_console: mpsc::UnboundedReceiver<Event>,
|
||||
tx_console: mpsc::UnboundedSender<Event>,
|
||||
rx_conn: mpsc::UnboundedReceiver<Message>,
|
||||
tx_conn: mpsc::UnboundedSender<Message>,
|
||||
image: Arc<Mutex<BgraImage>>,
|
||||
console: Arc<Mutex<Console>>,
|
||||
}
|
||||
@ -48,12 +55,15 @@ impl Server {
|
||||
let width = console.width().await?;
|
||||
let height = console.height().await?;
|
||||
let image = BgraImage::new(width as _, height as _);
|
||||
let (tx, rx) = mpsc::unbounded_channel();
|
||||
let (tx_console, rx_console) = mpsc::unbounded_channel();
|
||||
let (tx_conn, rx_conn) = mpsc::unbounded_channel();
|
||||
Ok(Self {
|
||||
vm_name,
|
||||
rx,
|
||||
rx_console,
|
||||
tx_console,
|
||||
rx_conn,
|
||||
tx_conn,
|
||||
image: Arc::new(Mutex::new(image)),
|
||||
tx,
|
||||
console: Arc::new(Mutex::new(console)),
|
||||
})
|
||||
}
|
||||
@ -69,7 +79,7 @@ impl Server {
|
||||
.await
|
||||
.register_listener(ConsoleListener {
|
||||
image: self.image.clone(),
|
||||
tx: self.tx.clone(),
|
||||
tx: self.tx_console.clone(),
|
||||
})
|
||||
.await?;
|
||||
Ok(())
|
||||
@ -80,33 +90,47 @@ impl Server {
|
||||
(image.width() as u16, image.height() as u16)
|
||||
}
|
||||
|
||||
async fn handle_connection(&mut self, stream: TcpStream) -> ResultType<()> {
|
||||
let (width, height) = self.dimensions().await;
|
||||
|
||||
let tx = self.tx.clone();
|
||||
let _client_thread = thread::spawn(move || loop {});
|
||||
|
||||
let mut client = Client::new(self.console.clone(), self.image.clone());
|
||||
async fn handle_connection(&mut self, stream: Stream) -> ResultType<()> {
|
||||
let mut stream = stream;
|
||||
self.run_console().await?;
|
||||
let mut conn = Connection {
|
||||
tx: self.tx_conn.clone(),
|
||||
};
|
||||
|
||||
loop {
|
||||
let ev = if client.update_pending() {
|
||||
match self.rx.try_recv() {
|
||||
Ok(e) => Some(e),
|
||||
Err(mpsc::error::TryRecvError::Empty) => None,
|
||||
Err(e) => {
|
||||
return Err(e.into());
|
||||
tokio::select! {
|
||||
Some(evt) = self.rx_console.recv() => {
|
||||
match evt {
|
||||
_ => {}
|
||||
}
|
||||
}
|
||||
Some(msg) = self.rx_conn.recv() => {
|
||||
allow_err!(stream.send(&msg).await);
|
||||
}
|
||||
res = stream.next() => {
|
||||
if let Some(res) = res {
|
||||
match res {
|
||||
Err(err) => {
|
||||
bail!(err);
|
||||
}
|
||||
Ok(bytes) => {
|
||||
if let Ok(msg_in) = Message::parse_from_bytes(&bytes) {
|
||||
match conn.on_message(msg_in).await {
|
||||
Ok(false) => {
|
||||
break;
|
||||
}
|
||||
Err(err) => {
|
||||
log::error!("{err}");
|
||||
}
|
||||
_ => {}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
Some(
|
||||
self.rx
|
||||
.recv()
|
||||
.await
|
||||
.context("Channel closed unexpectedly")?,
|
||||
)
|
||||
};
|
||||
if !client.handle_event(ev).await? {
|
||||
break;
|
||||
bail!("Reset by the peer");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -119,7 +143,9 @@ impl Server {
|
||||
pub async fn run() -> ResultType<()> {
|
||||
let args = Cli::parse();
|
||||
|
||||
let listener = TcpListener::bind::<std::net::SocketAddr>(args.address.into()).unwrap();
|
||||
let listener = TcpListener::bind::<std::net::SocketAddr>(args.address.into())
|
||||
.await
|
||||
.unwrap();
|
||||
let dbus = if let Some(addr) = args.dbus_address {
|
||||
zbus::ConnectionBuilder::address(addr.borrow())?
|
||||
.build()
|
||||
@ -134,12 +160,13 @@ pub async fn run() -> ResultType<()> {
|
||||
.await
|
||||
.context("Failed to get the console")?;
|
||||
let mut server = Server::new(format!("qemu-rustdesk ({})", vm_name), console).await?;
|
||||
for stream in listener.incoming() {
|
||||
let stream = stream?;
|
||||
loop {
|
||||
let (stream, addr) = listener.accept().await?;
|
||||
stream.set_nodelay(true).ok();
|
||||
let laddr = stream.local_addr()?;
|
||||
let stream = Stream::from(stream, laddr);
|
||||
if let Err(err) = server.handle_connection(stream).await {
|
||||
log::error!("Connection closed: {err}");
|
||||
log::error!("Connection from {addr} closed: {err}");
|
||||
}
|
||||
}
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user