mirror of
https://github.com/veeso/termscp.git
synced 2026-07-20 06:44:17 +02:00
Comprehensive design for incremental refactoring of the 13k-line FileTransferActivity god-struct using a unified Pane abstraction. Detailed step-by-step plan covering 6 phases: split monoliths, error handling, Pane struct, action dedup, session split, view reorg. Extract 26 popup components from the monolithic 1,868-line popups.rs into 20 individual files under popups/. Each file contains one or two related components with their own imports. The popups.rs module file now contains only module declarations and re-exports. Replace 8 panic!() calls with error!() logging and early returns/fallthrough. These panics documented invariants (e.g. "this tab can't do X") but would crash the app if somehow triggered. Error logging is safer and more resilient. Replace raw FileExplorer fields in Browser with Pane structs that bundle the explorer and connected state. Move host_bridge_connected and remote_connected from FileTransferActivity into the panes. Add navigation API (fs_pane, opposite_pane, is_find_tab) for future unification tasks. Rename private get_selected_file to get_selected_file_by_id and add three new unified methods (get_selected_entries, get_selected_file, is_selected_one) that dispatch based on self.browser.tab(). Old per-tab methods are kept for now until their callers are migrated in subsequent tasks. Collapse _local_/_remote_ action method pairs (mkdir, delete, symlink, chmod, rename, copy) into unified methods that branch internally on is_local_tab(). This halves the number of action methods and simplifies the update.rs dispatch logic. Also unifies ShowFileInfoPopup and ShowChmodPopup dispatching to use get_selected_entries(). Move `host_bridge` and `client` filesystem fields from FileTransferActivity into the Pane struct, enabling tab-agnostic dispatch via `fs_pane()`/ `fs_pane_mut()`. This eliminates most `is_local_tab()` branching across 15+ action files. Key changes: - Add `fs: Box<dyn HostBridge>` to Pane, remove from FileTransferActivity - Replace per-side method pairs with unified pane-dispatched methods - Unify navigation (changedir, reload, scan, file_exists, has_file_changed) - Replace 147-line popup if/else chain with data-driven priority table - Replace assert!/panic!/unreachable! with proper error handling - Fix typo "filetransfer_activiy" across ~29 files - Add unit tests for Pane Net result: -473 lines, single code path for most file operations.
204 lines
7.7 KiB
Rust
204 lines
7.7 KiB
Rust
//! ## FileTransferActivity
|
|
//!
|
|
//! `filetransfer_activity` is the module which implements the Filetransfer activity, which is the main activity afterall
|
|
|
|
// locals
|
|
use std::path::PathBuf;
|
|
|
|
use super::{File, FileTransferActivity, LogLevel, SelectedFile, TransferOpts, TransferPayload};
|
|
|
|
impl FileTransferActivity {
|
|
pub(crate) fn action_find_changedir(&mut self) {
|
|
// Match entry
|
|
if let Some(entry) = self.get_found_selected_file() {
|
|
debug!("Changedir to: {}", entry.name());
|
|
// Get path: if a directory, use directory path; if it is a File, get parent path
|
|
let path = if entry.is_dir() {
|
|
entry.path().to_path_buf()
|
|
} else {
|
|
match entry.path().parent() {
|
|
None => PathBuf::from("."),
|
|
Some(p) => p.to_path_buf(),
|
|
}
|
|
};
|
|
// Change directory on the active tab's pane
|
|
self.pane_changedir(path.as_path(), true);
|
|
}
|
|
}
|
|
|
|
pub(crate) fn action_find_transfer(&mut self, opts: TransferOpts) {
|
|
let wrkdir: PathBuf = self.browser.opposite_pane().explorer.wrkdir.clone();
|
|
match self.get_found_selected_entries() {
|
|
SelectedFile::One(entry) => {
|
|
if self.is_local_tab() {
|
|
let file_to_check = Self::file_to_check(&entry, opts.save_as.as_ref());
|
|
if self.config().get_prompt_on_file_replace()
|
|
&& self.file_exists(file_to_check.as_path(), false)
|
|
&& !self.should_replace_file(
|
|
opts.save_as.clone().unwrap_or_else(|| entry.name()),
|
|
)
|
|
{
|
|
// Do not replace
|
|
return;
|
|
}
|
|
if let Err(err) = self.filetransfer_send(
|
|
TransferPayload::Any(entry),
|
|
wrkdir.as_path(),
|
|
opts.save_as,
|
|
) {
|
|
self.log_and_alert(
|
|
LogLevel::Error,
|
|
format!("Could not upload file: {err}"),
|
|
);
|
|
}
|
|
} else {
|
|
let file_to_check = Self::file_to_check(&entry, opts.save_as.as_ref());
|
|
if self.config().get_prompt_on_file_replace()
|
|
&& self.file_exists(file_to_check.as_path(), true)
|
|
&& !self.should_replace_file(
|
|
opts.save_as.clone().unwrap_or_else(|| entry.name()),
|
|
)
|
|
{
|
|
// Do not replace
|
|
return;
|
|
}
|
|
if let Err(err) = self.filetransfer_recv(
|
|
TransferPayload::Any(entry),
|
|
wrkdir.as_path(),
|
|
opts.save_as,
|
|
) {
|
|
self.log_and_alert(
|
|
LogLevel::Error,
|
|
format!("Could not download file: {err}"),
|
|
);
|
|
}
|
|
}
|
|
}
|
|
SelectedFile::Many(entries) => {
|
|
// In case of selection: save multiple files in wrkdir/input
|
|
let mut dest_path: PathBuf = wrkdir;
|
|
if let Some(save_as) = opts.save_as {
|
|
dest_path.push(save_as);
|
|
}
|
|
// Iter files
|
|
if self.is_local_tab() {
|
|
let super::save::TransferFilesWithOverwritesResult::FilesToTransfer(entries) =
|
|
self.get_files_to_transfer_with_overwrites(
|
|
entries,
|
|
super::save::CheckFileExists::Remote,
|
|
)
|
|
else {
|
|
debug!("User cancelled file transfer due to overwrites");
|
|
return;
|
|
};
|
|
if let Err(err) = self.filetransfer_send(
|
|
TransferPayload::TransferQueue(entries),
|
|
dest_path.as_path(),
|
|
None,
|
|
) {
|
|
self.log_and_alert(
|
|
LogLevel::Error,
|
|
format!("Could not upload file: {err}"),
|
|
);
|
|
}
|
|
} else {
|
|
let super::save::TransferFilesWithOverwritesResult::FilesToTransfer(entries) =
|
|
self.get_files_to_transfer_with_overwrites(
|
|
entries,
|
|
super::save::CheckFileExists::HostBridge,
|
|
)
|
|
else {
|
|
debug!("User cancelled file transfer due to overwrites");
|
|
return;
|
|
};
|
|
if let Err(err) = self.filetransfer_recv(
|
|
TransferPayload::TransferQueue(entries),
|
|
dest_path.as_path(),
|
|
None,
|
|
) {
|
|
self.log_and_alert(
|
|
LogLevel::Error,
|
|
format!("Could not download file: {err}"),
|
|
);
|
|
}
|
|
|
|
// clear selection
|
|
if let Some(f) = self.found_mut() {
|
|
f.clear_queue();
|
|
self.update_find_list();
|
|
}
|
|
}
|
|
}
|
|
SelectedFile::None => {}
|
|
}
|
|
}
|
|
|
|
pub(crate) fn action_find_delete(&mut self) {
|
|
match self.get_found_selected_entries() {
|
|
SelectedFile::One(entry) => {
|
|
self.remove_file(&entry);
|
|
}
|
|
SelectedFile::Many(entries) => {
|
|
for (entry, _) in entries.iter() {
|
|
self.remove_file(entry);
|
|
}
|
|
|
|
// clear selection
|
|
if let Some(f) = self.found_mut() {
|
|
f.clear_queue();
|
|
self.update_find_list();
|
|
}
|
|
}
|
|
SelectedFile::None => {}
|
|
}
|
|
}
|
|
|
|
pub(crate) fn action_find_open(&mut self) {
|
|
match self.get_found_selected_entries() {
|
|
SelectedFile::One(entry) => {
|
|
// Open file
|
|
self.open_found_file(&entry, None);
|
|
}
|
|
SelectedFile::Many(entries) => {
|
|
// Iter files
|
|
for (entry, _) in entries.iter() {
|
|
// Open file
|
|
self.open_found_file(entry, None);
|
|
}
|
|
// clear selection
|
|
if let Some(f) = self.found_mut() {
|
|
f.clear_queue();
|
|
self.update_find_list();
|
|
}
|
|
}
|
|
SelectedFile::None => {}
|
|
}
|
|
}
|
|
|
|
pub(crate) fn action_find_open_with(&mut self, with: &str) {
|
|
match self.get_found_selected_entries() {
|
|
SelectedFile::One(entry) => {
|
|
// Open file
|
|
self.open_found_file(&entry, Some(with));
|
|
}
|
|
SelectedFile::Many(entries) => {
|
|
// Iter files
|
|
for (entry, _) in entries.iter() {
|
|
// Open file
|
|
self.open_found_file(entry, Some(with));
|
|
}
|
|
// clear selection
|
|
if let Some(f) = self.found_mut() {
|
|
f.clear_queue();
|
|
self.update_find_list();
|
|
}
|
|
}
|
|
SelectedFile::None => {}
|
|
}
|
|
}
|
|
|
|
fn open_found_file(&mut self, entry: &File, with: Option<&str>) {
|
|
self.open_file(entry, with);
|
|
}
|
|
}
|