summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: ac8afc4e924cf0202dfd483345c862de0e5365bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
// For #[derive(FromPrimitive)]
extern crate num;

#[macro_use]
extern crate num_derive;

#[macro_use]
extern crate nom;

extern crate flate2;
extern crate bzip2;

pub mod openpgp;
pub mod keys;
pub mod store;
pub mod net;
pub mod ffi;
pub mod armor;

use std::env;
use std::fs;
use std::io;
use std::path::{Path, PathBuf};

/// A `&Context` is required for many operations.
///
/// # Example
///
/// ```
/// let c = Context::new("org.example.webmail").finalize().unwrap();
/// ```
pub struct Context {
    domain: String,
    home: PathBuf,
    lib: PathBuf,
}

fn prefix() -> PathBuf {
    /* XXX: Windows support.  */
    PathBuf::from(option_env!("PREFIX").or(Some("/usr/local")).unwrap())
}

impl Context {
    /// Creates a `Pre(Context)` with reasonable defaults.
    ///
    /// `domain` should uniquely identify your application, it is
    /// strongly suggested to use a reversed fully qualified domain
    /// name that is associated with your application.
    ///
    /// `Pre(Context)`s can be modified, and have to be finalized in
    /// order to turn them into a Context.
    pub fn new(domain: &str) -> Pre {
        Pre(Context {
            domain: String::from(domain),
            home: env::home_dir().unwrap_or(env::temp_dir())
                .join(".sequoia"),
            lib: prefix().join("lib").join("sequoia"),
        })
    }

    /// Return the directory containing backend servers.
    pub fn domain(&self) -> &str {
        &self.domain
    }

    /// Return the directory containing shared state and rendezvous
    /// nodes.
    pub fn home(&self) -> &Path {
        &self.home
    }

    /// Return the directory containing backend servers.
    pub fn lib(&self) -> &Path {
        &self.lib
    }
}

/// A `Pre(Context)` is a context object that can be modified.
pub struct Pre(Context);

impl Pre {
    /// Finalize the configuration and return a `Context`.
    pub fn finalize(self) -> io::Result<Context> {
        let c = self.0;
        fs::create_dir_all(c.home())?;
        Ok(c)
    }

    /// Set the directory containing shared state and rendezvous
    /// nodes.
    pub fn home<P: AsRef<Path>>(mut self, new: P) -> Self {
        self.0.home = PathBuf::new().join(new);
        self
    }

    /// Set the directory containing backend servers.
    pub fn lib<P: AsRef<Path>>(mut self, new: P) -> Self {
        self.0.lib = PathBuf::new().join(new);
        self
    }
}