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
//! **Context-rich error handling for Rust with zero-cost abstractions and zero allocations**
//!
//! This is the primary interface for ResExt. It re-exports the proc-macro as well as other helpers
//! provided by ResExt.
//!
//! # Quick Start
//!
//! ```rust
//! use resext::resext;
//!
//! #[resext]
//! enum ConfigError {
//! Io(std::io::Error),
//! Utf8(std::string::FromUtf8Error),
//! }
//!
//! fn load_config(path: &str) -> Res<String> {
//! let content = std::fs::read(path)
//! .context("Failed to read config")?;
//!
//! std::string::String::from_utf8(content)
//! .context("Failed to parse config")
//! }
//! ```
//!
//! ---
//!
//! # Proc Macro
//!
//! The proc macro provides clean syntax with full customization:
//!
//! ```rust
//! use resext::resext;
//!
//! #[resext(
//! prefix = "ERROR: ",
//! delimiter = " -> ",
//! include_variant = true,
//! )]
//! enum MyError {
//! Io(std::io::Error),
//! Fmt { error: std::fmt::Error },
//! }
//! ```
//!
//! ## Attribute Options
//!
//! - `prefix` - String prepended to entire error message
//! - `suffix` - String appended to entire error message
//! - `msg_prefix` - String prepended to each context message
//! - `msg_suffix` - String appended to each context message
//! - `delimiter` - Separator between context messages (default: " - ")
//! - `source_prefix` - String prepended to source error (default: "Error: ")
//! - `include_variant` - Include variant name in Display output (default: false)
//! - `alias` - Custom type alias name which is used for getting the names for other items generated by the proc-macro (default: `Res`)
//! - `buf_size` - Size for the context message byte buffer (default: 64)
//! - `alloc` Enable heap-spilling if context exceeds `buf_size`
//!
//! ## `.context()` Method
//!
//! Add static context to an error.
//!
//! Accepts `&str` or `ctx!()` macro which outputs a lazily evaluated closure with usage similar to old `format_args!()` API
//!
//! ### Example
//!
//! ```rust
//! # use resext::resext;
//! # #[resext] enum Error { Io(std::io::Error) }
//! # fn doctest() -> Res<()> {
//! std::fs::read("file.txt")
//! .context("Failed to read file")?;
//! # Ok(())
//! # }
//! ```
//!
//! ---
//!
//! # Error Display Format
//!
//! Errors are displayed with context chains:
//!
//! ```text
//! Failed to load application
//! - Failed to read config file
//! - Failed to open file
//! Error: No such file or directory
//! ```
//!
//! With `include_variant = true`:
//!
//! ```text
//! Failed to load application
//! - Failed to read config file
//! Error: Io: No such file or directory
//! ```
//!
//! ---
//!
//! # Examples
//!
//! ## Error Handling
//!
//! ```rust
//! use resext::ctx;
//! use resext::resext;
//!
//! use std::io::{Error, ErrorKind};
//!
//! #[resext]
//! enum AppError {
//! Io(Error),
//! Parse { error: std::num::ParseIntError },
//! }
//! # trait Temp { fn from_args<F: FnOnce(ResErr, &str, &str, &str) -> ResErr>(msg: F, source: Error) -> ResErr; }
//! # impl Temp for ResErr { fn from_args<F: FnOnce(ResErr, &str, &str, &str) -> ResErr>(msg: F, source: Error) -> ResErr { ResErr::new("", Error::other("")) } }
//!
//! fn read_config(path: &str) -> Res<String> {
//! let content: String = std::fs::read_to_string(path)
//! .context(ctx!("Failed to read file: {}", path))?;
//!
//! if content.is_empty() {
//! return Err(ResErr::new(
//! "Content is is empty",
//! Error::new(ErrorKind::UnexpectedEof, "Data is empty"),
//! ));
//! }
//!
//! let value = content
//! .trim()
//! .parse::<i32>()
//! .context(ctx!("Failed to parse config value: {}", &content))?;
//!
//! if value < 32 {
//! return Err(ResErr::from_args(
//! ctx!("Value: {} is less than 32", value),
//! Error::new(ErrorKind::InvalidData, "Data is less than 32"),
//! ));
//! }
//!
//! Ok(content)
//! }
//! ```
//!
//! ## Multiple Error Types
//!
//! **Note:** This example is not tested as it's an example of errors from external crates
//!
//! ```rust,ignore
//! use resext::resext;
//! use resext::ctx;
//!
//! #[resext(alias = ApiResult)]
//! enum ApiError {
//! Network(reqwest::Error),
//! Database(sqlx::Error),
//! Json(serde_json::Error),
//! }
//!
//! async fn fetch_user(id: u64) -> ApiResult<User> {
//! let response = reqwest::get(format!("/users/{}", id))
//! .await
//! .context(ctx!("Failed to fetch user: {}", id))?;
//!
//! let user = response.json()
//! .await
//! .context("Failed to parse user data")?;
//!
//! Ok(user)
//! }
//! ```
//!
pub use resext;
;
/// Creates a lazily-evaluated context message for use with `.context()`.
///
/// Takes a format string and optional arguments identical to `write!` or `format_args!`,
/// but only evaluates and writes the message if an error actually occurs.
///
/// # Examples
///
/// ```rust
/// use resext::resext;
/// use resext::ctx;
///
/// #[resext]
/// enum FileError {
/// Io(std::io::Error),
/// Utf8(std::string::FromUtf8Error),
/// }
///
/// fn read_file(path: &str) -> Res<String> {
/// let content = std::fs::read(path)
/// .context(ctx!("Failed to read file: {}", path))?;
///
/// String::from_utf8(content)
/// .context(ctx!("Failed to parse file: {}", path))
/// }
/// ```
///
/// Static messages without arguments are also supported, but it is encouraged
/// to use raw `&str`:
///
/// ```rust
/// # use resext::resext;
/// # use resext::ctx;
/// # #[resext] enum Err { Io(std::io::Error) }
/// # fn doctest() -> Res<()> {
/// std::fs::read_to_string("config.toml")
/// .context(ctx!("Failed to read config"))?;
/// # Ok(())
/// # }
/// ```
///
/// # Note
///
/// This macro must be used with `.context()` method generated by `#[resext]`.
/// It cannot be used standalone.