mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
Fix :log-open
when --log
is specified (#7573)
This commit is contained in:
parent
507dd50860
commit
1698992de6
2 changed files with 34 additions and 34 deletions
|
@ -11,21 +11,20 @@ static RUNTIME_DIRS: once_cell::sync::Lazy<Vec<PathBuf>> =
|
||||||
|
|
||||||
static CONFIG_FILE: once_cell::sync::OnceCell<PathBuf> = once_cell::sync::OnceCell::new();
|
static CONFIG_FILE: once_cell::sync::OnceCell<PathBuf> = once_cell::sync::OnceCell::new();
|
||||||
|
|
||||||
|
static LOG_FILE: once_cell::sync::OnceCell<PathBuf> = once_cell::sync::OnceCell::new();
|
||||||
|
|
||||||
pub fn initialize_config_file(specified_file: Option<PathBuf>) {
|
pub fn initialize_config_file(specified_file: Option<PathBuf>) {
|
||||||
let config_file = specified_file.unwrap_or_else(|| {
|
let config_file = specified_file.unwrap_or_else(default_config_file);
|
||||||
let config_dir = config_dir();
|
ensure_parent_dir(&config_file);
|
||||||
|
|
||||||
if !config_dir.exists() {
|
|
||||||
std::fs::create_dir_all(&config_dir).ok();
|
|
||||||
}
|
|
||||||
|
|
||||||
config_dir.join("config.toml")
|
|
||||||
});
|
|
||||||
|
|
||||||
// We should only initialize this value once.
|
|
||||||
CONFIG_FILE.set(config_file).ok();
|
CONFIG_FILE.set(config_file).ok();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn initialize_log_file(specified_file: Option<PathBuf>) {
|
||||||
|
let log_file = specified_file.unwrap_or_else(default_log_file);
|
||||||
|
ensure_parent_dir(&log_file);
|
||||||
|
LOG_FILE.set(log_file).ok();
|
||||||
|
}
|
||||||
|
|
||||||
/// A list of runtime directories from highest to lowest priority
|
/// A list of runtime directories from highest to lowest priority
|
||||||
///
|
///
|
||||||
/// The priority is:
|
/// The priority is:
|
||||||
|
@ -122,10 +121,11 @@ pub fn cache_dir() -> PathBuf {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn config_file() -> PathBuf {
|
pub fn config_file() -> PathBuf {
|
||||||
CONFIG_FILE
|
CONFIG_FILE.get().map(|path| path.to_path_buf()).unwrap()
|
||||||
.get()
|
}
|
||||||
.map(|path| path.to_path_buf())
|
|
||||||
.unwrap_or_else(|| config_dir().join("config.toml"))
|
pub fn log_file() -> PathBuf {
|
||||||
|
LOG_FILE.get().map(|path| path.to_path_buf()).unwrap()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn workspace_config_file() -> PathBuf {
|
pub fn workspace_config_file() -> PathBuf {
|
||||||
|
@ -136,7 +136,7 @@ pub fn lang_config_file() -> PathBuf {
|
||||||
config_dir().join("languages.toml")
|
config_dir().join("languages.toml")
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn log_file() -> PathBuf {
|
pub fn default_log_file() -> PathBuf {
|
||||||
cache_dir().join("helix.log")
|
cache_dir().join("helix.log")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -227,6 +227,18 @@ pub fn find_workspace() -> (PathBuf, bool) {
|
||||||
(current_dir, true)
|
(current_dir, true)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn default_config_file() -> PathBuf {
|
||||||
|
config_dir().join("config.toml")
|
||||||
|
}
|
||||||
|
|
||||||
|
fn ensure_parent_dir(path: &Path) {
|
||||||
|
if let Some(parent) = path.parent() {
|
||||||
|
if !parent.exists() {
|
||||||
|
std::fs::create_dir_all(parent).ok();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod merge_toml_tests {
|
mod merge_toml_tests {
|
||||||
use std::str;
|
use std::str;
|
||||||
|
|
|
@ -4,9 +4,8 @@ use helix_loader::VERSION_AND_GIT_HASH;
|
||||||
use helix_term::application::Application;
|
use helix_term::application::Application;
|
||||||
use helix_term::args::Args;
|
use helix_term::args::Args;
|
||||||
use helix_term::config::{Config, ConfigLoadError};
|
use helix_term::config::{Config, ConfigLoadError};
|
||||||
use std::path::PathBuf;
|
|
||||||
|
|
||||||
fn setup_logging(logpath: PathBuf, verbosity: u64) -> Result<()> {
|
fn setup_logging(verbosity: u64) -> Result<()> {
|
||||||
let mut base_config = fern::Dispatch::new();
|
let mut base_config = fern::Dispatch::new();
|
||||||
|
|
||||||
base_config = match verbosity {
|
base_config = match verbosity {
|
||||||
|
@ -27,7 +26,7 @@ fn setup_logging(logpath: PathBuf, verbosity: u64) -> Result<()> {
|
||||||
message
|
message
|
||||||
))
|
))
|
||||||
})
|
})
|
||||||
.chain(fern::log_file(logpath)?);
|
.chain(fern::log_file(helix_loader::log_file())?);
|
||||||
|
|
||||||
base_config.chain(file_config).apply()?;
|
base_config.chain(file_config).apply()?;
|
||||||
|
|
||||||
|
@ -41,12 +40,6 @@ fn main() -> Result<()> {
|
||||||
|
|
||||||
#[tokio::main]
|
#[tokio::main]
|
||||||
async fn main_impl() -> Result<i32> {
|
async fn main_impl() -> Result<i32> {
|
||||||
let logpath = helix_loader::log_file();
|
|
||||||
let parent = logpath.parent().unwrap();
|
|
||||||
if !parent.exists() {
|
|
||||||
std::fs::create_dir_all(parent).ok();
|
|
||||||
}
|
|
||||||
|
|
||||||
let help = format!(
|
let help = format!(
|
||||||
"\
|
"\
|
||||||
{} {}
|
{} {}
|
||||||
|
@ -78,7 +71,7 @@ FLAGS:
|
||||||
VERSION_AND_GIT_HASH,
|
VERSION_AND_GIT_HASH,
|
||||||
env!("CARGO_PKG_AUTHORS"),
|
env!("CARGO_PKG_AUTHORS"),
|
||||||
env!("CARGO_PKG_DESCRIPTION"),
|
env!("CARGO_PKG_DESCRIPTION"),
|
||||||
logpath.display(),
|
helix_loader::default_log_file().display(),
|
||||||
);
|
);
|
||||||
|
|
||||||
let args = Args::parse_args().context("could not parse arguments")?;
|
let args = Args::parse_args().context("could not parse arguments")?;
|
||||||
|
@ -116,15 +109,10 @@ FLAGS:
|
||||||
return Ok(0);
|
return Ok(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
let logpath = args.log_file.as_ref().cloned().unwrap_or(logpath);
|
|
||||||
setup_logging(logpath, args.verbosity).context("failed to initialize logging")?;
|
|
||||||
|
|
||||||
let config_dir = helix_loader::config_dir();
|
|
||||||
if !config_dir.exists() {
|
|
||||||
std::fs::create_dir_all(&config_dir).ok();
|
|
||||||
}
|
|
||||||
|
|
||||||
helix_loader::initialize_config_file(args.config_file.clone());
|
helix_loader::initialize_config_file(args.config_file.clone());
|
||||||
|
helix_loader::initialize_log_file(args.log_file.clone());
|
||||||
|
|
||||||
|
setup_logging(args.verbosity).context("failed to initialize logging")?;
|
||||||
|
|
||||||
let config = match Config::load_default() {
|
let config = match Config::load_default() {
|
||||||
Ok(config) => config,
|
Ok(config) => config,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue