pyo3/pyo3cls/src/py_class.rs

123 lines
4.2 KiB
Rust
Raw Normal View History

2017-05-16 05:24:06 +00:00
// Copyright (c) 2017-present PyO3 Project and Contributors
use syn;
use quote::Tokens;
2017-05-16 05:24:06 +00:00
pub fn build_py_class(ast: &mut syn::DeriveInput) -> Tokens {
2017-05-25 03:31:51 +00:00
let base = syn::Ident::from("_pyo3::PyObject");
2017-05-28 05:45:48 +00:00
let mut token: Option<syn::Ident> = None;
2017-05-17 06:43:39 +00:00
match ast.body {
2017-05-28 05:45:48 +00:00
syn::Body::Struct(syn::VariantData::Struct(ref mut fields)) => {
for field in fields.iter_mut() {
let mut attrs = vec![];
for attr in field.attrs.iter() {
match attr.value {
syn::MetaItem::Word(ref a) => {
if a.as_ref() == "token" {
token = field.ident.clone();
continue
}
},
_ => (),
}
attrs.push(attr.clone());
println!("FIELD: {:?}", attr);
}
field.attrs = attrs;
}
},
_ => panic!("#[class] can only be used with notmal structs"),
2017-05-17 06:43:39 +00:00
}
2017-05-16 05:24:06 +00:00
let dummy_const = syn::Ident::new(format!("_IMPL_PYO3_CLS_{}", ast.ident));
2017-05-28 05:45:48 +00:00
let tokens = impl_class(&ast.ident, &base, token);
2017-05-16 05:24:06 +00:00
quote! {
#[feature(specialization)]
#[allow(non_upper_case_globals, unused_attributes,
unused_qualifications, unused_variables, non_camel_case_types)]
2017-05-16 05:24:06 +00:00
const #dummy_const: () = {
2017-05-18 18:15:06 +00:00
extern crate pyo3 as _pyo3;
2017-05-16 05:24:06 +00:00
use std;
2017-05-28 05:45:48 +00:00
use pyo3::python::PythonObjectWithToken;
2017-05-16 05:24:06 +00:00
#tokens
};
}
}
2017-05-28 05:45:48 +00:00
fn impl_class(cls: &syn::Ident, base: &syn::Ident, token: Option<syn::Ident>) -> Tokens {
2017-05-18 23:57:39 +00:00
let cls_name = quote! { #cls }.as_str().to_string();
2017-05-28 05:45:48 +00:00
let extra = if let Some(token) = token {
Some(quote! {
impl _pyo3::python::PythonObjectWithToken for #cls {
fn token<'p>(&'p self) -> _pyo3::python::Token<'p> {
self.#token.token()
}
}
/*impl std::fmt::Debug for #cls {
fn fmt(&self, f : &mut std::fmt::Formatter) -> Result<(), std::fmt::Error> {
self.token().with(|py| {
let ptr = <#cls as _pyo3::python::ToPythonPointer>::as_ptr(self);
let repr = unsafe {
_pyo3::Py::<_pyo3::PyString>::cast_from_owned_nullptr(
py, _pyo3::ffi::PyObject_Repr(ptr))
.map_err(|_| std::fmt::Error)? };
f.write_str(&repr.to_string_lossy())
})
}
}
impl std::fmt::Display for #cls {
fn fmt(&self, f: &mut std::fmt::Formatter) -> Result<(), std::fmt::Error> {
self.token().with(|py| {
let ptr = <#cls as _pyo3::python::ToPythonPointer>::as_ptr(self);
let s = unsafe {
_pyo3::Py::<_pyo3::PyString>::cast_from_owned_nullptr(
py, _pyo3::ffi::PyObject_Str(ptr)
).map_err(|_| std::fmt::Error)?};
f.write_str(&s.to_string_lossy())
})
}
}*/
})
} else {
None
};
2017-05-17 06:43:39 +00:00
quote! {
2017-05-25 05:43:07 +00:00
impl _pyo3::typeob::PyTypeInfo for #cls {
type Type = #cls;
2017-05-22 05:22:45 +00:00
#[inline]
fn size() -> usize {
Self::offset() as usize + std::mem::size_of::<#cls>()
2017-05-22 05:22:45 +00:00
}
2017-05-17 06:43:39 +00:00
2017-05-22 05:22:45 +00:00
#[inline]
fn offset() -> isize {
2017-05-22 05:22:45 +00:00
let align = std::mem::align_of::<#cls>();
2017-05-25 05:43:07 +00:00
let bs = <#base as _pyo3::typeob::PyTypeInfo>::size();
2017-05-17 06:43:39 +00:00
2017-05-22 05:22:45 +00:00
// round base_size up to next multiple of align
((bs + align - 1) / align * align) as isize
2017-05-17 06:43:39 +00:00
}
2017-05-18 23:57:39 +00:00
#[inline]
fn type_name() -> &'static str { #cls_name }
2017-05-17 06:43:39 +00:00
#[inline]
2017-05-19 04:35:08 +00:00
fn type_object() -> &'static mut _pyo3::ffi::PyTypeObject {
2017-05-18 18:15:06 +00:00
static mut TYPE_OBJECT: _pyo3::ffi::PyTypeObject = _pyo3::ffi::PyTypeObject_INIT;
2017-05-19 04:35:08 +00:00
unsafe { &mut TYPE_OBJECT }
2017-05-17 06:43:39 +00:00
}
}
2017-05-25 05:43:07 +00:00
2017-05-28 05:45:48 +00:00
#extra
2017-05-16 05:24:06 +00:00
}
}