coded

This is a concrete error type with an ErrorKind enum matching Google's "canonical error codes". You may know these from Google Cloud errors, absl::Status, or gRPC status codes.

Status

The error code enum is exceptionally stable. The overall crate API is a work in progress. Ideas welcome!

I'll convert Moonfire NVR to this shortly.

Example

```rust use coded::{bail, err, Error, ErrorBuilder, ErrorKind, ResultExt};

/// Reads application config from its well-known paths. fn readconfig() -> Result { for path in &PATHS { match readjson(p) { Ok(c) => return Ok(c), Err(e) if e.kind() == ErrorKind::NotFound => { /* keep trying */ },

        // The `bail!` macro is a convenient, flexible shorthand.
        Err(e) => bail!(e, msg("can't read {}", p.display()))
    }
}

// `bail!` lets us write `NotFound` without `use ErrorKind::*`.
bail!(NotFound, msg("no config file at any of {:?}", PATHS))

}

/// Reads a JSON object from the given path. /// /// This returns an ErrorBuilder rather than an Error, avoiding a redundant /// entry in the error chain when it's wrapped by the caller. fn read_json(p: &Path) -> Result<(), ErrorBuilder> { // There's automatic conversion from std::io::Error to coded::ErrorBuilder which // selects an appropriate ErrorKind. let raw = std::fs::read(p)?;

// ResultExt::err_kind wraps any std::error::Error impl, using the supplied
// kind. It doesn't add a message.
serde_json::from_str(&raw).err_kind(ErrorKind::InvalidArgument)

}

fn main() { if let Err(e) = inner_main() { // Error::chain prints not only e itself but also the full chain of sources. eprintln!("Fatal error:\n{}", e.chain()); std::process::exit(1); } }

fn innermain() -> Result<(), Error> { let config = readconfig()?;

// ...

} ```

When should I use it?

When shouldn't I use it?

Error Handling in a Correctness-Critical Rust Project describes how many of these apply to the sled database.

If you need your own error type but hate writing boilerplate, try the derive macros from thiserror or snafu).

How should I use it?

Return coded::Error. Use comments to document the error kinds your API returns in certain situations. Feel free to add additional error kinds without a semver break, as callers must match non-exhaustively.

What's missing?

License

Apache 2.0 or MIT, at your option.

Author

Scott Lamb <slamb@slamb.org>