summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers+gitlab@digital-scurf.org>2020-09-12 16:16:32 +0000
committerDaniel Silverstone <dsilvers+gitlab@digital-scurf.org>2020-09-12 16:16:32 +0000
commit9243b189a1a12bc0ed819d59cd3cbe9ce5d37c2a (patch)
tree1f3a846448a2fcb943e805c58ac371ee0ea59bb7 /src/main.rs
parentbddb592c4cb89e76796b17dd5bed823eba7e2b0e (diff)
parentd4e8b0409d6bc99522a6a995349e9779b9c9cd62 (diff)
downloadjt2-9243b189a1a12bc0ed819d59cd3cbe9ce5d37c2a.tar.gz
Merge branch 'init' into 'master'
feat: create and initialise a new journal Closes #1 See merge request larswirzenius/jt!2
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
new file mode 100644
index 0000000..4e0a887
--- /dev/null
+++ b/src/main.rs
@@ -0,0 +1,54 @@
+use anyhow::Result;
+use std::fs;
+use std::path::{Path, PathBuf};
+use structopt::StructOpt;
+use thiserror::Error;
+
+#[derive(Debug, StructOpt)]
+#[structopt(about = "maintain a journal")]
+enum JT {
+ Init {
+ #[structopt(help = "Directory where journal should be stored")]
+ dirname: PathBuf,
+ #[structopt(help = "Short name for journal")]
+ journalname: String,
+ #[structopt(help = "Short description of journal, its title")]
+ description: String,
+ },
+ IsJournal {
+ #[structopt(help = "Directory that may or may not be a journal")]
+ dirname: PathBuf,
+ },
+}
+
+#[derive(Debug, Error)]
+enum JournalError {
+ #[error("directory {0} is not a journal")]
+ NotAJournal(String),
+}
+
+fn main() -> Result<()> {
+ let opt = JT::from_args();
+ match opt {
+ JT::Init {
+ dirname,
+ journalname,
+ description,
+ } => init(&dirname, &journalname, &description)?,
+ JT::IsJournal { dirname } => is_journal(&dirname)?,
+ }
+ Ok(())
+}
+
+fn init(dirname: &Path, _journalname: &str, _description: &str) -> anyhow::Result<()> {
+ std::fs::create_dir(dirname)?;
+ Ok(())
+}
+
+fn is_journal(dirname: &Path) -> anyhow::Result<()> {
+ let meta = fs::symlink_metadata(dirname)?;
+ if !meta.is_dir() {
+ return Err(JournalError::NotAJournal(dirname.display().to_string()).into());
+ }
+ Ok(())
+}