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
use
{
  super::
  {
    KeyValuePair,
    request::
    {
      Request,
    },
  },
  async_std::
  {
    net::
    {
      TcpStream,
    },
  },
};

/// A struct-stub as a Nmespace.
pub struct    Header                    ();

impl          Header
{
  /// Try to parse Header from from Transmission Control Protocol Stream.
  ///
  /// # Arguments
  /// * `stream`                        – Transmission Control Protocol Stream.
  pub async fn  parse
  (
    mut stream:                         &mut TcpStream,
  )
  ->  Result
      <
        Option  < KeyValuePair  >,
        (),
      >
  {
    let mut result                      =   Err ( ( ) );
    let mut key                         =   "".to_owned ( );
    let mut value                       =   "".to_owned ( );
    let mut state                       =   HeaderState::Key;
    while let Some  ( char  )           =   Request::readChar ( &mut stream )
    {
      match state
      {
        HeaderState::Key
        =>  match char
            {
              ':'
              =>  if  let Some  ( ' ' )
                          =   Request::readChar ( &mut stream )
                  {
                    state               =   HeaderState::Value;
                  }
                  else
                  {
                    break;
                  },
              '\r'
              =>  {
                    if  let Some  ( '\n'  )
                          =   Request::readChar ( &mut stream )
                    {
                      result            =   Ok  ( None  );
                    }
                    break;
                  },
              _
              =>  key.push    ( char  ),
            },
        HeaderState::Value
        =>  match char
            {
              '\r'
              =>  {
                    if  let Some  ( '\n'  )
                          =   Request::readChar ( &mut stream )
                    {
                      result
                      =   Ok
                          (
                            Some
                            (
                              KeyValuePair
                              {
                                key,
                                value,
                              }
                            )
                          );
                    }
                    break;
                  },
              _
              =>  value.push  ( char  ),
            },
      }
    }
    result
  }
}

/// State of the Parser parsing a Header.
enum          HeaderState
{
  Key,
  Value,
}