#![cfg(feature = "bigdecimal")]
#![doc = concat!("pyo3 = { version = \"", env!("CARGO_PKG_VERSION"), "\", features = [\"bigdecimal\"] }")]
use std::str::FromStr;
use crate::{
exceptions::PyValueError,
sync::GILOnceCell,
types::{PyAnyMethods, PyStringMethods, PyType},
Bound, FromPyObject, IntoPyObject, Py, PyAny, PyErr, PyResult, Python,
};
use bigdecimal::BigDecimal;
static DECIMAL_CLS: GILOnceCell<Py<PyType>> = GILOnceCell::new();
fn get_decimal_cls(py: Python<'_>) -> PyResult<&Bound<'_, PyType>> {
DECIMAL_CLS.import(py, "decimal", "Decimal")
}
impl FromPyObject<'_> for BigDecimal {
fn extract_bound(obj: &Bound<'_, PyAny>) -> PyResult<Self> {
let py_str = &obj.str()?;
let rs_str = &py_str.to_cow()?;
BigDecimal::from_str(rs_str).map_err(|e| PyValueError::new_err(e.to_string()))
}
}
impl<'py> IntoPyObject<'py> for BigDecimal {
type Target = PyAny;
type Output = Bound<'py, Self::Target>;
type Error = PyErr;
fn into_pyobject(self, py: Python<'py>) -> Result<Self::Output, Self::Error> {
let cls = get_decimal_cls(py)?;
cls.call1((self.to_string(),))
}
}
#[cfg(test)]
mod test_bigdecimal {
use super::*;
use crate::types::dict::PyDictMethods;
use crate::types::PyDict;
use std::ffi::CString;
use crate::ffi;
use bigdecimal::{One, Zero};
#[cfg(not(target_arch = "wasm32"))]
use proptest::prelude::*;
macro_rules! convert_constants {
($name:ident, $rs:expr, $py:literal) => {
#[test]
fn $name() {
Python::with_gil(|py| {
let rs_orig = $rs;
let rs_dec = rs_orig.clone().into_pyobject(py).unwrap();
let locals = PyDict::new(py);
locals.set_item("rs_dec", &rs_dec).unwrap();
py.run(
&CString::new(format!(
"import decimal\npy_dec = decimal.Decimal(\"{}\")\nassert py_dec == rs_dec",
$py
))
.unwrap(),
None,
Some(&locals),
)
.unwrap();
let py_dec = locals.get_item("py_dec").unwrap().unwrap();
let py_result: BigDecimal = py_dec.extract().unwrap();
assert_eq!(rs_orig, py_result);
})
}
};
}
convert_constants!(convert_zero, BigDecimal::zero(), "0");
convert_constants!(convert_one, BigDecimal::one(), "1");
convert_constants!(convert_neg_one, -BigDecimal::one(), "-1");
convert_constants!(convert_two, BigDecimal::from(2), "2");
convert_constants!(convert_ten, BigDecimal::from_str("10").unwrap(), "10");
convert_constants!(
convert_one_hundred_point_one,
BigDecimal::from_str("100.1").unwrap(),
"100.1"
);
convert_constants!(
convert_one_thousand,
BigDecimal::from_str("1000").unwrap(),
"1000"
);
convert_constants!(
convert_scientific,
BigDecimal::from_str("1e10").unwrap(),
"1e10"
);
#[cfg(not(target_arch = "wasm32"))]
proptest! {
#[test]
fn test_roundtrip(
number in 0..28u32
) {
let num = BigDecimal::from(number);
Python::with_gil(|py| {
let rs_dec = num.clone().into_pyobject(py).unwrap();
let locals = PyDict::new(py);
locals.set_item("rs_dec", &rs_dec).unwrap();
py.run(
&CString::new(format!(
"import decimal\npy_dec = decimal.Decimal(\"{num}\")\nassert py_dec == rs_dec")).unwrap(),
None, Some(&locals)).unwrap();
let roundtripped: BigDecimal = rs_dec.extract().unwrap();
assert_eq!(num, roundtripped);
})
}
#[test]
fn test_integers(num in any::<i64>()) {
Python::with_gil(|py| {
let py_num = num.into_pyobject(py).unwrap();
let roundtripped: BigDecimal = py_num.extract().unwrap();
let rs_dec = BigDecimal::from(num);
assert_eq!(rs_dec, roundtripped);
})
}
}
#[test]
fn test_nan() {
Python::with_gil(|py| {
let locals = PyDict::new(py);
py.run(
ffi::c_str!("import decimal\npy_dec = decimal.Decimal(\"NaN\")"),
None,
Some(&locals),
)
.unwrap();
let py_dec = locals.get_item("py_dec").unwrap().unwrap();
let roundtripped: Result<BigDecimal, PyErr> = py_dec.extract();
assert!(roundtripped.is_err());
})
}
#[test]
fn test_infinity() {
Python::with_gil(|py| {
let locals = PyDict::new(py);
py.run(
ffi::c_str!("import decimal\npy_dec = decimal.Decimal(\"Infinity\")"),
None,
Some(&locals),
)
.unwrap();
let py_dec = locals.get_item("py_dec").unwrap().unwrap();
let roundtripped: Result<BigDecimal, PyErr> = py_dec.extract();
assert!(roundtripped.is_err());
})
}
}