forked from Harrm/scale-codec
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathscale_error.hpp
98 lines (88 loc) · 3.51 KB
/
scale_error.hpp
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 Quadrivium LLC
* All Rights Reserved
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @brief This file defines error codes for encoding and decoding operations
* in the SCALE serialization format.
*
* This header provides error handling mechanisms for encoding and decoding
* operations.
*/
#pragma once
#include <qtils/enum_error_code.hpp>
namespace scale {
/**
* @enum EncodeError
* @brief Provides error codes for encoding methods in SCALE serialization.
*/
enum class EncodeError {
NEGATIVE_INTEGER, ///< Encoding of negative integers is not supported.
DEREF_NULLPOINTER, ///< Attempt to dereference a null pointer.
VALUE_TOO_BIG_FOR_COMPACT_REPRESENTATION ///< Value is too large for
///< compact representation.
};
/**
* @enum DecodeError
* @brief Provides error codes for decoding methods in SCALE serialization.
*/
enum class DecodeError {
NOT_ENOUGH_DATA = 1, ///< Not enough data to decode value.
UNEXPECTED_VALUE, ///< Unexpected value encountered during decoding.
TOO_MANY_ITEMS, ///< Too many items, cannot address them in memory.
WRONG_TYPE_INDEX, ///< Incorrect type index, cannot decode variant.
INVALID_ENUM_VALUE, ///< Enum value does not belong to the expected enum.
UNUSED_BITS_ARE_SET, ///< Unused bits are set.
REDUNDANT_COMPACT_ENCODING, ///< Redundant bytes found in compact encoding.
DECODED_VALUE_OVERFLOWS_TARGET ///< Decoded value overflows the target
///< type.
};
} // namespace scale
OUTCOME_HPP_DECLARE_ERROR(scale, EncodeError)
OUTCOME_HPP_DECLARE_ERROR(scale, DecodeError)
/**
* @brief Defines the error category for SCALE encoding errors.
* @param e The specific encoding error.
* @return A string describing the error.
*/
inline OUTCOME_CPP_DEFINE_CATEGORY(scale, EncodeError, e) {
using scale::EncodeError;
switch (e) {
case EncodeError::NEGATIVE_INTEGER:
return "SCALE encode: negative integers is not supported";
case EncodeError::VALUE_TOO_BIG_FOR_COMPACT_REPRESENTATION:
return "SCALE decode: value too big for compact representation";
case EncodeError::DEREF_NULLPOINTER:
return "SCALE encode: attempt to dereference a nullptr";
}
return "unknown EncodeError";
}
/**
* @brief Defines the error category for SCALE decoding errors.
* @param e The specific decoding error.
* @return A string describing the error.
*/
inline OUTCOME_CPP_DEFINE_CATEGORY(scale, DecodeError, e) {
using scale::DecodeError;
switch (e) {
case DecodeError::NOT_ENOUGH_DATA:
return "SCALE decode: not enough data to decode";
case DecodeError::UNEXPECTED_VALUE:
return "SCALE decode: unexpected value occurred";
case DecodeError::TOO_MANY_ITEMS:
return "SCALE decode: collection has too many items or memory is out or "
"data is damaged, unable to unpack";
case DecodeError::WRONG_TYPE_INDEX:
return "SCALE decode: wrong type index, cannot decode variant";
case DecodeError::INVALID_ENUM_VALUE:
return "SCALE decode: decoded enum value does not belong to the enum";
case DecodeError::UNUSED_BITS_ARE_SET:
return "SCALE decode: bits which must be unused have set";
case DecodeError::REDUNDANT_COMPACT_ENCODING:
return "SCALE decode: redundant bytes in compact encoding";
case DecodeError::DECODED_VALUE_OVERFLOWS_TARGET:
return "SCALE decode: encoded value overflows target type";
}
return "unknown SCALE DecodeError";
}