2018-06-04 10:19:50 +02:00
|
|
|
// Copyright 2015-2018 Parity Technologies (UK) Ltd.
|
2016-07-25 16:09:47 +02:00
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2017-12-26 07:55:39 +01:00
|
|
|
#![warn(missing_docs)]
|
|
|
|
|
|
|
|
//! Dir utilities for platform-specific operations
|
2017-12-24 09:34:43 +01:00
|
|
|
extern crate app_dirs;
|
2018-07-09 16:48:33 +02:00
|
|
|
extern crate dirs;
|
2018-01-10 13:35:18 +01:00
|
|
|
extern crate ethereum_types;
|
2017-12-24 09:34:43 +01:00
|
|
|
extern crate journaldb;
|
|
|
|
|
|
|
|
pub mod helpers;
|
2018-07-09 16:48:33 +02:00
|
|
|
use std::fs;
|
2016-07-25 16:09:47 +02:00
|
|
|
use std::path::{PathBuf, Path};
|
2018-01-10 13:35:18 +01:00
|
|
|
use ethereum_types::{H64, H256};
|
2017-10-17 06:41:05 +02:00
|
|
|
use journaldb::Algorithm;
|
2017-07-10 12:57:40 +02:00
|
|
|
use helpers::{replace_home, replace_home_and_local};
|
2016-12-13 23:38:29 +01:00
|
|
|
use app_dirs::{AppInfo, get_app_root, AppDataType};
|
2017-12-27 15:17:39 +01:00
|
|
|
// re-export platform-specific functions
|
|
|
|
use platform::*;
|
2016-07-25 16:09:47 +02:00
|
|
|
|
2018-07-09 16:48:33 +02:00
|
|
|
pub use dirs::home_dir;
|
|
|
|
|
2018-07-11 16:17:35 +02:00
|
|
|
/// Platform-specific chains path for standard client - Windows only
|
2018-07-09 16:48:33 +02:00
|
|
|
#[cfg(target_os = "windows")] pub const CHAINS_PATH: &str = "$LOCAL/chains";
|
2018-07-11 16:17:35 +02:00
|
|
|
/// Platform-specific chains path for light client - Windows only
|
|
|
|
#[cfg(target_os = "windows")] pub const CHAINS_PATH_LIGHT: &str = "$LOCAL/chains_light";
|
|
|
|
/// Platform-specific chains path for standard client
|
2018-07-09 16:48:33 +02:00
|
|
|
#[cfg(not(target_os = "windows"))] pub const CHAINS_PATH: &str = "$BASE/chains";
|
2018-07-11 16:17:35 +02:00
|
|
|
/// Platform-specific chains path for light client
|
|
|
|
#[cfg(not(target_os = "windows"))] pub const CHAINS_PATH_LIGHT: &str = "$BASE/chains_light";
|
2017-01-05 14:12:54 +01:00
|
|
|
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Platform-specific cache path - Windows only
|
2018-07-09 16:48:33 +02:00
|
|
|
#[cfg(target_os = "windows")] pub const CACHE_PATH: &str = "$LOCAL/cache";
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Platform-specific cache path
|
2018-07-09 16:48:33 +02:00
|
|
|
#[cfg(not(target_os = "windows"))] pub const CACHE_PATH: &str = "$BASE/cache";
|
2017-07-10 12:57:40 +02:00
|
|
|
|
2016-07-25 16:09:47 +02:00
|
|
|
// this const is irrelevent cause we do have migrations now,
|
|
|
|
// but we still use it for backwards compatibility
|
2018-07-09 16:48:33 +02:00
|
|
|
const LEGACY_CLIENT_DB_VER_STR: &str = "5.3";
|
2016-07-25 16:09:47 +02:00
|
|
|
|
|
|
|
#[derive(Debug, PartialEq)]
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Parity local data directories
|
2016-07-25 16:09:47 +02:00
|
|
|
pub struct Directories {
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Base dir
|
2016-12-15 21:56:45 +01:00
|
|
|
pub base: String,
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Database dir
|
2016-12-15 21:56:45 +01:00
|
|
|
pub db: String,
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Cache dir
|
2017-07-10 12:57:40 +02:00
|
|
|
pub cache: String,
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Dir to store keys
|
2016-07-25 16:09:47 +02:00
|
|
|
pub keys: String,
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Signer dir
|
2016-07-25 16:09:47 +02:00
|
|
|
pub signer: String,
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Secrets dir
|
2017-02-20 16:13:21 +01:00
|
|
|
pub secretstore: String,
|
2016-07-25 16:09:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Directories {
|
|
|
|
fn default() -> Self {
|
2016-12-13 23:38:29 +01:00
|
|
|
let data_dir = default_data_path();
|
2017-01-05 14:12:54 +01:00
|
|
|
let local_dir = default_local_path();
|
2016-07-25 16:09:47 +02:00
|
|
|
Directories {
|
2016-12-15 21:56:45 +01:00
|
|
|
base: replace_home(&data_dir, "$BASE"),
|
2017-07-10 12:57:40 +02:00
|
|
|
db: replace_home_and_local(&data_dir, &local_dir, CHAINS_PATH),
|
|
|
|
cache: replace_home_and_local(&data_dir, &local_dir, CACHE_PATH),
|
2016-12-15 21:56:45 +01:00
|
|
|
keys: replace_home(&data_dir, "$BASE/keys"),
|
|
|
|
signer: replace_home(&data_dir, "$BASE/signer"),
|
2017-02-20 16:13:21 +01:00
|
|
|
secretstore: replace_home(&data_dir, "$BASE/secretstore"),
|
2016-07-25 16:09:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Directories {
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Create local directories
|
2018-07-11 12:19:54 +02:00
|
|
|
pub fn create_dirs(&self, signer_enabled: bool, secretstore_enabled: bool) -> Result<(), String> {
|
2016-12-27 12:53:56 +01:00
|
|
|
fs::create_dir_all(&self.base).map_err(|e| e.to_string())?;
|
|
|
|
fs::create_dir_all(&self.db).map_err(|e| e.to_string())?;
|
2017-07-10 12:57:40 +02:00
|
|
|
fs::create_dir_all(&self.cache).map_err(|e| e.to_string())?;
|
2016-12-27 12:53:56 +01:00
|
|
|
fs::create_dir_all(&self.keys).map_err(|e| e.to_string())?;
|
2016-11-15 10:28:52 +01:00
|
|
|
if signer_enabled {
|
2016-12-27 12:53:56 +01:00
|
|
|
fs::create_dir_all(&self.signer).map_err(|e| e.to_string())?;
|
2016-11-15 10:28:52 +01:00
|
|
|
}
|
2017-02-20 16:13:21 +01:00
|
|
|
if secretstore_enabled {
|
|
|
|
fs::create_dir_all(&self.secretstore).map_err(|e| e.to_string())?;
|
|
|
|
}
|
2016-07-25 16:09:47 +02:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2016-09-26 19:21:25 +02:00
|
|
|
/// Database paths.
|
2016-12-12 16:51:07 +01:00
|
|
|
pub fn database(&self, genesis_hash: H256, fork_name: Option<String>, spec_name: String) -> DatabaseDirectories {
|
2016-09-26 19:21:25 +02:00
|
|
|
DatabaseDirectories {
|
2016-12-15 21:56:45 +01:00
|
|
|
path: self.db.clone(),
|
|
|
|
legacy_path: self.base.clone(),
|
2018-05-15 12:57:32 +02:00
|
|
|
genesis_hash,
|
|
|
|
fork_name,
|
|
|
|
spec_name,
|
2016-09-26 19:21:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the ipc sockets path
|
|
|
|
pub fn ipc_path(&self) -> PathBuf {
|
2016-12-15 21:56:45 +01:00
|
|
|
let mut dir = Path::new(&self.base).to_path_buf();
|
2016-09-26 19:21:25 +02:00
|
|
|
dir.push("ipc");
|
|
|
|
dir
|
|
|
|
}
|
2016-12-12 16:51:07 +01:00
|
|
|
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Legacy keys path
|
2016-12-12 16:51:07 +01:00
|
|
|
// TODO: remove in 1.7
|
|
|
|
pub fn legacy_keys_path(&self, testnet: bool) -> PathBuf {
|
2016-12-15 21:56:45 +01:00
|
|
|
let mut dir = Path::new(&self.base).to_path_buf();
|
2016-12-12 16:51:07 +01:00
|
|
|
if testnet {
|
|
|
|
dir.push("testnet_keys");
|
|
|
|
} else {
|
|
|
|
dir.push("keys");
|
|
|
|
}
|
|
|
|
dir
|
|
|
|
}
|
|
|
|
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Get the keys path
|
2016-12-12 16:51:07 +01:00
|
|
|
pub fn keys_path(&self, spec_name: &str) -> PathBuf {
|
|
|
|
let mut dir = PathBuf::from(&self.keys);
|
|
|
|
dir.push(spec_name);
|
|
|
|
dir
|
|
|
|
}
|
2016-09-26 19:21:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, PartialEq)]
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Database directories for the given fork.
|
2016-09-26 19:21:25 +02:00
|
|
|
pub struct DatabaseDirectories {
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Base path
|
2016-09-26 19:21:25 +02:00
|
|
|
pub path: String,
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Legacy path
|
2016-12-15 21:56:45 +01:00
|
|
|
pub legacy_path: String,
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Genesis hash
|
2016-09-26 19:21:25 +02:00
|
|
|
pub genesis_hash: H256,
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Name of current fork
|
2016-09-26 19:21:25 +02:00
|
|
|
pub fork_name: Option<String>,
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Name of current spec
|
2016-12-12 16:51:07 +01:00
|
|
|
pub spec_name: String,
|
2016-09-26 19:21:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl DatabaseDirectories {
|
2016-10-21 23:21:57 +02:00
|
|
|
/// Base DB directory for the given fork.
|
2016-12-12 16:51:07 +01:00
|
|
|
// TODO: remove in 1.7
|
|
|
|
pub fn legacy_fork_path(&self) -> PathBuf {
|
2018-04-02 13:12:52 +02:00
|
|
|
Path::new(&self.legacy_path).join(format!("{:x}{}", H64::from(self.genesis_hash), self.fork_name.as_ref().map(|f| format!("-{}", f)).unwrap_or_default()))
|
2016-09-07 15:27:28 +02:00
|
|
|
}
|
|
|
|
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Spec root directory for the given fork.
|
2016-12-12 16:51:07 +01:00
|
|
|
pub fn spec_root_path(&self) -> PathBuf {
|
2018-02-09 09:32:06 +01:00
|
|
|
Path::new(&self.path).join(&self.spec_name)
|
2016-07-25 16:09:47 +02:00
|
|
|
}
|
2016-07-28 23:46:24 +02:00
|
|
|
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Generic client path
|
2016-09-26 19:21:25 +02:00
|
|
|
pub fn client_path(&self, pruning: Algorithm) -> PathBuf {
|
2018-02-09 09:32:06 +01:00
|
|
|
self.db_root_path().join(pruning.as_internal_name_str()).join("db")
|
2016-12-12 16:51:07 +01:00
|
|
|
}
|
|
|
|
|
2017-12-26 07:55:39 +01:00
|
|
|
/// DB root path, named after genesis hash
|
2016-12-12 16:51:07 +01:00
|
|
|
pub fn db_root_path(&self) -> PathBuf {
|
2018-02-09 09:32:06 +01:00
|
|
|
self.spec_root_path().join("db").join(format!("{:x}", H64::from(self.genesis_hash)))
|
2016-12-12 16:51:07 +01:00
|
|
|
}
|
|
|
|
|
2017-12-26 07:55:39 +01:00
|
|
|
/// DB path
|
2016-12-12 16:51:07 +01:00
|
|
|
pub fn db_path(&self, pruning: Algorithm) -> PathBuf {
|
2018-02-09 09:32:06 +01:00
|
|
|
self.db_root_path().join(pruning.as_internal_name_str())
|
2016-12-12 16:51:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the root path for database
|
|
|
|
// TODO: remove in 1.7
|
|
|
|
pub fn legacy_version_path(&self, pruning: Algorithm) -> PathBuf {
|
2018-02-09 09:32:06 +01:00
|
|
|
self.legacy_fork_path().join(format!("v{}-sec-{}", LEGACY_CLIENT_DB_VER_STR, pruning.as_internal_name_str()))
|
2016-12-12 16:51:07 +01:00
|
|
|
}
|
|
|
|
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Get user defaults path, legacy way
|
2016-12-12 16:51:07 +01:00
|
|
|
// TODO: remove in 1.7
|
|
|
|
pub fn legacy_user_defaults_path(&self) -> PathBuf {
|
2018-02-09 09:32:06 +01:00
|
|
|
self.legacy_fork_path().join("user_defaults")
|
2016-12-12 16:51:07 +01:00
|
|
|
}
|
|
|
|
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Get snapshot path, legacy way
|
2016-12-12 16:51:07 +01:00
|
|
|
// TODO: remove in 1.7
|
|
|
|
pub fn legacy_snapshot_path(&self) -> PathBuf {
|
2018-02-09 09:32:06 +01:00
|
|
|
self.legacy_fork_path().join("snapshot")
|
2016-07-28 23:46:24 +02:00
|
|
|
}
|
2016-08-22 18:41:58 +02:00
|
|
|
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Get user defaults path, legacy way
|
2016-12-12 16:51:07 +01:00
|
|
|
// TODO: remove in 1.7
|
|
|
|
pub fn legacy_network_path(&self) -> PathBuf {
|
2018-02-09 09:32:06 +01:00
|
|
|
self.legacy_fork_path().join("network")
|
2016-12-12 16:51:07 +01:00
|
|
|
}
|
|
|
|
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Get user defauls path
|
2016-09-26 19:21:25 +02:00
|
|
|
pub fn user_defaults_path(&self) -> PathBuf {
|
2018-02-09 09:32:06 +01:00
|
|
|
self.spec_root_path().join("user_defaults")
|
2016-09-07 15:27:28 +02:00
|
|
|
}
|
|
|
|
|
2016-09-26 19:21:25 +02:00
|
|
|
/// Get the path for the snapshot directory given the genesis hash and fork name.
|
|
|
|
pub fn snapshot_path(&self) -> PathBuf {
|
2018-02-09 09:32:06 +01:00
|
|
|
self.db_root_path().join("snapshot")
|
2016-08-22 18:41:58 +02:00
|
|
|
}
|
2016-10-11 18:42:20 +02:00
|
|
|
|
|
|
|
/// Get the path for the network directory.
|
|
|
|
pub fn network_path(&self) -> PathBuf {
|
2018-02-09 09:32:06 +01:00
|
|
|
self.spec_root_path().join("network")
|
2016-10-11 18:42:20 +02:00
|
|
|
}
|
2016-07-25 16:09:47 +02:00
|
|
|
}
|
|
|
|
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Default data path
|
2016-12-13 23:38:29 +01:00
|
|
|
pub fn default_data_path() -> String {
|
2016-12-16 15:24:38 +01:00
|
|
|
let app_info = AppInfo { name: PRODUCT, author: AUTHOR };
|
2016-12-13 23:38:29 +01:00
|
|
|
get_app_root(AppDataType::UserData, &app_info).map(|p| p.to_string_lossy().into_owned()).unwrap_or_else(|_| "$HOME/.parity".to_owned())
|
|
|
|
}
|
|
|
|
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Default local path
|
2017-01-05 14:12:54 +01:00
|
|
|
pub fn default_local_path() -> String {
|
|
|
|
let app_info = AppInfo { name: PRODUCT, author: AUTHOR };
|
|
|
|
get_app_root(AppDataType::UserCache, &app_info).map(|p| p.to_string_lossy().into_owned()).unwrap_or_else(|_| "$HOME/.parity".to_owned())
|
|
|
|
}
|
|
|
|
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Default hypervisor path
|
2018-04-03 16:49:23 +02:00
|
|
|
pub fn default_hypervisor_path() -> PathBuf {
|
2016-12-16 15:24:38 +01:00
|
|
|
let app_info = AppInfo { name: PRODUCT_HYPERVISOR, author: AUTHOR };
|
2018-04-03 16:49:23 +02:00
|
|
|
get_app_root(AppDataType::UserData, &app_info).unwrap_or_else(|_| "$HOME/.parity-hypervisor".into())
|
2016-12-15 19:53:13 +01:00
|
|
|
}
|
|
|
|
|
2017-12-26 07:55:39 +01:00
|
|
|
/// Get home directory.
|
2017-12-24 09:34:43 +01:00
|
|
|
fn home() -> PathBuf {
|
2018-07-09 16:48:33 +02:00
|
|
|
dirs::home_dir().expect("Failed to get home dir")
|
2017-12-24 09:34:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Geth path
|
|
|
|
pub fn geth(testnet: bool) -> PathBuf {
|
2017-12-27 15:17:39 +01:00
|
|
|
let mut base = geth_base();
|
2017-12-24 09:34:43 +01:00
|
|
|
if testnet {
|
|
|
|
base.push("testnet");
|
|
|
|
}
|
|
|
|
base.push("keystore");
|
|
|
|
base
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Parity path for specific chain
|
|
|
|
pub fn parity(chain: &str) -> PathBuf {
|
2017-12-27 15:17:39 +01:00
|
|
|
let mut base = parity_base();
|
2017-12-24 09:34:43 +01:00
|
|
|
base.push(chain);
|
|
|
|
base
|
|
|
|
}
|
|
|
|
|
2017-12-27 15:17:39 +01:00
|
|
|
#[cfg(target_os = "macos")]
|
2017-12-26 07:25:19 +01:00
|
|
|
mod platform {
|
|
|
|
use std::path::PathBuf;
|
2017-12-28 12:16:52 +01:00
|
|
|
pub const AUTHOR: &'static str = "Parity";
|
|
|
|
pub const PRODUCT: &'static str = "io.parity.ethereum";
|
|
|
|
pub const PRODUCT_HYPERVISOR: &'static str = "io.parity.ethereum-updates";
|
|
|
|
|
2017-12-26 07:25:19 +01:00
|
|
|
pub fn parity_base() -> PathBuf {
|
|
|
|
let mut home = super::home();
|
|
|
|
home.push("Library");
|
|
|
|
home.push("Application Support");
|
|
|
|
home.push("io.parity.ethereum");
|
|
|
|
home.push("keys");
|
|
|
|
home
|
|
|
|
}
|
2017-12-24 09:34:43 +01:00
|
|
|
|
2017-12-27 15:17:39 +01:00
|
|
|
pub fn geth_base() -> PathBuf {
|
2017-12-26 07:25:19 +01:00
|
|
|
let mut home = super::home();
|
2017-12-27 15:17:39 +01:00
|
|
|
home.push("Library");
|
2017-12-26 07:25:19 +01:00
|
|
|
home.push("Ethereum");
|
|
|
|
home
|
|
|
|
}
|
2017-12-27 15:17:39 +01:00
|
|
|
}
|
2017-12-24 09:34:43 +01:00
|
|
|
|
2017-12-27 15:17:39 +01:00
|
|
|
#[cfg(windows)]
|
|
|
|
mod platform {
|
|
|
|
use std::path::PathBuf;
|
2017-12-28 12:16:52 +01:00
|
|
|
pub const AUTHOR: &'static str = "Parity";
|
|
|
|
pub const PRODUCT: &'static str = "Ethereum";
|
|
|
|
pub const PRODUCT_HYPERVISOR: &'static str = "EthereumUpdates";
|
|
|
|
|
2017-12-26 07:25:19 +01:00
|
|
|
pub fn parity_base() -> PathBuf {
|
|
|
|
let mut home = super::home();
|
2017-12-27 15:17:39 +01:00
|
|
|
home.push("AppData");
|
|
|
|
home.push("Roaming");
|
|
|
|
home.push("Parity");
|
|
|
|
home.push("Ethereum");
|
2017-12-26 07:25:19 +01:00
|
|
|
home.push("keys");
|
|
|
|
home
|
|
|
|
}
|
2017-12-24 09:34:43 +01:00
|
|
|
|
2017-12-26 07:25:19 +01:00
|
|
|
pub fn geth_base() -> PathBuf {
|
|
|
|
let mut home = super::home();
|
2017-12-27 15:17:39 +01:00
|
|
|
home.push("AppData");
|
|
|
|
home.push("Roaming");
|
2017-12-26 07:25:19 +01:00
|
|
|
home.push("Ethereum");
|
|
|
|
home
|
|
|
|
}
|
2017-12-27 15:17:39 +01:00
|
|
|
}
|
2017-12-24 09:34:43 +01:00
|
|
|
|
2017-12-27 15:17:39 +01:00
|
|
|
#[cfg(not(any(target_os = "macos", windows)))]
|
|
|
|
mod platform {
|
|
|
|
use std::path::PathBuf;
|
2018-07-09 16:48:33 +02:00
|
|
|
pub const AUTHOR: &str = "parity";
|
|
|
|
pub const PRODUCT: &str = "io.parity.ethereum";
|
|
|
|
pub const PRODUCT_HYPERVISOR: &str = "io.parity.ethereum-updates";
|
2017-12-28 12:16:52 +01:00
|
|
|
|
2017-12-27 15:17:39 +01:00
|
|
|
pub fn parity_base() -> PathBuf {
|
2017-12-26 07:25:19 +01:00
|
|
|
let mut home = super::home();
|
2017-12-27 15:17:39 +01:00
|
|
|
home.push(".local");
|
|
|
|
home.push("share");
|
|
|
|
home.push("io.parity.ethereum");
|
|
|
|
home.push("keys");
|
2017-12-26 07:25:19 +01:00
|
|
|
home
|
|
|
|
}
|
2017-12-24 09:34:43 +01:00
|
|
|
|
2017-12-26 07:25:19 +01:00
|
|
|
pub fn geth_base() -> PathBuf {
|
|
|
|
let mut home = super::home();
|
|
|
|
home.push(".ethereum");
|
|
|
|
home
|
|
|
|
}
|
2017-12-24 09:34:43 +01:00
|
|
|
}
|
2017-12-26 07:25:19 +01:00
|
|
|
|
2016-07-25 16:09:47 +02:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::Directories;
|
2017-07-10 12:57:40 +02:00
|
|
|
use helpers::{replace_home, replace_home_and_local};
|
2016-07-25 16:09:47 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_default_directories() {
|
2016-12-13 23:38:29 +01:00
|
|
|
let data_dir = super::default_data_path();
|
2017-01-05 14:12:54 +01:00
|
|
|
let local_dir = super::default_local_path();
|
2016-07-25 16:09:47 +02:00
|
|
|
let expected = Directories {
|
2016-12-15 21:56:45 +01:00
|
|
|
base: replace_home(&data_dir, "$BASE"),
|
2017-07-10 12:57:40 +02:00
|
|
|
db: replace_home_and_local(&data_dir, &local_dir,
|
2017-01-05 14:12:54 +01:00
|
|
|
if cfg!(target_os = "windows") { "$LOCAL/chains" }
|
|
|
|
else { "$BASE/chains" }
|
|
|
|
),
|
2017-07-10 12:57:40 +02:00
|
|
|
cache: replace_home_and_local(&data_dir, &local_dir,
|
|
|
|
if cfg!(target_os = "windows") { "$LOCAL/cache" }
|
|
|
|
else { "$BASE/cache" }
|
|
|
|
),
|
2016-12-15 21:56:45 +01:00
|
|
|
keys: replace_home(&data_dir, "$BASE/keys"),
|
|
|
|
signer: replace_home(&data_dir, "$BASE/signer"),
|
2017-02-20 16:13:21 +01:00
|
|
|
secretstore: replace_home(&data_dir, "$BASE/secretstore"),
|
2016-07-25 16:09:47 +02:00
|
|
|
};
|
|
|
|
assert_eq!(expected, Directories::default());
|
|
|
|
}
|
|
|
|
}
|