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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
use std::io;
use std::time::Duration;

use async_std::stream::Stream;

use crate::log;
use crate::sleep;
use crate::backpressure::{self, Token};
use crate::byte_stream::ByteStream;


/// An extension trait that provides necessary combinators for turning
/// a stream of `accept()` events into a full-featured connection listener
///
pub trait ListenExt: Stream {
    /// Log errors which aren't transient using user-specified function
    ///
    /// The the warning in this context is any error which isn't transient.
    /// There are no fatal errors (ones which don't allow listener to
    /// procceed in the future) on any known platform so any error is
    /// considered a warning. See
    /// [`is_transient_error`](fn.is_transient_error.html) for more info.
    ///
    /// `stream.log_warnings(user_func)` is equivalent of:
    ///
    /// ```ignore
    /// stream.inspect(|res| res.map_err(|e| {
    ///     if !is_transient_error(e) {
    ///         user_func(e);
    ///     }
    /// })
    /// ```
    ///
    /// # Example
    ///
    /// ```no_run
    /// # use async_std::net::TcpListener;
    /// # use async_std::prelude::*;
    /// # fn main() -> std::io::Result<()> { async_std::task::block_on(async {
    /// #
    /// use async_listen::ListenExt;
    ///
    /// let listener = TcpListener::bind("127.0.0.1:0").await?;
    /// let mut incoming = listener.incoming()
    ///     .log_warnings(|e| eprintln!("Listening error: {}", e));
    ///
    /// while let Some(stream) = incoming.next().await {
    ///     // ...
    /// }
    /// #
    /// # Ok(()) }) }
    /// ```
    fn log_warnings<I, F>(self, f: F)
        -> log::LogWarnings<Self, F>
        where Self: Stream<Item=Result<I, io::Error>> + Sized,
              F: FnMut(&io::Error),
    {
        log::LogWarnings::new(self, f)
    }

    /// Handle errors and return infallible stream
    ///
    /// There are two types of errors:
    ///
    /// * [`transient`](fn.is_transient_error.html) which may be ignored
    /// * warnings which keep socket in accept queue after the error
    ///
    /// We ignore transient errors entirely, and timeout for a `sleep_amount`
    /// on stick ones.
    ///
    /// One example of warning is `EMFILE: too many open files`. In this
    /// case, if we sleep for some amount, so there is a chance that other
    /// connection or some file descriptor is closed in the meantime and we
    /// can accept another connection.
    ///
    /// Also in the case of warnings, it's usually a good idea to log them
    /// (i.e. so file descritor limit or max connection is adjusted by user).
    /// Use [`log_warnings`](#method.log_warnings) to do this.
    ///
    /// `while let Some(s) = stream.handle_errors(d).next().await {...}`
    /// is equivalent of:
    ///
    /// ```ignore
    /// while let Some(res) = stream.next().await? {
    ///     let s = match res {
    ///         Ok(s) => s,
    ///         Err(e) => {
    ///             if !is_traisient_error(e) {
    ///                 task::sleep(d);
    ///             }
    ///             continue;
    ///         }
    ///     };
    ///     # ...
    /// }
    /// ```
    ///
    /// # Example
    ///
    fn handle_errors<I>(self, sleep_on_warning: Duration)
        -> sleep::HandleErrors<Self>
        where Self: Stream<Item=Result<I, io::Error>> + Sized,
    {
        sleep::HandleErrors::new(self, sleep_on_warning)
    }

    /// Apply a fixed backpressure to the the stream
    ///
    /// The output stream yields pairs of (token, stream). The token must
    /// be kept alive as long as connection is still alive.
    ///
    /// See [`backpressuree_wrapper`](#method.backpressure_wrapper) method for
    /// a simple way of handling backpressure in a common case.
    ///
    /// `stream.backpressure(10)` is equivalent of:
    /// ```ignore
    /// let (tx, rx) = backpressure::new(10);
    /// stream
    ///     .apply_backpressure(rx)
    ///     .map(|conn| (tx.token(), conn))
    /// ```
    ///
    /// # Example
    ///
    /// ```no_run
    /// # use std::time::Duration;
    /// # use async_std::net::{TcpListener, TcpStream};
    /// # use async_std::prelude::*;
    /// # use async_std::task;
    /// # fn main() -> std::io::Result<()> { task::block_on(async {
    /// #
    /// use async_listen::ListenExt;
    ///
    /// let listener = TcpListener::bind("127.0.0.1:0").await?;
    /// let mut incoming = listener.incoming()
    ///     .handle_errors(Duration::from_millis(100))
    ///     .backpressure(100);
    ///
    /// while let Some((token, stream)) = incoming.next().await {
    ///     task::spawn(async {
    ///         connection_loop(stream).await;
    ///         drop(token);
    ///     });
    /// }
    /// # async fn connection_loop(_stream: TcpStream) {
    /// # }
    /// #
    /// # Ok(()) }) }
    /// ```
    ///
    /// *Note:* the `drop` there is not needed you can use either:
    ///
    /// * `let _token = token;` inside `async` block, or
    /// * `connection_loop(&token, stream)`,
    ///
    /// To achieve the same result. But `drop(token)` makes it explicit that
    /// token is dropped only at that point, which is an important property to
    /// achieve.
    fn backpressure<I>(self, limit: usize)
        -> backpressure::BackpressureToken<Self>
        where Self: Stream<Item=I> + Sized,
    {
        let (_tx, rx) = backpressure::new(limit);
        return backpressure::BackpressureToken::new(self, rx);
    }

    /// Apply a backpressure object to a stream
    ///
    /// This method is different from [`backpressure`](#method.backpressure) in
    /// two ways:
    ///
    /// 1. It doesn't modify stream output
    /// 2. External backpressure object may be used to change limit at runtime
    ///
    /// With the greater power comes greater responsibility, though. Here are
    /// some things to remember when using the method:
    ///
    /// 1. You must create a token for each connection (see example).
    /// 2. Token *should* be created before yielding to a main loop, otherwise
    ///    limit can be exhausted at times.
    /// 2. Token should be kept alive as long as the connection is alive.
    ///
    /// See [`backpressure_wrapper`](#method.backpressure_wrapper) method for
    /// a simple way of handling backpressure in a common case.
    ///
    /// # Example
    ///
    /// ```no_run
    /// # use std::time::Duration;
    /// # use async_std::net::{TcpListener, TcpStream};
    /// # use async_std::prelude::*;
    /// # use async_std::task;
    /// # fn main() -> std::io::Result<()> { task::block_on(async {
    /// #
    /// use async_listen::ListenExt;
    /// use async_listen::backpressure;
    ///
    /// let listener = TcpListener::bind("127.0.0.1:0").await?;
    /// let (tx, rx) = backpressure::new(10);
    /// let mut incoming = listener.incoming()
    ///     .handle_errors(Duration::from_millis(100))
    ///     .apply_backpressure(rx);
    ///
    /// while let Some(stream) = incoming.next().await {
    ///     let token = tx.token();  // should be created before spawn
    ///     task::spawn(async {
    ///         connection_loop(stream).await;
    ///         drop(token);  // should be dropped after
    ///     });
    /// }
    /// # async fn connection_loop(_stream: TcpStream) {
    /// # }
    /// #
    /// # Ok(()) }) }
    /// ```
    ///
    /// *Note:* the `drop` there is not needed you can use either:
    ///
    /// * `let _token = token;` inside `async` block, or
    /// * `connection_loop(&token, stream)`,

    /// To achieve the same result. But `drop(token)` makes it explicit that
    /// token is dropped only at that point, which is an important property to
    /// achieve. Also don't create token in async block as it makes
    /// backpressure enforcing unreliable.
    fn apply_backpressure<I>(self, backpressure: backpressure::Receiver)
        -> backpressure::Backpressure<Self>
        where Self: Stream<Item=I> + Sized,
    {
        return backpressure::Backpressure::new(self, backpressure);
    }

    /// Apply a backpressure object to a stream and yield ByteStream
    ///
    /// This method simplifies backpressure handling by hiding the token
    /// inside the [`ByteStream`](struct.ByteStream.html) structure, so
    /// it's lifetime is tied to the lifetime of the structure
    ///
    /// The wrapper works for `TcpListener` and `UdpListener` and returns
    /// the same `ByteStream` structure on both of them. This helps working
    /// with both kinds of sockets in a uniform way.
    ///
    /// Wrapping streams might incur tiny performance cost (although, this cast
    /// is much smaller than cost of system calls involved in working with
    /// sockets nevertheless). See [`backpressure`](#method.backpressure) and
    /// [`apply_backpressure`](#method.apply_backpressure) for a wrapper-less
    /// way of applying backpressure.
    ///
    /// # Example
    ///
    /// ```no_run
    /// # use std::time::Duration;
    /// # use async_std::net::{TcpListener, TcpStream};
    /// # use async_std::prelude::*;
    /// # use async_std::task;
    /// # fn main() -> std::io::Result<()> { task::block_on(async {
    /// #
    /// use async_listen::{ListenExt, ByteStream, backpressure};
    ///
    /// let listener = TcpListener::bind("127.0.0.1:0").await?;
    /// let (_, rx) = backpressure::new(10);
    /// let mut incoming = listener.incoming()
    ///     .handle_errors(Duration::from_millis(100))
    ///     .backpressure_wrapper(rx);
    ///
    /// while let Some(stream) = incoming.next().await {
    ///     task::spawn(connection_loop(stream));
    /// }
    /// # async fn connection_loop(_stream: ByteStream) {
    /// # }
    /// #
    /// # Ok(()) }) }
    /// ```
    ///
    /// # Notes
    ///
    /// The following examples are equivalent:
    ///
    /// ```ignore
    /// let (_, bp) = backpressure::new(100);
    /// stream.backpressure_wrapper(bp)
    /// ```
    ///
    /// ```ignore
    /// let (tx, rx) = backpressure::new(100);
    /// stream.apply_backpressure(rx)
    ///     .map(|stream| ByteStream::from((tx.token(), stream)))
    /// ```
    ///
    /// ```ignore
    /// stream.backpressure(100)
    ///     .map(ByteStream::from)
    /// ```
    ///
    fn backpressure_wrapper<I>(self, backpressure: backpressure::Receiver)
        -> backpressure::BackpressureWrapper<Self>
        where Self: Stream<Item=I> + Sized,
              ByteStream: From<(Token, I)>,
    {
        return backpressure::BackpressureWrapper::new(self, backpressure);
    }
}

impl<T: Stream> ListenExt for T {}