clvm_tools_rs 0.4.0

tools for working with chialisp language; compiler, repl, python and wasm bindings
Documentation
use std::fmt::Display;

use clvm_rs::allocator::{Allocator, NodePtr, SExp};

use crate::classic::clvm::__type_compatibility__::{sha256, Bytes, BytesFromType};

#[derive(Clone, Debug, PartialEq, Eq, Hash)]
pub struct TreeHash {
    s: String,
}

impl Display for TreeHash {
    fn fmt(&self, formatter: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        formatter.write_str(&self.s)
    }
}

impl TreeHash {
    pub fn new_from_sexp(allocator: &mut Allocator, r: NodePtr) -> Self {
        TreeHash {
            s: sha256tree(allocator, r).hex(),
        }
    }
}

pub fn sha256tree(allocator: &mut Allocator, v: NodePtr) -> Bytes {
    match allocator.sexp(v) {
        SExp::Pair(l, r) => {
            let left = sha256tree(allocator, l);
            let right = sha256tree(allocator, r);
            sha256(
                Bytes::new(Some(BytesFromType::Raw(vec![2])))
                    .concat(&left)
                    .concat(&right),
            )
        }
        SExp::Atom => {
            let atom = allocator.atom(v);
            sha256(
                Bytes::new(Some(BytesFromType::Raw(vec![1]))).concat(&Bytes::new(Some(
                    // only v in scope.
                    BytesFromType::Raw(atom.as_ref().to_vec()),
                ))),
            )
        }
    }
}