Skip to main content

PathPattern

Struct PathPattern 

pub struct PathPattern { /* private fields */ }
Available on crate feature net only.
Expand description

A compiled path pattern.

Construct via PathPattern::new / new_with_opts and test paths with is_match / captures.

§Syntax

A pattern is split on / into segments. The only metacharacters are {, } and ?; everything else (*, :, ., +, …) is a literal. Within a segment:

  • literal text must equal the (decoded) path segment value;
  • {name} captures a non-empty run under name: a whole segment when alone ({id}), or the run bounded by surrounding literals when affixed ({pkg}.json captures the part before .json, v{ver}-rc the part between);
  • {} is an anonymous non-empty wildcard run, not captured ({}.txt);
  • ? makes the immediately preceding element optional (zero-or-one): a? is an optional a, {}? an optional run, {name}? an optional capture, and a trailing /? an optional trailing slash. A whole segment made only of {name}? or {}? is itself optional, so /foo/{name}?/bar matches /foo/john/bar, /foo//bar, and /foo/bar;
  • {*}, as a whole segment, is an anonymous catch-all matching one or more path segments, available ‘/’-joined and decoded via PathCaptures::glob. It may appear in the middle of a pattern;
  • {*name}, as a whole segment, is the named catch-all: same 1+ segment match as {*}, but the run is recorded under name (read back, ‘/’-joined and decoded, via PathCaptures::get). So {name} stays within a segment; {*name} spans segments.

An unclosed {, or a brace group whose body isn’t a valid token, is taken literally. {*}/{*name} are catch-alls only as a whole segment.

Trailing slash is explicit: /a matches only /a, /a/ matches only /a/, and /a/? matches both.

use rama_net::uri::{PathPattern, PathRef};

let pat = PathPattern::new("/p2/{vendor}/{pkg}.json");
let caps = pat.captures(PathRef::from_raw_str("/p2/acme/widget.json")).unwrap();
assert_eq!(caps.get("vendor"), Some("acme"));
assert_eq!(caps.get("pkg"), Some("widget"));
assert!(pat.captures(PathRef::from_raw_str("/p2/acme/widget.txt")).is_none());

let assets = PathPattern::new("/assets/{*}");
assert!(assets.is_match(PathRef::from_raw_str("/assets/css/app.css")));
assert!(!assets.is_match(PathRef::from_raw_str("/assets")));

// `{*name}` is the named catch-all (read back via `get`).
let files = PathPattern::new("/files/{*rest}");
let caps = files.captures(PathRef::from_raw_str("/files/a/b/c.txt")).unwrap();
assert_eq!(caps.get("rest"), Some("a/b/c.txt"));

Implementations§

§

impl PathPattern

pub fn new(pattern: impl IntoUriComponent) -> PathPattern

Compile a path pattern. Infallible: anything not a recognized meta token is a literal.

use rama_net::uri::{PathPattern, PathRef};

let pat = PathPattern::new("/backend-api/codex/responses");
assert!(pat.is_match(PathRef::from_raw_str("/backend-api/codex/responses")));
assert!(!pat.is_match(PathRef::from_raw_str("/backend-api/codex")));

pub fn new_with_opts( pattern: impl IntoUriComponent, opts: PathMatchOptions, ) -> PathPattern

new with explicit PathMatchOptions. The matcher honors ignore_ascii_case and percent_decode; partial is irrelevant and ignored.

use rama_net::uri::{PathMatchOptions, PathPattern, PathRef};

let opts = PathMatchOptions {
    ignore_ascii_case: true,
    ..Default::default()
};
let pat = PathPattern::new_with_opts("/api/v2", opts);
assert!(pat.is_match(PathRef::from_raw_str("/API/v2")));

pub fn new_prefix(pattern: impl IntoUriComponent) -> PathPattern

Compile a prefix matcher: the pattern must match a leading run of the path’s segments; any trailing segments and the path’s trailing slash are ignored. So /api matches /api, /api/, and /api/users — but not /apixyz (segments are matched whole).

use rama_net::uri::{PathPattern, PathRef};

let api = PathPattern::new_prefix("/api");
assert!(api.is_match(PathRef::from_raw_str("/api")));
assert!(api.is_match(PathRef::from_raw_str("/api/users/42")));
assert!(!api.is_match(PathRef::from_raw_str("/apixyz")));

pub fn new_prefix_with_opts( pattern: impl IntoUriComponent, opts: PathMatchOptions, ) -> PathPattern

pub fn segment_kinds(&self) -> impl ExactSizeIterator

The kind of each /-delimited pattern segment, in order — so callers can classify segments (literal vs dynamic vs catch-all) straight from the compiled pattern instead of re-parsing the syntax. A bare-root pattern (/) yields an empty iterator.

use rama_net::uri::{PathPattern, PathPatternSegmentKind as K};

let kinds: Vec<_> = PathPattern::new("/users/{id}/{*rest}").segment_kinds().collect();
assert_eq!(kinds, [K::Literal, K::Dynamic, K::CatchAll]);
// An invalid catch-all body is a literal, exactly as the matcher treats it.
let kinds: Vec<_> = PathPattern::new("/api/{*bad name}").segment_kinds().collect();
assert_eq!(kinds, [K::Literal, K::Literal]);

pub fn segment_specificity(&self) -> impl ExactSizeIterator

Specificity metadata for each /-delimited pattern segment, in order. This is a richer version of segment_kinds for callers that need stable precedence among overlapping dynamic patterns.

use rama_net::uri::{PathPattern, PathPatternSegmentKind as K};

let specs: Vec<_> = PathPattern::new("/files/{name}.json")
    .segment_specificity()
    .collect();
assert_eq!(specs[0].kind, K::Literal);
assert_eq!(specs[1].kind, K::Dynamic);
assert_eq!(specs[1].literal_bytes, 5);
assert_eq!(specs[1].dynamic_parts, 1);

pub fn is_match(&self, path: PathRef<'_>) -> bool

true when path matches. Allocation-free when the pattern has no captures and no catch-all.

use rama_net::uri::{PathPattern, PathRef};

let pat = PathPattern::new("/files/{}.txt");
assert!(pat.is_match(PathRef::from_raw_str("/files/readme.txt")));
assert!(!pat.is_match(PathRef::from_raw_str("/files/readme.md")));

pub fn captures<'p>(&self, path: PathRef<'p>) -> Option<PathCaptures<'_, 'p>>

Match and return captured values, or None when path doesn’t match. Uses inline storage for the common small number of bindings.

use rama_net::uri::{PathPattern, PathRef};

let pat = PathPattern::new("/simple/{name}/?");
let caps = pat.captures(PathRef::from_raw_str("/simple/requests")).unwrap();
assert_eq!(caps.get("name"), Some("requests"));

Trait Implementations§

§

impl Clone for PathPattern

§

fn clone(&self) -> PathPattern

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for PathPattern

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl Eq for PathPattern

§

impl Hash for PathPattern

§

fn hash<H>(&self, state: &mut H)
where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl PartialEq for PathPattern

§

fn eq(&self, other: &PathPattern) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<'a, T, E> AsTaggedExplicit<'a, E> for T
where T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

§

impl<'a, T, E> AsTaggedImplicit<'a, E> for T
where T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32, ) -> TaggedParser<'a, Implicit, Self, E>

Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FromRef<T> for T
where T: Clone,

§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
§

impl<T> FutureExt for T

§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> IntoRequest<T> for T

§

fn into_request(self) -> Request<T>

Wrap the input message T in a rama_grpc::Request
§

impl<L> LayerExt<L> for L

§

fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>
where L: Layer<S>,

Applies the layer to a service and wraps it in Layered.
§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
§

impl<T> PolicyExt for T
where T: ?Sized,

§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
§

impl<T, U> RamaFrom<T> for U
where U: From<T>,

§

fn rama_from(value: T) -> U

§

impl<T, U, CrateMarker> RamaInto<U, CrateMarker> for T
where U: RamaFrom<T, CrateMarker>,

§

fn rama_into(self) -> U

§

impl<T, U> RamaTryFrom<T> for U
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

§

fn rama_try_from(value: T) -> Result<U, <U as RamaTryFrom<T>>::Error>

§

impl<T, U, CrateMarker> RamaTryInto<U, CrateMarker> for T
where U: RamaTryFrom<T, CrateMarker>,

§

type Error = <U as RamaTryFrom<T, CrateMarker>>::Error

§

fn rama_try_into(self) -> Result<U, <U as RamaTryFrom<T, CrateMarker>>::Error>

§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<V, F> ValueFormatter<&V> for F
where F: ValueFormatter<V> + ?Sized, V: ?Sized,

§

fn format_value(writer: impl ValueWriter, value: &&V)

Write value to writer
§

impl<V, F> ValueFormatter<Arc<V>> for F
where F: ValueFormatter<V> + ?Sized, V: ?Sized,

§

fn format_value(writer: impl ValueWriter, value: &Arc<V>)

Write value to writer
§

impl<V, F> ValueFormatter<Box<V>> for F
where F: ValueFormatter<V> + ?Sized, V: ?Sized,

§

fn format_value(writer: impl ValueWriter, value: &Box<V>)

Write value to writer
§

impl<V, F> ValueFormatter<Cow<'_, V>> for F
where V: ToOwned + ?Sized, F: ValueFormatter<V> + ?Sized,

§

fn format_value(writer: impl ValueWriter, value: &Cow<'_, V>)

Write value to writer
§

impl<V, F> ValueFormatter<Option<V>> for F
where F: ValueFormatter<V> + ?Sized,

§

fn format_value(writer: impl ValueWriter, value: &Option<V>)

Write value to writer
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more