From 42b945b7289d8e36900074327a811a50f8cc5e15 Mon Sep 17 00:00:00 2001 From: Guillaume Pasquet Date: Tue, 16 Nov 2021 22:36:42 +0000 Subject: Working actual queries and basic JSON formatting. No error handling. --- src/barbfile.rs | 35 +++++++++++++++++++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) (limited to 'src/barbfile.rs') diff --git a/src/barbfile.rs b/src/barbfile.rs index be7cead..31c1eac 100644 --- a/src/barbfile.rs +++ b/src/barbfile.rs @@ -1,9 +1,10 @@ use std::matches; use std::str::FromStr; +use std::string::ToString; use std::{error::Error, fmt}; #[derive(Debug)] -struct BarbParseError {} +pub struct BarbParseError {} impl Error for BarbParseError {} @@ -36,6 +37,18 @@ impl FromStr for Method { } } +impl ToString for Method { + fn to_string(&self) -> String { + match self { + Self::GET => String::from("GET"), + Self::PUT => String::from("PUT"), + Self::POST => String::from("POST"), + Self::PATCH => String::from("PATCH"), + Self::DELETE => String::from("DELETE"), + } + } +} + #[derive(Debug)] struct Header { name: String, @@ -66,11 +79,29 @@ impl BarbHeader { } } -struct BarbFile { +pub struct BarbFile { header: BarbHeader, body: Option, } +impl BarbFile { + pub fn headers(&self) -> &Vec
{ + &self.header.headers + } + + pub fn method(&self) -> &Method { + &self.header.method + } + + pub fn method_as_string(&self) -> String { + self.header.method.to_string() + } + + pub fn url(&self) -> &String { + &self.header.url + } +} + fn decode_url_line(line: &str) -> Result<(Method, String), BarbParseError> { let mut components = line[1..].split('^'); let meth = components.next().ok_or(BarbParseError {})?; -- cgit v1.2.3