before changing to tokio udp
This commit is contained in:
parent
4bccd18bd6
commit
0d084cf287
49
src/main.rs
49
src/main.rs
@ -8,23 +8,36 @@ use std::i64;
|
||||
use std::io;
|
||||
use std::io::Write;
|
||||
use std::net;
|
||||
use std::thread::spawn;
|
||||
use std::time::Instant;
|
||||
use tokio::io::{AsyncReadExt, AsyncWriteExt};
|
||||
use tokio_tungstenite::connect_async;
|
||||
use tungstenite::protocol::Message;
|
||||
use url::Url;
|
||||
|
||||
fn listen(socket: &net::UdpSocket) {
|
||||
async fn listen(senddata: futures::channel::mpsc::UnboundedReceiver<String>) {
|
||||
// Setup the UDP Socket
|
||||
let udpsocket = net::UdpSocket::bind("0.0.0.0:0").expect("failed to bind host udp socket"); // local bind port
|
||||
|
||||
let msg = String::from("ok").into_bytes();
|
||||
udpsocket
|
||||
.send_to(&msg, "127.0.0.1:9000")
|
||||
.expect("cannot send");
|
||||
|
||||
loop {
|
||||
// Handle Sending part
|
||||
//senddata
|
||||
/*
|
||||
let msg = String::from("ok").into_bytes();
|
||||
udpsocket
|
||||
.send_to(&msg, "192.168.0.141:9000")
|
||||
.expect("cannot send");*/
|
||||
// -------------
|
||||
let mut buf: [u8; 20] = [0; 20];
|
||||
let mut result: Vec<u8> = Vec::new();
|
||||
match socket.recv_from(&mut buf) {
|
||||
match udpsocket.recv_from(&mut buf).await {
|
||||
Ok((number_of_bytes, _)) => {
|
||||
result = Vec::from(&buf[0..number_of_bytes]);
|
||||
}
|
||||
Err(ref e) if e.kind() == io::ErrorKind::WouldBlock => {
|
||||
return ();
|
||||
}
|
||||
Err(e) => println!("failed listening {:?}", e),
|
||||
}
|
||||
|
||||
@ -77,6 +90,7 @@ fn listen(socket: &net::UdpSocket) {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn write_file(text: String, filename: &str) {
|
||||
let mut file = std::fs::File::create(filename).expect("create failed");
|
||||
@ -153,31 +167,29 @@ async fn main() {
|
||||
|
||||
let (write, read) = ws_stream.split();
|
||||
let (obstx, obsrx) = futures::channel::mpsc::unbounded();
|
||||
let (udpsockettx, udpsocketrx) = futures::channel::mpsc::unbounded();
|
||||
|
||||
let ws_to_stdout = {
|
||||
read.for_each(|message| {
|
||||
async {
|
||||
let data = message.unwrap().into_data();
|
||||
println!("Messg");
|
||||
tokio::io::stdout().write_all(&data).await.unwrap();
|
||||
}
|
||||
})
|
||||
};
|
||||
|
||||
let stdin_to_ws = obsrx.map(Ok).forward(write);
|
||||
pin_mut!(stdin_to_ws, ws_to_stdout);
|
||||
future::select(stdin_to_ws, ws_to_stdout).await;
|
||||
let programm_to_ws = obsrx.map(Ok).forward(write);
|
||||
|
||||
// Setup the UDP Socket
|
||||
let udpsocket = net::UdpSocket::bind("0.0.0.0:0").expect("failed to bind host udp socket"); // local bind port
|
||||
udpsocket.set_nonblocking(true).unwrap();
|
||||
pin_mut!(programm_to_ws, ws_to_stdout);
|
||||
|
||||
let msg = String::from("ok").into_bytes();
|
||||
udpsocket
|
||||
.send_to(&msg, "192.168.0.141:9000")
|
||||
.expect("cannot send");
|
||||
tokio::spawn(listen(udpsocketrx));
|
||||
|
||||
println!("Will wait now");
|
||||
future::select(programm_to_ws, ws_to_stdout).await;
|
||||
|
||||
/*
|
||||
loop {
|
||||
listen(&udpsocket);
|
||||
|
||||
if now.elapsed().as_secs() >= 5 {
|
||||
let request = json!({"request-type":"SetTextFreetype2Properties", "source":source_id,"message-id": random::<f64>().to_string(), "text": now.elapsed().as_millis().to_string() });
|
||||
obstx
|
||||
@ -187,4 +199,5 @@ async fn main() {
|
||||
now = Instant::now();
|
||||
}
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user