ethers-rs/ethers-contract/ethers-contract-abigen/src/lib.rs

179 lines
5.4 KiB
Rust
Raw Normal View History

2020-05-26 09:37:31 +00:00
#![deny(missing_docs, unsafe_code)]
2020-05-26 18:57:59 +00:00
//! Module for generating type-safe bindings to Ethereum smart contracts. This
//! module is intended to be used either indirectly with the `abigen` procedural
//! macro or directly from a build script / CLI
2020-05-26 09:37:31 +00:00
#[cfg(test)]
#[allow(missing_docs)]
#[macro_use]
#[path = "test/macros.rs"]
mod test_macros;
/// Contains types to generate rust bindings for solidity contracts
pub mod contract;
2020-05-26 18:57:59 +00:00
use contract::Context;
pub mod rawabi;
2020-05-26 09:37:31 +00:00
mod rustfmt;
mod source;
mod util;
2020-05-31 16:01:34 +00:00
pub use ethers_core::types::Address;
2020-05-26 18:57:59 +00:00
pub use source::Source;
pub use util::parse_address;
2020-05-26 18:57:59 +00:00
2020-05-26 09:37:31 +00:00
use anyhow::Result;
use proc_macro2::TokenStream;
use std::{collections::HashMap, fs::File, io::Write, path::Path};
2020-05-26 09:37:31 +00:00
/// Builder struct for generating type-safe bindings from a contract's ABI
2020-06-10 19:34:39 +00:00
///
/// Note: Your contract's ABI must contain the `stateMutability` field. This is
/// [still not supported by Vyper](https://github.com/vyperlang/vyper/issues/1931), so you must adjust your ABIs and replace
/// `constant` functions with `view` or `pure`.
///
2020-06-10 19:34:39 +00:00
/// # Example
///
/// Running the command below will generate a file called `token.rs` containing the
/// bindings inside, which exports an `ERC20Token` struct, along with all its events.
///
/// ```no_run
2020-06-11 09:16:36 +00:00
/// # use ethers_contract_abigen::Abigen;
2020-06-10 19:34:39 +00:00
/// # fn foo() -> Result<(), Box<dyn std::error::Error>> {
/// Abigen::new("ERC20Token", "./abi.json")?.generate()?.write_to_file("token.rs")?;
/// # Ok(())
/// # }
pub struct Abigen {
2020-05-26 18:57:59 +00:00
/// The source of the ABI JSON for the contract whose bindings
2020-05-26 09:37:31 +00:00
/// are being generated.
2020-05-26 18:57:59 +00:00
abi_source: Source,
/// Override the contract name to use for the generated type.
contract_name: String,
2020-05-26 09:37:31 +00:00
/// Manually specified contract method aliases.
method_aliases: HashMap<String, String>,
2020-05-26 18:57:59 +00:00
2020-05-26 09:37:31 +00:00
/// Derives added to event structs and enums.
event_derives: Vec<String>,
2020-05-26 18:57:59 +00:00
2020-05-26 09:37:31 +00:00
/// Format the code using a locally installed copy of `rustfmt`.
rustfmt: bool,
/// Manually specified event name aliases.
event_aliases: HashMap<String, String>,
2020-05-26 09:37:31 +00:00
}
impl Abigen {
2020-05-26 18:57:59 +00:00
/// Creates a new builder with the given ABI JSON source.
pub fn new<S: AsRef<str>>(contract_name: &str, abi_source: S) -> Result<Self> {
let abi_source = abi_source.as_ref().parse()?;
Ok(Self {
abi_source,
contract_name: contract_name.to_owned(),
method_aliases: HashMap::new(),
event_derives: Vec::new(),
event_aliases: HashMap::new(),
rustfmt: true,
})
2020-05-26 09:37:31 +00:00
}
/// Manually adds a solidity event alias to specify what the event struct
/// and function name will be in Rust.
pub fn add_event_alias<S1, S2>(mut self, signature: S1, alias: S2) -> Self
where
S1: Into<String>,
S2: Into<String>,
{
self.event_aliases.insert(signature.into(), alias.into());
self
}
2020-05-26 09:37:31 +00:00
/// Manually adds a solidity method alias to specify what the method name
/// will be in Rust. For solidity methods without an alias, the snake cased
/// method name will be used.
pub fn add_method_alias<S1, S2>(mut self, signature: S1, alias: S2) -> Self
where
S1: Into<String>,
S2: Into<String>,
{
self.method_aliases.insert(signature.into(), alias.into());
2020-05-26 09:37:31 +00:00
self
}
/// Specify whether or not to format the code using a locally installed copy
/// of `rustfmt`.
///
/// Note that in case `rustfmt` does not exist or produces an error, the
/// unformatted code will be used.
2020-05-26 18:57:59 +00:00
pub fn rustfmt(mut self, rustfmt: bool) -> Self {
self.rustfmt = rustfmt;
2020-05-26 09:37:31 +00:00
self
}
/// Add a custom derive to the derives for event structs and enums.
///
/// This makes it possible to for example derive serde::Serialize and
/// serde::Deserialize for events.
pub fn add_event_derive<S>(mut self, derive: S) -> Self
where
S: Into<String>,
{
self.event_derives.push(derive.into());
2020-05-26 09:37:31 +00:00
self
}
/// Generates the contract bindings.
pub fn generate(self) -> Result<ContractBindings> {
let rustfmt = self.rustfmt;
let tokens = Context::from_abigen(self)?.expand()?.into_tokens();
Ok(ContractBindings { tokens, rustfmt })
2020-05-26 09:37:31 +00:00
}
}
/// Type-safe contract bindings generated by a `Builder`. This type can be
/// either written to file or into a token stream for use in a procedural macro.
pub struct ContractBindings {
/// The TokenStream representing the contract bindings.
tokens: TokenStream,
/// The output options used for serialization.
rustfmt: bool,
2020-05-26 09:37:31 +00:00
}
impl ContractBindings {
/// Writes the bindings to a given `Write`.
pub fn write<W>(&self, mut w: W) -> Result<()>
where
W: Write,
{
let source = {
let raw = self.tokens.to_string();
if self.rustfmt {
2020-05-26 09:37:31 +00:00
rustfmt::format(&raw).unwrap_or(raw)
} else {
raw
}
};
w.write_all(source.as_bytes())?;
Ok(())
}
/// Writes the bindings to the specified file.
pub fn write_to_file<P>(&self, path: P) -> Result<()>
where
P: AsRef<Path>,
{
let file = File::create(path)?;
self.write(file)
}
/// Converts the bindings into its underlying token stream. This allows it
/// to be used within a procedural macro.
pub fn into_tokens(self) -> TokenStream {
self.tokens
}
}