Lines
0 %
Functions
use crate::commands::{
Command, GenericResponseValue, Request, RequestParserError, RequestParserResult,
ResponseAttributes, ResponseParserError,
};
pub struct StickerFind;
pub struct StickerFindResponseEntry {
pub uri: String,
pub name: String,
pub value: String,
}
pub type StickerFindResponse = Vec<StickerFindResponseEntry>;
impl Command for StickerFind {
type Response = StickerFindResponse;
const COMMAND: &'static str = "sticker find";
fn parse_request(mut parts: std::str::SplitWhitespace<'_>) -> RequestParserResult<'_> {
let sticker_type = parts.next().ok_or(RequestParserError::UnexpectedEOF)?;
let sticker_type = sticker_type
.parse()
.map_err(|_| RequestParserError::SyntaxError(1, sticker_type.to_owned()))?;
let uri = parts.next().ok_or(RequestParserError::UnexpectedEOF)?;
let uri = uri
.map_err(|_| RequestParserError::SyntaxError(1, uri.to_owned()))?;
let name = parts.next().ok_or(RequestParserError::UnexpectedEOF)?;
let name = name
.map_err(|_| RequestParserError::SyntaxError(1, name.to_owned()))?;
// TODO: handle the case for this command as well:
// sticker find {TYPE} {URI} {NAME} = {VALUE} [sort {SORTTYPE}] [window {START:END}]
let mut sort_or_window = parts.next();
let mut sort = None;
if let Some("sort") = sort_or_window {
sort = Some(
parts
.next()
.ok_or(RequestParserError::UnexpectedEOF)?
.to_string(),
);
sort_or_window = parts.next();
let mut window = None;
if let Some("window") = sort_or_window {
let w = parts.next().ok_or(RequestParserError::UnexpectedEOF)?;
window = Some(
w.parse()
.map_err(|_| RequestParserError::SyntaxError(0, w.to_string()))?,
debug_assert!(parts.next().is_none());
Ok((
Request::StickerFind(sticker_type, uri, name, sort, window),
"",
))
fn parse_response(
parts: ResponseAttributes<'_>,
) -> Result<Self::Response, ResponseParserError> {
let parts: Vec<_> = parts.into();
let mut stickers = Vec::new();
for sticker_uri_pair in parts.chunks_exact(2) {
// TODO: don't assume that the order of the properties is fixed
let uri = sticker_uri_pair
.first()
.ok_or(ResponseParserError::UnexpectedEOF)?;
let sticker = sticker_uri_pair
.get(1)
debug_assert!(sticker.0 == "sticker");
// TODO: debug assert that this is a valid sticker type
// debug_assert!(uri.0 == "");
let uri = match uri.1 {
GenericResponseValue::Text(s) => s.to_string(),
GenericResponseValue::Binary(_) => {
return Err(ResponseParserError::UnexpectedPropertyType(uri.0, "Binary"))
let sticker = match sticker.1 {
GenericResponseValue::Text(s) => s,
return Err(ResponseParserError::UnexpectedPropertyType(
"sticker", "Binary",
// TODO: This assumes the first = is the only one.
// See: https://github.com/MusicPlayerDaemon/MPD/issues/2166
let mut split = sticker.split("=");
let name = split
.ok_or(ResponseParserError::SyntaxError(0, sticker))?
.to_string();
let value = split
.ok_or(ResponseParserError::SyntaxError(1, sticker))?
stickers.push(StickerFindResponseEntry { uri, name, value });
Ok(stickers)