pub struct AggregatedCompilerOutput {
    pub errors: Vec<Error>,
    pub sources: VersionedSourceFiles,
    pub contracts: VersionedContracts,
    pub build_infos: BTreeMap<Version, RawBuildInfo>,
}
Expand description

The aggregated output of (multiple) compile jobs

This is effectively a solc version aware CompilerOutput

Fields§

§errors: Vec<Error>

all errors from all CompilerOutput

§sources: VersionedSourceFiles

All source files combined with the solc version used to compile them

§contracts: VersionedContracts

All compiled contracts combined with the solc version used to compile them

§build_infos: BTreeMap<Version, RawBuildInfo>

Implementations§

source§

impl AggregatedCompilerOutput

source

pub fn slash_paths(&mut self)

Converts all \\ separators in all paths to /

source

pub fn has_error( &self, ignored_error_codes: &[u64], compiler_severity_filter: &Severity ) -> bool

Whether the output contains a compiler error

source

pub fn has_warning(&self, ignored_error_codes: &[u64]) -> bool

Whether the output contains a compiler warning

source

pub fn diagnostics<'a>( &'a self, ignored_error_codes: &'a [u64], compiler_severity_filter: Severity ) -> OutputDiagnostics<'_>

source

pub fn is_empty(&self) -> bool

source

pub fn is_unchanged(&self) -> bool

source

pub fn extend_all<I>(&mut self, out: I)
where I: IntoIterator<Item = (Version, CompilerOutput)>,

source

pub fn extend(&mut self, version: Version, output: CompilerOutput)

adds a new CompilerOutput to the aggregated output

source

pub fn write_build_infos( &self, build_info_dir: impl AsRef<Path> ) -> Result<(), SolcIoError>

Creates all BuildInfo files in the given build_info_dir

There can be multiple BuildInfo, since we support multiple versions.

The created files have the md5 hash {_format,solcVersion,solcLongVersion,input} as their file name

source

pub fn find_first( &self, contract: impl AsRef<str> ) -> Option<CompactContractRef<'_>>

Finds the first contract with the given name

§Example
use ethers_solc::Project;
use ethers_solc::artifacts::*;
let output = project.compile().unwrap().output();
let contract = output.find_first("Greeter").unwrap();
source

pub fn remove_first(&mut self, contract: impl AsRef<str>) -> Option<Contract>

Removes the first contract with the given name from the set

§Example
use ethers_solc::Project;
use ethers_solc::artifacts::*;
let mut output = project.compile().unwrap().output();
let contract = output.remove_first("Greeter").unwrap();
source

pub fn remove( &mut self, path: impl AsRef<str>, contract: impl AsRef<str> ) -> Option<Contract>

Removes the contract with matching path and name

§Example
use ethers_solc::Project;
use ethers_solc::artifacts::*;
let mut output = project.compile().unwrap().output();
let contract = output.remove("src/Greeter.sol", "Greeter").unwrap();
source

pub fn remove_contract<'a>( &mut self, info: impl Into<ContractInfoRef<'a>> ) -> Option<Contract>

Removes the contract with matching path and name using the <path>:<contractname> pattern where path is optional.

If the path segment is None, then the first matching Contract is returned, see Self::remove_first

§Example
use ethers_solc::Project;
use ethers_solc::artifacts::*;
use ethers_solc::info::ContractInfo;
let mut output = project.compile().unwrap().output();
let info = ContractInfo::new("src/Greeter.sol:Greeter");
let contract = output.remove_contract(&info).unwrap();
source

pub fn contracts_iter(&self) -> impl Iterator<Item = (&String, &Contract)>

Iterate over all contracts and their names

source

pub fn contracts_into_iter(self) -> impl Iterator<Item = (String, Contract)>

Iterate over all contracts and their names

source

pub fn contracts_with_files_iter( &self ) -> impl Iterator<Item = (&String, &String, &Contract)>

Returns an iterator over (file, name, Contract)

source

pub fn contracts_with_files_into_iter( self ) -> impl Iterator<Item = (String, String, Contract)>

Returns an iterator over (file, name, Contract)

source

pub fn contracts_with_files_and_version_iter( &self ) -> impl Iterator<Item = (&String, &String, &Contract, &Version)>

Returns an iterator over (file, name, Contract, Version)

source

pub fn contracts_with_files_and_version_into_iter( self ) -> impl Iterator<Item = (String, String, Contract, Version)>

Returns an iterator over (file, name, Contract, Version)

source

pub fn get( &self, path: impl AsRef<str>, contract: impl AsRef<str> ) -> Option<CompactContractRef<'_>>

Given the contract file’s path and the contract’s name, tries to return the contract’s bytecode, runtime bytecode, and abi

§Example
use ethers_solc::Project;
use ethers_solc::artifacts::*;
let output = project.compile().unwrap().output();
let contract = output.get("src/Greeter.sol", "Greeter").unwrap();
source

pub fn split(self) -> (VersionedSourceFiles, VersionedContracts)

Returns the output’s source files and contracts separately, wrapped in helper types that provide several helper methods

§Example
use ethers_solc::Project;
let output = project.compile().unwrap().output();
let (sources, contracts) = output.split();
source

pub fn join_all(&mut self, root: impl AsRef<Path>) -> &mut Self

Joins all file path with root

source

pub fn with_stripped_file_prefixes(self, base: impl AsRef<Path>) -> Self

Strips the given prefix from all file paths to make them relative to the given base argument.

Convenience method for Self::strip_prefix_all() that consumes the type.

§Example

Make all sources and contracts relative to the project’s root directory

use ethers_solc::Project;

let project = Project::builder().build().unwrap();
let output = project.compile().unwrap().output().with_stripped_file_prefixes(project.root());
source

pub fn strip_prefix_all(&mut self, base: impl AsRef<Path>) -> &mut Self

Removes base from all contract paths

Trait Implementations§

source§

impl Clone for AggregatedCompilerOutput

source§

fn clone(&self) -> AggregatedCompilerOutput

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for AggregatedCompilerOutput

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for AggregatedCompilerOutput

source§

fn default() -> AggregatedCompilerOutput

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for AggregatedCompilerOutput

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl PartialEq for AggregatedCompilerOutput

source§

fn eq(&self, other: &AggregatedCompilerOutput) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for AggregatedCompilerOutput

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StructuralPartialEq for AggregatedCompilerOutput

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

source§

impl<T> JsonSchemaMaybe for T