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
// Copyright 2018-2020 Cargill Incorporated // // 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 // // http://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. //! Module containing ConstraintViolationError implementation. use std::error; use std::fmt; /// The type of constraint violation that caused the error /// /// This is the type of constraint on the database's definition that is /// violated. For example, if an operation tries to insert an entry that would /// cause a duplicate in a unique column, the ConstraintViolationType::Unique /// should be used. #[derive(Debug)] pub enum ConstraintViolationType { Unique, ForeignKey, Other(String), } impl fmt::Display for ConstraintViolationType { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { match &self { ConstraintViolationType::Unique => write!(f, "Unique"), ConstraintViolationType::ForeignKey => write!(f, "Foreign Key"), ConstraintViolationType::Other(ref msg) => write!(f, "{}", msg), } } } /// An error which is returned because of a database constraint violation. /// /// This error indicates that an update to a database failed because it would have violated /// a constraint defined as part of the database's definition. For example, if the database has /// a table with a unique column, and an attempt to insert an entry which would cause duplication in /// that column, an error with violation type `ConstraintViolationType::Unique` will occur. /// /// Although this error maps closely to those generated by relational databases (such as those /// covered by Diesel), the underlying database does not need to be relational. It could, for /// example, be a memory or file-backed implementation of a store. pub struct ConstraintViolationError { violation_type: ConstraintViolationType, source: Option<Box<dyn error::Error>>, } impl ConstraintViolationError { /// Constructs a new `ConstraintViolationError` from a specified violation type. /// /// The implementation of `std::fmt::Display` for this error will use the /// standard display of the ConstraintViolationType for its message. /// /// # Examples /// /// ``` /// use grid_sdk::error::{ ConstraintViolationError, ConstraintViolationType }; /// /// let constraint_violation_error = ConstraintViolationError::with_violation_type( /// ConstraintViolationType::Unique /// ); /// assert_eq!(format!("{}", constraint_violation_error), "Unique constraint violated"); /// ``` pub fn with_violation_type(violation_type: ConstraintViolationType) -> Self { Self { violation_type, source: None, } } /// Constructs a new `ConstraintViolationError` from a specified source error and violation type. /// /// The implementation of `std::fmt::Display` for this error will simply pass through the /// display of the source message unmodified. /// /// # Examples /// /// ``` /// use grid_sdk::error::{ ConstraintViolationError, ConstraintViolationType }; /// /// let db_err = std::io::Error::new(std::io::ErrorKind::Other, "db error"); /// let constraint_violation_error = ConstraintViolationError::from_source_with_violation_type( /// ConstraintViolationType::Unique, /// Box::new(db_err) /// ); /// assert_eq!(format!("{}", constraint_violation_error), "db error"); /// ``` pub fn from_source_with_violation_type( violation_type: ConstraintViolationType, source: Box<dyn error::Error>, ) -> Self { Self { violation_type, source: Some(source), } } } impl error::Error for ConstraintViolationError { fn source(&self) -> Option<&(dyn error::Error + 'static)> { self.source.as_ref().map(|s| s.as_ref()) } } impl fmt::Display for ConstraintViolationError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { match &self.source { Some(s) => write!(f, "{}", s), None => write!(f, "{} constraint violated", &self.violation_type), } } } impl fmt::Debug for ConstraintViolationError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { const TYPE_NAME: &str = "ConstraintViolationError"; match &self.source { Some(s) => write!( f, "{} {{ source: {:?}, violation_type: {:?} }}", TYPE_NAME, s, &self.violation_type ), None => write!( f, "{} {{ violation_type: {:?} }}", TYPE_NAME, &self.violation_type ), } } } #[cfg(test)] pub mod tests { use super::*; /// Tests that errors constructed with `ConstraintViolationError::with_violation_type` /// return a debug string of the form /// `format!("ConstraintViolationError { violation_type: {:?} }", type)`. #[test] fn test_debug_with_violation_type() { let debug = "ConstraintViolationError { violation_type: Unique }"; let err = ConstraintViolationError::with_violation_type(ConstraintViolationType::Unique); assert_eq!(format!("{:?}", err), debug); } /// Tests that errors constructed with `ConstraintViolationError::from_source_with_violation_type` /// return a debug string of the form /// `format!("ConstraintViolationError { source: {:?}, violation_type: {:?} }", source, type)`. #[test] fn test_debug_from_source_with_violation_type() { let debug = "ConstraintViolationError { source: ConstraintViolationError { violation_type: Unique }, violation_type: Unique }"; let err = ConstraintViolationError::from_source_with_violation_type( ConstraintViolationType::Unique, Box::new(ConstraintViolationError::with_violation_type( ConstraintViolationType::Unique, )), ); assert_eq!(format!("{:?}", err), debug); } /// Tests that error constructed with `ConstraintViolationError::with_violation_type` /// return a display string which specifies the which constraint type was violated. #[test] fn test_display_with_violation_type() { let disp = "Unique constraint violated"; let err = ConstraintViolationError::with_violation_type(ConstraintViolationType::Unique); assert_eq!(format!("{}", err), disp); } /// Tests that error constructed with `ConstraintViolationError::from_source_with_violation_type` /// return a display string which specifies the source's display string. #[test] fn test_display_from_source_with_violation_type() { let disp = "Unique constraint violated"; let err = ConstraintViolationError::from_source_with_violation_type( ConstraintViolationType::Unique, Box::new(ConstraintViolationError::with_violation_type( ConstraintViolationType::Unique, )), ); assert_eq!(format!("{}", err), disp); } }