lighthouse/beacon_node/src/run.rs

157 lines
4.5 KiB
Rust
Raw Normal View History

use client::{
2019-06-08 17:17:03 +00:00
error, notifier, BeaconChainTypes, Client, ClientConfig, ClientType, Eth2Config,
InitialiseBeaconChain,
};
use futures::sync::oneshot;
use futures::Future;
2019-06-08 17:17:03 +00:00
use slog::{error, info, warn};
use std::cell::RefCell;
2019-06-07 23:44:27 +00:00
use std::path::Path;
use std::path::PathBuf;
use store::{DiskStore, MemoryStore};
use tokio::runtime::Builder;
use tokio::runtime::Runtime;
use tokio::runtime::TaskExecutor;
2019-03-26 23:36:20 +00:00
use tokio_timer::clock::Clock;
2019-06-08 13:46:04 +00:00
use types::{MainnetEthSpec, MinimalEthSpec};
2019-06-08 17:17:03 +00:00
pub fn run_beacon_node(
client_config: ClientConfig,
eth2_config: Eth2Config,
log: &slog::Logger,
) -> error::Result<()> {
let runtime = Builder::new()
.name_prefix("main-")
2019-03-26 23:36:20 +00:00
.clock(Clock::system())
.build()
.map_err(|e| format!("{:?}", e))?;
let executor = runtime.executor();
2019-06-08 17:17:03 +00:00
let db_path: PathBuf = client_config
2019-06-07 23:44:27 +00:00
.db_path()
.ok_or_else::<error::Error, _>(|| "Unable to access database path".into())?;
2019-06-08 17:17:03 +00:00
let db_type = &client_config.db_type;
let spec_constants = eth2_config.spec_constants.clone();
let other_client_config = client_config.clone();
2019-06-08 17:17:03 +00:00
warn!(
log,
"This software is EXPERIMENTAL and provides no guarantees or warranties."
);
2019-06-25 08:02:11 +00:00
info!(
log,
"Starting beacon node";
"p2p_listen_address" => format!("{:?}", &other_client_config.network.listen_address),
"data_dir" => format!("{:?}", other_client_config.data_dir()),
"spec_constants" => &spec_constants,
"db_type" => &other_client_config.db_type,
);
let result = match (db_type.as_str(), spec_constants.as_str()) {
2019-06-08 17:17:03 +00:00
("disk", "minimal") => run::<ClientType<DiskStore, MinimalEthSpec>>(
&db_path,
client_config,
eth2_config,
executor,
runtime,
log,
),
("memory", "minimal") => run::<ClientType<MemoryStore, MinimalEthSpec>>(
&db_path,
client_config,
eth2_config,
executor,
runtime,
log,
),
("disk", "mainnet") => run::<ClientType<DiskStore, MainnetEthSpec>>(
&db_path,
client_config,
eth2_config,
executor,
runtime,
log,
),
("memory", "mainnet") => run::<ClientType<MemoryStore, MainnetEthSpec>>(
&db_path,
client_config,
eth2_config,
executor,
runtime,
log,
),
2019-06-07 23:44:27 +00:00
(db_type, spec) => {
2019-06-08 17:17:03 +00:00
error!(log, "Unknown runtime configuration"; "spec_constants" => spec, "db_type" => db_type);
2019-06-07 23:44:27 +00:00
Err("Unknown specification and/or db_type.".into())
}
};
result
}
2019-06-07 23:44:27 +00:00
pub fn run<T>(
db_path: &Path,
2019-06-08 17:17:03 +00:00
client_config: ClientConfig,
eth2_config: Eth2Config,
executor: TaskExecutor,
mut runtime: Runtime,
log: &slog::Logger,
2019-06-07 23:44:27 +00:00
) -> error::Result<()>
where
2019-06-08 13:46:04 +00:00
T: BeaconChainTypes + InitialiseBeaconChain<T> + Clone + Send + Sync + 'static,
2019-06-07 23:44:27 +00:00
T::Store: OpenDatabase,
{
let store = T::Store::open_database(&db_path)?;
2019-06-08 17:17:03 +00:00
let client: Client<T> = Client::new(client_config, eth2_config, store, log.clone(), &executor)?;
2019-06-07 23:44:27 +00:00
// run service until ctrl-c
let (ctrlc_send, ctrlc_oneshot) = oneshot::channel();
let ctrlc_send_c = RefCell::new(Some(ctrlc_send));
ctrlc::set_handler(move || {
if let Some(ctrlc_send) = ctrlc_send_c.try_borrow_mut().unwrap().take() {
ctrlc_send.send(()).expect("Error sending ctrl-c message");
}
2019-03-19 11:53:51 +00:00
})
.map_err(|e| format!("Could not set ctrlc hander: {:?}", e))?;
let (exit_signal, exit) = exit_future::signal();
notifier::run(&client, executor, exit);
2019-03-19 11:53:51 +00:00
runtime
.block_on(ctrlc_oneshot)
2019-03-19 11:53:51 +00:00
.map_err(|e| format!("Ctrlc oneshot failed: {:?}", e))?;
// perform global shutdown operations.
info!(log, "Shutting down..");
exit_signal.fire();
2019-03-12 06:28:11 +00:00
// shutdown the client
// client.exit_signal.fire();
drop(client);
runtime.shutdown_on_idle().wait().unwrap();
Ok(())
}
2019-06-07 23:44:27 +00:00
/// A convenience trait, providing a method to open a database.
///
/// Panics if unable to open the database.
pub trait OpenDatabase: Sized {
fn open_database(path: &Path) -> error::Result<Self>;
}
impl OpenDatabase for MemoryStore {
fn open_database(_path: &Path) -> error::Result<Self> {
Ok(MemoryStore::open())
}
}
impl OpenDatabase for DiskStore {
fn open_database(path: &Path) -> error::Result<Self> {
DiskStore::open(path).map_err(|e| format!("Unable to open database: {:?}", e).into())
}
}