use criterion::{criterion_group, criterion_main, Bencher, Criterion}; use pyo3::{ types::{ PyBool, PyByteArray, PyBytes, PyDict, PyFloat, PyFrozenSet, PyInt, PyList, PyMapping, PySequence, PySet, PyString, PyTuple, }, PyAny, Python, }; #[derive(PartialEq, Eq, Debug)] enum ObjectType { None, Bool, ByteArray, Bytes, Dict, Float, FrozenSet, Int, List, Set, Str, Tuple, Sequence, Mapping, Unknown, } fn find_object_type(obj: &PyAny) -> ObjectType { if obj.is_none() { ObjectType::None } else if obj.is_instance_of::() { ObjectType::Bool } else if obj.is_instance_of::() { ObjectType::ByteArray } else if obj.is_instance_of::() { ObjectType::Bytes } else if obj.is_instance_of::() { ObjectType::Dict } else if obj.is_instance_of::() { ObjectType::Float } else if obj.is_instance_of::() { ObjectType::FrozenSet } else if obj.is_instance_of::() { ObjectType::Int } else if obj.is_instance_of::() { ObjectType::List } else if obj.is_instance_of::() { ObjectType::Set } else if obj.is_instance_of::() { ObjectType::Str } else if obj.is_instance_of::() { ObjectType::Tuple } else if obj.downcast::().is_ok() { ObjectType::Sequence } else if obj.downcast::().is_ok() { ObjectType::Mapping } else { ObjectType::Unknown } } fn bench_identify_object_type(b: &mut Bencher<'_>) { Python::with_gil(|py| { let obj = py.eval("object()", None, None).unwrap(); b.iter(|| find_object_type(obj)); assert_eq!(find_object_type(obj), ObjectType::Unknown); }); } fn criterion_benchmark(c: &mut Criterion) { c.bench_function("identify_object_type", bench_identify_object_type); } criterion_group!(benches, criterion_benchmark); criterion_main!(benches);