Skip to content

Commit 8844e4c

Browse files
committed
router integration wip
1 parent 8682277 commit 8844e4c

File tree

5 files changed

+66
-2
lines changed

5 files changed

+66
-2
lines changed

STANCE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
Ultimately, ouverture is just a tool to help users manage and listen to their music collection. While it _can_ certainly be used to acquire DRM-protected content, so can many many other tools, such as [youtube-dl](https://github.com/ytdl-org/youtube-dl), and there are legal [precedent](https://github.blog/2020-11-16-standing-up-for-developers-youtube-dl-is-back/) in favor of the existence of such tools.
44

55

6-
While ouverture will do its best to not provide DRM-infringing defaults, it will neither implement mechanisms to prevent such usage, as per my (lead developper) personal opinion, although [thinly supported](https://qr.ae/pyJCdz), with regards to the actual revenues online services pay creators.
6+
While ouverture will do its best to not provide DRM-infringing defaults, it will neither implement mechanisms to prevent such usage, as per my (lead developper) personal opinion, although [thinly supported](https://qr.ae/pyJCdz), with regards to the actual revenues online services pay creators. Ouverture shall (at some point) provide convenient ways of directly supporting the creators.

ouverture-core/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ infer = "0.7"
5353
symphonia = { version = "0.5.2", features= ["all"]}
5454

5555
rc_event_queue = "0.4.2"
56+
axum="0.7.3"
5657

5758

5859
[target.'cfg(target_os = "linux")'.dependencies]

ouverture-core/src/api_router.rs

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
use std::net::{SocketAddr};
2+
use log::debug;
3+
use tokio::{net::{TcpListener, TcpStream}, task::JoinHandle};
4+
5+
use std::sync::{Arc, Mutex};
6+
use crate::server::Server;
7+
8+
use axum::{
9+
routing::{get, post},
10+
http::StatusCode,
11+
Json, Router,
12+
};
13+
use serde::{Deserialize, Serialize};
14+
15+
pub struct RouterTask{
16+
pub addr: SocketAddr,
17+
handle: JoinHandle<()>,
18+
stop: Arc<Mutex<bool>>
19+
}
20+
21+
pub async fn start_router() -> RouterTask {
22+
23+
let listener = TcpListener::bind("127.0.0.1:0").await.unwrap();
24+
25+
let addr = listener.local_addr().unwrap().clone();
26+
27+
let handle = tokio::spawn(async move {router(listener).await});
28+
29+
RouterTask {
30+
addr,
31+
handle,
32+
stop: Arc::new(Mutex::new(false))
33+
}
34+
35+
}
36+
37+
pub async fn stop_router(router: RouterTask){
38+
let flag = router.stop;
39+
*flag.lock().unwrap() = true;
40+
router.handle.await.unwrap()
41+
42+
}
43+
44+
async fn router(listener: TcpListener) -> () {
45+
debug!("launched API router");
46+
47+
let app = Router::new().route("/", get(root));
48+
axum::serve(listener, app).await.unwrap();
49+
}
50+
51+
async fn root() -> &'static str {
52+
"Hello, World!"
53+
}

ouverture-core/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ pub mod library;
66
pub mod logger;
77
pub mod music;
88
pub mod server;
9+
pub mod api_router;
910

1011
use config::Config;
1112
use server::Server;

ouverture-core/src/server.rs

+10-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ use bincode;
33
use futures_core::stream::Stream;
44
use serde::{Deserialize, Serialize};
55
use std::error::Error;
6+
use std::net::SocketAddrV4;
67
use std::sync::{Arc, Mutex};
78
use strum_macros::{Display, EnumIter, EnumString};
89
use tokio::io::{AsyncReadExt, AsyncWriteExt};
@@ -20,14 +21,16 @@ use log::{debug, error, info, trace, warn};
2021
use tokio::runtime::Runtime;
2122

2223
use crate::audio::AudioTask;
24+
use crate::api_router::{RouterTask, start_router};
2325

24-
// magic number to identify ovuerture protocol on the wire
26+
// magic number to identify ouverture protocol on the wire
2527
const MAGIC_ID_OUVERTURE_PROTOCOL: u64 = 0xACDE314152960000;
2628

2729
pub struct Server {
2830
config: Config,
2931
audio_task: Option<AudioTask>, // this task has for only role to send queued songs to the audio thread
3032
// when it finishes playing a song
33+
router_task: Option<RouterTask>,
3134
state: Arc<Mutex<ServerState>>,
3235
}
3336

@@ -43,6 +46,7 @@ impl Server {
4346
Self {
4447
config: config.clone(),
4548
audio_task: None,
49+
router_task: None,
4650
state,
4751
}
4852
}
@@ -57,6 +61,9 @@ impl Server {
5761
self.audio_task = Some(AudioTask::run());
5862
let audio_state = self.audio_task.as_ref().unwrap().state.clone();
5963

64+
self.router_task = Some(start_router().await);
65+
let internal_router_address = self.router_task.unwrap().addr;
66+
6067
// accept many clients at the same time
6168
let res = loop {
6269
let (mut socket, _) = listener.accept().await?;
@@ -67,6 +74,8 @@ impl Server {
6774
let state = self.state.clone();
6875
let audio_state = audio_state.clone();
6976

77+
let mut internal_stream = TcpStream::connect(internal_router_address).await?;
78+
7079
let config = self.config.clone();
7180
let handle = tokio::spawn(async move {
7281
let mut buf = [0u8; 8];

0 commit comments

Comments
 (0)