]> piware.de Git - learn-rust.git/commitdiff
tokio-tutorial-jbarszczewski: Add GET/POST parsing
authorMartin Pitt <martin@piware.de>
Fri, 16 Sep 2022 09:17:26 +0000 (11:17 +0200)
committerMartin Pitt <martin@piware.de>
Fri, 16 Sep 2022 09:54:11 +0000 (11:54 +0200)
tokio-tutorial-jbarszczewski/src/main.rs

index e1c7800d242f5b87543562288221967a491d5208..57af76b2c9c46435d30fadb3c85671a2d29249ca 100644 (file)
@@ -1,4 +1,6 @@
-use tokio::io::AsyncWriteExt;
+use std::str;
+
+use tokio::io::{ AsyncReadExt, AsyncWriteExt };
 use tokio::net::{TcpListener, TcpStream};
 
 #[tokio::main]
@@ -12,7 +14,35 @@ async fn main() {
 }
 
 async fn handle_connection(mut stream: TcpStream) {
-    let contents = "{\"balance\": 0.00}";
+    // Read the first 16 characters from the incoming stream
+    let mut buffer = [0; 16];
+    assert!(stream.read(&mut buffer).await.unwrap() >= 16);
+    // First 4 characters are used to detect HTTP method
+    let method_type = match str::from_utf8(&buffer[0..4]) {
+        Ok(v) => v,
+        Err(e) => panic!("Invalid UTF-8 sequence: {}", e),
+    };
+
+    let contents = match method_type {
+        "GET " => {
+            // todo: return real balance
+            format!("{{\"balance\": {}}}", 0.0)
+        }
+        "POST" => {
+            // Take characters after 'POST /' until whitespace is detected.
+            let input: String = buffer[6..16]
+                .iter()
+                .take_while(|x| **x != 32u8)
+                .map(|x| *x as char)
+                .collect();
+            let balance_update = input.parse::<f32>().unwrap();
+            // todo: add balance update handling
+            format!("{{\"balance\": {}}}", balance_update)
+        }
+        _ => {
+            panic!("Invalid HTTP method!")
+        }
+    };
 
     let response = format!(
         "HTTP/1.1 200 OK\r\nContent-Type: application/json\r\nContent-Length: {}\r\n\r\n{}",