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
/*
* Copyright 2022-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
use super::{JsonDeserializationError, JsonDeserializationErrorContext, SchemaType, ValueParser};
use crate::ast::Context;
use crate::extensions::Extensions;
use std::collections::HashMap;
/// Trait for schemas that can inform the parsing of Context data
pub trait ContextSchema {
/// `SchemaType` (expected to be a `Record`) for the context.
fn context_type(&self) -> SchemaType;
}
/// Simple type that implements `ContextSchema` by expecting an empty context
#[derive(Debug, Clone)]
pub struct NullContextSchema;
impl ContextSchema for NullContextSchema {
fn context_type(&self) -> SchemaType {
SchemaType::Record {
attrs: HashMap::new(),
}
}
}
/// Struct used to parse context from JSON.
#[derive(Debug, Clone)]
pub struct ContextJsonParser<'e, 's, S: ContextSchema = NullContextSchema> {
/// If a `schema` is present, this will inform the parsing: for instance, it
/// will allow `__entity` and `__extn` escapes to be implicit.
/// It will also ensure that the produced `Context` fully conforms to the
/// `schema` -- for instance, it will error if attributes have the wrong
/// types (e.g., string instead of integer), or if required attributes are
/// missing or superfluous attributes are provided.
schema: Option<&'s S>,
/// Extensions which are active for the JSON parsing.
extensions: Extensions<'e>,
}
impl<'e, 's, S: ContextSchema> ContextJsonParser<'e, 's, S> {
/// Create a new `ContextJsonParser`.
///
/// If a `schema` is present, this will inform the parsing: for instance, it
/// will allow `__entity` and `__extn` escapes to be implicit.
/// It will also ensure that the produced `Context` fully conforms to the
/// `schema` -- for instance, it will error if attributes have the wrong
/// types (e.g., string instead of integer), or if required attributes are
/// missing or superfluous attributes are provided.
pub fn new(schema: Option<&'s S>, extensions: Extensions<'e>) -> Self {
Self { schema, extensions }
}
/// Parse context JSON (in `&str` form) into a `Context` object
pub fn from_json_str(&self, json: &str) -> Result<Context, JsonDeserializationError> {
let val = serde_json::from_str(json)?;
self.from_json_value(val)
}
/// Parse context JSON (in `serde_json::Value` form) into a `Context` object
pub fn from_json_value(
&self,
json: serde_json::Value,
) -> Result<Context, JsonDeserializationError> {
let vparser = ValueParser::new(self.extensions.clone());
let expected_ty = self.schema.map(|s| s.context_type());
let rexpr = vparser.val_into_rexpr(json, expected_ty.as_ref(), || {
JsonDeserializationErrorContext::Context
})?;
Context::from_expr(rexpr).map_err(|rexpr| {
JsonDeserializationError::ExpectedContextToBeRecord {
got: Box::new(rexpr),
}
})
}
/// Parse context JSON (in `std::io::Read` form) into a `Context` object
pub fn from_json_file(
&self,
json: impl std::io::Read,
) -> Result<Context, JsonDeserializationError> {
let val = serde_json::from_reader(json).map_err(JsonDeserializationError::from)?;
self.from_json_value(val)
}
}