use super::any::PyAnyMethods;
use crate::conversion::IntoPyObject;
#[cfg(feature = "experimental-inspect")]
use crate::inspect::types::TypeInfo;
use crate::{
ffi, ffi_ptr_ext::FfiPtrExt, instance::Bound, Borrowed, FromPyObject, PyAny, PyErr, PyObject,
PyResult, Python,
};
#[allow(deprecated)]
use crate::{IntoPy, ToPyObject};
use std::convert::Infallible;
use std::os::raw::c_double;
#[repr(transparent)]
pub struct PyFloat(PyAny);
pyobject_subclassable_native_type!(PyFloat, crate::ffi::PyFloatObject);
pyobject_native_type!(
PyFloat,
ffi::PyFloatObject,
pyobject_native_static_type_object!(ffi::PyFloat_Type),
#checkfunction=ffi::PyFloat_Check
);
impl PyFloat {
pub fn new(py: Python<'_>, val: c_double) -> Bound<'_, PyFloat> {
unsafe {
ffi::PyFloat_FromDouble(val)
.assume_owned(py)
.downcast_into_unchecked()
}
}
#[deprecated(since = "0.23.0", note = "renamed to `PyFloat::new`")]
#[inline]
pub fn new_bound(py: Python<'_>, val: c_double) -> Bound<'_, PyFloat> {
Self::new(py, val)
}
}
#[doc(alias = "PyFloat")]
pub trait PyFloatMethods<'py>: crate::sealed::Sealed {
fn value(&self) -> c_double;
}
impl<'py> PyFloatMethods<'py> for Bound<'py, PyFloat> {
fn value(&self) -> c_double {
#[cfg(not(Py_LIMITED_API))]
unsafe {
ffi::PyFloat_AS_DOUBLE(self.as_ptr())
}
#[cfg(Py_LIMITED_API)]
unsafe {
ffi::PyFloat_AsDouble(self.as_ptr())
}
}
}
#[allow(deprecated)]
impl ToPyObject for f64 {
#[inline]
fn to_object(&self, py: Python<'_>) -> PyObject {
self.into_pyobject(py).unwrap().into_any().unbind()
}
}
#[allow(deprecated)]
impl IntoPy<PyObject> for f64 {
#[inline]
fn into_py(self, py: Python<'_>) -> PyObject {
self.into_pyobject(py).unwrap().into_any().unbind()
}
}
impl<'py> IntoPyObject<'py> for f64 {
type Target = PyFloat;
type Output = Bound<'py, Self::Target>;
type Error = Infallible;
#[inline]
fn into_pyobject(self, py: Python<'py>) -> Result<Self::Output, Self::Error> {
Ok(PyFloat::new(py, self))
}
#[cfg(feature = "experimental-inspect")]
fn type_output() -> TypeInfo {
TypeInfo::builtin("float")
}
}
impl<'py> IntoPyObject<'py> for &f64 {
type Target = PyFloat;
type Output = Bound<'py, Self::Target>;
type Error = Infallible;
#[inline]
fn into_pyobject(self, py: Python<'py>) -> Result<Self::Output, Self::Error> {
(*self).into_pyobject(py)
}
#[cfg(feature = "experimental-inspect")]
fn type_output() -> TypeInfo {
TypeInfo::builtin("float")
}
}
impl<'py> FromPyObject<'py> for f64 {
#![allow(clippy::float_cmp)]
fn extract_bound(obj: &Bound<'py, PyAny>) -> PyResult<Self> {
#[cfg(not(Py_LIMITED_API))]
if let Ok(float) = obj.downcast_exact::<PyFloat>() {
return Ok(float.value());
}
let v = unsafe { ffi::PyFloat_AsDouble(obj.as_ptr()) };
if v == -1.0 {
if let Some(err) = PyErr::take(obj.py()) {
return Err(err);
}
}
Ok(v)
}
#[cfg(feature = "experimental-inspect")]
fn type_input() -> TypeInfo {
Self::type_output()
}
}
#[allow(deprecated)]
impl ToPyObject for f32 {
#[inline]
fn to_object(&self, py: Python<'_>) -> PyObject {
self.into_pyobject(py).unwrap().into_any().unbind()
}
}
#[allow(deprecated)]
impl IntoPy<PyObject> for f32 {
#[inline]
fn into_py(self, py: Python<'_>) -> PyObject {
self.into_pyobject(py).unwrap().into_any().unbind()
}
}
impl<'py> IntoPyObject<'py> for f32 {
type Target = PyFloat;
type Output = Bound<'py, Self::Target>;
type Error = Infallible;
#[inline]
fn into_pyobject(self, py: Python<'py>) -> Result<Self::Output, Self::Error> {
Ok(PyFloat::new(py, self.into()))
}
#[cfg(feature = "experimental-inspect")]
fn type_output() -> TypeInfo {
TypeInfo::builtin("float")
}
}
impl<'py> IntoPyObject<'py> for &f32 {
type Target = PyFloat;
type Output = Bound<'py, Self::Target>;
type Error = Infallible;
#[inline]
fn into_pyobject(self, py: Python<'py>) -> Result<Self::Output, Self::Error> {
(*self).into_pyobject(py)
}
#[cfg(feature = "experimental-inspect")]
fn type_output() -> TypeInfo {
TypeInfo::builtin("float")
}
}
impl<'py> FromPyObject<'py> for f32 {
fn extract_bound(obj: &Bound<'py, PyAny>) -> PyResult<Self> {
Ok(obj.extract::<f64>()? as f32)
}
#[cfg(feature = "experimental-inspect")]
fn type_input() -> TypeInfo {
Self::type_output()
}
}
macro_rules! impl_partial_eq_for_float {
($float_type: ty) => {
impl PartialEq<$float_type> for Bound<'_, PyFloat> {
#[inline]
fn eq(&self, other: &$float_type) -> bool {
self.value() as $float_type == *other
}
}
impl PartialEq<$float_type> for &Bound<'_, PyFloat> {
#[inline]
fn eq(&self, other: &$float_type) -> bool {
self.value() as $float_type == *other
}
}
impl PartialEq<&$float_type> for Bound<'_, PyFloat> {
#[inline]
fn eq(&self, other: &&$float_type) -> bool {
self.value() as $float_type == **other
}
}
impl PartialEq<Bound<'_, PyFloat>> for $float_type {
#[inline]
fn eq(&self, other: &Bound<'_, PyFloat>) -> bool {
other.value() as $float_type == *self
}
}
impl PartialEq<&'_ Bound<'_, PyFloat>> for $float_type {
#[inline]
fn eq(&self, other: &&'_ Bound<'_, PyFloat>) -> bool {
other.value() as $float_type == *self
}
}
impl PartialEq<Bound<'_, PyFloat>> for &'_ $float_type {
#[inline]
fn eq(&self, other: &Bound<'_, PyFloat>) -> bool {
other.value() as $float_type == **self
}
}
impl PartialEq<$float_type> for Borrowed<'_, '_, PyFloat> {
#[inline]
fn eq(&self, other: &$float_type) -> bool {
self.value() as $float_type == *other
}
}
impl PartialEq<&$float_type> for Borrowed<'_, '_, PyFloat> {
#[inline]
fn eq(&self, other: &&$float_type) -> bool {
self.value() as $float_type == **other
}
}
impl PartialEq<Borrowed<'_, '_, PyFloat>> for $float_type {
#[inline]
fn eq(&self, other: &Borrowed<'_, '_, PyFloat>) -> bool {
other.value() as $float_type == *self
}
}
impl PartialEq<Borrowed<'_, '_, PyFloat>> for &$float_type {
#[inline]
fn eq(&self, other: &Borrowed<'_, '_, PyFloat>) -> bool {
other.value() as $float_type == **self
}
}
};
}
impl_partial_eq_for_float!(f64);
impl_partial_eq_for_float!(f32);
#[cfg(test)]
mod tests {
use crate::{
conversion::IntoPyObject,
types::{PyAnyMethods, PyFloat, PyFloatMethods},
Python,
};
macro_rules! num_to_py_object_and_back (
($func_name:ident, $t1:ty, $t2:ty) => (
#[test]
fn $func_name() {
use assert_approx_eq::assert_approx_eq;
Python::with_gil(|py| {
let val = 123 as $t1;
let obj = val.into_pyobject(py).unwrap();
assert_approx_eq!(obj.extract::<$t2>().unwrap(), val as $t2);
});
}
)
);
num_to_py_object_and_back!(to_from_f64, f64, f64);
num_to_py_object_and_back!(to_from_f32, f32, f32);
num_to_py_object_and_back!(int_to_float, i32, f64);
#[test]
fn test_float_value() {
use assert_approx_eq::assert_approx_eq;
Python::with_gil(|py| {
let v = 1.23f64;
let obj = PyFloat::new(py, 1.23);
assert_approx_eq!(v, obj.value());
});
}
#[test]
fn test_pyfloat_comparisons() {
Python::with_gil(|py| {
let f_64 = 1.01f64;
let py_f64 = PyFloat::new(py, 1.01);
let py_f64_ref = &py_f64;
let py_f64_borrowed = py_f64.as_borrowed();
assert_eq!(py_f64, f_64);
assert_eq!(f_64, py_f64);
assert_eq!(py_f64, &f_64);
assert_eq!(&f_64, py_f64);
assert_eq!(py_f64_ref, f_64);
assert_eq!(f_64, py_f64_ref);
assert_eq!(py_f64_ref, &f_64);
assert_eq!(&f_64, py_f64_ref);
assert_eq!(py_f64_borrowed, f_64);
assert_eq!(f_64, py_f64_borrowed);
assert_eq!(py_f64_borrowed, &f_64);
assert_eq!(&f_64, py_f64_borrowed);
let f_32 = 2.02f32;
let py_f32 = PyFloat::new(py, 2.02);
let py_f32_ref = &py_f32;
let py_f32_borrowed = py_f32.as_borrowed();
assert_eq!(py_f32, f_32);
assert_eq!(f_32, py_f32);
assert_eq!(py_f32, &f_32);
assert_eq!(&f_32, py_f32);
assert_eq!(py_f32_ref, f_32);
assert_eq!(f_32, py_f32_ref);
assert_eq!(py_f32_ref, &f_32);
assert_eq!(&f_32, py_f32_ref);
assert_eq!(py_f32_borrowed, f_32);
assert_eq!(f_32, py_f32_borrowed);
assert_eq!(py_f32_borrowed, &f_32);
assert_eq!(&f_32, py_f32_borrowed);
});
}
}