From 4566303b053f914d3f9aaf85ec87c97df0ec8cb6 Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Tue, 14 Jan 2020 12:02:25 +0100 Subject: [PATCH] src/section_config.rs - write: improve error message --- src/section_config.rs | 102 +++++++++++++++++++++--------------------- 1 file changed, 52 insertions(+), 50 deletions(-) diff --git a/src/section_config.rs b/src/section_config.rs index 854cb282..4f520d1c 100644 --- a/src/section_config.rs +++ b/src/section_config.rs @@ -113,66 +113,68 @@ impl SectionConfig { self.plugins.insert(plugin.type_name.clone(), plugin); } - pub fn write(&self, _filename: &str, config: &SectionConfigData) -> Result { + pub fn write(&self, filename: &str, config: &SectionConfigData) -> Result { - let mut list = VecDeque::new(); + try_block!({ + let mut list = VecDeque::new(); - let mut done = HashSet::new(); + let mut done = HashSet::new(); - for section_id in &config.order { - if config.sections.get(section_id) == None { continue }; - list.push_back(section_id); - done.insert(section_id); - } - - for (section_id, _) in &config.sections { - if done.contains(section_id) { continue }; - list.push_back(section_id); - } - - let mut raw = String::new(); - - for section_id in list { - let (type_name, section_config) = config.sections.get(section_id).unwrap(); - let plugin = self.plugins.get(type_name).unwrap(); - - if let Err(err) = parse_simple_value(§ion_id, &self.id_schema) { - bail!("syntax error in section identifier: {}", err.to_string()); - } - if section_id.chars().any(|c| c.is_control()) { - bail!("detected unexpected control character in section ID."); + for section_id in &config.order { + if config.sections.get(section_id) == None { continue }; + list.push_back(section_id); + done.insert(section_id); } - verify_json_object(section_config, &plugin.properties)?; + for (section_id, _) in &config.sections { + if done.contains(section_id) { continue }; + list.push_back(section_id); + } - let head = (self.format_section_header)(type_name, section_id, section_config); + let mut raw = String::new(); - if !raw.is_empty() { raw += "\n" } + for section_id in list { + let (type_name, section_config) = config.sections.get(section_id).unwrap(); + let plugin = self.plugins.get(type_name).unwrap(); - raw += &head; - - for (key, value) in section_config.as_object().unwrap() { - let text = match value { - Value::Null => { continue; }, // do nothing (delete) - Value::Bool(v) => v.to_string(), - Value::String(v) => v.to_string(), - Value::Number(v) => v.to_string(), - _ => { - bail!("got unsupported type in section '{}' key '{}'", section_id, key); - }, - }; - if text.chars().any(|c| c.is_control()) { - bail!("detected unexpected control character in section '{}' key '{}'", section_id, key); + if let Err(err) = parse_simple_value(§ion_id, &self.id_schema) { + bail!("syntax error in section identifier: {}", err.to_string()); + } + if section_id.chars().any(|c| c.is_control()) { + bail!("detected unexpected control character in section ID."); } - raw += "\t"; - raw += &key; - raw += " "; - raw += &text; - raw += "\n"; - } - } - Ok(raw) + verify_json_object(section_config, &plugin.properties)?; + + let head = (self.format_section_header)(type_name, section_id, section_config); + + if !raw.is_empty() { raw += "\n" } + + raw += &head; + + for (key, value) in section_config.as_object().unwrap() { + let text = match value { + Value::Null => { continue; }, // do nothing (delete) + Value::Bool(v) => v.to_string(), + Value::String(v) => v.to_string(), + Value::Number(v) => v.to_string(), + _ => { + bail!("got unsupported type in section '{}' key '{}'", section_id, key); + }, + }; + if text.chars().any(|c| c.is_control()) { + bail!("detected unexpected control character in section '{}' key '{}'", section_id, key); + } + raw += "\t"; + raw += &key; + raw += " "; + raw += &text; + raw += "\n"; + } + } + + Ok(raw) + }).map_err(|e: Error| format_err!("writing '{}' failed: {}", filename, e)) } pub fn parse(&self, filename: &str, raw: &str) -> Result {