Files
noq/quinn/examples/client.rs
T
Dirkjan Ochtman e555d11a43 Adopt 2018 idiom
2018-12-07 23:02:32 +01:00

167 lines
5.5 KiB
Rust

#[macro_use]
extern crate failure;
#[macro_use]
extern crate slog;
use std::fs;
use std::io::{self, Write};
use std::net::ToSocketAddrs;
use std::path::PathBuf;
use std::time::{Duration, Instant};
use failure::Error;
use futures::Future;
use slog::{Drain, Logger};
use structopt::StructOpt;
use tokio::runtime::current_thread::Runtime;
use url::Url;
type Result<T> = std::result::Result<T, Error>;
/// HTTP/0.9 over QUIC client
///
/// Build with the dangerous_configuration feature to support connecting to servers with invalid certificates.
#[derive(StructOpt, Debug)]
#[structopt(name = "client")]
struct Opt {
/// Perform NSS-compatible TLS key logging to the file specified in `SSLKEYLOGFILE`.
#[structopt(long = "keylog")]
keylog: bool,
url: Url,
/// Custom certificate authority to trust, in DER format
#[structopt(parse(from_os_str), long = "ca")]
ca: Option<PathBuf>,
/// Accept invalid (e.g. self-signed) TLS certificates
#[cfg(feature = "dangerous_configuration")]
#[structopt(long = "accept-insecure-certs")]
accept_insecure_certs: bool,
/*
/// file to read/write session tickets to
#[structopt(long = "session-cache", parse(from_os_str))]
session_cache: Option<PathBuf>,
*/
}
fn main() {
let opt = Opt::from_args();
let code = {
let decorator = slog_term::PlainSyncDecorator::new(std::io::stderr());
let drain = slog_term::FullFormat::new(decorator)
.use_original_order()
.build()
.fuse();
if let Err(e) = run(Logger::root(drain, o!()), opt) {
eprintln!("ERROR: {}", e);
1
} else {
0
}
};
::std::process::exit(code);
}
fn run(log: Logger, options: Opt) -> Result<()> {
let url = options.url;
let remote = url
.with_default_port(|_| Ok(4433))?
.to_socket_addrs()?
.next()
.ok_or(format_err!("couldn't resolve to an address"))?;
/*
let ticket;
if let Some(path) = options.session_cache.take() {
ticket = match fs::read(&path) {
Ok(x) => Some(x),
Err(ref e) if e.kind() == io::ErrorKind::NotFound => None,
Err(e) => {
return Err(e.into());
}
};
} else {
ticket = None;
}
*/
let mut endpoint = quinn::Endpoint::new();
let mut client_config = quinn::ClientConfigBuilder::new();
client_config.set_protocols(&[quinn::ALPN_QUIC_HTTP]);
endpoint.logger(log.clone());
if options.keylog {
client_config.enable_keylog();
}
if let Some(ca_path) = options.ca {
client_config.add_certificate_authority(&fs::read(&ca_path)?)?;
}
#[cfg(feature = "dangerous_configuration")]
{
if options.accept_insecure_certs {
client_config.accept_insecure_certs();
}
}
endpoint.default_client_config(client_config.build());
let (endpoint, driver, _) = endpoint.bind("[::]:0")?;
let mut runtime = Runtime::new()?;
runtime.spawn(driver.map_err(|e| eprintln!("IO error: {}", e)));
let request = format!("GET {}\r\n", url.path());
let start = Instant::now();
runtime.block_on(
endpoint
.connect(
&remote,
url.host_str().ok_or(format_err!("URL missing host"))?,
)?
.map_err(|e| format_err!("failed to connect: {}", e))
.and_then(move |conn| {
eprintln!("connected at {}", duration_secs(&start.elapsed()));
let conn = conn.connection;
let stream = conn.open_bi();
stream
.map_err(|e| format_err!("failed to open stream: {}", e))
.and_then(move |stream| {
eprintln!("stream opened at {}", duration_secs(&start.elapsed()));
tokio::io::write_all(stream, request.as_bytes().to_owned())
.map_err(|e| format_err!("failed to send request: {}", e))
})
.and_then(|(stream, _)| {
tokio::io::shutdown(stream)
.map_err(|e| format_err!("failed to shutdown stream: {}", e))
})
.and_then(move |stream| {
let response_start = Instant::now();
eprintln!(
"request sent at {}",
duration_secs(&(response_start - start))
);
quinn::read_to_end(stream, usize::max_value())
.map_err(|e| format_err!("failed to read response: {}", e))
.map(move |x| (x, response_start))
})
.and_then(move |((_, data), response_start)| {
let seconds = duration_secs(&response_start.elapsed());
eprintln!(
"response received in {} - {} KiB/s",
seconds,
data.len() as f32 / (seconds * 1024.0)
);
io::stdout().write_all(&data).unwrap();
io::stdout().flush().unwrap();
conn.close(0, b"done").map_err(|_| unreachable!())
})
.map(|()| eprintln!("drained"))
}),
)?;
Ok(())
}
fn duration_secs(x: &Duration) -> f32 {
x.as_secs() as f32 + x.subsec_nanos() as f32 * 1e-9
}