bloom possibilities in progress
This commit is contained in:
@@ -18,40 +18,95 @@ use serde::{Deserialize, Deserializer, Error};
|
||||
use serde_json::value;
|
||||
use jsonrpc_core::Value;
|
||||
use util::hash::*;
|
||||
use util::sha3::*;
|
||||
use v1::types::BlockNumber;
|
||||
|
||||
#[derive(Debug, PartialEq)]
|
||||
pub enum Topic {
|
||||
Single(H256),
|
||||
Multiple(Vec<H256>),
|
||||
pub enum VariadicValue<T> where T: Deserialize {
|
||||
Single(T),
|
||||
Multiple(Vec<T>),
|
||||
Null
|
||||
}
|
||||
|
||||
impl Deserialize for Topic {
|
||||
fn deserialize<D>(deserializer: &mut D) -> Result<Topic, D::Error>
|
||||
impl<T> Deserialize for VariadicValue<T> where T: Deserialize {
|
||||
fn deserialize<D>(deserializer: &mut D) -> Result<VariadicValue<T>, D::Error>
|
||||
where D: Deserializer {
|
||||
let v = try!(Value::deserialize(deserializer));
|
||||
|
||||
if v.is_null() {
|
||||
return Ok(Topic::Null);
|
||||
return Ok(VariadicValue::Null);
|
||||
}
|
||||
|
||||
Deserialize::deserialize(&mut value::Deserializer::new(v.clone())).map(Topic::Single)
|
||||
.or_else(|_| Deserialize::deserialize(&mut value::Deserializer::new(v.clone())).map(Topic::Multiple))
|
||||
Deserialize::deserialize(&mut value::Deserializer::new(v.clone())).map(VariadicValue::Single)
|
||||
.or_else(|_| Deserialize::deserialize(&mut value::Deserializer::new(v.clone())).map(VariadicValue::Multiple))
|
||||
.map_err(|_| Error::syntax("")) // unreachable, but types must match
|
||||
}
|
||||
}
|
||||
|
||||
pub type FilterAddress = VariadicValue<Address>;
|
||||
pub type Topic = VariadicValue<H256>;
|
||||
|
||||
#[derive(Debug, PartialEq, Deserialize)]
|
||||
pub struct Filter {
|
||||
#[serde(rename="fromBlock")]
|
||||
pub from_block: Option<BlockNumber>,
|
||||
#[serde(rename="toBlock")]
|
||||
pub to_block: Option<BlockNumber>,
|
||||
pub address: Option<Address>,
|
||||
pub address: Option<FilterAddress>,
|
||||
pub topics: Option<Vec<Topic>>
|
||||
}
|
||||
|
||||
impl Filter {
|
||||
/// Returns combinations of each of address topic.
|
||||
pub fn bloom_possibilities(&self) -> Vec<H2048> {
|
||||
let blooms = match self.address {
|
||||
Some(VariadicValue::Single(ref address)) => {
|
||||
let mut bloom = H2048::new();
|
||||
bloom.shift_bloomed(&address.sha3());
|
||||
vec![bloom]
|
||||
},
|
||||
Some(VariadicValue::Multiple(ref addresses)) => {
|
||||
addresses.iter().map(|ref address| {
|
||||
let mut bloom = H2048::new();
|
||||
bloom.shift_bloomed(&address.sha3());
|
||||
bloom
|
||||
}).collect()
|
||||
},
|
||||
_ => vec![H2048::new()]
|
||||
};
|
||||
|
||||
match self.topics {
|
||||
None => blooms,
|
||||
Some(ref topics) => blooms.into_iter().map(|bloom| {
|
||||
//for topic in topics {
|
||||
//match topic {
|
||||
//VariadicValue::Single => {
|
||||
//bloom.shift_bloomed(&topic.sha3());
|
||||
//bloom
|
||||
//}
|
||||
//}
|
||||
//}
|
||||
}).collect()
|
||||
}
|
||||
//self.address.as_ref().map(|a| match *a {
|
||||
//VariadicValue::Single(ref address) => {
|
||||
//let mut bloom = H2048::new();
|
||||
//bloom.shift_bloomed(&address.sha3());
|
||||
//vec![bloom]
|
||||
//},
|
||||
//VariadicValue::Multiple(ref addresses) => {
|
||||
//addresses.iter().map(|ref address| {
|
||||
//let mut bloom = H2048::new();
|
||||
//bloom.shift_bloomed(&address.sha3());
|
||||
//bloom
|
||||
//}).collect()
|
||||
//},
|
||||
//VariadicValue::Null => vec![H2048::new()]
|
||||
//}.into_iter().map(|bloom| match self. {
|
||||
//}).unwrap_or_else(Vec::new)
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use serde_json;
|
||||
@@ -65,9 +120,9 @@ mod tests {
|
||||
let s = r#"["0x000000000000000000000000a94f5374fce5edbc8e2a8697c15331677e6ebf0b", null, ["0x000000000000000000000000a94f5374fce5edbc8e2a8697c15331677e6ebf0b", "0x0000000000000000000000000aff3454fce5edbc8cca8697c15331677e6ebccc"]]"#;
|
||||
let deserialized: Vec<Topic> = serde_json::from_str(s).unwrap();
|
||||
assert_eq!(deserialized, vec![
|
||||
Topic::Single(H256::from_str("000000000000000000000000a94f5374fce5edbc8e2a8697c15331677e6ebf0b").unwrap()),
|
||||
Topic::Null,
|
||||
Topic::Multiple(vec![
|
||||
VariadicValue::Single(H256::from_str("000000000000000000000000a94f5374fce5edbc8e2a8697c15331677e6ebf0b").unwrap()),
|
||||
VariadicValue::Null,
|
||||
VariadicValue::Multiple(vec![
|
||||
H256::from_str("000000000000000000000000a94f5374fce5edbc8e2a8697c15331677e6ebf0b").unwrap(),
|
||||
H256::from_str("0000000000000000000000000aff3454fce5edbc8cca8697c15331677e6ebccc").unwrap()
|
||||
])
|
||||
|
||||
Reference in New Issue
Block a user