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 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791
//! # appbiotic-code-error
//!
//! Appbiotic Code Error is a set of types to make it easier assembling
//! services and applications with similar error reporting to the end-user.
//! It is not necessarily meant for lower level libraries such as adding
//! derived traits for serialization, or database libraries where
//! specifically-typed error handling is required.
//!
//! This component's Rust-based API is original; however, the error codes and
//! descriptions are copied directly from the
//! https://github.com/googleapis/googleapis project.
use std::fmt;
use strum_macros::IntoStaticStr;
#[cfg(feature = "with-grpc")]
mod grpc_code {
pub static CANCELLED: i32 = 1;
pub static UNKNOWN: i32 = 2;
pub static INVALID_ARGUMENT: i32 = 3;
pub static DEADLINE_EXCEEDED: i32 = 4;
pub static NOT_FOUND: i32 = 5;
pub static ALREADY_EXISTS: i32 = 6;
pub static PERMISSION_DENIED: i32 = 7;
pub static UNAUTHENTICATED: i32 = 16;
pub static RESOURCE_EXHAUSTED: i32 = 8;
pub static FAILED_PRECONDITION: i32 = 9;
pub static ABORTED: i32 = 10;
pub static OUT_OF_RANGE: i32 = 11;
pub static UNIMPLEMENTED: i32 = 12;
pub static INTERNAL: i32 = 13;
pub static UNAVAILABLE: i32 = 14;
pub static DATA_LOSS: i32 = 15;
}
// TODO: Find or create library for format and flow markdown comments.
#[derive(Clone, Debug, IntoStaticStr)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
pub enum Error {
/// The operation was cancelled, typically by the caller.
///
/// | Mapping | Code | Description |
/// | :------ | ---: | :-------------------------------------------------- |
/// | HTTP | 499 | Client Closed Request |
/// | gRPC | 1 | Cancelled |
Cancelled(ErrorStatus),
/// Unknown error. For example, this error may be returned when a [`ErrorStatus`]
/// value received from another address space belongs to an error space
/// that is not known in this address space. Also errors raised by APIs
/// that do not return enough error information may be converted to this
/// error.
///
/// | Mapping | Code | Description |
/// | :------ | ---: | :-------------------------------------------------- |
/// | HTTP | 500 | Internal Server Error |
/// | gRPC | 2 | Unknown |
Unknown(ErrorStatus),
/// The client specified an invalid argument. Note that this differs
/// from [`Error::FailedPrecondition`]. [`Error::InvalidArgument`] indicates arguments
/// that are problematic regardless of the state of the system
/// (e.g., a malformed file name).
///
/// | Mapping | Code | Description |
/// | :------ | ---: | :-------------------------------------------------- |
/// | HTTP | 400 | Bad Request |
/// | gRPC | 3 | Invalid argument |
InvalidArgument(ErrorStatus),
/// The deadline expired before the operation could complete. For operations
/// that change the state of the system, this error may be returned
/// even if the operation has completed successfully. For example, a
/// successful response from a server could have been delayed long
/// enough for the deadline to expire.
///
/// | Mapping | Code | Description |
/// | :------ | ---: | :-------------------------------------------------- |
/// | HTTP | 504 | Gateway Timeout |
/// | gRPC | 4 | Deadline exceeded |
DeadlineExceeded(ErrorStatus),
/// Some requested entity (e.g., file or directory) was not found.
///
/// Note to server developers: if a request is denied for an entire class
/// of users, such as gradual feature rollout or undocumented allowlist,
/// [`Error::NotFound`] may be used. If a request is denied for some users
/// within a class of users, such as user-based access control,
/// [`Error::PermissionDenied`] must be used.
///
/// | Mapping | Code | Description |
/// | :------ | ---: | :-------------------------------------------------- |
/// | HTTP | 404 | Not Found |
/// | gRPC | 5 | Not found |
NotFound(ErrorStatus),
/// The entity that a client attempted to create (e.g., file or directory)
/// already exists.
///
/// | Mapping | Code | Description |
/// | :------ | ---: | :-------------------------------------------------- |
/// | HTTP | 409 | Conflict |
/// | gRPC | 6 | Already exists |
AlreadyExists(ErrorStatus),
/// The caller does not have permission to execute the specified
/// operation. [`Error::PermissionDenied`] must not be used for rejections
/// caused by exhausting some resource (use [`Error::ResourceExhausted`]
/// instead for those errors). [`Error::PermissionDenied`] must not be
/// used if the caller can not be identified (use [`Error::Unauthenticated`]
/// instead for those errors). This error code does not imply the
/// request is valid or the requested entity exists or satisfies
/// other pre-conditions.
///
/// | Mapping | Code | Description |
/// | :------ | ---: | :-------------------------------------------------- |
/// | HTTP | 403 | Forbidden |
/// | gRPC | 7 | Permission denied |
PermissionDenied(ErrorStatus),
/// The request does not have valid authentication credentials for the
/// operation.
///
/// | Mapping | Code | Description |
/// | :------ | ---: | :-------------------------------------------------- |
/// | HTTP | 401 | Unauthorized |
/// | gRPC | 16 | Permission denied |
Unauthenticated(ErrorStatus),
/// Some resource has been exhausted, perhaps a per-user quota, or
/// perhaps the entire file system is out of space.
///
/// | Mapping | Code | Description |
/// | :------ | ---: | :-------------------------------------------------- |
/// | HTTP | 429 | Too Many Requests |
/// | gRPC | 8 | Permission denied |
ResourceExhausted(ErrorStatus),
/// The operation was rejected because the system is not in a state
/// required for the operation's execution. For example, the directory
/// to be deleted is non-empty, an rmdir operation is applied to
/// a non-directory, etc.
///
/// Service implementors can use the following guidelines to decide
/// between [`Error::FailedPrecondition`], [`Error::Aborted`], and
/// [`Error::Unavailable`]:
///
/// - Use [`Error::Unavailable`] if the client can retry just the failing
/// call.
/// - Use [`Error::Aborted`] if the client should retry at a higher level.
/// For example, when a client-specified test-and-set fails, indicating
/// the client should restart a read-modify-write sequence.
/// - Use [`Error::FailedPrecondition`] if the client should not retry
/// until the system state has been explicitly fixed. For example, if an
/// "rmdir" fails because the directory is non-empty,
/// [`Error::FailedPrecondition`] should be returned since the client
/// should not retry unless the files are deleted from the directory.
///
/// | Mapping | Code | Description |
/// | :------ | ---: | :-------------------------------------------------- |
/// | HTTP | 400 | Bad Request |
/// | gRPC | 9 | Failed precondition |
FailedPrecondition(ErrorStatus),
/// The operation was aborted, typically due to a concurrency issue such as
/// a sequencer check failure or transaction abort.
///
/// See the guidelines above for deciding between
/// [`Error::FailedPrecondition`], [`Error::Aborted`], and
/// [`Error::Unavailable`].
///
/// | Mapping | Code | Description |
/// | :------ | ---: | :-------------------------------------------------- |
/// | HTTP | 409 | Conflict |
/// | gRPC | 10 | Aborted |
Aborted(ErrorStatus),
/// The operation was attempted past the valid range. E.g., seeking or
/// reading past end-of-file.
///
/// Unlike [`Error::InvalidArgument`], this error indicates a problem that
/// may be fixed if the system state changes. For example, a 32-bit file
/// system will generate [`Error::InvalidArgument`] if asked to read at an
/// offset that is not in the range [0,2^32-1], but it will generate
/// [`Error::OutOfRange`] if asked to read from an offset past the current
/// file size.
///
/// There is a fair bit of overlap between [`Error::FailedPrecondition`] and
/// [`Error::OutOfRange`]. We recommend using [`Error::OutOfRange`] (the
/// more specific error) when it applies so that callers who are iterating
/// through a space can easily look for an [`Error::OutOfRange`] error to
/// detect when they are done.
///
/// | Mapping | Code | Description |
/// | :------ | ---: | :-------------------------------------------------- |
/// | HTTP | 400 | Bad Request |
/// | gRPC | 11 | Out of range |
OutOfRange(ErrorStatus),
/// The operation is not implemented or is not supported/enabled in this
/// service.
///
/// | Mapping | Code | Description |
/// | :------ | ---: | :-------------------------------------------------- |
/// | HTTP | 501 | Not implemented |
/// | gRPC | 12 | Unimplemented |
Unimplemented(ErrorStatus),
/// Internal errors. This means that some invariants expected by the
/// underlying system have been broken. This error code is reserved for
/// serious errors.
///
/// | Mapping | Code | Description |
/// | :------ | ---: | :-------------------------------------------------- |
/// | HTTP | 500 | Internal Server Error |
/// | gRPC | 13 | Internal |
Internal(ErrorStatus),
/// The service is currently unavailable. This is most likely a transient
/// condition, which can be corrected by retrying with
/// a backoff. Note that it is not always safe to retry
/// non-idempotent operations.
///
/// See the guidelines above for deciding between
/// [`Error::FailedPrecondition`], [`Error::Aborted`], and
/// [`Error::Unavailable`].
///
/// | Mapping | Code | Description |
/// | :------ | ---: | :-------------------------------------------------- |
/// | HTTP | 503 | Service Unavailable |
/// | gRPC | 14 | Unavailable |
Unavailable(ErrorStatus),
/// Unrecoverable data loss or corruption.
///
/// | Mapping | Code | Description |
/// | :------ | ---: | :-------------------------------------------------- |
/// | HTTP | 500 | Internal Server Error |
/// | gRPC | 15 | Data loss |
DataLoss(ErrorStatus),
}
// TODO: Replace strum with a more detailed display implementation.
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_str(self.into())
}
}
impl Error {
pub fn inner(&self) -> &ErrorStatus {
match self {
Error::Internal(status) => status,
Error::Unknown(status) => status,
Error::Cancelled(status) => status,
Error::InvalidArgument(status) => status,
Error::DeadlineExceeded(status) => status,
Error::NotFound(status) => status,
Error::AlreadyExists(status) => status,
Error::PermissionDenied(status) => status,
Error::Unauthenticated(status) => status,
Error::ResourceExhausted(status) => status,
Error::FailedPrecondition(status) => status,
Error::Aborted(status) => status,
Error::OutOfRange(status) => status,
Error::Unimplemented(status) => status,
Error::Unavailable(status) => status,
Error::DataLoss(status) => status,
}
}
}
impl From<Error> for ErrorStatus {
fn from(value: Error) -> Self {
match value {
Error::Internal(status) => status,
Error::Unknown(status) => status,
Error::Cancelled(status) => status,
Error::InvalidArgument(status) => status,
Error::DeadlineExceeded(status) => status,
Error::NotFound(status) => status,
Error::AlreadyExists(status) => status,
Error::PermissionDenied(status) => status,
Error::Unauthenticated(status) => status,
Error::ResourceExhausted(status) => status,
Error::FailedPrecondition(status) => status,
Error::Aborted(status) => status,
Error::OutOfRange(status) => status,
Error::Unimplemented(status) => status,
Error::Unavailable(status) => status,
Error::DataLoss(status) => status,
}
}
}
impl Error {
/// Returns the gRPC code value.
///
/// See https://github.com/googleapis/googleapis/blob/f36c65081b19e0758ef5696feca27c7dcee5475e/google/rpc/code.proto.
#[cfg(feature = "with-grpc")]
pub fn grpc_code(&self) -> i32 {
match self {
Error::Cancelled(_) => grpc_code::CANCELLED,
Error::Unknown(_) => grpc_code::UNKNOWN,
Error::InvalidArgument(_) => grpc_code::INVALID_ARGUMENT,
Error::DeadlineExceeded(_) => grpc_code::DEADLINE_EXCEEDED,
Error::NotFound(_) => grpc_code::NOT_FOUND,
Error::AlreadyExists(_) => grpc_code::ALREADY_EXISTS,
Error::PermissionDenied(_) => grpc_code::PERMISSION_DENIED,
Error::Unauthenticated(_) => grpc_code::UNAUTHENTICATED,
Error::ResourceExhausted(_) => grpc_code::RESOURCE_EXHAUSTED,
Error::FailedPrecondition(_) => grpc_code::FAILED_PRECONDITION,
Error::Aborted(_) => grpc_code::ABORTED,
Error::OutOfRange(_) => grpc_code::OUT_OF_RANGE,
Error::Unimplemented(_) => grpc_code::UNIMPLEMENTED,
Error::Internal(_) => grpc_code::INTERNAL,
Error::Unavailable(_) => grpc_code::UNAVAILABLE,
Error::DataLoss(_) => grpc_code::DATA_LOSS,
}
}
// TODO: Build macros to automate building of the error helper functions.
pub fn cancelled<S: AsRef<str>>(message: S) -> Error {
Error::Cancelled(ErrorStatus::default().with_message(message))
}
pub fn unknown<S: AsRef<str>>(message: S) -> Error {
Error::Unknown(ErrorStatus::default().with_message(message))
}
pub fn invalid_argument<S: AsRef<str>>(message: S) -> Error {
Error::InvalidArgument(ErrorStatus::default().with_message(message))
}
pub fn deadline_exceeded<S: AsRef<str>>(message: S) -> Error {
Error::DeadlineExceeded(ErrorStatus::default().with_message(message))
}
pub fn not_found<S: AsRef<str>>(message: S) -> Error {
Error::NotFound(ErrorStatus::default().with_message(message))
}
pub fn already_exists<S: AsRef<str>>(message: S) -> Error {
Error::AlreadyExists(ErrorStatus::default().with_message(message))
}
pub fn permission_denied<S: AsRef<str>>(message: S) -> Error {
Error::PermissionDenied(ErrorStatus::default().with_message(message))
}
pub fn unauthenticated<S: AsRef<str>>(message: S) -> Error {
Error::Unauthenticated(ErrorStatus::default().with_message(message))
}
pub fn resource_exhausted<S: AsRef<str>>(message: S) -> Error {
Error::ResourceExhausted(ErrorStatus::default().with_message(message))
}
pub fn failed_precondition<S: AsRef<str>>(message: S) -> Error {
Error::FailedPrecondition(ErrorStatus::default().with_message(message))
}
pub fn aborted<S: AsRef<str>>(message: S) -> Error {
Error::Aborted(ErrorStatus::default().with_message(message))
}
pub fn out_of_range<S: AsRef<str>>(message: S) -> Error {
Error::OutOfRange(ErrorStatus::default().with_message(message))
}
pub fn unimplemented<S: AsRef<str>>(message: S) -> Error {
Error::Unimplemented(ErrorStatus::default().with_message(message))
}
pub fn internal<S: AsRef<str>>(message: S) -> Error {
Error::Internal(ErrorStatus::default().with_message(message))
}
pub fn unavailable<S: AsRef<str>>(message: S) -> Error {
Error::Unavailable(ErrorStatus::default().with_message(message))
}
pub fn data_loss<S: AsRef<str>>(message: S) -> Error {
Error::DataLoss(ErrorStatus::default().with_message(message))
}
/// Appends a `ErrorDetails::DebugInfo` with info from `error`.
pub fn with_error<E: fmt::Display>(self, error: E) -> Error {
match self {
Error::Cancelled(details) => Error::Cancelled(details.with_error(error)),
Error::Unknown(details) => Error::Unknown(details.with_error(error)),
Error::InvalidArgument(details) => Error::InvalidArgument(details.with_error(error)),
Error::DeadlineExceeded(details) => Error::DeadlineExceeded(details.with_error(error)),
Error::NotFound(details) => Error::NotFound(details.with_error(error)),
Error::AlreadyExists(details) => Error::AlreadyExists(details.with_error(error)),
Error::PermissionDenied(details) => Error::PermissionDenied(details.with_error(error)),
Error::Unauthenticated(details) => Error::Unauthenticated(details.with_error(error)),
Error::ResourceExhausted(details) => {
Error::ResourceExhausted(details.with_error(error))
}
Error::FailedPrecondition(details) => {
Error::FailedPrecondition(details.with_error(error))
}
Error::Aborted(details) => Error::Aborted(details.with_error(error)),
Error::OutOfRange(details) => Error::OutOfRange(details.with_error(error)),
Error::Unimplemented(details) => Error::Unimplemented(details.with_error(error)),
Error::Internal(details) => Error::Internal(details.with_error(error)),
Error::Unavailable(details) => Error::Unavailable(details.with_error(error)),
Error::DataLoss(details) => Error::DataLoss(details.with_error(error)),
}
}
}
#[cfg(feature = "with-http")]
impl From<Error> for http::StatusCode {
fn from(value: Error) -> Self {
match value {
Error::Cancelled(_) => {
http::StatusCode::from_u16(499).unwrap_or(http::StatusCode::IM_A_TEAPOT)
}
Error::Unknown(_) => http::StatusCode::INTERNAL_SERVER_ERROR,
Error::InvalidArgument(_) => http::StatusCode::BAD_REQUEST,
Error::DeadlineExceeded(_) => http::StatusCode::GATEWAY_TIMEOUT,
Error::NotFound(_) => http::StatusCode::NOT_FOUND,
Error::AlreadyExists(_) => http::StatusCode::CONFLICT,
Error::PermissionDenied(_) => http::StatusCode::FORBIDDEN,
Error::Unauthenticated(_) => http::StatusCode::UNAUTHORIZED,
Error::ResourceExhausted(_) => http::StatusCode::TOO_MANY_REQUESTS,
Error::FailedPrecondition(_) => http::StatusCode::BAD_REQUEST,
Error::Aborted(_) => http::StatusCode::CONFLICT,
Error::OutOfRange(_) => http::StatusCode::BAD_REQUEST,
Error::Unimplemented(_) => http::StatusCode::NOT_IMPLEMENTED,
Error::Internal(_) => http::StatusCode::INTERNAL_SERVER_ERROR,
Error::Unavailable(_) => http::StatusCode::SERVICE_UNAVAILABLE,
Error::DataLoss(_) => http::StatusCode::INTERNAL_SERVER_ERROR,
}
}
}
// TODO: Properly map error details into a tonic Status.
#[cfg(feature = "with-tonic")]
impl Error {
pub fn into_tonic_status(self) -> tonic::Status {
match self {
Error::Internal(status) => {
tonic::Status::new(tonic::Code::Internal, status.message.unwrap_or_default())
}
Error::Cancelled(status) => {
tonic::Status::new(tonic::Code::Cancelled, status.message.unwrap_or_default())
}
Error::Unknown(status) => {
tonic::Status::new(tonic::Code::Unknown, status.message.unwrap_or_default())
}
Error::InvalidArgument(status) => tonic::Status::new(
tonic::Code::InvalidArgument,
status.message.unwrap_or_default(),
),
Error::DeadlineExceeded(status) => tonic::Status::new(
tonic::Code::DeadlineExceeded,
status.message.unwrap_or_default(),
),
Error::NotFound(status) => {
tonic::Status::new(tonic::Code::NotFound, status.message.unwrap_or_default())
}
Error::AlreadyExists(status) => tonic::Status::new(
tonic::Code::AlreadyExists,
status.message.unwrap_or_default(),
),
Error::PermissionDenied(status) => tonic::Status::new(
tonic::Code::PermissionDenied,
status.message.unwrap_or_default(),
),
Error::Unauthenticated(status) => tonic::Status::new(
tonic::Code::Unauthenticated,
status.message.unwrap_or_default(),
),
Error::ResourceExhausted(status) => tonic::Status::new(
tonic::Code::ResourceExhausted,
status.message.unwrap_or_default(),
),
Error::FailedPrecondition(status) => tonic::Status::new(
tonic::Code::FailedPrecondition,
status.message.unwrap_or_default(),
),
Error::Aborted(status) => {
tonic::Status::new(tonic::Code::Aborted, status.message.unwrap_or_default())
}
Error::OutOfRange(status) => {
tonic::Status::new(tonic::Code::OutOfRange, status.message.unwrap_or_default())
}
Error::Unimplemented(status) => tonic::Status::new(
tonic::Code::Unimplemented,
status.message.unwrap_or_default(),
),
Error::Unavailable(status) => {
tonic::Status::new(tonic::Code::Unavailable, status.message.unwrap_or_default())
}
Error::DataLoss(status) => {
tonic::Status::new(tonic::Code::DataLoss, status.message.unwrap_or_default())
}
}
}
}
#[cfg(feature = "with-tonic")]
impl TryFrom<tonic::Status> for Error {
type Error = Error;
fn try_from(value: tonic::Status) -> Result<Self, Self::Error> {
match value.code() {
tonic::Code::Ok => Err(Error::invalid_argument("Cannot convert OK status to Error")),
tonic::Code::Cancelled => Ok(Error::cancelled(value.message())),
tonic::Code::Unknown => Ok(Error::unknown(value.message())),
tonic::Code::InvalidArgument => Ok(Error::invalid_argument(value.message())),
tonic::Code::DeadlineExceeded => Ok(Error::deadline_exceeded(value.message())),
tonic::Code::NotFound => Ok(Error::not_found(value.message())),
tonic::Code::AlreadyExists => Ok(Error::already_exists(value.message())),
tonic::Code::PermissionDenied => Ok(Error::permission_denied(value.message())),
tonic::Code::ResourceExhausted => Ok(Error::resource_exhausted(value.message())),
tonic::Code::FailedPrecondition => Ok(Error::failed_precondition(value.message())),
tonic::Code::Aborted => Ok(Error::aborted(value.message())),
tonic::Code::OutOfRange => Ok(Error::out_of_range(value.message())),
tonic::Code::Unimplemented => Ok(Error::unimplemented(value.message())),
tonic::Code::Internal => Ok(Error::internal(value.message())),
tonic::Code::Unavailable => Ok(Error::unavailable(value.message())),
tonic::Code::DataLoss => Ok(Error::data_loss(value.message())),
tonic::Code::Unauthenticated => Ok(Error::unauthenticated(value.message())),
}
}
}
/// The `Status` type defines a logical error model that is suitable for
/// different programming environments, including REST APIs and RPC APIs. It is
/// used by [gRPC](https://github.com/grpc). Each `Status` message contains
/// three pieces of data: error code, error message, and error details.
///
/// You can find out more about this error model and how to work with it in the
/// [API Design Guide](https://cloud.google.com/apis/design/errors).
#[derive(Clone, Debug, Default)]
pub struct ErrorStatus {
/// A developer-facing error message, which should be in English. Any
/// user-facing error message should be localized and sent in the
/// `details` field in a `ErrorDetails::LocalizedMessage`.
pub message: Option<String>,
/// A list of messages that carry the error details. There is a common set
/// of message types for APIs to use.
pub details: Option<Vec<ErrorDetails>>,
}
impl ErrorStatus {
pub fn with_message<M: AsRef<str>>(self, message: M) -> Self {
ErrorStatus {
message: Some(message.as_ref().to_owned()),
details: self.details,
}
}
pub fn with_error<E: fmt::Display>(self, error: E) -> Self {
let mut details = self.details.unwrap_or_default();
details.push(ErrorDetails::DebugInfo {
stack_entries: None,
detail: Some(error.to_string()),
});
ErrorStatus {
message: self.message,
details: Some(details),
}
}
}
/// The specific details of an error that may be optionally forwarded to an
/// end-user.
///
/// These error detail kinds and documentation have been imported from
/// https://github.com/googleapis/googleapis/blob/f36c65081b19e0758ef5696feca27c7dcee5475e/google/rpc/error_details.proto.
#[derive(Clone, Debug, IntoStaticStr)]
#[strum(serialize_all = "SCREAMING_SNAKE_CASE")]
pub enum ErrorDetails {
/// Describes violations in a client request. This error type focuses on the
/// syntactic aspects of the request.
BadRequest {
/// Describes all violations in a client request.
field_violations: Vec<FieldViolation>,
},
/// Describes additional debugging info.
DebugInfo {
/// The stack trace entries indicating where the error occurred.
stack_entries: Option<Vec<String>>,
/// Additional debugging information provided by the server.
detail: Option<String>,
},
/// Provides a localized error message that is safe to return to the user
/// which can be attached to an RPC error.
LocalizedMessage {
/// The locale used following the specification defined at
/// https://www.rfc-editor.org/rfc/bcp/bcp47.txt.
/// Examples are: "en-US", "fr-CH", "es-MX"
locale: String,
/// The localized error message in the above locale.
message: String,
},
}
impl ErrorDetails {
pub fn bad_request(field_violation: FieldViolation) -> Self {
ErrorDetails::BadRequest {
field_violations: vec![field_violation],
}
}
pub fn debug_info<D: AsRef<str>>(detail: D) -> Self {
ErrorDetails::DebugInfo {
stack_entries: None,
detail: Some(detail.as_ref().to_owned()),
}
}
pub fn localized_message<L: AsRef<str>, M: AsRef<str>>(locale: L, message: M) -> Self {
ErrorDetails::LocalizedMessage {
locale: locale.as_ref().to_owned(),
message: message.as_ref().to_owned(),
}
}
}
// TODO: Replace strum with a more detailed display implementation.
impl fmt::Display for ErrorDetails {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_str(self.into())
}
}
/// A message type used to describe a single bad request field.
#[derive(Clone, Debug)]
pub struct FieldViolation {
/// A path that leads to a field in the request body. The value will be a
/// sequence of dot-separated identifiers that identify a protocol buffer
/// field.
///
/// Consider the following:
///
/// ```protobuf
/// message CreateContactRequest {
/// message EmailAddress {
/// enum Type {
/// TYPE_UNSPECIFIED = 0;
/// HOME = 1;
/// WORK = 2;
/// }
///
/// optional string email = 1;
/// repeated EmailType type = 2;
/// }
///
/// string full_name = 1;
/// repeated EmailAddress email_addresses = 2;
/// }
/// ```
/// In this example, in proto `field` could take one of the following values:
///
/// * `full_name` for a violation in the `full_name` value
/// * `email_addresses[1].email` for a violation in the `email` field of the
/// first `email_addresses` message
/// * `email_addresses[3].type[2]` for a violation in the second `type`
/// value in the third `email_addresses` message.
///
/// In JSON, the same values are represented as:
///
/// * `fullName` for a violation in the `fullName` value
/// * `emailAddresses[1].email` for a violation in the `email` field of the
/// first `emailAddresses` message
/// * `emailAddresses[3].type[2]` for a violation in the second `type`
/// value in the third `emailAddresses` message.
pub field: Field,
/// A description of why the request element is bad.
pub description: Option<String>,
}
#[derive(Clone, Debug)]
pub struct Field {
path_reversed: Vec<Property>,
}
impl Field {
pub fn new(property: Property) -> Self {
Field {
path_reversed: vec![property],
}
}
pub fn with_context(mut self, context: Property) -> Self {
self.path_reversed.push(context);
self
}
}
impl fmt::Display for Field {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
for i in (0..self.path_reversed.len()).rev() {
write!(f, r#"{}"#, self.path_reversed.get(i).ok_or(fmt::Error)?,)?;
if i > 0 {
write!(f, ".")?;
}
}
Ok(())
}
}
#[derive(Clone, Debug)]
pub enum Property {
Member { name: String },
MapMember { name: String, key: String },
ArrayMember { name: String, index: usize },
}
impl fmt::Display for Property {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Property::Member { name } => write!(f, r#"{}"#, name),
Property::MapMember { name, key } => write!(f, r#"{}["{}"]"#, name, key),
Property::ArrayMember { name, index } => write!(f, r#"{}[{}]"#, name, index),
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn error_display() {
let error = Error::internal("Something bad happened").with_error("Invalid operation");
assert_eq!(error.to_string(), "INTERNAL");
assert!(error
.inner()
.details
.as_ref()
.expect("some error details")
.iter()
.any(|d| &d.to_string() == "DEBUG_INFO"));
}
#[test]
fn property_member_display() {
let field = Property::Member {
name: "nickname".to_string(),
};
assert_eq!(field.to_string().as_str(), "nickname");
}
#[test]
fn property_map_member_display() {
let field = Property::MapMember {
name: "children".to_string(),
key: "son".to_string(),
};
assert_eq!(field.to_string().as_str(), r#"children["son"]"#);
}
#[test]
fn property_array_member_display() {
let field = Property::ArrayMember {
name: "children".to_string(),
index: 3,
};
assert_eq!(field.to_string().as_str(), r#"children[3]"#);
}
#[test]
fn property_display() {
let argument = Field::new(Property::MapMember {
name: "nicknames".to_string(),
key: "joe".to_string(),
})
.with_context(Property::ArrayMember {
name: "children".to_string(),
index: 3,
})
.with_context(Property::Member {
name: "family".to_string(),
});
assert_eq!(
argument.to_string().as_str(),
r#"family.children[3].nicknames["joe"]"#
);
}
}