#parser #uri

oni-comb-uri-rs

A Rust crate for uri parser

279 releases

new 0.2.270 Dec 7, 2023
0.2.263 Nov 29, 2023
0.2.158 Jul 31, 2023
0.2.36 Mar 31, 2023
0.0.3 Nov 15, 2021

#314 in Parser implementations

Download history 273/week @ 2023-08-16 248/week @ 2023-08-23 157/week @ 2023-08-30 455/week @ 2023-09-06 51/week @ 2023-09-13 114/week @ 2023-09-20 172/week @ 2023-09-27 149/week @ 2023-10-04 170/week @ 2023-10-11 399/week @ 2023-10-18 226/week @ 2023-10-25 450/week @ 2023-11-01 178/week @ 2023-11-08 506/week @ 2023-11-15 550/week @ 2023-11-22 637/week @ 2023-11-29

1,925 downloads per month

MIT/Apache

240KB
6K SLoC

oni-comb-uri-rs

A Rust crate for URI.

Specification

This crate is based on the following specifications.

  • RFC3986: Uniform Resource Identifier (URI): Generic Syntax

Usage

use oni_comb_uri::uri::Uri;

let s = "http://user1:pass1@localhost:8080/example?key1=value1&key2=value2&key1=value2#f1";

match Uri::parse(s) {
  Ok(uri) => {
    uri.schema().into_iter().for_each(|s| assert_eq!(s.to_string(), "http"));
    uri
      .host_name()
      .into_iter()
      .for_each(|hn| assert_eq!(hn.to_string(), "localhost"));
    uri.port().into_iter().for_each(|p| assert_eq!(p, 8080));
    uri.user_info().into_iter().for_each(|ui| {
      assert_eq!(ui.user_name(), "user1");
      assert_eq!(ui.password(), Some("pass1"));
    });
    uri
      .path()
      .into_iter()
      .for_each(|p| assert_eq!(p.to_string(), "/example"));
    uri.query().into_iter().for_each(|q| {
      q.get_param("key1".to_string()).into_iter().for_each(|v| {
        assert_eq!(v.len(), 2);
        assert_eq!(v[0], "value1");
        assert_eq!(v[1], "value2");
      });
      q.get_param("key2".to_string()).into_iter().for_each(|v| {
        assert_eq!(v.len(), 1);
        assert_eq!(v[0], "value2");
      });
    });
    uri.fragment().into_iter().for_each(|f| assert_eq!(f, "f1"));
    println!("{:?}", uri);
  }
  Err(e) => println!("{:?}", e),
}

Dependencies

~2.1–3MB
~54K SLoC