risingwave_error/tonic/
extra.rs

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
// Copyright 2024 RisingWave Labs
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

use serde::{Deserialize, Serialize};

/// The score of the error.
///
/// Currently, it's used to identify the root cause of streaming pipeline failures, i.e., which actor
/// led to the failure.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Serialize, Deserialize)]
pub struct Score(pub i32);

/// Extra fields in errors that can be passed through the gRPC boundary.
///
/// - Field being set to `None` means it is not available.
/// - To add a new field, also update the `provide` method.
#[derive(Debug, Default, Clone, Serialize, Deserialize)]
pub(super) struct Extra {
    pub score: Option<Score>,
}

impl Extra {
    /// Create a new [`Extra`] by [requesting](std::error::request_ref) each field from the given error.
    pub fn new<T>(error: &T) -> Self
    where
        T: ?Sized + std::error::Error,
    {
        Self {
            score: std::error::request_value(error),
        }
    }

    /// Provide each field to the given [request](std::error::Request).
    pub fn provide<'a>(&'a self, request: &mut std::error::Request<'a>) {
        if let Some(score) = self.score {
            request.provide_value(score);
        }
    }
}