mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-12-04 11:59:18 +08:00
code refactory
This commit is contained in:
parent
6bd730bc67
commit
9651666d41
@ -4,7 +4,7 @@ use hbb_common::{
|
|||||||
config::Config,
|
config::Config,
|
||||||
fs,
|
fs,
|
||||||
futures::{SinkExt, StreamExt},
|
futures::{SinkExt, StreamExt},
|
||||||
protobuf, sleep, timeout,
|
sleep, timeout,
|
||||||
tokio::{
|
tokio::{
|
||||||
net::TcpStream,
|
net::TcpStream,
|
||||||
sync::mpsc,
|
sync::mpsc,
|
||||||
@ -61,7 +61,6 @@ pub struct Connection {
|
|||||||
disable_clipboard: bool, // by peer
|
disable_clipboard: bool, // by peer
|
||||||
disable_audio: bool, // by peer
|
disable_audio: bool, // by peer
|
||||||
tx_input: SyncSender<MessageInput>, // handle input messages
|
tx_input: SyncSender<MessageInput>, // handle input messages
|
||||||
rx_input_res: Receiver<bool>,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Subscriber for ConnInner {
|
impl Subscriber for ConnInner {
|
||||||
@ -111,8 +110,8 @@ impl Connection {
|
|||||||
let (tx, mut rx) = mpsc::unbounded_channel::<(Instant, Arc<Message>)>();
|
let (tx, mut rx) = mpsc::unbounded_channel::<(Instant, Arc<Message>)>();
|
||||||
let (tx_video, mut rx_video) = mpsc::unbounded_channel::<(Instant, Arc<Message>)>();
|
let (tx_video, mut rx_video) = mpsc::unbounded_channel::<(Instant, Arc<Message>)>();
|
||||||
let (tx_input, rx_input) = sync_channel(1);
|
let (tx_input, rx_input) = sync_channel(1);
|
||||||
let (tx_input_res, rx_input_res) = sync_channel(1);
|
|
||||||
|
|
||||||
|
let tx_cloned = tx.clone();
|
||||||
let mut conn = Self {
|
let mut conn = Self {
|
||||||
inner: ConnInner {
|
inner: ConnInner {
|
||||||
id,
|
id,
|
||||||
@ -141,7 +140,6 @@ impl Connection {
|
|||||||
disable_audio: false,
|
disable_audio: false,
|
||||||
disable_clipboard: false,
|
disable_clipboard: false,
|
||||||
tx_input,
|
tx_input,
|
||||||
rx_input_res,
|
|
||||||
};
|
};
|
||||||
tokio::spawn(async move {
|
tokio::spawn(async move {
|
||||||
if let Err(err) = start_ipc(rx_to_cm, tx_from_cm).await {
|
if let Err(err) = start_ipc(rx_to_cm, tx_from_cm).await {
|
||||||
@ -172,7 +170,7 @@ impl Connection {
|
|||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
let handler_input = std::thread::spawn(move || Self::handle_input(rx_input, tx_input_res));
|
let handler_input = std::thread::spawn(move || Self::handle_input(rx_input, tx_cloned));
|
||||||
|
|
||||||
loop {
|
loop {
|
||||||
tokio::select! {
|
tokio::select! {
|
||||||
@ -314,7 +312,15 @@ impl Connection {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
video_service::notify_video_frame_feched(id, None);
|
||||||
|
super::video_service::update_test_latency(id, 0);
|
||||||
|
super::video_service::update_image_quality(id, None);
|
||||||
|
if let Err(err) = conn.try_port_forward_loop(&mut rx_from_cm).await {
|
||||||
|
conn.on_close(&err.to_string(), false);
|
||||||
|
}
|
||||||
|
|
||||||
conn.tx_input.send(MessageInput::Exit).ok();
|
conn.tx_input.send(MessageInput::Exit).ok();
|
||||||
|
// join at the end so that not blocking video
|
||||||
if let Err(e) = handler_input.join() {
|
if let Err(e) = handler_input.join() {
|
||||||
log::error!("Failed to join input thread, {:?}", e);
|
log::error!("Failed to join input thread, {:?}", e);
|
||||||
} else {
|
} else {
|
||||||
@ -323,16 +329,9 @@ impl Connection {
|
|||||||
|
|
||||||
let _ = crate::platform::block_input(false);
|
let _ = crate::platform::block_input(false);
|
||||||
crate::platform::toggle_blank_screen(false);
|
crate::platform::toggle_blank_screen(false);
|
||||||
|
|
||||||
video_service::notify_video_frame_feched(id, None);
|
|
||||||
super::video_service::update_test_latency(id, 0);
|
|
||||||
super::video_service::update_image_quality(id, None);
|
|
||||||
if let Err(err) = conn.try_port_forward_loop(&mut rx_from_cm).await {
|
|
||||||
conn.on_close(&err.to_string(), false);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn handle_input(receiver: Receiver<MessageInput>, tx_input_res: SyncSender<bool>) {
|
fn handle_input(receiver: Receiver<MessageInput>, tx: Sender) {
|
||||||
let mut block_input_mode = false;
|
let mut block_input_mode = false;
|
||||||
let (tx_blank, rx_blank) = sync_channel(1);
|
let (tx_blank, rx_blank) = sync_channel(1);
|
||||||
|
|
||||||
@ -347,34 +346,26 @@ impl Connection {
|
|||||||
MessageInput::BlockOn => {
|
MessageInput::BlockOn => {
|
||||||
if crate::platform::block_input(true) {
|
if crate::platform::block_input(true) {
|
||||||
block_input_mode = true;
|
block_input_mode = true;
|
||||||
tx_input_res.send(true).ok();
|
|
||||||
} else {
|
} else {
|
||||||
tx_input_res.send(false).ok();
|
Self::send_option_error(&tx, "Failed to turn on block input mode");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
MessageInput::BlockOff => {
|
MessageInput::BlockOff => {
|
||||||
if crate::platform::block_input(false) {
|
if crate::platform::block_input(false) {
|
||||||
block_input_mode = false;
|
block_input_mode = false;
|
||||||
tx_input_res.send(true).ok();
|
|
||||||
} else {
|
} else {
|
||||||
tx_input_res.send(false).ok();
|
Self::send_option_error(&tx, "Failed to turn off block input mode");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
MessageInput::PrivacyOn => {
|
MessageInput::PrivacyOn => {
|
||||||
if crate::platform::block_input(true) {
|
if crate::platform::block_input(true) {
|
||||||
block_input_mode = true;
|
block_input_mode = true;
|
||||||
tx_input_res.send(true).ok();
|
|
||||||
} else {
|
|
||||||
tx_input_res.send(false).ok();
|
|
||||||
}
|
}
|
||||||
tx_blank.send(MessageInput::PrivacyOn).ok();
|
tx_blank.send(MessageInput::PrivacyOn).ok();
|
||||||
}
|
}
|
||||||
MessageInput::PrivacyOff => {
|
MessageInput::PrivacyOff => {
|
||||||
if crate::platform::block_input(false) {
|
if crate::platform::block_input(false) {
|
||||||
block_input_mode = false;
|
block_input_mode = false;
|
||||||
tx_input_res.send(true).ok();
|
|
||||||
} else {
|
|
||||||
tx_input_res.send(false).ok();
|
|
||||||
}
|
}
|
||||||
tx_blank.send(MessageInput::PrivacyOff).ok();
|
tx_blank.send(MessageInput::PrivacyOff).ok();
|
||||||
}
|
}
|
||||||
@ -651,16 +642,15 @@ impl Connection {
|
|||||||
self.send(msg_out).await;
|
self.send(msg_out).await;
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn send_option_error<T: std::string::ToString>(&mut self, err: T, opt: OptionMessage) {
|
fn send_option_error<T: std::string::ToString>(s: &Sender, err: T) {
|
||||||
let mut msg_out = Message::new();
|
let mut msg_out = Message::new();
|
||||||
let mut res = OptionResponse::new();
|
let mut res = OptionResponse::new();
|
||||||
let mut misc = Misc::new();
|
let mut misc = Misc::new();
|
||||||
res.opt = protobuf::MessageField::some(opt);
|
|
||||||
res.error = err.to_string();
|
res.error = err.to_string();
|
||||||
|
|
||||||
misc.set_option_response(res);
|
misc.set_option_response(res);
|
||||||
msg_out.set_misc(misc);
|
msg_out.set_misc(misc);
|
||||||
self.send(msg_out).await;
|
s.send((Instant::now(), Arc::new(msg_out))).ok();
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn on_message(&mut self, msg: Message) -> bool {
|
async fn on_message(&mut self, msg: Message) -> bool {
|
||||||
@ -1006,22 +996,10 @@ impl Connection {
|
|||||||
BoolOption::Yes => {
|
BoolOption::Yes => {
|
||||||
self.privacy_mode = true;
|
self.privacy_mode = true;
|
||||||
self.tx_input.send(MessageInput::PrivacyOn).ok();
|
self.tx_input.send(MessageInput::PrivacyOn).ok();
|
||||||
if self.rx_input_res.recv().unwrap() {
|
|
||||||
log::info!("Privacy mode on");
|
|
||||||
} else {
|
|
||||||
log::error!("Failed to trun on privacy mode");
|
|
||||||
self.send_option_error("Failed to turn on privacy mode", o.clone())
|
|
||||||
.await;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
BoolOption::No => {
|
BoolOption::No => {
|
||||||
self.privacy_mode = false;
|
self.privacy_mode = false;
|
||||||
self.tx_input.send(MessageInput::PrivacyOff).ok();
|
self.tx_input.send(MessageInput::PrivacyOff).ok();
|
||||||
if self.rx_input_res.recv().unwrap() {
|
|
||||||
log::info!("Privacy mode off");
|
|
||||||
} else {
|
|
||||||
log::warn!("Failed to trun off privacy mode")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
_ => {}
|
_ => {}
|
||||||
}
|
}
|
||||||
@ -1032,21 +1010,9 @@ impl Connection {
|
|||||||
match q {
|
match q {
|
||||||
BoolOption::Yes => {
|
BoolOption::Yes => {
|
||||||
self.tx_input.send(MessageInput::BlockOn).ok();
|
self.tx_input.send(MessageInput::BlockOn).ok();
|
||||||
if self.rx_input_res.recv().unwrap() {
|
|
||||||
log::info!("Block input mode on");
|
|
||||||
} else {
|
|
||||||
log::error!("Failed to trun on block input mode");
|
|
||||||
self.send_option_error("Failed to turn on block input mode", o.clone())
|
|
||||||
.await;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
BoolOption::No => {
|
BoolOption::No => {
|
||||||
self.tx_input.send(MessageInput::BlockOff).ok();
|
self.tx_input.send(MessageInput::BlockOff).ok();
|
||||||
if self.rx_input_res.recv().unwrap() {
|
|
||||||
log::info!("Block input mode off");
|
|
||||||
} else {
|
|
||||||
log::error!("Failed to trun off block input mode");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
_ => {}
|
_ => {}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user