2 unstable releases

0.2.0 Aug 23, 2024
0.1.0 Aug 23, 2024

#1755 in Procedural macros

Download history 233/week @ 2024-08-20 17/week @ 2024-08-27 4/week @ 2024-09-10

254 downloads per month
Used in route_match

Apache-2.0

15KB
380 lines

Route Macros

This is a procedural macro for implementing routing in hyper.

Usage


route! {
    match request {
        GET   /foo/bar => get_fubar(request)
        POST   /foo/:id => post_foo(request, id)
    }
}

This expands to:


  {
      let method = request.method.clone();
      let path: Vec<&str> = request.path.clone().split('/').collect();
      if let Some(()) = {
          if &method != &http::Method::GET {
              None
          } else if path.len() != PATH_LENGTH {
              None
          } else if path[0] != "foo" || path[1] != "bar" {
              None
          } else {
              Some(())
          }
      } {
          get_fubar(request)
      } else if let Some(id) = {
          if &method != &http::Method::POST {
              None
          } else if path.len() != PATH_LENGTH {
              None
          } else if path[0] != "foo" {
              None
          } else {
              let id = path[1];
              Some(id)
          }
      } {
          post_foo(request, id)
      }

  }

Dependencies

~270–720KB
~17K SLoC