renet/examples/loopback.rs

185 lines
5.8 KiB
Rust
Raw Normal View History

2017-07-14 11:17:55 +08:00
#![cfg_attr(not(feature = "std"), no_std)]
#![allow(unused_mut)]
#[cfg(feature = "std")]
use std as core;
2017-07-14 11:17:55 +08:00
#[macro_use]
extern crate log;
extern crate smoltcp;
2017-07-14 11:17:55 +08:00
#[cfg(feature = "std")]
extern crate env_logger;
#[cfg(feature = "std")]
extern crate getopts;
#[cfg(feature = "std")]
#[allow(dead_code)]
2017-07-14 11:17:55 +08:00
mod utils;
use core::str;
2017-07-14 11:17:55 +08:00
use smoltcp::phy::Loopback;
2017-10-03 15:28:00 +08:00
use smoltcp::wire::{EthernetAddress, IpAddress, IpCidr};
use smoltcp::iface::{NeighborCache, EthernetInterfaceBuilder};
use smoltcp::socket::{SocketSet, TcpSocket, TcpSocketBuffer};
use smoltcp::time::{Duration, Instant};
2017-07-14 11:17:55 +08:00
#[cfg(not(feature = "std"))]
mod mock {
use smoltcp::time::{Duration, Instant};
use core::cell::Cell;
#[derive(Debug)]
pub struct Clock(Cell<Instant>);
impl Clock {
pub fn new() -> Clock {
Clock(Cell::new(Instant::from_millis(0)))
}
pub fn advance(&self, duration: Duration) {
self.0.set(self.0.get() + duration)
}
pub fn elapsed(&self) -> Instant {
self.0.get()
}
}
}
#[cfg(feature = "std")]
mod mock {
use std::sync::Arc;
use std::sync::atomic::{Ordering, AtomicUsize};
use smoltcp::time::{Duration, Instant};
// should be AtomicU64 but that's unstable
#[derive(Debug, Clone)]
pub struct Clock(Arc<AtomicUsize>);
impl Clock {
pub fn new() -> Clock {
Clock(Arc::new(AtomicUsize::new(0)))
}
pub fn advance(&self, duration: Duration) {
self.0.fetch_add(duration.total_millis() as usize, Ordering::SeqCst);
}
pub fn elapsed(&self) -> Instant {
Instant::from_millis(self.0.load(Ordering::SeqCst) as i64)
}
}
}
2017-07-14 11:17:55 +08:00
fn main() {
let clock = mock::Clock::new();
let device = Loopback::new();
2017-07-14 11:17:55 +08:00
#[cfg(feature = "std")]
let device = {
let clock = clock.clone();
utils::setup_logging_with_clock("", move || clock.elapsed());
2017-07-14 11:17:55 +08:00
let (mut opts, mut free) = utils::create_options();
utils::add_middleware_options(&mut opts, &mut free);
let mut matches = utils::parse_options(&opts, free);
let device = utils::parse_middleware_options(&mut matches, device, /*loopback=*/true);
device
};
let mut neighbor_cache_entries = [None; 8];
let mut neighbor_cache = NeighborCache::new(&mut neighbor_cache_entries[..]);
2017-07-14 11:17:55 +08:00
let mut ip_addrs = [IpCidr::new(IpAddress::v4(127, 0, 0, 1), 8)];
let mut iface = EthernetInterfaceBuilder::new(device)
.ethernet_addr(EthernetAddress::default())
.neighbor_cache(neighbor_cache)
.ip_addrs(ip_addrs)
.finalize();
2017-07-14 11:17:55 +08:00
let server_socket = {
// It is not strictly necessary to use a `static mut` and unsafe code here, but
// on embedded systems that smoltcp targets it is far better to allocate the data
// statically to verify that it fits into RAM rather than get undefined behavior
// when stack overflows.
static mut TCP_SERVER_RX_DATA: [u8; 1024] = [0; 1024];
static mut TCP_SERVER_TX_DATA: [u8; 1024] = [0; 1024];
let tcp_rx_buffer = TcpSocketBuffer::new(unsafe { &mut TCP_SERVER_RX_DATA[..] });
let tcp_tx_buffer = TcpSocketBuffer::new(unsafe { &mut TCP_SERVER_TX_DATA[..] });
TcpSocket::new(tcp_rx_buffer, tcp_tx_buffer)
};
let client_socket = {
static mut TCP_CLIENT_RX_DATA: [u8; 1024] = [0; 1024];
static mut TCP_CLIENT_TX_DATA: [u8; 1024] = [0; 1024];
let tcp_rx_buffer = TcpSocketBuffer::new(unsafe { &mut TCP_CLIENT_RX_DATA[..] });
let tcp_tx_buffer = TcpSocketBuffer::new(unsafe { &mut TCP_CLIENT_TX_DATA[..] });
TcpSocket::new(tcp_rx_buffer, tcp_tx_buffer)
};
let mut socket_set_entries: [_; 2] = Default::default();
let mut socket_set = SocketSet::new(&mut socket_set_entries[..]);
let server_handle = socket_set.add(server_socket);
let client_handle = socket_set.add(client_socket);
let mut did_listen = false;
let mut did_connect = false;
let mut done = false;
while !done && clock.elapsed() < Instant::from_millis(10_000) {
iface.poll(&mut socket_set, clock.elapsed()).expect("poll error");
2017-07-14 11:17:55 +08:00
{
let mut socket = socket_set.get::<TcpSocket>(server_handle);
2017-07-14 11:17:55 +08:00
if !socket.is_active() && !socket.is_listening() {
if !did_listen {
debug!("listening");
2017-07-14 11:17:55 +08:00
socket.listen(1234).unwrap();
did_listen = true;
}
}
if socket.can_recv() {
debug!("got {:?}", socket.recv(|buffer| {
(buffer.len(), str::from_utf8(buffer).unwrap())
}));
2017-07-14 11:17:55 +08:00
socket.close();
done = true;
}
}
{
let mut socket = socket_set.get::<TcpSocket>(client_handle);
2017-07-14 11:17:55 +08:00
if !socket.is_open() {
if !did_connect {
debug!("connecting");
2017-07-14 11:17:55 +08:00
socket.connect((IpAddress::v4(127, 0, 0, 1), 1234),
(IpAddress::Unspecified, 65000)).unwrap();
2017-07-14 11:17:55 +08:00
did_connect = true;
}
}
if socket.can_send() {
debug!("sending");
2017-07-14 11:17:55 +08:00
socket.send_slice(b"0123456789abcdef").unwrap();
socket.close();
}
}
match iface.poll_delay(&socket_set, clock.elapsed()) {
Some(Duration { millis: 0 }) => debug!("resuming"),
Some(delay) => {
debug!("sleeping for {} ms", delay);
clock.advance(delay)
},
None => clock.advance(Duration::from_millis(1))
2017-07-14 11:17:55 +08:00
}
}
if done {
info!("done")
} else {
error!("this is taking too long, bailing out")
2017-07-14 11:17:55 +08:00
}
}