1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
// Copyright 2019 nblistener developers. See the COPYRIGHT
// file at the top-level directory of this distribution.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

//! # nblistener
//! nblistener provides the [Listener](trait.Listener.html) trait to simplify
//! interactions with [TcpListener](https://doc.rust-lang.org/nightly/std/net/struct.TcpListener.html).
//!
//! ---
//!
//! std::net::TcpListener does not provide a simple interface to stop
//! handling connections once the incoming() method is invoked.
//!
//! [Listener](trait.Listener.html) provides enough support to allow a
//! listening socket to be closed from another thread in a fairly
//! re-active fashion.
//!
//! It does this by wrapping a non-blocking TcpListener which sleeps for
//! a user specified duration (10ms is a good choice) when the listener
//! would otherwise block.
//!
//! This is not the highest performance or most efficient way to solve this
//! kind of problem, but the interface is fairly ergonomic and may help out
//! anyone who is struggling to use TcpListener and wants something simple
//! to support testing or low throughput usage.
//!

use std::io::{Error, ErrorKind};
use std::net::{TcpListener, TcpStream, ToSocketAddrs};
#[cfg(windows)]
mod plat_specifics {
    pub use std::os::windows::io::AsRawSocket;
    pub use winapi::um::winsock2;
    pub const EBADF: i32 = 10038;
}
#[cfg(not(windows))]
mod plat_specifics {
    pub use libc;
    pub use std::os::unix::io::AsRawFd;
    pub const EBADF: i32 = 9;
}
use plat_specifics::*;
use std::thread;
use std::time::Duration;

/// Listener which simplifies using TcpListener
///
/// # Examples
/// ```rust
/// use std::net::{TcpListener, TcpStream};
/// use std::sync::Arc;
/// use std::thread;
/// use std::time::Duration;
/// use nblistener::Listener;
///
/// // Handle our client request
/// fn handle_client(_stream: TcpStream) {
///     println!("handled");
/// }
///
/// fn main() {
///
///     // Wrap our listener in an Arc to make it easy to share
///     let listener: Arc<TcpListener> = match Listener::bind("127.0.0.1:0") {
///         Ok(l) => Arc::new(l),
///         Err(err) => panic!("Cannot bind: {}", err),
///     };
///
///     // Clone our listener for sharing with our control thread
///     let l_clone = listener.clone();
///
///     // Spawn a control thread. In this example, just wait 5 seconds and
///     // then close down our listener. In real life, do whatever...
///     thread::spawn(move || {
///         thread::sleep(Duration::from_secs(5));
///         l_clone.close();
///     });
///
///     // Start handling incoming connections to our listener.
///     // If the listener would block, i.e.: no incoming connections to process,
///     // then this thread will sleep for 10ms. Each handled connection will call
///     // handle_client() for user specified connection handling.
///     match listener.handle_incoming(handle_client, Duration::from_millis(10)) {
///         Ok(_) => (),
///         Err(err) => println!("Terminated with: {}", err),
///     }
/// }
/// ```

pub trait Listener {
    /// Creates a new TcpListener which will be bound to the specified
    /// address. Works exactly the same as TcpListener::bind(), but
    /// always forces the bound socket to be non-blocking.
    fn bind<A: ToSocketAddrs>(addr: A) -> Result<Self, Error>
    where
        Self: std::marker::Sized;

    /// Close the listener. No more connections will be accepted and
    /// if handle_incoming() is active, it will terminate normally.
    fn close(&self);

    /// Start handling incoming connections. On error this will
    /// terminate with an error code, unless the error is EBADF, this
    /// is interpreted as normal termination triggered by invocation
    /// of the close() method.
    fn handle_incoming(&self, handler: fn(TcpStream), timeout: Duration) -> Result<(), Error>;
}

impl Listener for TcpListener {
    fn bind<A: ToSocketAddrs>(addr: A) -> Result<Self, Error> {
        let listener = TcpListener::bind(addr)?;
        listener.set_nonblocking(true)?;

        Ok(listener)
    }

    fn close(&self) {
        unsafe {
            #[cfg(windows)]
            winsock2::closesocket(self.as_raw_socket() as usize);
            #[cfg(not(windows))]
            libc::close(self.as_raw_fd());
        }
    }

    fn handle_incoming(&self, handler: fn(TcpStream), timeout: Duration) -> Result<(), Error> {
        for stream in self.incoming() {
            match stream {
                Ok(stream) => handler(stream),
                Err(err) => {
                    if err.kind() == ErrorKind::WouldBlock {
                        thread::sleep(timeout);
                    } else {
                        if let Some(val) = err.raw_os_error() {
                            if val == plat_specifics::EBADF {
                                return Ok(());
                            }
                        }
                        return Err(err);
                    }
                }
            }
        }
        unreachable!()
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use std::sync::Arc;

    // Handle our client request
    fn handle_client(_stream: TcpStream) {
        println!("handled");
    }

    #[test]
    fn test_normal() {
        let listener: Arc<TcpListener> = match Listener::bind("127.0.0.1:0") {
            Ok(l) => Arc::new(l),
            Err(err) => panic!("Cannot bind: {}", err),
        };
        let l_clone = listener.clone();

        thread::spawn(move || {
            thread::sleep(Duration::from_secs(5));
            l_clone.close();
        });

        match listener.handle_incoming(handle_client, Duration::from_millis(10)) {
            Ok(_) => (),
            Err(err) => println!("Terminated with: {}", err),
        }
    }

    #[test]
    fn test_pre_close() {
        let listener: Arc<TcpListener> = match Listener::bind("127.0.0.1:0") {
            Ok(l) => Arc::new(l),
            Err(err) => panic!("Cannot bind: {}", err),
        };
        let l_clone = listener.clone();

        thread::spawn(move || {
            thread::sleep(Duration::from_secs(5));
            l_clone.close();
        });

        listener.close();

        match listener.handle_incoming(handle_client, Duration::from_millis(10)) {
            Ok(_) => (),
            Err(err) => println!("Terminated with: {}", err),
        }
    }
}