Skip to content

Commit

Permalink
Default log file to cache
Browse files Browse the repository at this point in the history
  • Loading branch information
pickfire committed Jun 2, 2021
1 parent 0a6672c commit 8d2e010
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 9 deletions.
11 changes: 10 additions & 1 deletion helix-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,22 @@ pub fn runtime_dir() -> std::path::PathBuf {

pub fn config_dir() -> std::path::PathBuf {
// TODO: allow env var override
use etcetera::base_strategy::{choose_base_strategy, BaseStrategy};
let strategy = choose_base_strategy().expect("Unable to find the config directory!");
let mut path = strategy.config_dir();
path.push("helix");
path
}

pub fn cache_dir() -> std::path::PathBuf {
// TODO: allow env var override
let strategy = choose_base_strategy().expect("Unable to find the config directory!");
let mut path = strategy.cache_dir();
path.push("helix");
path
}

use etcetera::base_strategy::{choose_base_strategy, BaseStrategy};

pub use ropey::{Rope, RopeSlice};

pub use tendril::StrTendril as Tendril;
Expand Down
21 changes: 13 additions & 8 deletions helix-term/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,11 @@ mod ui;

use application::Application;

use helix_core::config_dir;

use std::path::PathBuf;

use anyhow::{Context, Result};

fn setup_logging(verbosity: u64) -> Result<()> {
fn setup_logging(logpath: PathBuf, verbosity: u64) -> Result<()> {
let mut base_config = fern::Dispatch::new();

// Let's say we depend on something which whose "info" level messages are too
Expand All @@ -40,7 +38,7 @@ fn setup_logging(verbosity: u64) -> Result<()> {
message
))
})
.chain(fern::log_file(config_dir().join("helix.log"))?);
.chain(fern::log_file(logpath)?);

base_config.chain(file_config).apply()?;

Expand All @@ -52,6 +50,12 @@ pub struct Args {
}

fn main() -> Result<()> {
let cache_dir = helix_core::cache_dir();
if !cache_dir.exists() {
std::fs::create_dir(&cache_dir);
}

let logpath = cache_dir.join("helix.log");
let help = format!(
"\
{} {}
Expand All @@ -67,12 +71,14 @@ ARGS:
FLAGS:
-h, --help Prints help information
-v Increases logging verbosity each use for up to 3 times
(default file: {})
-V, --version Prints version information
",
env!("CARGO_PKG_NAME"),
env!("CARGO_PKG_VERSION"),
env!("CARGO_PKG_AUTHORS"),
env!("CARGO_PKG_DESCRIPTION"),
logpath.display(),
);

let mut pargs = pico_args::Arguments::from_env();
Expand All @@ -89,13 +95,12 @@ FLAGS:
verbosity = 1;
}

let conf_dir = config_dir();

let conf_dir = helix_core::config_dir();
if !conf_dir.exists() {
std::fs::create_dir(&conf_dir);
}

setup_logging(verbosity).context("failed to initialize logging")?;
setup_logging(logpath, verbosity).context("failed to initialize logging")?;

let args = Args {
files: pargs.finish().into_iter().map(|arg| arg.into()).collect(),
Expand All @@ -105,7 +110,7 @@ FLAGS:
use helix_core::syntax::{Loader, LOADER};

// load $HOME/.config/helix/languages.toml, fallback to default config
let config = std::fs::read(config_dir().join("languages.toml"));
let config = std::fs::read(helix_core::config_dir().join("languages.toml"));
let toml = config
.as_deref()
.unwrap_or(include_bytes!("../../languages.toml"));
Expand Down

0 comments on commit 8d2e010

Please sign in to comment.