2021-03-29 15:59:14 +08:00
|
|
|
|
use crate::ipc::{self, new_listener, Connection, Data};
|
2022-04-28 18:23:12 +08:00
|
|
|
|
use crate::VERSION;
|
2022-02-22 14:17:50 +08:00
|
|
|
|
#[cfg(windows)]
|
2022-02-22 22:26:22 +08:00
|
|
|
|
use clipboard::{
|
2022-02-24 11:22:19 +08:00
|
|
|
|
create_cliprdr_context, empty_clipboard, get_rx_clip_client, server_clip_file, set_conn_enabled,
|
2022-02-22 22:26:22 +08:00
|
|
|
|
};
|
2022-04-28 18:23:12 +08:00
|
|
|
|
use hbb_common::fs::{
|
|
|
|
|
can_enable_overwrite_detection, get_string, is_write_need_confirmation, new_send_confirm,
|
2022-04-29 00:42:06 +08:00
|
|
|
|
DigestCheckResult,
|
2022-04-28 18:23:12 +08:00
|
|
|
|
};
|
2021-03-29 15:59:14 +08:00
|
|
|
|
use hbb_common::{
|
|
|
|
|
allow_err,
|
2022-05-12 17:35:25 +08:00
|
|
|
|
config::Config,
|
2022-04-28 18:23:12 +08:00
|
|
|
|
fs, get_version_number, log,
|
2021-03-29 15:59:14 +08:00
|
|
|
|
message_proto::*,
|
|
|
|
|
protobuf::Message as _,
|
2022-05-18 15:45:45 +08:00
|
|
|
|
tokio::{self, sync::mpsc, task::spawn_blocking}
|
2021-03-29 15:59:14 +08:00
|
|
|
|
};
|
|
|
|
|
use sciter::{make_args, Element, Value, HELEMENT};
|
|
|
|
|
use std::{
|
|
|
|
|
collections::HashMap,
|
|
|
|
|
ops::Deref,
|
|
|
|
|
sync::{Arc, RwLock},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
pub struct ConnectionManagerInner {
|
|
|
|
|
root: Option<Element>,
|
|
|
|
|
senders: HashMap<i32, mpsc::UnboundedSender<Data>>,
|
2022-05-12 17:35:25 +08:00
|
|
|
|
click_time: i64,
|
2021-03-29 15:59:14 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
|
pub struct ConnectionManager(Arc<RwLock<ConnectionManagerInner>>);
|
|
|
|
|
|
|
|
|
|
impl Deref for ConnectionManager {
|
|
|
|
|
type Target = Arc<RwLock<ConnectionManagerInner>>;
|
|
|
|
|
|
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
|
|
&self.0
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl ConnectionManager {
|
|
|
|
|
pub fn new() -> Self {
|
|
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
|
std::thread::spawn(start_pa);
|
|
|
|
|
let inner = ConnectionManagerInner {
|
|
|
|
|
root: None,
|
|
|
|
|
senders: HashMap::new(),
|
2022-05-12 17:35:25 +08:00
|
|
|
|
click_time: Default::default(),
|
2021-03-29 15:59:14 +08:00
|
|
|
|
};
|
|
|
|
|
let cm = Self(Arc::new(RwLock::new(inner)));
|
|
|
|
|
let cloned = cm.clone();
|
|
|
|
|
std::thread::spawn(move || start_ipc(cloned));
|
|
|
|
|
cm
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn get_icon(&mut self) -> String {
|
2022-05-12 17:35:25 +08:00
|
|
|
|
crate::get_icon()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn check_click_time(&mut self, id: i32) {
|
|
|
|
|
let lock = self.read().unwrap();
|
|
|
|
|
if let Some(s) = lock.senders.get(&id) {
|
|
|
|
|
allow_err!(s.send(Data::ClickTime(0)));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn get_click_time(&self) -> f64 {
|
|
|
|
|
self.read().unwrap().click_time as _
|
2021-03-29 15:59:14 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
fn call(&self, func: &str, args: &[Value]) {
|
|
|
|
|
let r = self.read().unwrap();
|
|
|
|
|
if let Some(ref e) = r.root {
|
2022-02-06 18:19:06 +08:00
|
|
|
|
allow_err!(e.call_method(func, &super::value_crash_workaround(args)[..]));
|
2021-03-29 15:59:14 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn add_connection(
|
|
|
|
|
&self,
|
|
|
|
|
id: i32,
|
|
|
|
|
is_file_transfer: bool,
|
|
|
|
|
port_forward: String,
|
|
|
|
|
peer_id: String,
|
|
|
|
|
name: String,
|
|
|
|
|
authorized: bool,
|
|
|
|
|
keyboard: bool,
|
|
|
|
|
clipboard: bool,
|
|
|
|
|
audio: bool,
|
2022-02-15 14:46:08 +08:00
|
|
|
|
file: bool,
|
2021-03-29 15:59:14 +08:00
|
|
|
|
tx: mpsc::UnboundedSender<Data>,
|
|
|
|
|
) {
|
|
|
|
|
self.call(
|
|
|
|
|
"addConnection",
|
|
|
|
|
&make_args!(
|
|
|
|
|
id,
|
|
|
|
|
is_file_transfer,
|
|
|
|
|
port_forward,
|
|
|
|
|
peer_id,
|
|
|
|
|
name,
|
|
|
|
|
authorized,
|
|
|
|
|
keyboard,
|
|
|
|
|
clipboard,
|
2022-02-15 14:46:08 +08:00
|
|
|
|
audio,
|
|
|
|
|
file
|
2021-03-29 15:59:14 +08:00
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
self.write().unwrap().senders.insert(id, tx);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn remove_connection(&self, id: i32) {
|
|
|
|
|
self.write().unwrap().senders.remove(&id);
|
2022-05-02 00:02:41 +08:00
|
|
|
|
if self.read().unwrap().senders.len() == 0 {
|
2022-05-10 01:08:21 +08:00
|
|
|
|
crate::platform::quit_gui();
|
2022-05-02 00:02:41 +08:00
|
|
|
|
}
|
2021-03-29 15:59:14 +08:00
|
|
|
|
self.call("removeConnection", &make_args!(id));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async fn handle_data(
|
|
|
|
|
&self,
|
|
|
|
|
id: i32,
|
|
|
|
|
data: Data,
|
2022-02-24 10:38:17 +08:00
|
|
|
|
_tx_clip_file: &mpsc::UnboundedSender<ClipboardFileData>,
|
2021-03-29 15:59:14 +08:00
|
|
|
|
write_jobs: &mut Vec<fs::TransferJob>,
|
|
|
|
|
conn: &mut Connection,
|
|
|
|
|
) {
|
|
|
|
|
match data {
|
|
|
|
|
Data::ChatMessage { text } => {
|
|
|
|
|
self.call("newMessage", &make_args!(id, text));
|
|
|
|
|
}
|
2022-05-12 17:35:25 +08:00
|
|
|
|
Data::ClickTime(ms) => {
|
|
|
|
|
self.write().unwrap().click_time = ms;
|
|
|
|
|
}
|
2021-03-29 15:59:14 +08:00
|
|
|
|
Data::FS(v) => match v {
|
|
|
|
|
ipc::FS::ReadDir {
|
|
|
|
|
dir,
|
|
|
|
|
include_hidden,
|
|
|
|
|
} => {
|
|
|
|
|
Self::read_dir(&dir, include_hidden, conn).await;
|
|
|
|
|
}
|
|
|
|
|
ipc::FS::RemoveDir {
|
|
|
|
|
path,
|
|
|
|
|
id,
|
|
|
|
|
recursive,
|
|
|
|
|
} => {
|
|
|
|
|
Self::remove_dir(path, id, recursive, conn).await;
|
|
|
|
|
}
|
|
|
|
|
ipc::FS::RemoveFile { path, id, file_num } => {
|
|
|
|
|
Self::remove_file(path, id, file_num, conn).await;
|
|
|
|
|
}
|
|
|
|
|
ipc::FS::CreateDir { path, id } => {
|
|
|
|
|
Self::create_dir(path, id, conn).await;
|
|
|
|
|
}
|
|
|
|
|
ipc::FS::NewWrite {
|
|
|
|
|
path,
|
|
|
|
|
id,
|
2022-05-13 11:23:30 +08:00
|
|
|
|
file_num,
|
2021-03-29 15:59:14 +08:00
|
|
|
|
mut files,
|
|
|
|
|
} => {
|
2022-04-28 18:23:12 +08:00
|
|
|
|
let od = can_enable_overwrite_detection(get_version_number(VERSION));
|
2022-05-12 15:55:36 +08:00
|
|
|
|
// cm has no show_hidden context
|
2022-05-13 11:23:30 +08:00
|
|
|
|
// dummy remote, show_hidden, is_remote
|
2021-03-29 15:59:14 +08:00
|
|
|
|
write_jobs.push(fs::TransferJob::new_write(
|
|
|
|
|
id,
|
2022-05-12 15:55:36 +08:00
|
|
|
|
"".to_string(),
|
2021-03-29 15:59:14 +08:00
|
|
|
|
path,
|
2022-05-13 11:23:30 +08:00
|
|
|
|
file_num,
|
2022-05-12 15:55:36 +08:00
|
|
|
|
false,
|
|
|
|
|
false,
|
2021-03-29 15:59:14 +08:00
|
|
|
|
files
|
|
|
|
|
.drain(..)
|
|
|
|
|
.map(|f| FileEntry {
|
|
|
|
|
name: f.0,
|
|
|
|
|
modified_time: f.1,
|
|
|
|
|
..Default::default()
|
|
|
|
|
})
|
|
|
|
|
.collect(),
|
2022-05-13 14:46:37 +08:00
|
|
|
|
od,
|
2021-03-29 15:59:14 +08:00
|
|
|
|
));
|
|
|
|
|
}
|
|
|
|
|
ipc::FS::CancelWrite { id } => {
|
|
|
|
|
if let Some(job) = fs::get_job(id, write_jobs) {
|
|
|
|
|
job.remove_download_file();
|
|
|
|
|
fs::remove_job(id, write_jobs);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
ipc::FS::WriteDone { id, file_num } => {
|
|
|
|
|
if let Some(job) = fs::get_job(id, write_jobs) {
|
|
|
|
|
job.modify_time();
|
|
|
|
|
Self::send(fs::new_done(id, file_num), conn).await;
|
|
|
|
|
fs::remove_job(id, write_jobs);
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-04-27 10:45:20 +08:00
|
|
|
|
ipc::FS::CheckDigest {
|
|
|
|
|
id,
|
|
|
|
|
file_num,
|
|
|
|
|
file_size,
|
2022-04-29 16:47:45 +08:00
|
|
|
|
last_modified,
|
2022-04-28 17:42:22 +08:00
|
|
|
|
is_upload,
|
2022-04-27 10:45:20 +08:00
|
|
|
|
} => {
|
|
|
|
|
if let Some(job) = fs::get_job(id, write_jobs) {
|
2022-04-28 16:06:52 +08:00
|
|
|
|
let mut req = FileTransferSendConfirmRequest {
|
2022-04-27 10:45:20 +08:00
|
|
|
|
id,
|
|
|
|
|
file_num,
|
2022-07-14 17:20:01 +08:00
|
|
|
|
union: Some(file_transfer_send_confirm_request::Union::OffsetBlk(0)),
|
2022-04-27 10:45:20 +08:00
|
|
|
|
..Default::default()
|
2022-04-28 16:06:52 +08:00
|
|
|
|
};
|
|
|
|
|
let digest = FileTransferDigest {
|
|
|
|
|
id,
|
|
|
|
|
file_num,
|
2022-04-29 16:47:45 +08:00
|
|
|
|
last_modified,
|
2022-04-28 16:06:52 +08:00
|
|
|
|
file_size,
|
|
|
|
|
..Default::default()
|
|
|
|
|
};
|
|
|
|
|
if let Some(file) = job.files().get(file_num as usize) {
|
|
|
|
|
let path = get_string(&job.join(&file.name));
|
|
|
|
|
match is_write_need_confirmation(&path, &digest) {
|
2022-04-29 00:42:06 +08:00
|
|
|
|
Ok(digest_result) => {
|
|
|
|
|
match digest_result {
|
|
|
|
|
DigestCheckResult::IsSame => {
|
|
|
|
|
req.set_skip(true);
|
|
|
|
|
let msg_out = new_send_confirm(req);
|
|
|
|
|
Self::send(msg_out, conn).await;
|
|
|
|
|
}
|
|
|
|
|
DigestCheckResult::NeedConfirm(mut digest) => {
|
|
|
|
|
// upload to server, but server has the same file, request
|
|
|
|
|
digest.is_upload = is_upload;
|
|
|
|
|
let mut msg_out = Message::new();
|
|
|
|
|
let mut fr = FileResponse::new();
|
|
|
|
|
fr.set_digest(digest);
|
|
|
|
|
msg_out.set_file_response(fr);
|
|
|
|
|
Self::send(msg_out, conn).await;
|
|
|
|
|
}
|
|
|
|
|
DigestCheckResult::NoSuchFile => {
|
|
|
|
|
let msg_out = new_send_confirm(req);
|
|
|
|
|
Self::send(msg_out, conn).await;
|
|
|
|
|
}
|
2022-04-28 16:06:52 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Err(err) => {
|
|
|
|
|
Self::send(fs::new_error(id, err, file_num), conn).await;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-04-27 10:45:20 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-03-29 15:59:14 +08:00
|
|
|
|
ipc::FS::WriteBlock {
|
|
|
|
|
id,
|
|
|
|
|
file_num,
|
|
|
|
|
data,
|
|
|
|
|
compressed,
|
|
|
|
|
} => {
|
2022-03-26 03:05:15 +08:00
|
|
|
|
let raw = if let Ok(bytes) = conn.next_raw().await {
|
|
|
|
|
Some(bytes)
|
|
|
|
|
} else {
|
|
|
|
|
None
|
|
|
|
|
};
|
2021-03-29 15:59:14 +08:00
|
|
|
|
if let Some(job) = fs::get_job(id, write_jobs) {
|
|
|
|
|
if let Err(err) = job
|
2022-03-26 03:05:15 +08:00
|
|
|
|
.write(
|
|
|
|
|
FileTransferBlock {
|
|
|
|
|
id,
|
|
|
|
|
file_num,
|
2022-07-21 16:07:19 +08:00
|
|
|
|
data,
|
2022-03-26 03:05:15 +08:00
|
|
|
|
compressed,
|
|
|
|
|
..Default::default()
|
|
|
|
|
},
|
|
|
|
|
raw.as_ref().map(|x| &x[..]),
|
|
|
|
|
)
|
2021-03-29 15:59:14 +08:00
|
|
|
|
.await
|
|
|
|
|
{
|
|
|
|
|
Self::send(fs::new_error(id, err, file_num), conn).await;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-05-12 14:19:15 +08:00
|
|
|
|
ipc::FS::WriteOffset {
|
2022-05-18 15:45:45 +08:00
|
|
|
|
id: _,
|
|
|
|
|
file_num: _,
|
|
|
|
|
offset_blk: _,
|
2022-05-13 14:46:37 +08:00
|
|
|
|
} => {}
|
2021-03-29 15:59:14 +08:00
|
|
|
|
},
|
2022-03-01 11:19:13 +08:00
|
|
|
|
#[cfg(windows)]
|
2022-02-22 14:17:50 +08:00
|
|
|
|
Data::ClipbaordFile(_clip) => {
|
2022-02-24 10:38:17 +08:00
|
|
|
|
_tx_clip_file
|
|
|
|
|
.send(ClipboardFileData::Clip((id, _clip)))
|
|
|
|
|
.ok();
|
2022-02-22 14:17:50 +08:00
|
|
|
|
}
|
2022-03-01 11:19:13 +08:00
|
|
|
|
#[cfg(windows)]
|
2022-02-22 22:26:22 +08:00
|
|
|
|
Data::ClipboardFileEnabled(enabled) => {
|
2022-02-24 10:38:17 +08:00
|
|
|
|
_tx_clip_file
|
|
|
|
|
.send(ClipboardFileData::Enable((id, enabled)))
|
|
|
|
|
.ok();
|
2022-02-22 22:26:22 +08:00
|
|
|
|
}
|
2021-03-29 15:59:14 +08:00
|
|
|
|
_ => {}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async fn read_dir(dir: &str, include_hidden: bool, conn: &mut Connection) {
|
|
|
|
|
let path = {
|
|
|
|
|
if dir.is_empty() {
|
|
|
|
|
Config::get_home()
|
|
|
|
|
} else {
|
|
|
|
|
fs::get_path(dir)
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
if let Ok(Ok(fd)) = spawn_blocking(move || fs::read_dir(&path, include_hidden)).await {
|
|
|
|
|
let mut msg_out = Message::new();
|
|
|
|
|
let mut file_response = FileResponse::new();
|
|
|
|
|
file_response.set_dir(fd);
|
|
|
|
|
msg_out.set_file_response(file_response);
|
|
|
|
|
Self::send(msg_out, conn).await;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async fn handle_result<F: std::fmt::Display, S: std::fmt::Display>(
|
|
|
|
|
res: std::result::Result<std::result::Result<(), F>, S>,
|
|
|
|
|
id: i32,
|
|
|
|
|
file_num: i32,
|
|
|
|
|
conn: &mut Connection,
|
|
|
|
|
) {
|
|
|
|
|
match res {
|
|
|
|
|
Err(err) => {
|
|
|
|
|
Self::send(fs::new_error(id, err, file_num), conn).await;
|
|
|
|
|
}
|
|
|
|
|
Ok(Err(err)) => {
|
|
|
|
|
Self::send(fs::new_error(id, err, file_num), conn).await;
|
|
|
|
|
}
|
|
|
|
|
Ok(Ok(())) => {
|
|
|
|
|
Self::send(fs::new_done(id, file_num), conn).await;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async fn remove_file(path: String, id: i32, file_num: i32, conn: &mut Connection) {
|
|
|
|
|
Self::handle_result(
|
|
|
|
|
spawn_blocking(move || fs::remove_file(&path)).await,
|
|
|
|
|
id,
|
|
|
|
|
file_num,
|
|
|
|
|
conn,
|
|
|
|
|
)
|
|
|
|
|
.await;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async fn create_dir(path: String, id: i32, conn: &mut Connection) {
|
|
|
|
|
Self::handle_result(
|
|
|
|
|
spawn_blocking(move || fs::create_dir(&path)).await,
|
|
|
|
|
id,
|
|
|
|
|
0,
|
|
|
|
|
conn,
|
|
|
|
|
)
|
|
|
|
|
.await;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async fn remove_dir(path: String, id: i32, recursive: bool, conn: &mut Connection) {
|
|
|
|
|
let path = fs::get_path(&path);
|
|
|
|
|
Self::handle_result(
|
|
|
|
|
spawn_blocking(move || {
|
|
|
|
|
if recursive {
|
|
|
|
|
fs::remove_all_empty_dir(&path)
|
|
|
|
|
} else {
|
|
|
|
|
std::fs::remove_dir(&path).map_err(|err| err.into())
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.await,
|
|
|
|
|
id,
|
|
|
|
|
0,
|
|
|
|
|
conn,
|
|
|
|
|
)
|
|
|
|
|
.await;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async fn send(msg: Message, conn: &mut Connection) {
|
|
|
|
|
match msg.write_to_bytes() {
|
|
|
|
|
Ok(bytes) => allow_err!(conn.send(&Data::RawMessage(bytes)).await),
|
|
|
|
|
err => allow_err!(err),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn switch_permission(&self, id: i32, name: String, enabled: bool) {
|
|
|
|
|
let lock = self.read().unwrap();
|
|
|
|
|
if let Some(s) = lock.senders.get(&id) {
|
|
|
|
|
allow_err!(s.send(Data::SwitchPermission { name, enabled }));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn close(&self, id: i32) {
|
|
|
|
|
let lock = self.read().unwrap();
|
|
|
|
|
if let Some(s) = lock.senders.get(&id) {
|
|
|
|
|
allow_err!(s.send(Data::Close));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn send_msg(&self, id: i32, text: String) {
|
|
|
|
|
let lock = self.read().unwrap();
|
|
|
|
|
if let Some(s) = lock.senders.get(&id) {
|
|
|
|
|
allow_err!(s.send(Data::ChatMessage { text }));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-25 12:28:28 +08:00
|
|
|
|
fn send_data(&self, id: i32, data: Data) {
|
|
|
|
|
let lock = self.read().unwrap();
|
|
|
|
|
if let Some(s) = lock.senders.get(&id) {
|
|
|
|
|
allow_err!(s.send(data));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-29 15:59:14 +08:00
|
|
|
|
fn authorize(&self, id: i32) {
|
|
|
|
|
let lock = self.read().unwrap();
|
|
|
|
|
if let Some(s) = lock.senders.get(&id) {
|
|
|
|
|
allow_err!(s.send(Data::Authorize));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-25 16:45:22 +08:00
|
|
|
|
fn t(&self, name: String) -> String {
|
|
|
|
|
crate::client::translate(name)
|
|
|
|
|
}
|
2021-03-29 15:59:14 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl sciter::EventHandler for ConnectionManager {
|
|
|
|
|
fn attached(&mut self, root: HELEMENT) {
|
|
|
|
|
self.write().unwrap().root = Some(Element::from(root));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sciter::dispatch_script_call! {
|
2021-12-25 16:45:22 +08:00
|
|
|
|
fn t(String);
|
2022-05-12 17:35:25 +08:00
|
|
|
|
fn check_click_time(i32);
|
|
|
|
|
fn get_click_time();
|
2021-03-29 15:59:14 +08:00
|
|
|
|
fn get_icon();
|
|
|
|
|
fn close(i32);
|
|
|
|
|
fn authorize(i32);
|
|
|
|
|
fn switch_permission(i32, String, bool);
|
|
|
|
|
fn send_msg(i32, String);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-24 10:38:17 +08:00
|
|
|
|
enum ClipboardFileData {
|
2022-03-01 11:19:13 +08:00
|
|
|
|
#[cfg(windows)]
|
2022-02-24 10:38:17 +08:00
|
|
|
|
Clip((i32, ipc::ClipbaordFile)),
|
|
|
|
|
Enable((i32, bool)),
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-25 19:42:51 +08:00
|
|
|
|
#[tokio::main(flavor = "current_thread")]
|
2021-03-29 15:59:14 +08:00
|
|
|
|
async fn start_ipc(cm: ConnectionManager) {
|
2022-02-24 10:38:17 +08:00
|
|
|
|
let (tx_file, _rx_file) = mpsc::unbounded_channel::<ClipboardFileData>();
|
2022-02-22 14:17:50 +08:00
|
|
|
|
#[cfg(windows)]
|
|
|
|
|
let cm_clip = cm.clone();
|
|
|
|
|
#[cfg(windows)]
|
2022-02-24 10:38:17 +08:00
|
|
|
|
std::thread::spawn(move || start_clipboard_file(cm_clip, _rx_file));
|
2022-02-22 14:17:50 +08:00
|
|
|
|
|
2022-04-25 12:28:28 +08:00
|
|
|
|
#[cfg(windows)]
|
|
|
|
|
std::thread::spawn(move || {
|
|
|
|
|
log::info!("try create privacy mode window");
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
|
{
|
|
|
|
|
if let Err(e) = crate::platform::windows::check_update_broker_process() {
|
|
|
|
|
log::warn!(
|
|
|
|
|
"Failed to check update broker process. Privacy mode may not work properly. {}",
|
|
|
|
|
e
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
allow_err!(crate::ui::win_privacy::start());
|
|
|
|
|
});
|
|
|
|
|
|
2021-03-29 15:59:14 +08:00
|
|
|
|
match new_listener("_cm").await {
|
|
|
|
|
Ok(mut incoming) => {
|
|
|
|
|
while let Some(result) = incoming.next().await {
|
|
|
|
|
match result {
|
|
|
|
|
Ok(stream) => {
|
2022-04-29 19:40:53 +08:00
|
|
|
|
log::debug!("Got new connection");
|
2021-03-29 15:59:14 +08:00
|
|
|
|
let mut stream = Connection::new(stream);
|
|
|
|
|
let cm = cm.clone();
|
2022-02-22 14:17:50 +08:00
|
|
|
|
let tx_file = tx_file.clone();
|
2021-03-29 15:59:14 +08:00
|
|
|
|
tokio::spawn(async move {
|
2022-04-25 12:28:28 +08:00
|
|
|
|
// for tmp use, without real conn id
|
|
|
|
|
let conn_id_tmp = -1;
|
2021-03-29 15:59:14 +08:00
|
|
|
|
let mut conn_id: i32 = 0;
|
|
|
|
|
let (tx, mut rx) = mpsc::unbounded_channel::<Data>();
|
|
|
|
|
let mut write_jobs: Vec<fs::TransferJob> = Vec::new();
|
|
|
|
|
loop {
|
|
|
|
|
tokio::select! {
|
|
|
|
|
res = stream.next() => {
|
|
|
|
|
match res {
|
|
|
|
|
Err(err) => {
|
|
|
|
|
log::info!("cm ipc connection closed: {}", err);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
Ok(Some(data)) => {
|
|
|
|
|
match data {
|
2022-02-22 22:26:22 +08:00
|
|
|
|
Data::Login{id, is_file_transfer, port_forward, peer_id, name, authorized, keyboard, clipboard, audio, file, file_transfer_enabled} => {
|
2022-04-29 19:40:53 +08:00
|
|
|
|
log::debug!("conn_id: {}", id);
|
2021-03-29 15:59:14 +08:00
|
|
|
|
conn_id = id;
|
2022-02-24 10:38:17 +08:00
|
|
|
|
tx_file.send(ClipboardFileData::Enable((id, file_transfer_enabled))).ok();
|
2022-02-15 14:46:08 +08:00
|
|
|
|
cm.add_connection(id, is_file_transfer, port_forward, peer_id, name, authorized, keyboard, clipboard, audio, file, tx.clone());
|
2021-03-29 15:59:14 +08:00
|
|
|
|
}
|
2022-02-09 16:06:44 +08:00
|
|
|
|
Data::Close => {
|
2022-02-24 10:38:17 +08:00
|
|
|
|
tx_file.send(ClipboardFileData::Enable((conn_id, false))).ok();
|
2022-02-09 16:06:44 +08:00
|
|
|
|
log::info!("cm ipc connection closed from connection request");
|
|
|
|
|
break;
|
|
|
|
|
}
|
2022-04-25 12:28:28 +08:00
|
|
|
|
Data::PrivacyModeState((id, _)) => {
|
|
|
|
|
conn_id = conn_id_tmp;
|
|
|
|
|
cm.send_data(id, data)
|
|
|
|
|
}
|
2021-03-29 15:59:14 +08:00
|
|
|
|
_ => {
|
2022-02-24 10:38:17 +08:00
|
|
|
|
cm.handle_data(conn_id, data, &tx_file, &mut write_jobs, &mut stream).await;
|
2021-03-29 15:59:14 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
_ => {}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Some(data) = rx.recv() => {
|
2022-04-29 19:40:53 +08:00
|
|
|
|
if stream.send(&data).await.is_err() {
|
|
|
|
|
break;
|
|
|
|
|
}
|
2021-03-29 15:59:14 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-04-25 12:28:28 +08:00
|
|
|
|
if conn_id != conn_id_tmp {
|
|
|
|
|
cm.remove_connection(conn_id);
|
|
|
|
|
}
|
2021-03-29 15:59:14 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
Err(err) => {
|
|
|
|
|
log::error!("Couldn't get cm client: {:?}", err);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Err(err) => {
|
|
|
|
|
log::error!("Failed to start cm ipc server: {}", err);
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-05-10 01:08:21 +08:00
|
|
|
|
crate::platform::quit_gui();
|
2021-03-29 15:59:14 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(target_os = "linux")]
|
2021-06-25 19:42:51 +08:00
|
|
|
|
#[tokio::main(flavor = "current_thread")]
|
2021-03-29 15:59:14 +08:00
|
|
|
|
async fn start_pa() {
|
2022-02-24 10:38:17 +08:00
|
|
|
|
use crate::audio_service::AUDIO_DATA_SIZE_U8;
|
2022-02-22 20:45:49 +08:00
|
|
|
|
|
2021-03-29 15:59:14 +08:00
|
|
|
|
match new_listener("_pa").await {
|
|
|
|
|
Ok(mut incoming) => {
|
|
|
|
|
loop {
|
|
|
|
|
if let Some(result) = incoming.next().await {
|
|
|
|
|
match result {
|
|
|
|
|
Ok(stream) => {
|
|
|
|
|
let mut stream = Connection::new(stream);
|
|
|
|
|
let mut device: String = "".to_owned();
|
|
|
|
|
if let Some(Ok(Some(Data::Config((_, Some(x)))))) =
|
|
|
|
|
stream.next_timeout2(1000).await
|
|
|
|
|
{
|
|
|
|
|
device = x;
|
|
|
|
|
}
|
|
|
|
|
if !device.is_empty() {
|
|
|
|
|
device = crate::platform::linux::get_pa_source_name(&device);
|
|
|
|
|
}
|
|
|
|
|
if device.is_empty() {
|
|
|
|
|
device = crate::platform::linux::get_pa_monitor();
|
|
|
|
|
}
|
|
|
|
|
if device.is_empty() {
|
2022-03-01 10:38:31 +08:00
|
|
|
|
continue;
|
2021-03-29 15:59:14 +08:00
|
|
|
|
}
|
|
|
|
|
let spec = pulse::sample::Spec {
|
2021-12-25 00:18:54 +08:00
|
|
|
|
format: pulse::sample::Format::F32le,
|
2021-03-29 15:59:14 +08:00
|
|
|
|
channels: 2,
|
2022-05-12 17:35:25 +08:00
|
|
|
|
rate: crate::platform::PA_SAMPLE_RATE,
|
2021-03-29 15:59:14 +08:00
|
|
|
|
};
|
|
|
|
|
log::info!("pa monitor: {:?}", device);
|
2021-12-25 00:18:54 +08:00
|
|
|
|
// systemctl --user status pulseaudio.service
|
2022-02-22 20:45:49 +08:00
|
|
|
|
let mut buf: Vec<u8> = vec![0; AUDIO_DATA_SIZE_U8];
|
2021-12-25 00:18:54 +08:00
|
|
|
|
match psimple::Simple::new(
|
2021-03-29 15:59:14 +08:00
|
|
|
|
None, // Use the default server
|
2022-05-12 17:35:25 +08:00
|
|
|
|
&crate::get_app_name(), // Our application’s name
|
2021-03-29 15:59:14 +08:00
|
|
|
|
pulse::stream::Direction::Record, // We want a record stream
|
|
|
|
|
Some(&device), // Use the default device
|
2022-04-23 02:29:11 +08:00
|
|
|
|
"record", // Description of our stream
|
2021-03-29 15:59:14 +08:00
|
|
|
|
&spec, // Our sample format
|
|
|
|
|
None, // Use default channel map
|
|
|
|
|
None, // Use default buffering attributes
|
|
|
|
|
) {
|
2021-12-25 00:18:54 +08:00
|
|
|
|
Ok(s) => loop {
|
2021-12-28 22:36:43 +08:00
|
|
|
|
if let Ok(_) = s.read(&mut buf) {
|
2022-02-24 10:38:17 +08:00
|
|
|
|
let out =
|
|
|
|
|
if buf.iter().filter(|x| **x != 0).next().is_none() {
|
|
|
|
|
vec![]
|
|
|
|
|
} else {
|
|
|
|
|
buf.clone()
|
|
|
|
|
};
|
2022-07-21 17:54:07 +08:00
|
|
|
|
if let Err(err) = stream.send_raw(out.into()).await {
|
2022-02-24 10:38:17 +08:00
|
|
|
|
log::error!("Failed to send audio data:{}", err);
|
2022-02-22 20:45:49 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
2021-03-29 15:59:14 +08:00
|
|
|
|
}
|
2021-12-25 00:18:54 +08:00
|
|
|
|
},
|
|
|
|
|
Err(err) => {
|
|
|
|
|
log::error!("Could not create simple pulse: {}", err);
|
2021-03-29 15:59:14 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Err(err) => {
|
|
|
|
|
log::error!("Couldn't get pa client: {:?}", err);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Err(err) => {
|
|
|
|
|
log::error!("Failed to start pa ipc server: {}", err);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-02-22 14:17:50 +08:00
|
|
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
|
#[tokio::main(flavor = "current_thread")]
|
|
|
|
|
async fn start_clipboard_file(
|
|
|
|
|
cm: ConnectionManager,
|
2022-02-24 10:38:17 +08:00
|
|
|
|
mut rx: mpsc::UnboundedReceiver<ClipboardFileData>,
|
2022-02-22 14:17:50 +08:00
|
|
|
|
) {
|
2022-02-24 10:38:17 +08:00
|
|
|
|
let mut cliprdr_context = None;
|
2022-02-22 14:17:50 +08:00
|
|
|
|
let mut rx_clip_client = get_rx_clip_client().lock().await;
|
|
|
|
|
|
|
|
|
|
loop {
|
|
|
|
|
tokio::select! {
|
|
|
|
|
clip_file = rx_clip_client.recv() => match clip_file {
|
|
|
|
|
Some((conn_id, clip)) => {
|
|
|
|
|
cmd_inner_send(
|
|
|
|
|
&cm,
|
2022-02-24 11:22:19 +08:00
|
|
|
|
conn_id,
|
2022-02-22 14:17:50 +08:00
|
|
|
|
Data::ClipbaordFile(clip)
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
None => {
|
|
|
|
|
//
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
server_msg = rx.recv() => match server_msg {
|
2022-02-24 11:22:19 +08:00
|
|
|
|
Some(ClipboardFileData::Clip((conn_id, clip))) => {
|
2022-02-24 10:38:17 +08:00
|
|
|
|
if let Some(ctx) = cliprdr_context.as_mut() {
|
|
|
|
|
server_clip_file(ctx, conn_id, clip);
|
|
|
|
|
}
|
2022-02-22 14:17:50 +08:00
|
|
|
|
}
|
2022-02-24 10:38:17 +08:00
|
|
|
|
Some(ClipboardFileData::Enable((id, enabled))) => {
|
|
|
|
|
if enabled && cliprdr_context.is_none() {
|
|
|
|
|
cliprdr_context = Some(match create_cliprdr_context(true, false) {
|
|
|
|
|
Ok(context) => {
|
|
|
|
|
log::info!("clipboard context for file transfer created.");
|
|
|
|
|
context
|
|
|
|
|
}
|
|
|
|
|
Err(err) => {
|
|
|
|
|
log::error!(
|
|
|
|
|
"Create clipboard context for file transfer: {}",
|
|
|
|
|
err.to_string()
|
|
|
|
|
);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
2022-02-24 11:22:19 +08:00
|
|
|
|
set_conn_enabled(id, enabled);
|
2022-02-24 10:38:17 +08:00
|
|
|
|
if !enabled {
|
|
|
|
|
if let Some(ctx) = cliprdr_context.as_mut() {
|
2022-02-24 11:22:19 +08:00
|
|
|
|
empty_clipboard(ctx, id);
|
2022-02-24 10:38:17 +08:00
|
|
|
|
}
|
2022-02-22 23:53:28 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
None => {
|
|
|
|
|
break
|
|
|
|
|
}
|
2022-02-22 14:17:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(windows)]
|
2022-02-22 22:26:22 +08:00
|
|
|
|
fn cmd_inner_send(cm: &ConnectionManager, id: i32, data: Data) {
|
2022-02-22 14:17:50 +08:00
|
|
|
|
let lock = cm.read().unwrap();
|
|
|
|
|
if id != 0 {
|
|
|
|
|
if let Some(s) = lock.senders.get(&id) {
|
|
|
|
|
allow_err!(s.send(data));
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
for s in lock.senders.values() {
|
|
|
|
|
allow_err!(s.send(data.clone()));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|