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 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
/*
* 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 std::fmt::Display;
use super::SchemaType;
use crate::ast::{
EntityType, EntityUID, Expr, ExprKind, Name, RestrictedExpr, RestrictedExpressionError,
};
use crate::extensions::ExtensionsError;
use crate::parser::err::ParseErrors;
use smol_str::SmolStr;
use thiserror::Error;
/// Escape kind
#[derive(Debug)]
pub enum EscapeKind {
/// Escape `__expr`
/// Note that `__expr` is deprecated and once it is
/// removed, this variant will also be removed
Expr,
/// Escape `__entity`
Entity,
/// Escape `__extn`
Extension,
}
impl Display for EscapeKind {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Self::Entity => write!(f, "__entity"),
Self::Expr => write!(f, "__expr"),
Self::Extension => write!(f, "__extn"),
}
}
}
/// Errors thrown during deserialization from JSON
#[derive(Debug, Error)]
pub enum JsonDeserializationError {
/// Error thrown by the `serde_json` crate
#[error("{0}")]
Serde(#[from] serde_json::Error),
/// Contents of an escape failed to parse.
/// Note that escape `__expr` is deprecated and once it is
/// removed, `EscapeKind::Expr` will also be removed
#[error("failed to parse escape `{kind}`: {value}, errors: {errs}")]
ParseEscape {
/// Escape kind
kind: EscapeKind,
/// Escape value at fault
value: String,
/// Parse errors
errs: ParseErrors,
},
/// Restricted expression error
#[error(transparent)]
RestrictedExpressionError(#[from] RestrictedExpressionError),
/// Error thrown by an operation on `Extensions`
#[error(transparent)]
ExtensionsError(#[from] ExtensionsError),
/// A field that needs to be a literal entity reference, was some other JSON value
#[error("{ctx}, expected a literal entity reference, but got: {got}")]
ExpectedLiteralEntityRef {
/// Context of this error
ctx: Box<JsonDeserializationErrorContext>,
/// the expression we got instead
got: Box<Expr>,
},
/// A field that needs to be an extension value, was some other JSON value
#[error("{ctx}, expected an extension value, but got: {got}")]
ExpectedExtnValue {
/// Context of this error
ctx: Box<JsonDeserializationErrorContext>,
/// the expression we got instead
got: Box<Expr>,
},
/// Contexts need to be records, but we got some other JSON value
#[error("expected `context` to be a record, but got `{got}`")]
ExpectedContextToBeRecord {
/// Expression we got instead
got: Box<RestrictedExpr>,
},
/// Parents of actions should be actions, but this action has a non-action parent
#[error("action `{uid}` has a non-action parent `{parent}`")]
ActionParentIsNotAction {
/// Action entity that had the invalid parent
uid: EntityUID,
/// Parent that is invalid
parent: EntityUID,
},
/// Schema-based parsing needed an implicit extension constructor, but no suitable
/// constructor was found
#[error("{ctx}, missing extension constructor for {arg_type} -> {return_type}")]
MissingImpliedConstructor {
/// Context of this error
ctx: Box<JsonDeserializationErrorContext>,
/// return type of the constructor we were looking for
return_type: Box<SchemaType>,
/// argument type of the constructor we were looking for
arg_type: Box<SchemaType>,
},
/// During schema-based parsing, encountered an entity of a type which is
/// not declared in the schema. Note that this error is only used for non-Action entity types.
#[error("entity `{uid}` has type `{}` which is not declared in the schema{}",
&.uid.entity_type(),
match .suggested_types.as_slice() {
[] => String::new(),
[ty] => format!("; did you mean {ty}?"),
tys => format!("; did you mean one of {:?}?", tys.iter().map(ToString::to_string).collect::<Vec<String>>())
}
)]
UnexpectedEntityType {
/// Entity that had the unexpected type
uid: EntityUID,
/// Suggested similar entity types that actually are declared in the schema (if any)
suggested_types: Vec<EntityType>,
},
/// During schema-based parsing, encountered an action which was not
/// declared in the schema
#[error("found action entity `{uid}`, but it was not declared as an action in the schema")]
UndeclaredAction {
/// Action which was not declared in the schema
uid: EntityUID,
},
/// During schema-based parsing, encountered an action whose definition
/// doesn't precisely match the schema's declaration of that action
#[error("definition of action `{uid}` does not match its schema declaration")]
ActionDeclarationMismatch {
/// Action whose definition mismatched between entity data and schema
uid: EntityUID,
},
/// During schema-based parsing, encountered this attribute on this entity, but that
/// attribute shouldn't exist on entities of this type
#[error("attribute {:?} on `{uid}` shouldn't exist according to the schema", &.attr)]
UnexpectedEntityAttr {
/// Entity that had the unexpected attribute
uid: EntityUID,
/// Name of the attribute that was unexpected
attr: SmolStr,
},
/// During schema-based parsing, encountered this attribute on a record, but
/// that attribute shouldn't exist on that record
#[error("{ctx}, record attribute {record_attr:?} shouldn't exist according to the schema")]
UnexpectedRecordAttr {
/// Context of this error
ctx: Box<JsonDeserializationErrorContext>,
/// Name of the (Record) attribute which was unexpected
record_attr: SmolStr,
},
/// During schema-based parsing, didn't encounter this attribute of an
/// entity, but that attribute should have existed
#[error("expected entity `{uid}` to have an attribute {attr:?}, but it doesn't")]
MissingRequiredEntityAttr {
/// Entity that is missing a required attribute
uid: EntityUID,
/// Name of the attribute which was expected
attr: SmolStr,
},
/// During schema-based parsing, didn't encounter this attribute of a
/// record, but that attribute should have existed
#[error("{ctx}, expected the record to have an attribute {record_attr:?}, but it doesn't")]
MissingRequiredRecordAttr {
/// Context of this error
ctx: Box<JsonDeserializationErrorContext>,
/// Name of the (Record) attribute which was expected
record_attr: SmolStr,
},
/// During schema-based parsing, the given attribute on the given entity had
/// a different type than the schema indicated to expect
#[error("{ctx}, type mismatch: attribute was expected to have type {expected}, but actually has type {actual}")]
TypeMismatch {
/// Context of this error
ctx: Box<JsonDeserializationErrorContext>,
/// Type which was expected
expected: Box<SchemaType>,
/// Type which was encountered instead
actual: Box<SchemaType>,
},
/// During schema-based parsing, found a set whose elements don't all have the
/// same type. This doesn't match any possible schema.
#[error("{ctx}, set elements have different types: {ty1} and {ty2}")]
HeterogeneousSet {
/// Context of this error
ctx: Box<JsonDeserializationErrorContext>,
/// First element type which was found
ty1: Box<SchemaType>,
/// Second element type which was found
ty2: Box<SchemaType>,
},
/// During schema-based parsing, found a parent of a type that's not allowed
/// for that entity
#[error(
"{ctx}, `{uid}` is not allowed to have a parent of type `{parent_ty}` according to the schema"
)]
InvalidParentType {
/// Context of this error
ctx: Box<JsonDeserializationErrorContext>,
/// Entity that has an invalid parent type
uid: EntityUID,
/// Parent type which was invalid
parent_ty: Box<EntityType>, // boxed to avoid this variant being very large (and thus all JsonDeserializationErrors being large)
},
}
/// Errors thrown during serialization to JSON
#[derive(Debug, Error)]
pub enum JsonSerializationError {
/// Error thrown by `serde_json`
#[error("{0}")]
Serde(#[from] serde_json::Error),
/// Extension-function calls with 0 arguments are not currently supported in
/// our JSON format.
#[error("extension-function calls with 0 arguments are not currently supported in our JSON format. found call of {func}")]
ExtnCall0Arguments {
/// Name of the function which was called with 0 arguments
func: Name,
},
/// Extension-function calls with 2 or more arguments are not currently
/// supported in our JSON format.
#[error("extension-function calls with 2 or more arguments are not currently supported in our JSON format. found call of {func}")]
ExtnCall2OrMoreArguments {
/// Name of the function which was called with 2 or more arguments
func: Name,
},
/// Encountered a `Record` which can't be serialized to JSON because it
/// contains a key which is reserved as a JSON escape.
#[error("record uses reserved key: {key}")]
ReservedKey {
/// Reserved key which was used by the `Record`
key: SmolStr,
},
/// Encountered an `ExprKind` which we didn't expect. Either a case is
/// missing in `JSONValue::from_expr()`, or an internal invariant was
/// violated and there is a non-restricted expression in `RestrictedExpr`
#[error("unexpected restricted expression: {kind:?}")]
UnexpectedRestrictedExprKind {
/// `ExprKind` which we didn't expect to find
kind: ExprKind,
},
}
/// Gives information about the context of a JSON deserialization error (e.g.,
/// where we were in the JSON document).
#[derive(Debug, Clone)]
pub enum JsonDeserializationErrorContext {
/// The error occurred while deserializing the attribute `attr` of an entity.
EntityAttribute {
/// Entity where the error occurred
uid: EntityUID,
/// Attribute where the error occurred
attr: SmolStr,
},
/// The error occurred while deserializing the `parents` field of an entity.
EntityParents {
/// Entity where the error occurred
uid: EntityUID,
},
/// The error occurred while deserializing the `uid` field of an entity.
EntityUid,
/// The error occurred while deserializing the `Context`.
Context,
}
impl std::fmt::Display for JsonDeserializationErrorContext {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Self::EntityAttribute { uid, attr } => write!(f, "in attribute {attr:?} on {uid}"),
Self::EntityParents { uid } => write!(f, "in parents field of {uid}"),
Self::EntityUid => write!(f, "in uid field of <unknown entity>"),
Self::Context => write!(f, "while parsing context"),
}
}
}