1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#![crate_name = "adbfbinlib"]
#![crate_type = "lib"]
pub mod common;
pub mod ctrl;
pub mod data;
pub mod forwarder;
pub mod net;
pub mod shared;
#[macro_use]
extern crate log;
#[macro_use]
extern crate serde_derive;
#[macro_use]
extern crate lazy_static;
use std::{error, fmt, io};
#[derive(Copy, Clone, Debug)]
pub struct AdbflibError;
impl fmt::Display for AdbflibError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "Error with adbfbinlib this page.")
}
}
impl error::Error for AdbflibError {}
impl From<io::Error> for AdbflibError {
fn from(_: io::Error) -> Self {
Self
}
}
pub async fn file_count_good(input_path: Vec<String>) -> Result<u32, AdbflibError> {
Ok(forwarder::ffi_file_count_good(input_path))
}
pub fn get_own_peer() -> u64 {
net::subs::peer_representation::peer_to_hash(&net::subs::key_keeper::get_p2p_server_id())
}
pub async fn get_ui_messages() -> Result<String, AdbflibError> {
Ok(forwarder::ffi_ui_messages_as_json().await)
}