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
//! Simple Server, who speaks the Hyper Text Transfer Protocol, with async-std.
//! # Usage
//! Include this:
//! ```
//!   [dependencies]
//!   http-async = "0.1"
//! ```
//! in you project `Cargo.toml`-file.
//! # Licence
//! MIT

#![warn(clippy::all)]
#![allow(clippy::suspicious_else_formatting)]

#![allow(non_snake_case)]
#![allow(non_upper_case_globals)]
#![warn(missing_docs)]
#![warn(future_incompatible)]

/// Header of Requests and Responses.
pub mod header;
/// Protocol Methods.
pub mod method;
/// Path and Queries to Resources.
pub mod path;
/// Requests to Server.
pub mod request;
/// Responses to Client.
pub mod response;
/// Status Codes
pub mod status;
/// Protocol Versions.
pub mod version;

use
{
  crate::
  {
    request::
    {
      Request,
    },
    response::
    {
      Response,
    },
    status::
    {
      Status,
    },
  },
  async_std::
  {
    io::
    {
      Error,
    },
    net::
    {
      SocketAddr,
      TcpListener,
      ToSocketAddrs,
    },
    prelude::*,
    sync::
    {
      Arc,
    },
    task::
    {
      spawn,
    },
  },
  std::
  {
    fmt::
    {
      Display,
    },
  },
};

/// Configuration of the HTTP Server.
pub struct    Configuration
{
  /// Address, on which the Server should listen to.
  pub address:                          SocketAddr,
  /// Maximum Bytes of Request Content.
  /// Prevents DOS by Allocation a large Buffer (Header ›Content-Length‹ could contain any decimal value) without ever filling it.
  pub maxContent:                       usize,
  /// Maximum Numbers of Headers.
  /// Prevents Slow Lorris Attacks:
  ///   Client might slowly send Header by Header for ever,
  ///     but because neither the Connection times out nor the Request every ends,
  ///       the Server keeps reading the Stream.
  pub maxHeaderEntries:                 usize,
  /// Maximum Length of a Header.
  pub maxHeaderLength:                  usize,
  /// Maximum Length of Path.
  /// Prevents Slow Lorris Attacks.
  pub maxPathLength:                    usize,
  /// Maximum Length of Query String.
  /// Prevents Slow Lorris Attacks.
  pub maxQueryLength:                   usize,
}

/// Just send this content successfully.
#[macro_export]
macro_rules!  content
{
  (
    $Type:expr,
    $Path:expr
  )
  =>  {
        http_async::Content
        (
          http_async::status::Status::Ok,
          $Type,
          include_bytes!  ( $Path )
            .to_vec(),
        )
      };
}

/// Content of a Hyper Text Transfer Protocol Response.
pub struct    Content
{
  statusCode:                           Status,
  contentType:                          &'static str,
  contentBody:                          Vec < u8  >,
}

/// Constructor for `Content`.
///
/// # Arguments
/// * `` –
pub fn        Content
(
  statusCode:                           Status,
  contentType:                          &'static str,
  contentBody:                          Vec < u8  >,
)
->  Content
{
  Content
  {
    statusCode,
    contentType,
    contentBody,
  }
}

/// Simple Key-Value-Pair. E.g. for header-fields, Queries, etc.
#[derive(Debug)]
pub struct    KeyValuePair
{
  /// Key.
  pub key:                              String,
  /// Value.
  pub value:                            String,
}

/// Creates a `Future` to start a Hyper Text Transfer Protocol Server.
///
/// # Arguments
/// * `address`                         – server binds to this address,
/// * `this`                            – some data, that will be passed to `handler` everytime, someone connects,
/// * `handler`                         – handler for Hyper Text Transfer Protocol Requests.
pub async fn  server
<
  Address,
  Data,
  Handler,
>
(
  address:                              Address,
  this:                                 Arc < Data    >,
  handler:                              Arc < Handler >,
)
->  Result
    <
      (),
      Error,
    >
where
  Address:                              ToSocketAddrs + Display + Send + Sync + Clone + 'static,
  Data:                                 Send + Sync + 'static,
  Handler:                              Send + Sync + 'static +
    Fn
    (
      Request,
      Arc < Data  >,
    )
    ->  Response,
{
  let     socket
  =   TcpListener::bind ( &address   )
        .await
        .expect ( "Failed to bind"  );
  println!
  (
    "Waiting for connections on {}",
    address,
  );
  loop
  {
    let     this                        =   this.clone    ( );
    let     handler                     =   handler.clone ( );
    let     address                     =   address.clone ( );
    let
    (
      mut tcpStream,
      client
    )
    =   socket
          .accept()
          .await
          .unwrap();
    spawn
    (
      async move
      {
        let mut counter                 =   0;
        loop
        {
          match Request()
                  .parse
                  (
                    &mut tcpStream,
                  ).await
          {
            Ok  ( request )
            =>  match match tcpStream
                              .write
                              (
                                handler
                                (
                                  request,
                                  this.clone(),
                                )
                                  .into_vector  ( )
                                  .as_slice     ( )
                              )
                              .await
                      {
                        Ok    ( _     )
                        =>  tcpStream
                              .flush().await,
                        Err   ( error )
                        =>  Err ( error ),
                      }
                {
                  Ok  ( _       )
                  =>  println!
                      (
                        "Success! {} -> {} #{}",
                        address,
                        client,
                        counter,
                      ),
                  Err ( error )
                  =>  {
                        eprintln!
                        (
                          "Send Fail: {}",
                          error,
                        );
                        break;
                      },
                },
            Err ( error )
            =>  {
                  eprintln!
                  (
                    "Input Fail: {}",
                    error,
                  );
                  break;
                }
          }
          counter                       +=  1;
        }
      }
    );
  }
}