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
pub type UpdateResult = Result<(), UpdateError>; pub type ReadResult<T> = Result<T, ReadError>; #[derive(Debug)] pub enum UpdateError { InvalidSectionIndexError(&'static str, usize), } #[derive(Debug)] pub enum ReadError { ConstantReadError(ConstantReadError), OpcodeReadError, BogusOpcodeReadError(u8), OperandReadError, SymBindReadError, UnknownSimBindReadError(u8), SymTypeReadError, UnknownSimTypeReadError(u8), KOSymbolConstantReadError(&'static str), KOSValueTypeReadError(u8), KOSValueReadError, SectionKindReadError, UnknownSectionKindReadError(u8), SectionHeaderConstantReadError(&'static str), StringTableReadError, KOHeaderReadError(&'static str), KSMHeaderReadError(&'static str), VersionMismatchError(u8), DebugSectionUnsupportedError, MissingSectionError(&'static str), InvalidKOFileMagicError, InvalidKSMFileMagicError, } #[derive(Debug)] pub enum ConstantReadError { BoolReadError, U8ReadError, I8ReadError, U16ReadError, I16ReadError, U32ReadError, I32ReadError, F32ReadError, F64ReadError, StringReadError, } impl std::error::Error for UpdateError {} impl std::error::Error for ReadError {} impl std::error::Error for ConstantReadError {} impl std::fmt::Display for UpdateError { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { match self { UpdateError::InvalidSectionIndexError(section_name, section_index) => { write!(f, "Error updating KOFile headers. Section {} has index {}, which no section header exists for.", section_name, section_index) } } } } impl std::fmt::Display for ReadError { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { match self { ReadError::ConstantReadError(e) => { write!(f, "Error reading constant of type {}, ran out of bytes.", e) } ReadError::OpcodeReadError => { write!(f, "Error reading opcode for instruction, ran out of bytes.") } ReadError::BogusOpcodeReadError(v) => { write!( f, "Error reading opcode for instruction, value {:x} is not a valid opcode", v ) } ReadError::OperandReadError => { write!( f, "Error reading operand for instruction, ran out of bytes." ) } ReadError::SymBindReadError => { write!(f, "Error reading symbol binding, ran out of bytes.") } ReadError::UnknownSimBindReadError(v) => { write!( f, "Error reading symbol binding, unknown binding with value {:x}", v ) } ReadError::SymTypeReadError => { write!(f, "Error reading symbol type, ran out of bytes.") } ReadError::UnknownSimTypeReadError(v) => { write!( f, "Error reading symbol type, unknown type with value {:x}", v ) } ReadError::KOSymbolConstantReadError(s) => { write!( f, "Error reading symbol while parsing constant for {}, ran out of bytes.", s ) } ReadError::KOSValueTypeReadError(v) => { write!( f, "Error reading kOS value, unknown type with value {:x}", v ) } ReadError::KOSValueReadError => { write!(f, "Error reading kOS value, ran out of bytes.") } ReadError::SectionKindReadError => { write!(f, "Error reading section kind, ran out of bytes.") } ReadError::UnknownSectionKindReadError(v) => { write!( f, "Error reading section kind, unknown kind with value {:x}", v ) } ReadError::SectionHeaderConstantReadError(s) => { write!( f, "Error reading section header while parsing constant {}, ran out of bytes.", s ) } ReadError::StringTableReadError => { write!(f, "Error reading string table, ran out of bytes.") } ReadError::KOHeaderReadError(s) => { write!( f, "Error reading kerbal object file header, while parsing constant {}, ran out of bytes.", s ) } ReadError::KSMHeaderReadError(s) => { write!(f, "Error reading kerbal machine code file, while parsing constant {}, ran out of bytes.", s) } ReadError::VersionMismatchError(v) => { write!( f, "Error reading KerbalObject file, unsupported KO file version: {}", v ) } ReadError::DebugSectionUnsupportedError => { write!( f, "Error reading KerbalObject file, debug sections unsupported in this version." ) } &ReadError::MissingSectionError(s) => { write!( f, "Error reading KerbalObject file, expected section: {}", s ) } ReadError::InvalidKOFileMagicError => { write!( f, "Error reading KerbalObject file, input file does not appear to be a KO file" ) } ReadError::InvalidKSMFileMagicError => { write!(f, "Error reading Kerbal Machine Code file, input file does not appear to be a KSM file") } } } } impl std::fmt::Display for ConstantReadError { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { match self { &ConstantReadError::BoolReadError => { write!(f, "boolean") } &ConstantReadError::U8ReadError => { write!(f, "unsigned byte") } &ConstantReadError::I8ReadError => { write!(f, "signed byte") } &ConstantReadError::U16ReadError => { write!(f, "unsigned 16-bit integer") } &ConstantReadError::I16ReadError => { write!(f, "signed 16-bit integer") } &ConstantReadError::U32ReadError => { write!(f, "unsigned 32-bit integer") } &ConstantReadError::I32ReadError => { write!(f, "signed 32-bit integer") } &ConstantReadError::F32ReadError => { write!(f, "float") } &ConstantReadError::F64ReadError => { write!(f, "double float") } &ConstantReadError::StringReadError => { write!(f, "string") } } } }