grin/p2p/src/store.rs

115 lines
3.2 KiB
Rust
Raw Normal View History

// Copyright 2016 The Grin Developers
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//! Storage implementation for peer data.
use std::net::SocketAddr;
use num::FromPrimitive;
use core::ser::{self, Readable, Writeable, Reader, Writer};
use grin_store::{self, Error, to_key};
use msg::SockAddr;
use types::Capabilities;
const STORE_SUBPATH: &'static str = "peers";
const PEER_PREFIX: u8 = 'p' as u8;
/// Types of messages
enum_from_primitive! {
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum State {
Healthy,
Banned,
Dead,
}
}
pub struct PeerData {
pub addr: SocketAddr,
pub capabilities: Capabilities,
pub user_agent: String,
2017-02-10 07:16:34 +03:00
pub flags: State,
}
impl Writeable for PeerData {
fn write(&self, writer: &mut Writer) -> Result<(), ser::Error> {
SockAddr(self.addr).write(writer)?;
ser_multiwrite!(writer,
[write_u32, self.capabilities.bits()],
[write_bytes, &self.user_agent],
2017-02-10 07:16:34 +03:00
[write_u8, self.flags as u8]);
Ok(())
}
}
impl Readable<PeerData> for PeerData {
fn read(reader: &mut Reader) -> Result<PeerData, ser::Error> {
let addr = SockAddr::read(reader)?;
let (capab, ua, fl) = ser_multiread!(reader, read_u32, read_vec, read_u8);
let user_agent = String::from_utf8(ua).map_err(|_| ser::Error::CorruptedData)?;
let capabilities = Capabilities::from_bits(capab).ok_or(ser::Error::CorruptedData)?;
2017-02-10 07:16:34 +03:00
match State::from_u8(fl) {
Some(flags) => {
Ok(PeerData {
2017-02-10 07:16:34 +03:00
addr: addr.0,
capabilities: capabilities,
user_agent: user_agent,
flags: flags,
})
}
None => Err(ser::Error::CorruptedData),
2017-02-10 07:16:34 +03:00
}
}
}
pub struct PeerStore {
db: grin_store::Store,
}
impl PeerStore {
pub fn new(root_path: String) -> Result<PeerStore, Error> {
let db = grin_store::Store::open(format!("{}/{}", root_path, STORE_SUBPATH).as_str())?;
Ok(PeerStore { db: db })
2017-02-10 07:16:34 +03:00
}
pub fn save_peer(&self, p: &PeerData) -> Result<(), Error> {
2017-02-10 07:16:34 +03:00
self.db.put_ser(&to_key(PEER_PREFIX, &mut format!("{}", p.addr).into_bytes())[..],
p)
}
pub fn exists_peer(&self, peer_addr: SocketAddr) -> Result<bool, Error> {
self.db.exists(&to_key(PEER_PREFIX, &mut format!("{}", peer_addr).into_bytes())[..])
}
2017-02-10 07:16:34 +03:00
pub fn delete_peer(&self, peer_addr: SocketAddr) -> Result<(), Error> {
self.db.delete(&to_key(PEER_PREFIX, &mut format!("{}", peer_addr).into_bytes())[..])
2017-02-10 07:16:34 +03:00
}
pub fn find_peers(&self, state: State, cap: Capabilities, count: usize) -> Vec<PeerData> {
2017-02-10 07:16:34 +03:00
let peers_iter = self.db
.iter::<PeerData>(&to_key(PEER_PREFIX, &mut "".to_string().into_bytes()));
2017-02-10 07:16:34 +03:00
let mut peers = Vec::with_capacity(count);
for p in peers_iter {
if p.flags == state && p.capabilities.contains(cap) {
peers.push(p);
}
if peers.len() >= count {
break;
}
}
peers
}
}