246 lines
6.8 KiB
Rust
246 lines
6.8 KiB
Rust
use std::net::SocketAddr;
|
|
use std::sync::Arc;
|
|
|
|
use dht::{Dht, DhtStats};
|
|
use parking_lot::RwLock;
|
|
use serde::Serialize;
|
|
use std::time::{Duration, Instant};
|
|
use warp::Filter;
|
|
|
|
use crate::torrent_manager::TorrentManagerHandle;
|
|
use crate::torrent_state::StatsSnapshot;
|
|
|
|
struct ApiInternal {
|
|
dht: Option<Dht>,
|
|
startup_time: Instant,
|
|
torrent_managers: RwLock<Vec<TorrentManagerHandle>>,
|
|
}
|
|
|
|
impl ApiInternal {
|
|
fn new(dht: Option<Dht>) -> Self {
|
|
Self {
|
|
dht,
|
|
startup_time: Instant::now(),
|
|
torrent_managers: RwLock::new(Vec::new()),
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(Serialize)]
|
|
struct Speed {
|
|
mbps: f64,
|
|
human_readable: String,
|
|
}
|
|
|
|
impl Speed {
|
|
fn new(mbps: f64) -> Self {
|
|
Self {
|
|
mbps,
|
|
human_readable: format!("{:.2}Mbps", mbps),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl From<f64> for Speed {
|
|
fn from(mbps: f64) -> Self {
|
|
Self::new(mbps)
|
|
}
|
|
}
|
|
|
|
#[derive(Serialize)]
|
|
struct TorrentListResponseItem {
|
|
id: usize,
|
|
info_hash: String,
|
|
}
|
|
|
|
#[derive(Serialize)]
|
|
struct TorrentListResponse {
|
|
torrents: Vec<TorrentListResponseItem>,
|
|
}
|
|
|
|
#[derive(Serialize)]
|
|
struct TorrentDetailsResponseFile {
|
|
name: Option<String>,
|
|
length: u64,
|
|
}
|
|
|
|
#[derive(Serialize)]
|
|
struct TorrentDetailsResponse {
|
|
info_hash: String,
|
|
files: Vec<TorrentDetailsResponseFile>,
|
|
}
|
|
|
|
#[derive(Serialize)]
|
|
struct StatsResponse {
|
|
snapshot: StatsSnapshot,
|
|
average_piece_download_time: Option<Duration>,
|
|
download_speed: Speed,
|
|
all_time_download_speed: Speed,
|
|
time_remaining: Option<Duration>,
|
|
}
|
|
|
|
impl ApiInternal {
|
|
fn mgr_handle(&self, idx: usize) -> Option<TorrentManagerHandle> {
|
|
self.torrent_managers.read().get(idx).cloned()
|
|
}
|
|
|
|
fn api_torrent_list(&self) -> TorrentListResponse {
|
|
TorrentListResponse {
|
|
torrents: self
|
|
.torrent_managers
|
|
.read()
|
|
.iter()
|
|
.enumerate()
|
|
.map(|(id, mgr)| TorrentListResponseItem {
|
|
id,
|
|
info_hash: mgr.torrent_state().info_hash().as_string(),
|
|
})
|
|
.collect(),
|
|
}
|
|
}
|
|
|
|
fn api_torrent_details(&self, idx: usize) -> Option<TorrentDetailsResponse> {
|
|
let handle = self.mgr_handle(idx)?;
|
|
let info_hash = handle.torrent_state().info_hash().as_string();
|
|
let files = handle
|
|
.torrent_state()
|
|
.info()
|
|
.iter_filenames_and_lengths()
|
|
.map(|(filename_it, length)| {
|
|
let name = filename_it.to_string().ok();
|
|
TorrentDetailsResponseFile { name, length }
|
|
})
|
|
.collect();
|
|
Some(TorrentDetailsResponse { info_hash, files })
|
|
}
|
|
|
|
fn api_dht_stats(&self) -> Option<DhtStats> {
|
|
self.dht.as_ref().map(|d| d.stats())
|
|
}
|
|
|
|
fn api_stats(&self, idx: usize) -> Option<StatsResponse> {
|
|
let mgr = self.mgr_handle(idx)?;
|
|
let snapshot = mgr.torrent_state().stats_snapshot();
|
|
let estimator = mgr.speed_estimator();
|
|
|
|
// Poor mans download speed computation
|
|
let elapsed = self.startup_time.elapsed();
|
|
let downloaded_bytes = snapshot.downloaded_and_checked_bytes;
|
|
let downloaded_mb = downloaded_bytes as f64 / 1024f64 / 1024f64;
|
|
|
|
Some(StatsResponse {
|
|
average_piece_download_time: snapshot.average_piece_download_time(),
|
|
snapshot,
|
|
all_time_download_speed: (downloaded_mb / elapsed.as_secs_f64()).into(),
|
|
download_speed: estimator.download_mbps().into(),
|
|
time_remaining: estimator.time_remaining(),
|
|
})
|
|
}
|
|
|
|
fn api_dump_haves(&self, idx: usize) -> Option<String> {
|
|
let mgr = self.mgr_handle(idx)?;
|
|
Some(format!(
|
|
"{:?}",
|
|
mgr.torrent_state().lock_read().chunks.get_have_pieces(),
|
|
))
|
|
}
|
|
}
|
|
|
|
#[derive(Clone)]
|
|
pub struct HttpApi {
|
|
inner: Arc<ApiInternal>,
|
|
}
|
|
|
|
fn json_response<T: Serialize>(v: T) -> warp::reply::Response {
|
|
let body = serde_json::to_string_pretty(&v).unwrap();
|
|
let mut response = warp::reply::Response::new(body.into());
|
|
response.headers_mut().insert(
|
|
"content-type",
|
|
warp::http::HeaderValue::from_static("application/json"),
|
|
);
|
|
response
|
|
}
|
|
|
|
fn not_found_response(body: String) -> warp::reply::Response {
|
|
let mut response = warp::reply::Response::new(body.into());
|
|
*response.status_mut() = warp::http::StatusCode::NOT_FOUND;
|
|
response
|
|
}
|
|
|
|
fn torrent_not_found_response(idx: usize) -> warp::reply::Response {
|
|
not_found_response(format!("torrent {} not found", idx))
|
|
}
|
|
|
|
fn json_or_404<T: Serialize>(idx: usize, v: Option<T>) -> warp::reply::Response {
|
|
match v {
|
|
Some(v) => json_response(v),
|
|
None => torrent_not_found_response(idx),
|
|
}
|
|
}
|
|
|
|
impl HttpApi {
|
|
pub fn new(dht: Option<Dht>) -> Self {
|
|
Self {
|
|
inner: Arc::new(ApiInternal::new(dht)),
|
|
}
|
|
}
|
|
pub fn add_mgr(&self, handle: TorrentManagerHandle) -> usize {
|
|
let mut g = self.inner.torrent_managers.write();
|
|
let idx = g.len();
|
|
g.push(handle);
|
|
idx
|
|
}
|
|
|
|
pub async fn make_http_api_and_run(self, addr: SocketAddr) -> anyhow::Result<()> {
|
|
let inner = self.inner;
|
|
|
|
let list = warp::path::end().map({
|
|
let inner = inner.clone();
|
|
move || json_response(inner.api_torrent_list())
|
|
});
|
|
|
|
let dht_stats = warp::path!("dht" / "stats").map({
|
|
let inner = inner.clone();
|
|
move || match inner.api_dht_stats() {
|
|
Some(stats) => json_response(stats),
|
|
None => not_found_response("DHT is off".into()),
|
|
}
|
|
});
|
|
|
|
let dht_routing_table = warp::path!("dht" / "table").map({
|
|
let inner = inner.clone();
|
|
|
|
// clippy suggests something that doesn't work here.
|
|
#[allow(clippy::redundant_closure)]
|
|
move || match inner.dht.as_ref() {
|
|
Some(dht) => dht.with_routing_table(|r| json_response(r)),
|
|
None => not_found_response("DHT is off".into()),
|
|
}
|
|
});
|
|
|
|
let torrent_details = warp::path!(usize).map({
|
|
let inner = inner.clone();
|
|
move |idx| json_or_404(idx, inner.api_torrent_details(idx))
|
|
});
|
|
|
|
let dump_haves = warp::path!(usize / "haves").map({
|
|
let inner = inner.clone();
|
|
move |idx| json_or_404(idx, inner.api_dump_haves(idx))
|
|
});
|
|
|
|
let dump_stats = warp::path!(usize / "stats").map({
|
|
let inner = inner.clone();
|
|
move |idx| json_or_404(idx, inner.api_stats(idx))
|
|
});
|
|
|
|
let router = list
|
|
.or(dht_stats)
|
|
.or(dht_routing_table)
|
|
.or(torrent_details)
|
|
.or(dump_haves)
|
|
.or(dump_stats);
|
|
|
|
warp::serve(router).run(addr).await;
|
|
Ok(())
|
|
}
|
|
}
|