From c86ad83ae31d44aeab3317e5e05d6d63e428f0e0 Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Tue, 12 Dec 2017 17:16:00 +0100 Subject: Split up Sequoia. - Split up into six crates: buffered-reader, openpgp, sequoia-core, sequoia-ffi, sequoia-net, and sequoia-store. - Adjust imports accordingly. --- src/lib.rs | 127 +++---------------------------------------------------------- 1 file changed, 6 insertions(+), 121 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index dd00ddcc..3d15a736 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,123 +1,8 @@ -// For #[derive(FromPrimitive)] -extern crate num; +//! Modular Sequoia is modular. -#[macro_use] -extern crate num_derive; +pub extern crate sequoia_core; +pub extern crate sequoia_net; +pub extern crate sequoia_store; -#[macro_use] -extern crate nom; - -extern crate flate2; -extern crate bzip2; - -#[macro_use] -extern crate percent_encoding; - -pub mod openpgp; -pub mod store; -pub mod net; -pub mod ffi; - -mod buffered_reader; - -use std::env; -use std::fs; -use std::io; -use std::path::{Path, PathBuf}; - -/// A `&Context` is required for many operations. -/// -/// # Example -/// -/// ``` -/// # use sequoia::Context; -/// let c = Context::new("org.example.webmail").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 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. - pub fn new(domain: &str) -> io::Result { - Self::configure(domain).build() - } - - /// Creates a Context that can be configured. - /// - /// `domain` should uniquely identify your application, it is - /// strongly suggested to use a reversed fully qualified domain - /// name that is associated with your application. - /// - /// The configuration is seeded like in `Context::new`, but can be - /// modified. A configuration has to be finalized using - /// `.build()` in order to turn it into a Context. - pub fn configure(domain: &str) -> Config { - Config(Context { - domain: String::from(domain), - home: env::home_dir().unwrap_or(env::temp_dir()) - .join(".sequoia"), - lib: prefix().join("lib").join("sequoia"), - }) - } - - /// Returns the domain of the context. - pub fn domain(&self) -> &str { - &self.domain - } - - /// Returns the directory containing shared state. - pub fn home(&self) -> &Path { - &self.home - } - - /// Returns the directory containing backend servers. - pub fn lib(&self) -> &Path { - &self.lib - } -} - -/// Represents a `Context` configuration. -pub struct Config(Context); - -impl Config { - /// Finalizes the configuration and return a `Context`. - pub fn build(self) -> io::Result { - let c = self.0; - fs::create_dir_all(c.home())?; - Ok(c) - } - - /// Sets the directory containing shared state. - pub fn home>(mut self, home: P) -> Self { - self.set_home(home); - self - } - - /// Sets the directory containing shared state. - pub fn set_home>(&mut self, home: P) { - self.0.home = PathBuf::new().join(home); - } - - /// Set the directory containing backend servers. - pub fn lib>(mut self, lib: P) -> Self { - self.set_lib(lib); - self - } - - /// Sets the directory containing shared state. - pub fn set_lib>(&mut self, lib: P) { - self.0.lib = PathBuf::new().join(lib); - } -} +extern crate buffered_reader; +extern crate openpgp; -- cgit v1.2.3