use std::str::FromStr;
use indexmap::IndexMap;
use super::{
error::VObjectError,
parser::{ParseErrorReason, Parser},
property::Property,
};
#[derive(Clone, Debug)]
pub struct Component {
pub name: String,
pub props: IndexMap<String, Vec<Property>>,
pub subcomponents: Vec<Self>,
}
impl Component {
pub fn new<N: Into<String>>(name: N) -> Self {
Self {
name: name.into(),
props: IndexMap::new(),
subcomponents: vec![],
}
}
pub fn push(&mut self, prop: Property) {
self.props.entry(prop.name.clone()).or_default().push(prop);
}
pub fn set(&mut self, prop: Property) {
self.props.insert(prop.name.clone(), vec![prop]);
}
pub fn get_only<P: AsRef<str>>(&self, name: P) -> Option<&Property> {
match self.props.get(name.as_ref()) {
Some(x) if x.len() == 1 => x.first(),
_ => None,
}
}
pub fn get_all<P: AsRef<str>>(&self, name: P) -> &[Property] {
static EMPTY: &[Property] = &[];
match self.props.get(name.as_ref()) {
Some(values) => &values[..],
None => EMPTY,
}
}
pub fn pop<P: AsRef<str>>(&mut self, name: P) -> Option<Property> {
match self.props.get_mut(name.as_ref()) {
Some(values) => values.pop(),
None => None,
}
}
pub fn remove<P: AsRef<str>>(&mut self, name: P) -> Option<Vec<Property>> {
self.props.shift_remove(name.as_ref())
}
}
impl FromStr for Component {
type Err = VObjectError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
parse_component(s)
}
}
pub fn parse_component(s: &str) -> Result<Component, VObjectError> {
let (rv, new_s) = read_component(s)?;
if !new_s.is_empty() {
return Err(ParseErrorReason::TrailingData(new_s.into()).into());
}
Ok(rv)
}
pub fn read_component(s: &str) -> Result<(Component, &str), VObjectError> {
let mut parser = Parser::new(s);
let rv = parser.consume_component()?;
let new_s = if parser.eof() {
""
} else {
&parser.input[parser.pos..]
};
Ok((rv, new_s))
}
pub fn write_component(c: &Component) -> String {
fn inner(buf: &mut String, c: &Component) {
buf.push_str("BEGIN:");
buf.push_str(&c.name);
buf.push_str("\r\n");
buf.push_str("VERSION:4.0\r\n");
for (prop_name, props) in &c.props {
for prop in props.iter() {
if let Some(ref x) = prop.prop_group {
buf.push_str(x);
buf.push('.');
};
buf.push_str(prop_name);
for (param_key, param_value) in &prop.params {
buf.push(';');
buf.push_str(param_key);
buf.push('=');
buf.push_str(param_value);
}
buf.push(':');
buf.push_str(&fold_line(&prop.raw_value));
buf.push_str("\r\n");
}
}
for subcomponent in &c.subcomponents {
inner(buf, subcomponent);
}
buf.push_str("END:");
buf.push_str(&c.name);
buf.push_str("\r\n");
}
let mut buf = String::new();
inner(&mut buf, c);
buf
}
pub fn fold_line(line: &str) -> String {
const LIMIT: usize = 75;
let len = line.len();
if len <= LIMIT {
return line.to_string();
}
let mut bytes_remaining = len;
let mut ret = String::with_capacity(len + (len / LIMIT * 3));
let mut pos = 0;
let mut next_pos = LIMIT;
while bytes_remaining > LIMIT {
while !line.is_char_boundary(next_pos) {
next_pos -= 1;
}
ret.push_str(&line[pos..next_pos]);
ret.push_str("\r\n ");
bytes_remaining -= next_pos - pos;
pos = next_pos;
next_pos += LIMIT;
}
ret.push_str(&line[len - bytes_remaining..]);
ret
}