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
//! The adbfbinlib is a LIB and a facade to many modules that interact with
//! the audiobookfinder program.
//! In this file all crates are name before the modules which use them.
#![crate_name = "adbfbinlib"]
#![crate_type = "lib"]
// ALL
pub mod common;
pub mod ctrl;
pub mod data;
pub mod forwarder;
pub mod net;
pub mod shared;

//logger
#[macro_use]
extern crate log;

// data
#[macro_use]
extern crate serde_derive;

// config
#[macro_use]
extern crate lazy_static;

use std::{error, fmt, io};

/// A useless Error just for the Demo
#[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
    }
}

/// the library interface for returning number of audio files found
pub async fn file_count_good(input_path: Vec<String>) -> Result<u32, AdbflibError> {
    Ok(forwarder::ffi_file_count_good(input_path))
}

/// the library interface for returning own peer id
pub fn get_own_peer() -> u64 {
    net::subs::peer_representation::peer_to_hash(&net::subs::key_keeper::get_p2p_server_id())
}

/// the library interface for returning ui messages
pub async fn get_ui_messages() -> Result<String, AdbflibError> {
    Ok(forwarder::ffi_ui_messages_as_json().await)
}