mirror of
https://github.com/weyne85/rustdesk.git
synced 2025-10-29 17:00:05 +00:00
@@ -863,12 +863,14 @@ impl VideoHandler {
|
||||
self.record = false;
|
||||
if start {
|
||||
self.recorder = Recorder::new(RecorderContext {
|
||||
server: false,
|
||||
id,
|
||||
default_dir: crate::ui_interface::default_video_save_directory(),
|
||||
filename: "".to_owned(),
|
||||
width: w as _,
|
||||
height: h as _,
|
||||
codec_id: scrap::record::RecordCodecID::VP9,
|
||||
tx: None,
|
||||
})
|
||||
.map_or(Default::default(), |r| Arc::new(Mutex::new(Some(r))));
|
||||
} else {
|
||||
|
||||
@@ -216,8 +216,6 @@ pub fn core_main() -> Option<Vec<String>> {
|
||||
if args.len() == 2 {
|
||||
if crate::platform::is_root() {
|
||||
crate::ipc::set_permanent_password(args[1].to_owned()).unwrap();
|
||||
} else {
|
||||
log::info!("Permission denied!");
|
||||
}
|
||||
}
|
||||
return None;
|
||||
|
||||
@@ -4,6 +4,7 @@ use serde_json::{Map, Value};
|
||||
|
||||
#[cfg(feature = "flutter")]
|
||||
pub mod account;
|
||||
pub mod record_upload;
|
||||
|
||||
#[derive(Debug)]
|
||||
pub enum HbbHttpResponse<T> {
|
||||
|
||||
204
src/hbbs_http/record_upload.rs
Normal file
204
src/hbbs_http/record_upload.rs
Normal file
@@ -0,0 +1,204 @@
|
||||
use bytes::Bytes;
|
||||
use hbb_common::{bail, config::Config, lazy_static, log, ResultType};
|
||||
use reqwest::blocking::{Body, Client};
|
||||
use scrap::record::RecordState;
|
||||
use serde::Serialize;
|
||||
use serde_json::Map;
|
||||
use std::{
|
||||
fs::File,
|
||||
io::{prelude::*, SeekFrom},
|
||||
sync::{mpsc::Receiver, Arc, Mutex},
|
||||
time::{Duration, Instant},
|
||||
};
|
||||
|
||||
const MAX_HEADER_LEN: usize = 1024;
|
||||
const SHOULD_SEND_TIME: Duration = Duration::from_secs(1);
|
||||
const SHOULD_SEND_SIZE: u64 = 1024 * 1024;
|
||||
|
||||
lazy_static::lazy_static! {
|
||||
static ref ENABLE: Arc<Mutex<bool>> = Default::default();
|
||||
}
|
||||
|
||||
pub fn is_enable() -> bool {
|
||||
ENABLE.lock().unwrap().clone()
|
||||
}
|
||||
|
||||
pub fn run(rx: Receiver<RecordState>) {
|
||||
let mut uploader = RecordUploader {
|
||||
client: Client::new(),
|
||||
api_server: crate::get_api_server(
|
||||
Config::get_option("api-server"),
|
||||
Config::get_option("custom-rendezvous-server"),
|
||||
),
|
||||
filepath: Default::default(),
|
||||
filename: Default::default(),
|
||||
upload_size: Default::default(),
|
||||
running: Default::default(),
|
||||
last_send: Instant::now(),
|
||||
};
|
||||
std::thread::spawn(move || loop {
|
||||
if let Err(e) = match rx.recv() {
|
||||
Ok(state) => match state {
|
||||
RecordState::NewFile(filepath) => uploader.handle_new_file(filepath),
|
||||
RecordState::NewFrame => {
|
||||
if uploader.running {
|
||||
uploader.handle_frame(false)
|
||||
} else {
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
RecordState::WriteTail => {
|
||||
if uploader.running {
|
||||
uploader.handle_tail()
|
||||
} else {
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
RecordState::RemoveFile => {
|
||||
if uploader.running {
|
||||
uploader.handle_remove()
|
||||
} else {
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
},
|
||||
Err(e) => {
|
||||
log::trace!("upload thread stop:{}", e);
|
||||
break;
|
||||
}
|
||||
} {
|
||||
uploader.running = false;
|
||||
log::error!("upload stop:{}", e);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
struct RecordUploader {
|
||||
client: Client,
|
||||
api_server: String,
|
||||
filepath: String,
|
||||
filename: String,
|
||||
upload_size: u64,
|
||||
running: bool,
|
||||
last_send: Instant,
|
||||
}
|
||||
impl RecordUploader {
|
||||
fn send<Q, B>(&self, query: &Q, body: B) -> ResultType<()>
|
||||
where
|
||||
Q: Serialize + ?Sized,
|
||||
B: Into<Body>,
|
||||
{
|
||||
match self
|
||||
.client
|
||||
.post(format!("{}/api/record", self.api_server))
|
||||
.query(query)
|
||||
.body(body)
|
||||
.send()
|
||||
{
|
||||
Ok(resp) => {
|
||||
if let Ok(m) = resp.json::<Map<String, serde_json::Value>>() {
|
||||
if let Some(e) = m.get("error") {
|
||||
bail!(e.to_string());
|
||||
}
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
Err(e) => bail!(e.to_string()),
|
||||
}
|
||||
}
|
||||
|
||||
fn handle_new_file(&mut self, filepath: String) -> ResultType<()> {
|
||||
match std::path::PathBuf::from(&filepath).file_name() {
|
||||
Some(filename) => match filename.to_owned().into_string() {
|
||||
Ok(filename) => {
|
||||
self.filename = filename.clone();
|
||||
self.filepath = filepath.clone();
|
||||
self.upload_size = 0;
|
||||
self.running = true;
|
||||
self.last_send = Instant::now();
|
||||
self.send(&[("type", "new"), ("file", &filename)], Bytes::new())?;
|
||||
Ok(())
|
||||
}
|
||||
Err(_) => bail!("can't parse filename:{:?}", filename),
|
||||
},
|
||||
None => bail!("can't parse filepath:{}", filepath),
|
||||
}
|
||||
}
|
||||
|
||||
fn handle_frame(&mut self, flush: bool) -> ResultType<()> {
|
||||
if !flush && self.last_send.elapsed() < SHOULD_SEND_TIME {
|
||||
return Ok(());
|
||||
}
|
||||
match File::open(&self.filepath) {
|
||||
Ok(mut file) => match file.metadata() {
|
||||
Ok(m) => {
|
||||
let len = m.len();
|
||||
if len <= self.upload_size {
|
||||
return Ok(());
|
||||
}
|
||||
if !flush && len - self.upload_size < SHOULD_SEND_SIZE {
|
||||
return Ok(());
|
||||
}
|
||||
let mut buf = Vec::new();
|
||||
match file.seek(SeekFrom::Start(self.upload_size)) {
|
||||
Ok(_) => match file.read_to_end(&mut buf) {
|
||||
Ok(length) => {
|
||||
self.send(
|
||||
&[
|
||||
("type", "part"),
|
||||
("file", &self.filename),
|
||||
("offset", &self.upload_size.to_string()),
|
||||
("length", &length.to_string()),
|
||||
],
|
||||
buf,
|
||||
)?;
|
||||
self.upload_size = len;
|
||||
self.last_send = Instant::now();
|
||||
Ok(())
|
||||
}
|
||||
Err(e) => bail!(e.to_string()),
|
||||
},
|
||||
Err(e) => bail!(e.to_string()),
|
||||
}
|
||||
}
|
||||
Err(e) => bail!(e.to_string()),
|
||||
},
|
||||
Err(e) => bail!(e.to_string()),
|
||||
}
|
||||
}
|
||||
|
||||
fn handle_tail(&mut self) -> ResultType<()> {
|
||||
self.handle_frame(true)?;
|
||||
match File::open(&self.filepath) {
|
||||
Ok(mut file) => {
|
||||
let mut buf = vec![0u8; MAX_HEADER_LEN];
|
||||
match file.read(&mut buf) {
|
||||
Ok(length) => {
|
||||
buf.truncate(length);
|
||||
self.send(
|
||||
&[
|
||||
("type", "tail"),
|
||||
("file", &self.filename),
|
||||
("offset", "0"),
|
||||
("length", &length.to_string()),
|
||||
],
|
||||
buf,
|
||||
)?;
|
||||
log::info!("upload success, file:{}", self.filename);
|
||||
Ok(())
|
||||
}
|
||||
Err(e) => bail!(e.to_string()),
|
||||
}
|
||||
}
|
||||
Err(e) => bail!(e.to_string()),
|
||||
}
|
||||
}
|
||||
|
||||
fn handle_remove(&mut self) -> ResultType<()> {
|
||||
self.send(
|
||||
&[("type", "remove"), ("file", &self.filename)],
|
||||
Bytes::new(),
|
||||
)?;
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
@@ -44,7 +44,7 @@ const ADDR_CAPTURE_FRAME_COUNTER: usize = ADDR_CAPTURE_WOULDBLOCK + size_of::<i3
|
||||
const ADDR_CAPTURE_FRAME: usize =
|
||||
(ADDR_CAPTURE_FRAME_COUNTER + SIZE_COUNTER + FRAME_ALIGN - 1) / FRAME_ALIGN * FRAME_ALIGN;
|
||||
|
||||
const IPC_PROFIX: &str = "_portable_service";
|
||||
const IPC_SUFFIX: &str = "_portable_service";
|
||||
pub const SHMEM_NAME: &str = "_portable_service";
|
||||
const MAX_NACK: usize = 3;
|
||||
const MAX_DXGI_FAIL_TIME: usize = 5;
|
||||
@@ -376,7 +376,7 @@ pub mod server {
|
||||
async fn run_ipc_client() {
|
||||
use DataPortableService::*;
|
||||
|
||||
let postfix = IPC_PROFIX;
|
||||
let postfix = IPC_SUFFIX;
|
||||
|
||||
match ipc::connect(1000, postfix).await {
|
||||
Ok(mut stream) => {
|
||||
@@ -622,7 +622,7 @@ pub mod client {
|
||||
async fn start_ipc_server_async(rx: mpsc::UnboundedReceiver<Data>) {
|
||||
use DataPortableService::*;
|
||||
let rx = Arc::new(tokio::sync::Mutex::new(rx));
|
||||
let postfix = IPC_PROFIX;
|
||||
let postfix = IPC_SUFFIX;
|
||||
#[cfg(feature = "flutter")]
|
||||
let quick_support = {
|
||||
let args: Vec<_> = std::env::args().collect();
|
||||
|
||||
@@ -481,22 +481,7 @@ fn run(sp: GenericService) -> ResultType<()> {
|
||||
#[cfg(windows)]
|
||||
log::info!("gdi: {}", c.is_gdi());
|
||||
let codec_name = Encoder::current_hw_encoder_name();
|
||||
#[cfg(not(target_os = "ios"))]
|
||||
let recorder = if !Config::get_option("allow-auto-record-incoming").is_empty() {
|
||||
Recorder::new(RecorderContext {
|
||||
id: "local".to_owned(),
|
||||
default_dir: crate::ui_interface::default_video_save_directory(),
|
||||
filename: "".to_owned(),
|
||||
width: c.width,
|
||||
height: c.height,
|
||||
codec_id: scrap::record::RecordCodecID::VP9,
|
||||
})
|
||||
.map_or(Default::default(), |r| Arc::new(Mutex::new(Some(r))))
|
||||
} else {
|
||||
Default::default()
|
||||
};
|
||||
#[cfg(target_os = "ios")]
|
||||
let recorder: Arc<Mutex<Option<Recorder>>> = Default::default();
|
||||
let recorder = get_recorder(c.width, c.height, &codec_name);
|
||||
#[cfg(windows)]
|
||||
start_uac_elevation_check();
|
||||
|
||||
@@ -673,6 +658,53 @@ fn run(sp: GenericService) -> ResultType<()> {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn get_recorder(
|
||||
width: usize,
|
||||
height: usize,
|
||||
codec_name: &Option<String>,
|
||||
) -> Arc<Mutex<Option<Recorder>>> {
|
||||
#[cfg(not(target_os = "ios"))]
|
||||
let recorder = if !Config::get_option("allow-auto-record-incoming").is_empty() {
|
||||
use crate::hbbs_http::record_upload;
|
||||
use scrap::record::RecordCodecID::*;
|
||||
|
||||
let tx = if record_upload::is_enable() {
|
||||
let (tx, rx) = std::sync::mpsc::channel();
|
||||
record_upload::run(rx);
|
||||
Some(tx)
|
||||
} else {
|
||||
None
|
||||
};
|
||||
let codec_id = match codec_name {
|
||||
Some(name) => {
|
||||
if name.contains("264") {
|
||||
H264
|
||||
} else {
|
||||
H265
|
||||
}
|
||||
}
|
||||
None => VP9,
|
||||
};
|
||||
Recorder::new(RecorderContext {
|
||||
server: true,
|
||||
id: Config::get_id(),
|
||||
default_dir: crate::ui_interface::default_video_save_directory(),
|
||||
filename: "".to_owned(),
|
||||
width,
|
||||
height,
|
||||
codec_id,
|
||||
tx,
|
||||
})
|
||||
.map_or(Default::default(), |r| Arc::new(Mutex::new(Some(r))))
|
||||
} else {
|
||||
Default::default()
|
||||
};
|
||||
#[cfg(target_os = "ios")]
|
||||
let recorder: Arc<Mutex<Option<Recorder>>> = Default::default();
|
||||
|
||||
recorder
|
||||
}
|
||||
|
||||
fn check_privacy_mode_changed(sp: &GenericService, privacy_mode_id: i32) -> ResultType<()> {
|
||||
let privacy_mode_id_2 = *PRIVACY_MODE_CONN_ID.lock().unwrap();
|
||||
if privacy_mode_id != privacy_mode_id_2 {
|
||||
|
||||
@@ -685,6 +685,7 @@ pub fn discover() {
|
||||
});
|
||||
}
|
||||
|
||||
#[cfg(feature = "flutter")]
|
||||
pub fn peer_to_map(id: String, p: PeerConfig) -> HashMap<&'static str, String> {
|
||||
HashMap::<&str, String>::from_iter([
|
||||
("id", id),
|
||||
|
||||
Reference in New Issue
Block a user