difftreelog
feat eth abi coder
in: master
2 files changed
pallets/nft/src/eth/abi.rsdiffbeforeafterboth--- /dev/null
+++ b/pallets/nft/src/eth/abi.rs
@@ -0,0 +1,204 @@
+//! TODO: I misunterstood therminology, abi IS rlp encoded, so
+//! this module should be replaced with rlp crate
+
+use sp_core::H160;
+
+#[cfg(feature = "std")]
+use std;
+#[cfg(not(feature = "std"))]
+use sp_std as std;
+
+use std::vec::Vec;
+
+const ABI_ALIGNMENT: usize = 32;
+
+type Result<T> = std::result::Result<T, &'static str>;
+
+pub struct AbiReader<'i> {
+ buf: &'i [u8],
+ offset: usize,
+}
+impl<'i> AbiReader<'i> {
+ pub fn new_call(buf: &'i [u8]) -> Result<(u32, Self)> {
+ if buf.len() < 4 {
+ return Err("missing method id")
+ }
+ let mut method_id = [0; 4];
+ method_id.copy_from_slice(&buf[0..4]);
+
+ Ok((u32::from_be_bytes(method_id), Self {
+ buf,
+ offset: 4,
+ }))
+ }
+
+ fn read_padleft<const S: usize>(&mut self) -> Result<[u8; S]> {
+ if self.buf.len() - self.offset < 32 {
+ return Err("missing padding")
+ }
+ let mut block = [0; S];
+ // Verify padding is empty
+ if !self.buf[self.offset..self.offset + ABI_ALIGNMENT - S].iter().all(|&v| v == 0) {
+ return Err("non zero padding (wrong types?)")
+ }
+ block.copy_from_slice(&self.buf[self.offset + ABI_ALIGNMENT - S..self.offset + ABI_ALIGNMENT]);
+ self.offset += ABI_ALIGNMENT;
+ Ok(block)
+ }
+
+ pub fn address(&mut self) -> Result<H160> {
+ Ok(H160(self.read_padleft()?))
+ }
+
+ pub fn uint32(&mut self) -> Result<u32> {
+ Ok(u32::from_be_bytes(self.read_padleft()?))
+ }
+
+ pub fn uint128(&mut self) -> Result<u128> {
+ Ok(u128::from_be_bytes(self.read_padleft()?))
+ }
+
+ pub fn uint256(&mut self) -> Result<u128> {
+ self.uint128()
+ }
+
+ pub fn uint64(&mut self) -> Result<usize> {
+ Ok(usize::from_be_bytes(self.read_padleft()?))
+ }
+
+ fn subresult(&mut self) -> Result<AbiReader<'i>> {
+ let offset = self.uint64()?;
+ if offset > usize::MAX {
+ return Err("subresult overflow");
+ }
+ Ok(AbiReader {
+ buf: &self.buf,
+ offset: offset + self.offset,
+ })
+ }
+
+ pub fn is_finished(&self) -> bool {
+ self.buf.len() == self.offset
+ }
+}
+
+pub struct AbiWriter {
+ static_part: Vec<u8>,
+ dynamic_part: Vec<(usize, AbiWriter)>,
+}
+impl AbiWriter {
+ pub fn new() -> Self {
+ Self {
+ static_part: Vec::new(),
+ dynamic_part: Vec::new(),
+ }
+ }
+ pub fn new_call(method_id: u32) -> Self {
+ let mut val = Self::new();
+ val.static_part.extend(&method_id.to_be_bytes());
+ val
+ }
+
+ fn write_padleft(&mut self, block: &[u8]) {
+ assert!(block.len() <= ABI_ALIGNMENT);
+ self.static_part.extend(&[0; ABI_ALIGNMENT][0..ABI_ALIGNMENT - block.len()]);
+ self.static_part.extend(block);
+ }
+
+ fn write_padright(&mut self, bytes: &[u8]) {
+ assert!(bytes.len() <= ABI_ALIGNMENT);
+ self.static_part.extend(bytes);
+ self.static_part.extend(&[0; ABI_ALIGNMENT][0..ABI_ALIGNMENT - bytes.len()]);
+ }
+
+ pub fn address(&mut self, address: H160) {
+ self.write_padleft(&address.0)
+ }
+
+ pub fn bool(&mut self, value: bool) {
+ self.write_padleft(&[if value { 1 } else { 0 }])
+ }
+
+ pub fn uint8(&mut self, value: u8) {
+ self.write_padleft(&[value])
+ }
+
+ pub fn uint128(&mut self, value: u128) {
+ self.write_padleft(&u128::to_be_bytes(value))
+ }
+
+ /// This method writes u128, and exists only for convenience, because there is
+ /// no u256 support in rust
+ pub fn uint256(&mut self, value: u128) {
+ self.uint128(value)
+ }
+
+ pub fn write_usize(&mut self, value: usize) {
+ self.write_padleft(&usize::to_be_bytes(value))
+ }
+
+ pub fn write_u8(&mut self, value: u8) {
+ self.write_padleft(&[value])
+ }
+
+ pub fn write_subresult(&mut self, result: Self) {
+ self.dynamic_part.push((self.static_part.len(), result));
+ // Empty block, to be filled later
+ self.write_padleft(&[]);
+ }
+
+ pub fn memory(&mut self, value: &[u8]) {
+ let mut sub = Self::new();
+ sub.write_usize(value.len());
+ for chunk in value.chunks(ABI_ALIGNMENT) {
+ sub.write_padright(chunk);
+ }
+ self.write_subresult(sub);
+ }
+
+ pub fn string(&mut self, value: &str) {
+ self.memory(value.as_bytes())
+ }
+
+ pub fn finish(mut self) -> Vec<u8> {
+ for (static_offset, part) in self.dynamic_part {
+ let part_offset = self.static_part.len();
+
+ let encoded_dynamic_offset = usize::to_be_bytes(part_offset - static_offset);
+ self.static_part
+ [static_offset + ABI_ALIGNMENT - encoded_dynamic_offset.len()..static_offset + ABI_ALIGNMENT]
+ .copy_from_slice(&encoded_dynamic_offset);
+ self.static_part.extend(part.finish())
+ }
+ self.static_part
+ }
+}
+
+#[macro_export]
+macro_rules! abi_decode {
+ ($reader:expr, $($name:ident: $typ:ident),+ $(,)?) => {
+ $(
+ let $name = $reader.$typ()?;
+ )+
+ }
+}
+
+#[macro_export]
+macro_rules! abi_encode {
+ ($($typ:ident($value:expr)),* $(,)?) => {{
+ #[allow(unused_mut)]
+ let mut writer = crate::eth::abi::AbiWriter::new();
+ $(
+ writer.$typ($value);
+ )*
+ writer
+ }};
+ (call $val:expr; $($typ:ident($value:expr)),* $(,)?) => {{
+ #[allow(unused_mut)]
+ let mut writer = AbiWriter::new_call($val);
+ $(
+ writer.$typ($value);
+ )*
+ writer
+ }}
+}
\ No newline at end of file
pallets/nft/src/eth/mod.rsdiffbeforeafterboth1pub mod account;1pub mod account;2use account::CrossAccountId;2use account::CrossAccountId;3pub mod abi;4use abi::{AbiReader, AbiWriter};356