2016-01-11 13:29:15 +01:00
|
|
|
use util::*;
|
|
|
|
use basic_types::LogBloom;
|
|
|
|
|
2016-02-03 13:20:32 +01:00
|
|
|
/// A record of execution for a `LOG` operation.
|
2016-01-26 19:18:22 +01:00
|
|
|
#[derive(Default, Debug, Clone, PartialEq, Eq)]
|
2016-01-11 13:29:15 +01:00
|
|
|
pub struct LogEntry {
|
2016-02-03 13:20:32 +01:00
|
|
|
/// The address of the contract executing at the point of the `LOG` operation.
|
2016-01-11 13:29:15 +01:00
|
|
|
pub address: Address,
|
2016-02-03 13:20:32 +01:00
|
|
|
/// The topics associated with the `LOG` operation.
|
2016-01-11 13:29:15 +01:00
|
|
|
pub topics: Vec<H256>,
|
2016-02-03 13:20:32 +01:00
|
|
|
/// The data associated with the `LOG` operation.
|
2016-01-11 13:29:15 +01:00
|
|
|
pub data: Bytes,
|
|
|
|
}
|
|
|
|
|
2016-01-27 17:22:01 +01:00
|
|
|
impl Encodable for LogEntry {
|
2016-01-11 13:29:15 +01:00
|
|
|
fn rlp_append(&self, s: &mut RlpStream) {
|
2016-01-27 17:22:01 +01:00
|
|
|
s.begin_list(3);
|
2016-01-11 13:29:15 +01:00
|
|
|
s.append(&self.address);
|
2016-01-28 20:13:05 +01:00
|
|
|
s.append(&self.topics);
|
2016-01-11 13:29:15 +01:00
|
|
|
s.append(&self.data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl LogEntry {
|
|
|
|
/// Create a new log entry.
|
|
|
|
pub fn new(address: Address, topics: Vec<H256>, data: Bytes) -> LogEntry {
|
|
|
|
LogEntry {
|
|
|
|
address: address,
|
|
|
|
topics: topics,
|
|
|
|
data: data
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-14 12:27:35 +01:00
|
|
|
/// Calculates the bloom of this log entry.
|
|
|
|
pub fn bloom(&self) -> LogBloom {
|
|
|
|
self.topics.iter().fold(LogBloom::from_bloomed(&self.address.sha3()), |b, t| b.with_bloomed(&t.sha3()))
|
|
|
|
}
|
2016-01-11 13:29:15 +01:00
|
|
|
}
|
|
|
|
|
2016-01-14 21:58:37 +01:00
|
|
|
impl FromJson for LogEntry {
|
|
|
|
/// Convert given JSON object to a LogEntry.
|
|
|
|
fn from_json(json: &Json) -> LogEntry {
|
|
|
|
// TODO: check bloom.
|
|
|
|
LogEntry {
|
|
|
|
address: xjson!(&json["address"]),
|
|
|
|
topics: xjson!(&json["topics"]),
|
|
|
|
data: xjson!(&json["data"]),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-11 13:29:15 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use util::*;
|
|
|
|
use super::LogEntry;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_empty_log_bloom() {
|
|
|
|
let bloom = H2048::from_str("00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000").unwrap();
|
|
|
|
let address = Address::from_str("0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6").unwrap();
|
|
|
|
let log = LogEntry::new(address, vec![], vec![]);
|
|
|
|
assert_eq!(log.bloom(), bloom);
|
|
|
|
}
|
2016-01-12 13:39:12 +01:00
|
|
|
}
|