2019-01-07 11:33:07 +01:00
|
|
|
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of Parity Ethereum.
|
2016-06-20 10:06:49 +02:00
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is free software: you can redistribute it and/or modify
|
2016-06-20 10:06:49 +02:00
|
|
|
// 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.
|
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is distributed in the hope that it will be useful,
|
2016-06-20 10:06:49 +02:00
|
|
|
// 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
|
2019-01-07 11:33:07 +01:00
|
|
|
// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2016-06-20 10:06:49 +02:00
|
|
|
|
2016-06-20 00:10:34 +02:00
|
|
|
use std::path::PathBuf;
|
|
|
|
use std::{env, fs};
|
|
|
|
use rand::{Rng, OsRng};
|
2017-12-24 09:34:43 +01:00
|
|
|
use ethstore::accounts_dir::{KeyDirectory, RootDiskDirectory};
|
2016-06-20 00:10:34 +02:00
|
|
|
use ethstore::{Error, SafeAccount};
|
|
|
|
|
|
|
|
pub fn random_dir() -> PathBuf {
|
|
|
|
let mut rng = OsRng::new().unwrap();
|
|
|
|
let mut dir = env::temp_dir();
|
|
|
|
dir.push(format!("{:x}-{:x}", rng.next_u64(), rng.next_u64()));
|
|
|
|
dir
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct TransientDir {
|
2017-01-30 11:44:09 +01:00
|
|
|
dir: RootDiskDirectory,
|
2016-06-20 00:10:34 +02:00
|
|
|
path: PathBuf,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TransientDir {
|
|
|
|
pub fn create() -> Result<Self, Error> {
|
|
|
|
let path = random_dir();
|
|
|
|
let result = TransientDir {
|
2017-01-30 11:44:09 +01:00
|
|
|
dir: RootDiskDirectory::create(&path)?,
|
2016-06-20 00:10:34 +02:00
|
|
|
path: path,
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(result)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn open() -> Self {
|
|
|
|
let path = random_dir();
|
|
|
|
TransientDir {
|
2017-01-30 11:44:09 +01:00
|
|
|
dir: RootDiskDirectory::at(&path),
|
2016-06-20 00:10:34 +02:00
|
|
|
path: path,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for TransientDir {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
fs::remove_dir_all(&self.path).expect("Expected to remove temp dir");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl KeyDirectory for TransientDir {
|
|
|
|
fn load(&self) -> Result<Vec<SafeAccount>, Error> {
|
|
|
|
self.dir.load()
|
|
|
|
}
|
|
|
|
|
2016-12-09 09:31:58 +01:00
|
|
|
fn update(&self, account: SafeAccount) -> Result<SafeAccount, Error> {
|
|
|
|
self.dir.update(account)
|
|
|
|
}
|
|
|
|
|
2016-07-25 10:45:45 +02:00
|
|
|
fn insert(&self, account: SafeAccount) -> Result<SafeAccount, Error> {
|
2016-06-20 00:10:34 +02:00
|
|
|
self.dir.insert(account)
|
|
|
|
}
|
|
|
|
|
2016-11-30 13:47:14 +01:00
|
|
|
fn remove(&self, account: &SafeAccount) -> Result<(), Error> {
|
|
|
|
self.dir.remove(account)
|
2016-06-20 00:10:34 +02:00
|
|
|
}
|
2017-02-16 21:04:39 +01:00
|
|
|
|
|
|
|
fn unique_repr(&self) -> Result<u64, Error> {
|
|
|
|
self.dir.unique_repr()
|
|
|
|
}
|
2016-06-20 00:10:34 +02:00
|
|
|
}
|