empty clipboard, debug crash & failed to copy
Signed-off-by: fufesou <shuanglongchen@yeah.net>
This commit is contained in:
parent
2f6b457b3f
commit
555ff0085a
@ -496,10 +496,10 @@ pub struct _cliprdr_client_context {
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
pub(crate) fn init_cliprdr(context: *mut CliprdrClientContext) -> BOOL;
|
pub(crate) fn init_cliprdr(context: *mut CliprdrClientContext) -> BOOL;
|
||||||
pub(crate) fn uninit_cliprdr(context: *mut CliprdrClientContext) -> BOOL;
|
pub(crate) fn uninit_cliprdr(context: *mut CliprdrClientContext) -> BOOL;
|
||||||
pub fn empty_clipboard(
|
pub(crate) fn empty_cliprdr(
|
||||||
context: *mut CliprdrClientContext,
|
context: *mut CliprdrClientContext,
|
||||||
server_conn_id: u32,
|
server_conn_id: UINT32,
|
||||||
remote_conn_id: u32,
|
remote_conn_id: UINT32,
|
||||||
) -> BOOL;
|
) -> BOOL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -98,6 +98,20 @@ pub fn set_conn_enabled(server_conn_id: i32, remote_conn_id: i32, enabled: bool)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn empty_clipboard(
|
||||||
|
context: &mut Box<CliprdrClientContext>,
|
||||||
|
server_conn_id: i32,
|
||||||
|
remote_conn_id: i32,
|
||||||
|
) -> bool {
|
||||||
|
unsafe {
|
||||||
|
TRUE == cliprdr::empty_cliprdr(
|
||||||
|
&mut (**context),
|
||||||
|
server_conn_id as u32,
|
||||||
|
remote_conn_id as u32,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub fn server_clip_file(
|
pub fn server_clip_file(
|
||||||
context: &mut Box<CliprdrClientContext>,
|
context: &mut Box<CliprdrClientContext>,
|
||||||
conn_id: ConnID,
|
conn_id: ConnID,
|
||||||
@ -454,14 +468,16 @@ extern "C" fn check_enabled(server_conn_id: UINT32, remote_conn_id: UINT32) -> B
|
|||||||
server_conn_enabled = true;
|
server_conn_enabled = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut remote_conn_enabled = false;
|
// let mut remote_conn_enabled = false;
|
||||||
if remote_conn_id != 0 {
|
// remote connection is always enabled
|
||||||
if let Some(true) = lock.remote_conn_enabled.get(&(remote_conn_id as i32)) {
|
// if remote_conn_id != 0 {
|
||||||
remote_conn_enabled = true;
|
// if let Some(true) = lock.remote_conn_enabled.get(&(remote_conn_id as i32)) {
|
||||||
}
|
// remote_conn_enabled = true;
|
||||||
} else {
|
// }
|
||||||
remote_conn_enabled = true;
|
// } else {
|
||||||
}
|
// remote_conn_enabled = true;
|
||||||
|
// }
|
||||||
|
let remote_conn_enabled = true;
|
||||||
|
|
||||||
if server_conn_enabled && remote_conn_enabled {
|
if server_conn_enabled && remote_conn_enabled {
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
@ -2792,6 +2792,23 @@ BOOL wf_cliprdr_uninit(wfClipboard *clipboard, CliprdrClientContext *cliprdr)
|
|||||||
|
|
||||||
cliprdr->custom = NULL;
|
cliprdr->custom = NULL;
|
||||||
|
|
||||||
|
/* discard all contexts in clipboard */
|
||||||
|
if (try_open_clipboard(clipboard->hwnd))
|
||||||
|
{
|
||||||
|
if (!EmptyClipboard())
|
||||||
|
{
|
||||||
|
DEBUG_CLIPRDR("EmptyClipboard failed with 0x%x", GetLastError());
|
||||||
|
}
|
||||||
|
if (!CloseClipboard())
|
||||||
|
{
|
||||||
|
// critical error!!!
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
DEBUG_CLIPRDR("OpenClipboard failed with 0x%x", GetLastError());
|
||||||
|
}
|
||||||
|
|
||||||
if (clipboard->hwnd)
|
if (clipboard->hwnd)
|
||||||
PostMessage(clipboard->hwnd, WM_QUIT, 0, 0);
|
PostMessage(clipboard->hwnd, WM_QUIT, 0, 0);
|
||||||
|
|
||||||
@ -2810,6 +2827,9 @@ BOOL wf_cliprdr_uninit(wfClipboard *clipboard, CliprdrClientContext *cliprdr)
|
|||||||
if (clipboard->response_data_event)
|
if (clipboard->response_data_event)
|
||||||
CloseHandle(clipboard->response_data_event);
|
CloseHandle(clipboard->response_data_event);
|
||||||
|
|
||||||
|
if (clipboard->data_obj_mutex)
|
||||||
|
CloseHandle(clipboard->data_obj_mutex);
|
||||||
|
|
||||||
if (clipboard->req_fevent)
|
if (clipboard->req_fevent)
|
||||||
CloseHandle(clipboard->req_fevent);
|
CloseHandle(clipboard->req_fevent);
|
||||||
|
|
||||||
@ -2851,7 +2871,7 @@ BOOL empty_cliprdr(CliprdrClientContext *context, UINT32 server_conn_id, UINT32
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
while (0)
|
do
|
||||||
{
|
{
|
||||||
if (clipboard->data_obj != NULL)
|
if (clipboard->data_obj != NULL)
|
||||||
{
|
{
|
||||||
@ -2888,7 +2908,7 @@ BOOL empty_cliprdr(CliprdrClientContext *context, UINT32 server_conn_id, UINT32
|
|||||||
// critical error!!!
|
// critical error!!!
|
||||||
}
|
}
|
||||||
rc = TRUE;
|
rc = TRUE;
|
||||||
}
|
} while (0);
|
||||||
|
|
||||||
if (!ReleaseMutex(clipboard->data_obj_mutex))
|
if (!ReleaseMutex(clipboard->data_obj_mutex))
|
||||||
{
|
{
|
||||||
|
26
src/ui/cm.rs
26
src/ui/cm.rs
@ -1,7 +1,8 @@
|
|||||||
use crate::ipc::{self, new_listener, Connection, Data};
|
use crate::ipc::{self, new_listener, Connection, Data};
|
||||||
#[cfg(windows)]
|
#[cfg(windows)]
|
||||||
use clipboard::{
|
use clipboard::{
|
||||||
create_cliprdr_context, get_rx_clip_client, server_clip_file, set_conn_enabled, ConnID,
|
create_cliprdr_context, empty_clipboard, get_rx_clip_client, server_clip_file,
|
||||||
|
set_conn_enabled, ConnID,
|
||||||
};
|
};
|
||||||
use hbb_common::{
|
use hbb_common::{
|
||||||
allow_err,
|
allow_err,
|
||||||
@ -111,6 +112,7 @@ impl ConnectionManager {
|
|||||||
id: i32,
|
id: i32,
|
||||||
data: Data,
|
data: Data,
|
||||||
_tx_clip_file: &mpsc::UnboundedSender<(i32, ipc::ClipbaordFile)>,
|
_tx_clip_file: &mpsc::UnboundedSender<(i32, ipc::ClipbaordFile)>,
|
||||||
|
_tx_clip_empty: &mpsc::UnboundedSender<i32>,
|
||||||
write_jobs: &mut Vec<fs::TransferJob>,
|
write_jobs: &mut Vec<fs::TransferJob>,
|
||||||
conn: &mut Connection,
|
conn: &mut Connection,
|
||||||
) {
|
) {
|
||||||
@ -197,6 +199,9 @@ impl ConnectionManager {
|
|||||||
}
|
}
|
||||||
Data::ClipboardFileEnabled(enabled) => {
|
Data::ClipboardFileEnabled(enabled) => {
|
||||||
set_conn_enabled(id, 0, enabled);
|
set_conn_enabled(id, 0, enabled);
|
||||||
|
if !enabled {
|
||||||
|
allow_err!(_tx_clip_empty.send(id));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
_ => {}
|
_ => {}
|
||||||
}
|
}
|
||||||
@ -339,10 +344,11 @@ impl sciter::EventHandler for ConnectionManager {
|
|||||||
#[tokio::main(flavor = "current_thread")]
|
#[tokio::main(flavor = "current_thread")]
|
||||||
async fn start_ipc(cm: ConnectionManager) {
|
async fn start_ipc(cm: ConnectionManager) {
|
||||||
let (tx_file, _rx_file) = mpsc::unbounded_channel::<(i32, ipc::ClipbaordFile)>();
|
let (tx_file, _rx_file) = mpsc::unbounded_channel::<(i32, ipc::ClipbaordFile)>();
|
||||||
|
let (tx_clip_empty, _rx_clip_empty) = mpsc::unbounded_channel::<i32>();
|
||||||
#[cfg(windows)]
|
#[cfg(windows)]
|
||||||
let cm_clip = cm.clone();
|
let cm_clip = cm.clone();
|
||||||
#[cfg(windows)]
|
#[cfg(windows)]
|
||||||
std::thread::spawn(move || start_clipboard_file(cm_clip, _rx_file));
|
std::thread::spawn(move || start_clipboard_file(cm_clip, _rx_file, _rx_clip_empty));
|
||||||
|
|
||||||
match new_listener("_cm").await {
|
match new_listener("_cm").await {
|
||||||
Ok(mut incoming) => {
|
Ok(mut incoming) => {
|
||||||
@ -352,6 +358,7 @@ async fn start_ipc(cm: ConnectionManager) {
|
|||||||
let mut stream = Connection::new(stream);
|
let mut stream = Connection::new(stream);
|
||||||
let cm = cm.clone();
|
let cm = cm.clone();
|
||||||
let tx_file = tx_file.clone();
|
let tx_file = tx_file.clone();
|
||||||
|
let tx_clip_empty = tx_clip_empty.clone();
|
||||||
tokio::spawn(async move {
|
tokio::spawn(async move {
|
||||||
let mut conn_id: i32 = 0;
|
let mut conn_id: i32 = 0;
|
||||||
let (tx, mut rx) = mpsc::unbounded_channel::<Data>();
|
let (tx, mut rx) = mpsc::unbounded_channel::<Data>();
|
||||||
@ -372,11 +379,13 @@ async fn start_ipc(cm: ConnectionManager) {
|
|||||||
cm.add_connection(id, is_file_transfer, port_forward, peer_id, name, authorized, keyboard, clipboard, audio, file, tx.clone());
|
cm.add_connection(id, is_file_transfer, port_forward, peer_id, name, authorized, keyboard, clipboard, audio, file, tx.clone());
|
||||||
}
|
}
|
||||||
Data::Close => {
|
Data::Close => {
|
||||||
|
allow_err!(tx_clip_empty.send(conn_id));
|
||||||
|
set_conn_enabled(conn_id, 0, false);
|
||||||
log::info!("cm ipc connection closed from connection request");
|
log::info!("cm ipc connection closed from connection request");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
_ => {
|
_ => {
|
||||||
cm.handle_data(conn_id, data, &tx_file, &mut write_jobs, &mut stream).await;
|
cm.handle_data(conn_id, data, &tx_file, &tx_clip_empty, &mut write_jobs, &mut stream).await;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -491,6 +500,7 @@ async fn start_pa() {
|
|||||||
async fn start_clipboard_file(
|
async fn start_clipboard_file(
|
||||||
cm: ConnectionManager,
|
cm: ConnectionManager,
|
||||||
mut rx: mpsc::UnboundedReceiver<(i32, ipc::ClipbaordFile)>,
|
mut rx: mpsc::UnboundedReceiver<(i32, ipc::ClipbaordFile)>,
|
||||||
|
mut rx_clip_empty: mpsc::UnboundedReceiver<i32>,
|
||||||
) {
|
) {
|
||||||
let mut cliprdr_context = match create_cliprdr_context(true, false) {
|
let mut cliprdr_context = match create_cliprdr_context(true, false) {
|
||||||
Ok(context) => {
|
Ok(context) => {
|
||||||
@ -532,6 +542,16 @@ async fn start_clipboard_file(
|
|||||||
None => {
|
None => {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
server_conn_id = rx_clip_empty.recv() => match server_conn_id {
|
||||||
|
Some(server_conn_id) => {
|
||||||
|
if !empty_clipboard(&mut cliprdr_context, server_conn_id, 0) {
|
||||||
|
// log::error!("failed to empty clipboard");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
None => {
|
||||||
|
break
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user