Struct jupiter::request::Request

source ·
pub struct Request { /* private fields */ }
Expand description

Represents a parsed RESP request.

Note that we treat the 1st parameter as “command” and re-number all other parameters accordingly. Therefore “SET x y” will have “SET” as command, “x” as first parameter (index: 0) and “y” as second (index: 1).

Implementations§

source§

impl Request

source

pub fn parse(data: &BytesMut) -> Result<Option<Request>>

Tries to parse a RESP request from the given byte buffer.

If malformed data is detected, we return an Err. Otherwise we either return an empty optional, in case only a partial request is present or otherwise a full request which has then the form Ok(Some(Request)).

§Examples

Parsing a simple request:

let mut bytes = BytesMut::from("*3\r\n$3\r\nSET\r\n$1\r\nx\r\n$1\r\ny\r\n");
let result = Request::parse(&mut bytes).unwrap().unwrap();

assert_eq!(result.command(), "SET");
assert_eq!(result.parameter_count(), 2);
assert_eq!(result.str_parameter(0).unwrap(), "x");
assert_eq!(result.str_parameter(1).unwrap(), "y");
assert_eq!(result.str_parameter(2).is_err(), true);
source

pub fn example(data: Vec<&str>) -> Request

Provides a helper function to create an example request in test environments.

§Example
let request = Request::example(vec!("PING"));
assert_eq!(request.command(), "PING");
source

pub fn command(&self) -> &str

Returns the command in the request (this is the first parameter).

source

pub fn parameter_count(&self) -> usize

Returns the number of parameters (not counting the command itself).

source

pub fn parameter(&self, index: usize) -> Result<Bytes>

Returns the n-th parameter (not including the command).

Returns an Err if the requested index is outside of the range of detected parameters.

source

pub fn str_parameter(&self, index: usize) -> Result<&str>

Returns the n-th parameter as UTF-8 string.

Returns an Err if either the requested index is out of range or if the parameter data isn’t a valid UTF-8 sequence.

source

pub fn int_parameter(&self, index: usize) -> Result<i32>

Returns the n-th parameter as integer.

Returns an Err if either the requested index is out of range or if the parameter data isn’t a valid integer number.

source

pub fn len(&self) -> usize

Returns the total length on bytes for this request.

source

pub fn is_empty(&self) -> bool

Determines if the request is completely empty.

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
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
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

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

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

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
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

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

§

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>,

§

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.
source§

impl<T> WithSubscriber for T

source§

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
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

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