use super::addressbook::AddressbookStorage;
use super::contracts::ContractStorage;
use super::keyfile::KeystoreError;
use super::super::core::Chain;
use super::{
build_addressbook_storage, build_contract_storage, build_keyfile_storage, build_path,
KeyfileStorage,
};
use std::collections::HashMap;
use std::path::Path;
use std::str::FromStr;
pub struct StorageController {
keyfile_storages: HashMap<String, Box<dyn KeyfileStorage>>,
contract_storages: HashMap<String, Box<ContractStorage>>,
addressbook_storages: HashMap<String, Box<AddressbookStorage>>,
}
impl StorageController {
pub fn new<P: AsRef<Path>>(base_path: P) -> Result<StorageController, KeystoreError> {
let mut st = StorageController::default();
for id in Chain::get_all_paths().iter() {
st.keyfile_storages.insert(
id.to_string(),
build_keyfile_storage(build_path(base_path.as_ref(), id, "keystore"))?,
);
st.contract_storages.insert(
id.to_string(),
build_contract_storage(build_path(base_path.as_ref(), id, "contracts"))?,
);
st.addressbook_storages.insert(
id.to_string(),
build_addressbook_storage(build_path(base_path.as_ref(), id, "addressbook"))?,
);
}
Ok(st)
}
pub fn get_keystore(&self, chain: &str) -> Result<&Box<dyn KeyfileStorage>, KeystoreError> {
match self.keyfile_storages.get(Chain::from_str(chain).unwrap().get_path_element().as_str()) {
Some(st) => Ok(st),
None => Err(KeystoreError::StorageError(format!(
"No storage for: {}",
chain
))),
}
}
pub fn get_contracts(&self, chain: &str) -> Result<&Box<ContractStorage>, KeystoreError> {
match self.contract_storages.get(Chain::from_str(chain).unwrap().get_path_element().as_str()) {
Some(st) => Ok(st),
None => Err(KeystoreError::StorageError(format!(
"No storage for: {}",
chain
))),
}
}
pub fn get_addressbook(&self, chain: &str) -> Result<&Box<AddressbookStorage>, KeystoreError> {
match self.addressbook_storages.get(Chain::from_str(chain).unwrap().get_path_element().as_str()) {
Some(st) => Ok(st),
None => Err(KeystoreError::StorageError(format!(
"No storage for: {}",
chain
))),
}
}
}
impl Default for StorageController {
fn default() -> Self {
StorageController {
keyfile_storages: HashMap::new(),
contract_storages: HashMap::new(),
addressbook_storages: HashMap::new(),
}
}
}