rust-bitcoin-unsafe-fast/src/util/mod.rs

117 lines
3.0 KiB
Rust
Raw Normal View History

2014-07-18 13:56:17 +00:00
// Rust Bitcoin Library
// Written in 2014 by
// Andrew Poelstra <apoelstra@wpsoftware.net>
2014-07-18 13:56:17 +00:00
//
// To the extent possible under law, the author(s) have dedicated all
// copyright and related and neighboring rights to this software to
// the public domain worldwide. This software is distributed without
// any warranty.
//
// You should have received a copy of the CC0 Public Domain Dedication
// along with this software.
// If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
//
//! Utility functions
2014-07-18 13:56:17 +00:00
//!
//! Functions needed by all parts of the Bitcoin library
pub mod key;
pub mod address;
2018-11-10 00:45:00 +00:00
pub mod amount;
2014-08-25 06:03:47 +00:00
pub mod base58;
2016-06-24 19:15:57 +00:00
pub mod bip32;
pub mod bip143;
pub mod contracthash;
2014-07-18 13:56:17 +00:00
pub mod hash;
pub mod merkleblock;
2014-07-18 13:56:17 +00:00
pub mod misc;
pub mod psbt;
2014-07-18 13:56:17 +00:00
pub mod uint;
pub mod bip158;
2014-07-18 13:56:17 +00:00
pub(crate) mod endian;
use std::{error, fmt};
use network;
use consensus::encode;
2014-07-18 13:56:17 +00:00
/// A trait which allows numbers to act as fixed-size bit arrays
pub trait BitArray {
/// Is bit set?
fn bit(&self, idx: usize) -> bool;
/// Returns an array which is just the bits from start to end
fn bit_slice(&self, start: usize, end: usize) -> Self;
/// Bitwise and with `n` ones
fn mask(&self, n: usize) -> Self;
2014-07-18 13:56:17 +00:00
/// Trailing zeros
fn trailing_zeros(&self) -> usize;
2018-02-18 15:21:05 +00:00
/// Create all-zeros value
fn zero() -> Self;
2019-01-23 18:30:32 +00:00
/// Create value representing one
2018-02-18 15:21:05 +00:00
fn one() -> Self;
}
2014-07-18 13:56:17 +00:00
/// A general error code, other errors should implement conversions to/from this
/// if appropriate.
#[derive(Debug)]
pub enum Error {
/// Encoding error
Encode(encode::Error),
/// Network error
Network(network::Error),
/// The header hash is not below the target
2019-06-07 13:12:07 +00:00
BlockBadProofOfWork,
/// The `target` field of a block header did not match the expected difficulty
2019-06-07 13:12:07 +00:00
BlockBadTarget,
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
Error::Encode(ref e) => fmt::Display::fmt(e, f),
Error::Network(ref e) => fmt::Display::fmt(e, f),
2019-06-07 13:12:07 +00:00
Error::BlockBadProofOfWork | Error::BlockBadTarget => f.write_str(error::Error::description(self)),
}
}
}
impl error::Error for Error {
fn cause(&self) -> Option<&error::Error> {
match *self {
Error::Encode(ref e) => Some(e),
Error::Network(ref e) => Some(e),
2019-06-07 13:12:07 +00:00
Error::BlockBadProofOfWork | Error::BlockBadTarget => None
}
}
fn description(&self) -> &str {
match *self {
Error::Encode(ref e) => e.description(),
Error::Network(ref e) => e.description(),
2019-06-07 13:12:07 +00:00
Error::BlockBadProofOfWork => "block target correct but not attained",
Error::BlockBadTarget => "block target incorrect",
}
}
}
2014-07-18 13:56:17 +00:00
#[doc(hidden)]
impl From<encode::Error> for Error {
fn from(e: encode::Error) -> Error {
Error::Encode(e)
2018-03-09 20:27:13 +00:00
}
}
#[doc(hidden)]
impl From<network::Error> for Error {
fn from(e: network::Error) -> Error {
Error::Network(e)
2018-03-09 20:27:13 +00:00
}
}