common_decimal/
decimal128.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
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
// Copyright 2023 Greptime Team
//
// 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 std::fmt::Display;
use std::hash::Hash;
use std::str::FromStr;

use bigdecimal::{BigDecimal, ToPrimitive};
use rust_decimal::Decimal as RustDecimal;
use serde::{Deserialize, Serialize};
use snafu::ResultExt;

use crate::error::{
    self, BigDecimalOutOfRangeSnafu, Error, InvalidPrecisionOrScaleSnafu, ParseBigDecimalStrSnafu,
    ParseRustDecimalStrSnafu,
};

/// The maximum precision for [Decimal128] values
pub const DECIMAL128_MAX_PRECISION: u8 = 38;

/// The maximum scale for [Decimal128] values
pub const DECIMAL128_MAX_SCALE: i8 = 38;

/// The default scale for [Decimal128] values
pub const DECIMAL128_DEFAULT_SCALE: i8 = 10;

/// The maximum bytes length that an accurate RustDecimal can represent
const BYTES_TO_OVERFLOW_RUST_DECIMAL: usize = 28;

/// 128bit decimal, using the i128 to represent the decimal.
///
/// **precision**: the total number of digits in the number, it's range is \[1, 38\].
///
/// **scale**: the number of digits to the right of the decimal point, it's range is \[0, precision\].
#[derive(Debug, Eq, Copy, Clone, Serialize, Deserialize)]
pub struct Decimal128 {
    value: i128,
    precision: u8,
    scale: i8,
}

impl Decimal128 {
    /// Create a new Decimal128 from i128, precision and scale without any validation.
    pub fn new(value: i128, precision: u8, scale: i8) -> Self {
        // debug assert precision and scale is valid
        debug_assert!(
            precision > 0 && precision <= DECIMAL128_MAX_PRECISION,
            "precision should be in [1, {}]",
            DECIMAL128_MAX_PRECISION
        );
        debug_assert!(
            scale >= 0 && scale <= precision as i8,
            "scale should be in [0, precision]"
        );
        Self {
            value,
            precision,
            scale,
        }
    }

    /// Try new Decimal128 from i128, precision and scale with validation.
    pub fn try_new(value: i128, precision: u8, scale: i8) -> error::Result<Self> {
        // make sure the precision and scale is valid.
        valid_precision_and_scale(precision, scale)?;
        Ok(Self {
            value,
            precision,
            scale,
        })
    }

    /// Return underlying value without precision and scale
    pub fn val(&self) -> i128 {
        self.value
    }

    /// Returns the precision of this decimal.
    pub fn precision(&self) -> u8 {
        self.precision
    }

    /// Returns the scale of this decimal.
    pub fn scale(&self) -> i8 {
        self.scale
    }

    /// Convert to ScalarValue(value,precision,scale)
    pub fn to_scalar_value(&self) -> (Option<i128>, u8, i8) {
        (Some(self.value), self.precision, self.scale)
    }

    /// split the self.value(i128) to (high-64 bit, low-64 bit), and
    /// the precision, scale information is discarded.
    ///
    /// Return: (high-64 bit, low-64 bit)
    pub fn split_value(&self) -> (i64, i64) {
        ((self.value >> 64) as i64, self.value as i64)
    }

    /// Convert from precision, scale, a i128 value which
    /// represents by i64 + i64 value(high-64 bit, low-64 bit).
    pub fn from_value_precision_scale(hi: i64, lo: i64, precision: u8, scale: i8) -> Self {
        // 128                             64                              0
        // +-------+-------+-------+-------+-------+-------+-------+-------+
        // |               hi              |               lo              |
        // +-------+-------+-------+-------+-------+-------+-------+-------+
        let hi = (hi as u128 & u64::MAX as u128) << 64;
        let lo = lo as u128 & u64::MAX as u128;
        let value = (hi | lo) as i128;
        Self::new(value, precision, scale)
    }

    pub fn negative(mut self) -> Self {
        self.value = -self.value;
        self
    }
}

/// The default value of Decimal128 is 0, and its precision is 1 and scale is 0.
impl Default for Decimal128 {
    fn default() -> Self {
        Self {
            value: 0,
            precision: 1,
            scale: 0,
        }
    }
}

impl PartialEq for Decimal128 {
    fn eq(&self, other: &Self) -> bool {
        self.precision.eq(&other.precision)
            && self.scale.eq(&other.scale)
            && self.value.eq(&other.value)
    }
}

// Two decimal values can be compared if they have the same precision and scale.
impl PartialOrd for Decimal128 {
    fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
        if self.precision == other.precision && self.scale == other.scale {
            return self.value.partial_cmp(&other.value);
        }
        None
    }
}

/// Convert from string to Decimal128
/// If the string length is less than 28, the result of rust_decimal will underflow,
/// In this case, use BigDecimal to get accurate result.
impl FromStr for Decimal128 {
    type Err = Error;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        let len = s.len();
        if len <= BYTES_TO_OVERFLOW_RUST_DECIMAL {
            let rd = RustDecimal::from_str_exact(s).context(ParseRustDecimalStrSnafu { raw: s })?;
            Ok(Self::from(rd))
        } else {
            let bd = BigDecimal::from_str(s).context(ParseBigDecimalStrSnafu { raw: s })?;
            Self::try_from(bd)
        }
    }
}

impl Display for Decimal128 {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(
            f,
            "{}",
            format_decimal_str(&self.value.to_string(), self.precision as usize, self.scale)
        )
    }
}

impl Hash for Decimal128 {
    fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
        state.write_i128(self.value);
        state.write_u8(self.precision);
        state.write_i8(self.scale);
    }
}

impl From<Decimal128> for serde_json::Value {
    fn from(decimal: Decimal128) -> Self {
        serde_json::Value::String(decimal.to_string())
    }
}

impl From<Decimal128> for i128 {
    fn from(decimal: Decimal128) -> Self {
        decimal.val()
    }
}

impl From<i128> for Decimal128 {
    fn from(value: i128) -> Self {
        Self {
            value,
            precision: DECIMAL128_MAX_PRECISION,
            scale: DECIMAL128_DEFAULT_SCALE,
        }
    }
}

/// Convert from RustDecimal to Decimal128
/// RustDecimal can represent the range is smaller than Decimal128,
/// it is safe to convert RustDecimal to Decimal128
impl From<RustDecimal> for Decimal128 {
    fn from(rd: RustDecimal) -> Self {
        let s = rd.to_string();
        let precision = (s.len() - s.matches(&['.', '-'][..]).count()) as u8;
        Self {
            value: rd.mantissa(),
            precision,
            scale: rd.scale() as i8,
        }
    }
}

/// Try from BigDecimal to Decimal128
/// The range that BigDecimal can represent is larger than Decimal128,
/// so it is not safe to convert BigDecimal to Decimal128,
/// If the BigDecimal is out of range, return error.
impl TryFrom<BigDecimal> for Decimal128 {
    type Error = Error;

    fn try_from(value: BigDecimal) -> Result<Self, Self::Error> {
        let precision = value.digits();
        let (big_int, scale) = value.as_bigint_and_exponent();
        // convert big_int to i128, if convert failed, return error
        big_int
            .to_i128()
            .map(|val| Self::try_new(val, precision as u8, scale as i8))
            .unwrap_or_else(|| BigDecimalOutOfRangeSnafu { value }.fail())
    }
}

/// Port from arrow-rs,
/// see https://github.com/Apache/arrow-rs/blob/master/arrow-array/src/types.rs#L1323-L1344
fn format_decimal_str(value_str: &str, precision: usize, scale: i8) -> String {
    let (sign, rest) = match value_str.strip_prefix('-') {
        Some(stripped) => ("-", stripped),
        None => ("", value_str),
    };

    let bound = precision.min(rest.len()) + sign.len();
    let value_str = &value_str[0..bound];

    if scale == 0 {
        value_str.to_string()
    } else if scale < 0 {
        let padding = value_str.len() + scale.unsigned_abs() as usize;
        format!("{value_str:0<padding$}")
    } else if rest.len() > scale as usize {
        // Decimal separator is in the middle of the string
        let (whole, decimal) = value_str.split_at(value_str.len() - scale as usize);
        format!("{whole}.{decimal}")
    } else {
        // String has to be padded
        format!("{}0.{:0>width$}", sign, rest, width = scale as usize)
    }
}

/// check whether precision and scale is valid
fn valid_precision_and_scale(precision: u8, scale: i8) -> error::Result<()> {
    if precision == 0 {
        return InvalidPrecisionOrScaleSnafu {
            reason: format!(
                "precision cannot be 0, has to be between [1, {}]",
                DECIMAL128_MAX_PRECISION
            ),
        }
        .fail();
    }
    if precision > DECIMAL128_MAX_PRECISION {
        return InvalidPrecisionOrScaleSnafu {
            reason: format!(
                "precision {} is greater than max {}",
                precision, DECIMAL128_MAX_PRECISION
            ),
        }
        .fail();
    }
    if scale > DECIMAL128_MAX_SCALE {
        return InvalidPrecisionOrScaleSnafu {
            reason: format!(
                "scale {} is greater than max {}",
                scale, DECIMAL128_MAX_SCALE
            ),
        }
        .fail();
    }
    if scale > 0 && scale > precision as i8 {
        return InvalidPrecisionOrScaleSnafu {
            reason: format!("scale {} is greater than precision {}", scale, precision),
        }
        .fail();
    }

    Ok(())
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_common_decimal128() {
        let decimal = Decimal128::new(123456789, 9, 3);
        assert_eq!(decimal.to_string(), "123456.789");

        let decimal = Decimal128::try_new(123456789, 9, 0);
        assert_eq!(decimal.unwrap().to_string(), "123456789");

        let decimal = Decimal128::try_new(123456789, 9, 2);
        assert_eq!(decimal.unwrap().to_string(), "1234567.89");

        let decimal = Decimal128::try_new(123, 3, -2);
        assert_eq!(decimal.unwrap().to_string(), "12300");

        // invalid precision or scale

        // precision is 0
        let decimal = Decimal128::try_new(123, 0, 0);
        assert!(decimal.is_err());

        // precision is greater than 38
        let decimal = Decimal128::try_new(123, 39, 0);
        assert!(decimal.is_err());

        // scale is greater than 38
        let decimal = Decimal128::try_new(123, 38, 39);
        assert!(decimal.is_err());

        // scale is greater than precision
        let decimal = Decimal128::try_new(123, 3, 4);
        assert!(decimal.is_err());
    }

    #[test]
    fn test_decimal128_from_str() {
        // 0 < precision <= 28
        let decimal = Decimal128::from_str("1234567890.123456789").unwrap();
        assert_eq!(decimal.to_string(), "1234567890.123456789");
        assert_eq!(decimal.precision(), 19);
        assert_eq!(decimal.scale(), 9);

        let decimal = Decimal128::from_str("1234567890.123456789012345678").unwrap();
        assert_eq!(decimal.to_string(), "1234567890.123456789012345678");
        assert_eq!(decimal.precision(), 28);
        assert_eq!(decimal.scale(), 18);

        // 28 < precision <= 38
        let decimal = Decimal128::from_str("1234567890.1234567890123456789012").unwrap();
        assert_eq!(decimal.to_string(), "1234567890.1234567890123456789012");
        assert_eq!(decimal.precision(), 32);
        assert_eq!(decimal.scale(), 22);

        let decimal = Decimal128::from_str("1234567890.1234567890123456789012345678").unwrap();
        assert_eq!(
            decimal.to_string(),
            "1234567890.1234567890123456789012345678"
        );
        assert_eq!(decimal.precision(), 38);
        assert_eq!(decimal.scale(), 28);

        // precision > 38
        let decimal = Decimal128::from_str("1234567890.12345678901234567890123456789");
        assert!(decimal.is_err());
    }

    #[test]
    #[ignore]
    fn test_parse_decimal128_speed() {
        // RustDecimal::from_str: 1.124855167s
        for _ in 0..1500000 {
            let _ = RustDecimal::from_str("1234567890.123456789012345678999").unwrap();
        }

        // BigDecimal::try_from: 6.799290042s
        for _ in 0..1500000 {
            let _ = BigDecimal::from_str("1234567890.123456789012345678999").unwrap();
        }
    }

    #[test]
    fn test_decimal128_precision_and_scale() {
        // precision and scale from Deicmal(1,1) to Decimal(38,38)
        for precision in 1..=38 {
            for scale in 1..=precision {
                let decimal_str = format!("0.{}", "1".repeat(scale as usize));
                let decimal = Decimal128::from_str(&decimal_str).unwrap();
                assert_eq!(decimal_str, decimal.to_string());
            }
        }
    }

    #[test]
    fn test_decimal128_compare() {
        // the same precision and scale
        let decimal1 = Decimal128::from_str("1234567890.123456789012345678999").unwrap();
        let decimal2 = Decimal128::from_str("1234567890.123456789012345678999").unwrap();
        assert!(decimal1 == decimal2);

        let decimal1 = Decimal128::from_str("1234567890.123456789012345678999").unwrap();
        let decimal2 = Decimal128::from_str("1234567890.123456789012345678998").unwrap();
        assert!(decimal1 > decimal2);

        let decimal1 = Decimal128::from_str("1234567890.123456789012345678999").unwrap();
        let decimal2 = Decimal128::from_str("1234567890.123456789012345678998").unwrap();
        assert!(decimal2 < decimal1);

        let decimal1 = Decimal128::from_str("1234567890.123456789012345678999").unwrap();
        let decimal2 = Decimal128::from_str("1234567890.123456789012345678998").unwrap();
        assert!(decimal1 >= decimal2);

        let decimal1 = Decimal128::from_str("1234567890.123456789012345678999").unwrap();
        let decimal2 = Decimal128::from_str("1234567890.123456789012345678998").unwrap();
        assert!(decimal2 <= decimal1);

        let decimal1 = Decimal128::from_str("1234567890.123456789012345678999").unwrap();
        let decimal2 = Decimal128::from_str("1234567890.123456789012345678998").unwrap();
        assert!(decimal1 != decimal2);

        // different precision and scale cmp is None
        let decimal1 = Decimal128::from_str("1234567890.123456789012345678999").unwrap();
        let decimal2 = Decimal128::from_str("1234567890.123").unwrap();
        assert_eq!(decimal1.partial_cmp(&decimal2), None);
    }

    #[test]
    fn test_convert_with_i128() {
        let test_decimal128_eq = |value| {
            let decimal1 =
                Decimal128::new(value, DECIMAL128_MAX_PRECISION, DECIMAL128_DEFAULT_SCALE);
            let (hi, lo) = decimal1.split_value();
            let decimal2 = Decimal128::from_value_precision_scale(
                hi,
                lo,
                DECIMAL128_MAX_PRECISION,
                DECIMAL128_DEFAULT_SCALE,
            );
            assert_eq!(decimal1, decimal2);
        };

        test_decimal128_eq(1 << 63);

        test_decimal128_eq(0);
        test_decimal128_eq(1234567890);
        test_decimal128_eq(-1234567890);
        test_decimal128_eq(32781372819372817382183218i128);
        test_decimal128_eq(-32781372819372817382183218i128);
        test_decimal128_eq(i128::MAX);
        test_decimal128_eq(i128::MIN);
    }
}