1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
//! Deserialize HCL data to a Rust data structure.
//!
//! The `Deserializer` implementation tries to follow the [HCL JSON Specification][hcl-json-spec]
//! as close as possible.
//!
//! [hcl-json-spec]: https://github.com/hashicorp/hcl/blob/main/json/spec.md
#[cfg(test)]
mod tests;
use crate::{
parser, structure::de::BodyDeserializer, value::de::ValueDeserializer, Body, Error, Result,
};
use serde::de;
use serde::forward_to_deserialize_any;
/// A structure that deserializes HCL into Rust values.
pub struct Deserializer {
body: Body,
}
impl Deserializer {
/// Creates a HCL deserializer from a `&str`.
///
/// ## Errors
///
/// An [`Error`][Error] is returned when the input is not valid HCL.
///
/// [Error]: ../error/enum.Error.html
pub fn from_str(input: &str) -> Result<Self> {
let body = parser::parse(input)?;
Ok(Deserializer { body })
}
}
/// Deserialize an instance of type `T` from a string of HCL text.
///
/// By default, the deserialization will follow the [HCL JSON Specification][hcl-json-spec].
///
/// If preserving HCL semantics is required consider deserializing into a [`Body`][Body] instead or
/// use [`hcl::parse`][parse] to directly parse the input into a [`Body`][Body].
///
/// [hcl-json-spec]: https://github.com/hashicorp/hcl/blob/main/json/spec.md
/// [parse]: ../fn.parse.html
/// [Body]: ../struct.Body.html
///
/// ## Example
///
/// ```
/// use serde_json::{json, Value};
/// # use std::error::Error;
/// #
/// # fn main() -> Result<(), Box<dyn Error>> {
/// let input = r#"
/// some_attr = {
/// foo = [1, 2]
/// bar = true
/// }
///
/// some_block "some_block_label" {
/// attr = "value"
/// }
/// "#;
///
/// let expected = json!({
/// "some_attr": {
/// "foo": [1, 2],
/// "bar": true
/// },
/// "some_block": {
/// "some_block_label": {
/// "attr": "value"
/// }
/// }
/// });
///
/// let value: Value = hcl::from_str(input)?;
///
/// assert_eq!(value, expected);
/// # Ok(())
/// # }
/// ```
///
/// ## Errors
///
/// This functions fails with an error if the data does not match the structure of `T`.
pub fn from_str<'de, T>(s: &'de str) -> Result<T>
where
T: de::Deserialize<'de>,
{
let deserializer = Deserializer::from_str(s)?;
T::deserialize(deserializer)
}
/// Deserialize an instance of type `T` from an IO stream of HCL.
///
/// See the documentation of [`from_str`][from_str] for more information.
///
/// ## Example
///
/// ```
/// use serde_json::{json, Value};
/// # use std::error::Error;
/// #
/// # fn main() -> Result<(), Box<dyn Error>> {
/// let input = r#"
/// some_attr = {
/// foo = [1, 2]
/// bar = true
/// }
///
/// some_block "some_block_label" {
/// attr = "value"
/// }
/// "#;
///
/// let expected = json!({
/// "some_attr": {
/// "foo": [1, 2],
/// "bar": true
/// },
/// "some_block": {
/// "some_block_label": {
/// "attr": "value"
/// }
/// }
/// });
///
/// let value: Value = hcl::from_reader(input.as_bytes())?;
///
/// assert_eq!(value, expected);
/// # Ok(())
/// # }
/// ```
///
/// ## Errors
///
/// This functions fails with an error if reading from the reader fails or if the data does not
/// match the structure of `T`.
pub fn from_reader<T, R>(mut reader: R) -> Result<T>
where
T: de::DeserializeOwned,
R: std::io::Read,
{
let mut s = String::new();
reader.read_to_string(&mut s)?;
from_str(&s)
}
/// Deserialize an instance of type `T` from a byte slice.
///
/// See the documentation of [`from_str`][from_str] for more information.
///
/// ## Errors
///
/// This functions fails with an error if `buf` does not contain valid UTF-8 or if the data does
/// not match the structure of `T`.
pub fn from_slice<'de, T>(buf: &'de [u8]) -> Result<T>
where
T: de::Deserialize<'de>,
{
let s = std::str::from_utf8(buf)?;
from_str(s)
}
impl<'de, 'a> de::Deserializer<'de> for Deserializer {
type Error = Error;
fn deserialize_any<V>(self, visitor: V) -> Result<V::Value>
where
V: de::Visitor<'de>,
{
let de = ValueDeserializer::new(self.body.into());
de.deserialize_any(visitor)
}
fn deserialize_newtype_struct<V>(
self,
name: &'static str,
visitor: V,
) -> Result<V::Value, Self::Error>
where
V: de::Visitor<'de>,
{
if name == "$hcl::body" {
// Specialized handling of `hcl::Body`.
let de = BodyDeserializer::new(self.body);
de.deserialize_any(visitor)
} else {
// Generic deserialization according to the HCL JSON spec.
self.deserialize_any(visitor)
}
}
fn deserialize_enum<V>(
self,
name: &'static str,
variants: &'static [&'static str],
visitor: V,
) -> Result<V::Value>
where
V: de::Visitor<'de>,
{
let de = ValueDeserializer::new(self.body.into());
de.deserialize_enum(name, variants, visitor)
}
forward_to_deserialize_any! {
bool i8 i16 i32 i64 i128 u8 u16 u32 u64 u128 f32 f64 char str string
bytes byte_buf option unit unit_struct seq tuple
tuple_struct map struct identifier ignored_any
}
}