// Copyright (C) 2022 Tassilo Horn // // This program is free software: you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free // Software Foundation, either version 3 of the License, or (at your option) // any later version. // // This program is distributed in the hope that it will be useful, but WITHOUT // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for // more details. // // You should have received a copy of the GNU General Public License along with // this program. If not, see . //! Provides runtime formatting of strings since our format strings are read //! from the swayr config, not specified as literals, e.g., `{name:{:.30}}` in //! `format.window_format`. use rt_format::{ Format, FormatArgument, NoNamedArguments, ParsedFormat, Specifier, }; use std::fmt; enum FmtArg<'a> { Str(&'a str), } impl<'a> FormatArgument for FmtArg<'a> { fn supports_format(&self, spec: &Specifier) -> bool { spec.format == Format::Display } fn fmt_display(&self, f: &mut fmt::Formatter) -> fmt::Result { match self { Self::Str(val) => fmt::Display::fmt(&val, f), } } fn fmt_debug(&self, _f: &mut fmt::Formatter) -> fmt::Result { Err(fmt::Error) } fn fmt_octal(&self, _f: &mut fmt::Formatter) -> fmt::Result { Err(fmt::Error) } fn fmt_lower_hex(&self, _f: &mut fmt::Formatter) -> fmt::Result { Err(fmt::Error) } fn fmt_upper_hex(&self, _f: &mut fmt::Formatter) -> fmt::Result { Err(fmt::Error) } fn fmt_binary(&self, _f: &mut fmt::Formatter) -> fmt::Result { Err(fmt::Error) } fn fmt_lower_exp(&self, _f: &mut fmt::Formatter) -> fmt::Result { Err(fmt::Error) } fn fmt_upper_exp(&self, _f: &mut fmt::Formatter) -> fmt::Result { Err(fmt::Error) } } impl<'a> std::convert::TryInto for &FmtArg<'a> { type Error = (); fn try_into(self) -> Result { Err(()) } } pub fn format(fmt: &str, arg: &str) -> String { let args = &[FmtArg::Str(arg)]; if let Ok(pf) = ParsedFormat::parse(fmt, args, &NoNamedArguments) { format!("{}", pf) } else { format!("Invalid format string: {}", fmt) } }