1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-24 07:02:59 +01:00
actix-net/examples/basic.rs

78 lines
2.6 KiB
Rust
Raw Normal View History

2018-08-21 06:34:47 +02:00
//! simple composite service
2018-08-21 07:21:23 +02:00
//! build: cargo run --example basic --features "ssl"
2018-08-21 06:34:47 +02:00
//! to test: curl https://127.0.0.1:8443/ -k
use std::sync::{
atomic::{AtomicUsize, Ordering},
Arc,
};
2019-03-07 08:33:35 +01:00
use std::{env, fmt, io};
2018-08-21 06:34:47 +02:00
2018-12-11 17:20:19 +01:00
use actix_codec::{AsyncRead, AsyncWrite};
use actix_rt::System;
use actix_server::Server;
2019-03-07 08:33:35 +01:00
use actix_service::{fn_service, NewService};
2018-08-21 06:34:47 +02:00
use futures::{future, Future};
use openssl::ssl::{SslAcceptor, SslFiletype, SslMethod};
use tokio_openssl::SslAcceptorExt;
/// Simple logger service, it just prints fact of the new connections
fn logger<T: AsyncRead + AsyncWrite + fmt::Debug>(
stream: T,
2018-09-08 23:50:16 +02:00
) -> impl Future<Item = T, Error = ()> {
2018-08-21 06:34:47 +02:00
println!("New connection: {:?}", stream);
future::ok(stream)
}
2019-03-07 08:33:35 +01:00
fn main() -> io::Result<()> {
2018-09-18 05:19:48 +02:00
env::set_var("RUST_LOG", "actix_net=trace");
env_logger::init();
2018-12-10 06:51:35 +01:00
let sys = System::new("test");
2018-08-21 06:34:47 +02:00
// load ssl keys
let mut builder = SslAcceptor::mozilla_intermediate(SslMethod::tls()).unwrap();
builder
.set_private_key_file("./examples/key.pem", SslFiletype::PEM)
.unwrap();
builder
.set_certificate_chain_file("./examples/cert.pem")
.unwrap();
let acceptor = builder.build();
let num = Arc::new(AtomicUsize::new(0));
2018-08-22 06:11:16 +02:00
// bind socket address and start workers. By default server uses number of
// available logical cpu as threads count. actix net start separate
// instances of service pipeline in each worker.
2018-12-10 06:51:35 +01:00
Server::build()
2018-08-29 01:24:36 +02:00
.bind(
// configure service pipeline
2018-09-18 05:19:48 +02:00
"basic",
2018-08-29 01:24:36 +02:00
"0.0.0.0:8443",
move || {
let num = num.clone();
let acceptor = acceptor.clone();
2018-08-23 22:39:13 +02:00
2018-08-29 01:24:36 +02:00
// service for converting incoming TcpStream to a SslStream<TcpStream>
2019-03-07 08:33:35 +01:00
fn_service(move |stream: tokio_tcp::TcpStream| {
2018-09-11 20:28:13 +02:00
SslAcceptorExt::accept_async(&acceptor, stream)
.map_err(|e| println!("Openssl error: {}", e))
})
// .and_then() combinator uses other service to convert incoming `Request` to a
// `Response` and then uses that response as an input for next
// service. in this case, on success we use `logger` service
2019-03-07 08:33:35 +01:00
.and_then(fn_service(logger))
2018-09-19 17:04:31 +02:00
// Next service counts number of connections
.and_then(move |_| {
let num = num.fetch_add(1, Ordering::Relaxed);
println!("got ssl connection {:?}", num);
future::ok(())
})
2018-08-29 01:24:36 +02:00
},
2018-12-06 23:04:42 +01:00
)
.unwrap()
2018-08-29 01:24:36 +02:00
.start();
2018-08-21 06:34:47 +02:00
2019-03-07 08:33:35 +01:00
sys.run()
2018-08-21 06:34:47 +02:00
}