mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
style: rename config variables to match ones in #11374 for smoothier config transition
This commit is contained in:
parent
b983409980
commit
6b3a36e96e
2 changed files with 53 additions and 30 deletions
|
@ -68,8 +68,19 @@ pub enum Mode {
|
||||||
|
|
||||||
#[derive(Debug, Default, Copy, Clone, PartialEq, Eq, Serialize, serde::Deserialize)]
|
#[derive(Debug, Default, Copy, Clone, PartialEq, Eq, Serialize, serde::Deserialize)]
|
||||||
#[serde(rename_all = "kebab-case", deny_unknown_fields)]
|
#[serde(rename_all = "kebab-case", deny_unknown_fields)]
|
||||||
pub enum BackupStrategy {
|
pub struct BackupConfig {
|
||||||
|
pub kind: BackupConfigKind,
|
||||||
|
}
|
||||||
|
#[derive(Debug, Default, Copy, Clone, PartialEq, Eq, Serialize, serde::Deserialize)]
|
||||||
|
#[serde(rename_all = "kebab-case", deny_unknown_fields)]
|
||||||
|
pub enum BackupConfigKind {
|
||||||
#[default]
|
#[default]
|
||||||
|
Auto,
|
||||||
|
Copy,
|
||||||
|
None,
|
||||||
|
}
|
||||||
|
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
|
||||||
|
enum BackupKind {
|
||||||
Move,
|
Move,
|
||||||
Copy,
|
Copy,
|
||||||
None,
|
None,
|
||||||
|
@ -961,7 +972,7 @@ impl Document {
|
||||||
let encoding_with_bom_info = (self.encoding, self.has_bom);
|
let encoding_with_bom_info = (self.encoding, self.has_bom);
|
||||||
let last_saved_time = self.last_saved_time;
|
let last_saved_time = self.last_saved_time;
|
||||||
|
|
||||||
let backup_strategy_config = self.config.load().backup_strategy;
|
let backup_config_kind = self.config.load().backup.kind;
|
||||||
// We encode the file according to the `Document`'s encoding.
|
// We encode the file according to the `Document`'s encoding.
|
||||||
let future = async move {
|
let future = async move {
|
||||||
use tokio::fs;
|
use tokio::fs;
|
||||||
|
@ -1005,19 +1016,26 @@ impl Document {
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
let backup_strategy = {
|
let backup_kind = {
|
||||||
// Assume it is a hardlink to prevent data loss if the metadata cant be read (e.g. on certain Windows configurations)
|
match backup_config_kind {
|
||||||
let is_hardlink = helix_stdx::faccess::hardlink_count(&write_path).unwrap_or(2) > 1;
|
BackupConfigKind::Copy => BackupKind::Copy,
|
||||||
|
BackupConfigKind::None => BackupKind::None,
|
||||||
|
BackupConfigKind::Auto => {
|
||||||
|
// Assume it is a hardlink to prevent data loss if the metadata cant be read (e.g. on certain Windows configurations)
|
||||||
|
let is_hardlink =
|
||||||
|
helix_stdx::faccess::hardlink_count(&write_path).unwrap_or(2) > 1;
|
||||||
|
|
||||||
if is_hardlink {
|
if is_hardlink {
|
||||||
BackupStrategy::Copy
|
BackupKind::Copy
|
||||||
} else {
|
} else {
|
||||||
backup_strategy_config
|
BackupKind::Move
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
let backup = match backup_strategy {
|
let backup = match backup_kind {
|
||||||
BackupStrategy::Move | BackupStrategy::Copy if path.exists() => {
|
BackupKind::Copy | BackupKind::Move if path.exists() => {
|
||||||
let path_ = write_path.clone();
|
let path_ = write_path.clone();
|
||||||
// hacks: we use tempfile to handle the complex task of creating
|
// hacks: we use tempfile to handle the complex task of creating
|
||||||
// non clobbered temporary path for us we don't want
|
// non clobbered temporary path for us we don't want
|
||||||
|
@ -1029,14 +1047,14 @@ impl Document {
|
||||||
.prefix(path_.file_name()?)
|
.prefix(path_.file_name()?)
|
||||||
.suffix(".bck")
|
.suffix(".bck")
|
||||||
.make_in(path_.parent()?, |backup| {
|
.make_in(path_.parent()?, |backup| {
|
||||||
match backup_strategy {
|
match backup_kind {
|
||||||
BackupStrategy::Copy => {
|
BackupKind::Copy => {
|
||||||
std::fs::copy(&path_, backup)?;
|
std::fs::copy(&path_, backup)?;
|
||||||
}
|
}
|
||||||
BackupStrategy::Move => {
|
BackupKind::Move => {
|
||||||
std::fs::rename(&path_, backup)?;
|
std::fs::rename(&path_, backup)?;
|
||||||
}
|
}
|
||||||
BackupStrategy::None => unreachable!(),
|
BackupKind::None => unreachable!(),
|
||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
})
|
})
|
||||||
|
@ -1065,31 +1083,36 @@ impl Document {
|
||||||
.and_then(|metadata| metadata.modified())
|
.and_then(|metadata| metadata.modified())
|
||||||
.unwrap_or_else(|_| SystemTime::now());
|
.unwrap_or_else(|_| SystemTime::now());
|
||||||
|
|
||||||
if let Err(err) = write_result {
|
if let Err(write_err) = write_result {
|
||||||
if let Some(backup) = backup {
|
if let Some(backup) = backup {
|
||||||
match backup_strategy {
|
match backup_kind {
|
||||||
BackupStrategy::Copy => {
|
BackupKind::Copy => {
|
||||||
// Restore backup
|
// Restore backup
|
||||||
if let Err(e) = tokio::fs::copy(&backup, &write_path).await {
|
if let Err(restore_err) = tokio::fs::copy(&backup, &write_path).await {
|
||||||
log::error!("Failed to restore backup on write failure: {e}")
|
log::error!(
|
||||||
|
"Failed to restore backup on write failure: {restore_err}"
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
BackupStrategy::Move => {
|
BackupKind::Move => {
|
||||||
// restore backup
|
// restore backup
|
||||||
if let Err(e) = tokio::fs::rename(&backup, &write_path).await {
|
if let Err(restore_err) = tokio::fs::rename(&backup, &write_path).await
|
||||||
log::error!("Failed to restore backup on write failure: {e}");
|
{
|
||||||
|
log::error!(
|
||||||
|
"Failed to restore backup on write failure: {restore_err}"
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
BackupStrategy::None => unreachable!(),
|
BackupKind::None => unreachable!(),
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
log::error!(
|
log::error!(
|
||||||
"Failed to restore backup on write failure (backup doesn't exist) for write error: {err}"
|
"Failed to restore backup on write failure (backup doesn't exist) for write error: {write_err}"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
} else if let Some(backup) = backup {
|
} else if let Some(backup) = backup {
|
||||||
// backup exists & successfully saved. delete backup
|
// backup exists & successfully saved. delete backup
|
||||||
if backup_strategy == BackupStrategy::Move {
|
if backup_kind == BackupKind::Move {
|
||||||
// the file is newly created one, therefore the metadata must be copied
|
// the file is newly created one, therefore the metadata must be copied
|
||||||
let backup = backup.clone();
|
let backup = backup.clone();
|
||||||
let _ = tokio::task::spawn_blocking(move || {
|
let _ = tokio::task::spawn_blocking(move || {
|
||||||
|
|
|
@ -2,8 +2,8 @@ use crate::{
|
||||||
annotations::diagnostics::{DiagnosticFilter, InlineDiagnosticsConfig},
|
annotations::diagnostics::{DiagnosticFilter, InlineDiagnosticsConfig},
|
||||||
clipboard::ClipboardProvider,
|
clipboard::ClipboardProvider,
|
||||||
document::{
|
document::{
|
||||||
BackupStrategy, DocumentOpenError, DocumentSavedEventFuture, DocumentSavedEventResult,
|
BackupConfig, DocumentOpenError, DocumentSavedEventFuture, DocumentSavedEventResult, Mode,
|
||||||
Mode, SavePoint,
|
SavePoint,
|
||||||
},
|
},
|
||||||
events::{DocumentDidClose, DocumentDidOpen, DocumentFocusLost},
|
events::{DocumentDidClose, DocumentDidOpen, DocumentFocusLost},
|
||||||
graphics::{CursorKind, Rect},
|
graphics::{CursorKind, Rect},
|
||||||
|
@ -371,7 +371,7 @@ pub struct Config {
|
||||||
/// Whether to read settings from [EditorConfig](https://editorconfig.org) files. Defaults to
|
/// Whether to read settings from [EditorConfig](https://editorconfig.org) files. Defaults to
|
||||||
/// `true`.
|
/// `true`.
|
||||||
pub editor_config: bool,
|
pub editor_config: bool,
|
||||||
pub backup_strategy: BackupStrategy,
|
pub backup: BackupConfig,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, PartialEq, Deserialize, Serialize, Eq, PartialOrd, Ord)]
|
#[derive(Debug, Clone, PartialEq, Deserialize, Serialize, Eq, PartialOrd, Ord)]
|
||||||
|
@ -1019,7 +1019,7 @@ impl Default for Config {
|
||||||
end_of_line_diagnostics: DiagnosticFilter::Disable,
|
end_of_line_diagnostics: DiagnosticFilter::Disable,
|
||||||
clipboard_provider: ClipboardProvider::default(),
|
clipboard_provider: ClipboardProvider::default(),
|
||||||
editor_config: true,
|
editor_config: true,
|
||||||
backup_strategy: BackupStrategy::default(),
|
backup: BackupConfig::default(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue