ckb_resource/lib.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
//! Bundles resources in the ckb binary.
//!
//! This crate bundles the files ckb.toml, ckb-miner.toml, default.db-options, and all files in the
//! directory `specs` in the binary.
//!
//! The bundled files can be read via `Resource::Bundled`, for example:
//!
//! ```
//! // Read bundled ckb.toml
//! use ckb_resource::{Resource, CKB_CONFIG_FILE_NAME};
//!
//! let ckb_toml_bytes = Resource::bundled(CKB_CONFIG_FILE_NAME.to_string()).get().unwrap();
//! println!("ckb.toml\n{}", String::from_utf8(ckb_toml_bytes.to_vec()).unwrap());
//! ```
//!
//! These bundled files can be customized for different chains using spec branches.
//! See [Template](struct.Template.html).
mod template;
#[cfg(test)]
mod tests;
pub use self::template::Template;
pub use self::template::{
TemplateContext, AVAILABLE_SPECS, DEFAULT_P2P_PORT, DEFAULT_RPC_PORT, DEFAULT_SPEC,
};
pub use std::io::{Error, Result};
use ckb_types::H256;
use includedir::Files;
use serde::{Deserialize, Serialize};
use std::borrow::Cow;
use std::fmt;
use std::fs;
use std::io::{self, BufReader, Read};
use std::path::{Path, PathBuf};
use ckb_system_scripts::BUNDLED_CELL;
mod bundled {
#![allow(missing_docs, clippy::unreadable_literal)]
include!(concat!(env!("OUT_DIR"), "/bundled.rs"));
}
/// Bundled resources in ckb binary.
pub use bundled::BUNDLED;
include!(concat!(env!("OUT_DIR"), "/code_hashes.rs"));
/// CKB config file name.
pub const CKB_CONFIG_FILE_NAME: &str = "ckb.toml";
/// CKB miner config file name.
pub const MINER_CONFIG_FILE_NAME: &str = "ckb-miner.toml";
/// The relative spec file path for the dev chain.
pub const SPEC_DEV_FILE_NAME: &str = "specs/dev.toml";
/// The file name of the generated RocksDB options file.
pub const DB_OPTIONS_FILE_NAME: &str = "default.db-options";
/// Represents a resource, which is either bundled in the CKB binary or resident in the local file
/// system.
#[derive(Clone, Debug, Eq, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum Resource {
/// A resource that bundled in the CKB binary.
Bundled {
/// The identifier of the bundled resource.
bundled: String,
},
/// A resource that resides in the local file system.
FileSystem {
/// The file path to the resource.
file: PathBuf,
},
}
impl fmt::Display for Resource {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
Resource::Bundled { bundled } => write!(f, "Bundled({bundled})"),
Resource::FileSystem { file } => write!(f, "FileSystem({})", file.display()),
}
}
}
impl Resource {
/// Creates a reference to the bundled resource.
pub fn bundled(bundled: String) -> Resource {
Resource::Bundled { bundled }
}
/// Creates a reference to the resource resident in the file system.
pub fn file_system(file: PathBuf) -> Resource {
Resource::FileSystem { file }
}
/// Creates the CKB config file resource from the file system.
///
/// It searches the file name `CKB_CONFIG_FILE_NAME` in the directory `root_dir`.
pub fn ckb_config<P: AsRef<Path>>(root_dir: P) -> Resource {
Resource::file_system(root_dir.as_ref().join(CKB_CONFIG_FILE_NAME))
}
/// Creates the CKB miner config file resource from the file system.
///
/// It searches the file name `MINER_CONFIG_FILE_NAME` in the directory `root_dir`.
pub fn miner_config<P: AsRef<Path>>(root_dir: P) -> Resource {
Resource::file_system(root_dir.as_ref().join(MINER_CONFIG_FILE_NAME))
}
/// Creates the RocksDB options file resource from the file system.
///
/// It searches the file name `DB_OPTIONS_FILE_NAME` in the directory `root_dir`.
pub fn db_options<P: AsRef<Path>>(root_dir: P) -> Resource {
Resource::file_system(root_dir.as_ref().join(DB_OPTIONS_FILE_NAME))
}
/// Creates the bundled CKB config file resource.
pub fn bundled_ckb_config() -> Resource {
Resource::bundled(CKB_CONFIG_FILE_NAME.to_string())
}
/// Creates the bundled CKB miner config file resource.
pub fn bundled_miner_config() -> Resource {
Resource::bundled(MINER_CONFIG_FILE_NAME.to_string())
}
/// Creates the bundled RocksDB options file resource.
pub fn bundled_db_options() -> Resource {
Resource::bundled(DB_OPTIONS_FILE_NAME.to_string())
}
/// Checks whether any of the bundled resource has been exported in the specified directory.
///
/// This can be used to avoid overwriting to export all the bundled resources to the specified
/// directory.
pub fn exported_in<P: AsRef<Path>>(root_dir: P) -> bool {
BUNDLED
.file_names()
.chain(BUNDLED_CELL.file_names())
.any(|name| join_bundled_key(root_dir.as_ref().to_path_buf(), name).exists())
}
/// Returns `true` if this is a bundled resource.
pub fn is_bundled(&self) -> bool {
matches!(self, Resource::Bundled { .. })
}
/// Returns `true` if the resource exists.
///
/// The bundled resource exists only when the identifier is included in the bundle.
///
/// The file system resource exists only when the file exists.
pub fn exists(&self) -> bool {
match self {
Resource::Bundled { bundled } => {
SourceFiles::new(&BUNDLED_CELL, &BUNDLED).is_available(bundled)
}
Resource::FileSystem { file } => file.exists(),
}
}
/// The parent directory of the resource.
///
/// It always returns `None` on bundled resource.
pub fn parent(&self) -> Option<&Path> {
match self {
Resource::FileSystem { file } => file.parent(),
_ => None,
}
}
/// Modifies the file system resource to ensure the path is absolute.
///
/// If the path is relative, expand the path relative to the directory `base`.
pub fn absolutize<P: AsRef<Path>>(&mut self, base: P) {
if let Resource::FileSystem { file: ref mut path } = self {
if path.is_relative() {
*path = base.as_ref().join(&path)
}
}
}
/// Gets resource content.
pub fn get(&self) -> Result<Cow<'static, [u8]>> {
match self {
Resource::Bundled { bundled } => SourceFiles::new(&BUNDLED_CELL, &BUNDLED).get(bundled),
Resource::FileSystem { file } => Ok(Cow::Owned(fs::read(file)?)),
}
}
/// Gets resource content via an input stream.
pub fn read(&self) -> Result<Box<dyn Read>> {
match self {
Resource::Bundled { bundled } => {
SourceFiles::new(&BUNDLED_CELL, &BUNDLED).read(bundled)
}
Resource::FileSystem { file } => Ok(Box::new(BufReader::new(fs::File::open(file)?))),
}
}
/// Exports a bundled resource.
///
/// This function returns `Ok` immediately when invoked on a file system resource.
///
/// The file is exported to the path by combining `root_dir` and the resource identifier.
///
/// These bundled files can be customized for different chains using spec branches.
/// See [Template](struct.Template.html).
pub fn export<P: AsRef<Path>>(&self, context: &TemplateContext<'_>, root_dir: P) -> Result<()> {
let key = match self {
Resource::Bundled { bundled } => bundled,
_ => return Ok(()),
};
let target = join_bundled_key(root_dir.as_ref().to_path_buf(), key);
let template = Template::new(from_utf8(self.get()?)?);
if let Some(dir) = target.parent() {
fs::create_dir_all(dir)?;
}
let mut f = fs::File::create(&target)?;
template.render_to(&mut f, context)?;
Ok(())
}
}
struct SourceFiles<'a> {
system_cells: &'a Files,
config: &'a Files,
}
impl<'a> SourceFiles<'a> {
fn new(system_cells: &'a Files, config: &'a Files) -> Self {
SourceFiles {
system_cells,
config,
}
}
fn get(&self, path: &str) -> Result<Cow<'static, [u8]>> {
self.config
.get(path)
.or_else(|_| self.system_cells.get(path))
}
fn read(&self, path: &str) -> Result<Box<dyn Read>> {
self.config
.read(path)
.or_else(|_| self.system_cells.read(path))
}
fn is_available(&self, path: &str) -> bool {
self.config.is_available(path) || self.system_cells.is_available(path)
}
}
fn from_utf8(data: Cow<[u8]>) -> Result<String> {
String::from_utf8(data.to_vec()).map_err(|err| Error::new(io::ErrorKind::Other, err))
}
fn join_bundled_key(mut root_dir: PathBuf, key: &str) -> PathBuf {
key.split('/')
.for_each(|component| root_dir.push(component));
root_dir
}