From abd539ddb8778a19f32d8ed7e030a28670e1c580 Mon Sep 17 00:00:00 2001 From: Jürgen Hahn Date: Wed, 4 Jan 2023 12:26:37 +0100 Subject: feat(tvix/derivation) Add fmt::Display implementation for Derivation This adds the implementation of fmt::Display for Derivation so that we can easily store the formatted content as a string. Internally, we use the serialization function to generate the string. Change-Id: I6caca0d6c1bea3ca44b6c535c5b1d5d66d8413b7 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7741 Reviewed-by: flokli Tested-by: BuildkiteCI --- tvix/derivation/src/write.rs | 34 +++++++++++++++++++++------------- 1 file changed, 21 insertions(+), 13 deletions(-) (limited to 'tvix/derivation/src/write.rs') diff --git a/tvix/derivation/src/write.rs b/tvix/derivation/src/write.rs index 8e5899b9ec32..987c924fae3a 100644 --- a/tvix/derivation/src/write.rs +++ b/tvix/derivation/src/write.rs @@ -15,7 +15,7 @@ fn write_array_elements( quote: bool, open: &str, closing: &str, - elements: Vec<&String>, + elements: &[&str], ) -> Result<(), fmt::Error> { writer.write_str(open)?; @@ -42,7 +42,7 @@ fn write_array_elements( pub fn write_outputs( writer: &mut impl Write, - outputs: BTreeMap, + outputs: &BTreeMap, ) -> Result<(), fmt::Error> { writer.write_char(BRACKET_OPEN)?; for (ii, (output_name, output)) in outputs.iter().enumerate() { @@ -51,8 +51,8 @@ pub fn write_outputs( } // TODO(jrhahn) option to strip output - let elements = vec![ - output_name, + let elements: [&str; 4] = [ + &output_name, &output.path, &output.hash_algorithm, &output.hash, @@ -63,7 +63,7 @@ pub fn write_outputs( true, &PAREN_OPEN.to_string(), &PAREN_CLOSE.to_string(), - elements, + &elements, )? } writer.write_char(BRACKET_CLOSE)?; @@ -73,7 +73,7 @@ pub fn write_outputs( pub fn write_input_derivations( writer: &mut impl Write, - input_derivations: BTreeMap>, + input_derivations: &BTreeMap>, ) -> Result<(), fmt::Error> { writer.write_char(COMMA)?; writer.write_char(BRACKET_OPEN)?; @@ -89,12 +89,15 @@ pub fn write_input_derivations( writer.write_char(QUOTE)?; writer.write_char(COMMA)?; + // convert Vec to [&str] + let v: Vec<&str> = input_derivation.iter().map(|x| &**x).collect(); + write_array_elements( writer, true, &BRACKET_OPEN.to_string(), &BRACKET_CLOSE.to_string(), - input_derivation.iter().collect(), + &v, )?; writer.write_char(PAREN_CLOSE)?; @@ -107,15 +110,18 @@ pub fn write_input_derivations( pub fn write_input_sources( writer: &mut impl Write, - input_sources: Vec, + input_sources: &Vec, ) -> Result<(), fmt::Error> { writer.write_char(COMMA)?; + + // convert Vec to [&str] + let v: Vec<&str> = input_sources.iter().map(|x| &**x).collect(); write_array_elements( writer, true, &BRACKET_OPEN.to_string(), &BRACKET_CLOSE.to_string(), - input_sources.iter().collect(), + &v, )?; Ok(()) @@ -133,14 +139,16 @@ pub fn write_builder(writer: &mut impl Write, builder: &str) -> Result<(), fmt:: Ok(()) } -pub fn write_arguments(writer: &mut impl Write, arguments: Vec) -> Result<(), fmt::Error> { +pub fn write_arguments(writer: &mut impl Write, arguments: &Vec) -> Result<(), fmt::Error> { writer.write_char(COMMA)?; + // convert Vec to [&str] + let v: Vec<&str> = arguments.iter().map(|x| &**x).collect(); write_array_elements( writer, true, &BRACKET_OPEN.to_string(), &BRACKET_CLOSE.to_string(), - arguments.iter().collect(), + &v, )?; Ok(()) @@ -148,7 +156,7 @@ pub fn write_arguments(writer: &mut impl Write, arguments: Vec) -> Resul pub fn write_enviroment( writer: &mut impl Write, - environment: BTreeMap, + environment: &BTreeMap, ) -> Result<(), fmt::Error> { writer.write_char(COMMA)?; writer.write_char(BRACKET_OPEN)?; @@ -164,7 +172,7 @@ pub fn write_enviroment( false, &PAREN_OPEN.to_string(), &PAREN_CLOSE.to_string(), - vec![&escape_string(key), &escape_string(environment)], + &[&escape_string(key), &escape_string(environment)], )?; } -- cgit 1.4.1