// Copyright 2015-2018 Parity Technologies (UK) Ltd. // This file is part of Parity. // Parity is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // Parity is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with Parity. If not, see . //! Ethereum blooms database extern crate byteorder; extern crate ethbloom; extern crate parking_lot; extern crate tiny_keccak; #[cfg(test)] extern crate tempdir; mod db; mod file; use std::io; use std::path::Path; use parking_lot::Mutex; /// Threadsafe API for blooms database. /// /// # Warning /// /// This database does not guarantee atomic writes. pub struct Database { database: Mutex, } impl Database { /// Creates new database handle. /// /// # Arguments /// /// * `path` - database directory pub fn open

(path: P) -> io::Result where P: AsRef { let result = Database { database: Mutex::new(db::Database::open(path)?), }; Ok(result) } /// Reopens database at the same location. pub fn reopen(&self) -> io::Result<()> { self.database.lock().reopen() } /// Inserts one or more blooms into database. /// /// # Arguments /// /// * `from` - index of the first bloom that needs to be inserted /// * `blooms` - iterator over blooms pub fn insert_blooms<'a, I, B>(&self, from: u64, blooms: I) -> io::Result<()> where ethbloom::BloomRef<'a>: From, I: Iterator { self.database.lock().insert_blooms(from, blooms) } /// Returns indexes of all headers matching given bloom in a specified range. /// /// # Arguments /// /// * `from` - index of the first bloom that needs to be checked /// * `to` - index of the last bloom that needs to be checked (inclusive range) /// * `blooms` - searched pattern pub fn filter<'a, B, I, II>(&self, from: u64, to: u64, blooms: II) -> io::Result> where ethbloom::BloomRef<'a>: From, II: IntoIterator + Copy, I: Iterator { self.database.lock() .iterate_matching(from, to, blooms)? .collect::, _>>() } }