2017-05-16 05:24:06 +00:00
|
|
|
// Copyright (c) 2017-present PyO3 Project and Contributors
|
|
|
|
|
2019-02-01 13:01:18 +00:00
|
|
|
use crate::method::{FnArg, FnSpec, FnType};
|
2019-02-18 19:07:41 +00:00
|
|
|
use crate::pymethod::{impl_py_getter_def, impl_py_setter_def, impl_wrap_getter, impl_wrap_setter};
|
2019-02-01 13:01:18 +00:00
|
|
|
use crate::utils;
|
2018-07-03 20:28:40 +00:00
|
|
|
use proc_macro2::{Span, TokenStream};
|
2019-02-01 13:01:18 +00:00
|
|
|
use quote::quote;
|
2019-02-18 19:07:41 +00:00
|
|
|
use syn::parse::{Parse, ParseStream};
|
|
|
|
use syn::punctuated::Punctuated;
|
|
|
|
use syn::{parse_quote, Expr, Token};
|
|
|
|
|
|
|
|
/// The parsed arguments of the pyclass macro
|
|
|
|
pub struct PyClassArgs {
|
|
|
|
pub freelist: Option<syn::Expr>,
|
|
|
|
pub name: Option<syn::Expr>,
|
|
|
|
pub flags: Vec<syn::Expr>,
|
|
|
|
pub base: syn::TypePath,
|
2019-06-03 03:18:44 +00:00
|
|
|
pub module: Option<syn::LitStr>,
|
2019-02-18 19:07:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Parse for PyClassArgs {
|
|
|
|
fn parse(input: ParseStream) -> syn::parse::Result<Self> {
|
|
|
|
let mut slf = PyClassArgs::default();
|
|
|
|
|
|
|
|
let vars = Punctuated::<Expr, Token![,]>::parse_terminated(input)?;
|
|
|
|
for expr in vars {
|
|
|
|
slf.add_expr(&expr)?;
|
|
|
|
}
|
|
|
|
Ok(slf)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for PyClassArgs {
|
|
|
|
fn default() -> Self {
|
|
|
|
PyClassArgs {
|
|
|
|
freelist: None,
|
|
|
|
name: None,
|
2019-06-03 03:18:44 +00:00
|
|
|
module: None,
|
2019-02-18 19:07:41 +00:00
|
|
|
// We need the 0 as value for the constant we're later building using quote for when there
|
|
|
|
// are no other flags
|
|
|
|
flags: vec![parse_quote! {0}],
|
2019-03-18 00:00:26 +00:00
|
|
|
base: parse_quote! {pyo3::types::PyAny},
|
2019-02-18 19:07:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PyClassArgs {
|
|
|
|
/// Adda single expression from the comma separated list in the attribute, which is
|
|
|
|
/// either a single word or an assignment expression
|
|
|
|
fn add_expr(&mut self, expr: &Expr) -> syn::parse::Result<()> {
|
|
|
|
match expr {
|
|
|
|
syn::Expr::Path(ref exp) if exp.path.segments.len() == 1 => self.add_path(exp),
|
|
|
|
syn::Expr::Assign(ref assign) => self.add_assign(assign),
|
|
|
|
_ => Err(syn::Error::new_spanned(expr, "Could not parse arguments")),
|
|
|
|
}
|
|
|
|
}
|
2018-05-13 19:24:40 +00:00
|
|
|
|
2019-02-18 19:07:41 +00:00
|
|
|
/// Match a single flag
|
|
|
|
fn add_assign(&mut self, assign: &syn::ExprAssign) -> syn::Result<()> {
|
|
|
|
let key = match *assign.left {
|
|
|
|
syn::Expr::Path(ref exp) if exp.path.segments.len() == 1 => {
|
|
|
|
exp.path.segments.first().unwrap().value().ident.to_string()
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
return Err(syn::Error::new_spanned(assign, "could not parse argument"));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
match key.as_str() {
|
|
|
|
"freelist" => {
|
|
|
|
// We allow arbitrary expressions here so you can e.g. use `8*64`
|
|
|
|
self.freelist = Some(*assign.right.clone());
|
|
|
|
}
|
|
|
|
"name" => match *assign.right {
|
|
|
|
syn::Expr::Path(ref exp) if exp.path.segments.len() == 1 => {
|
|
|
|
self.name = Some(exp.clone().into());
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
return Err(syn::Error::new_spanned(
|
|
|
|
*assign.right.clone(),
|
|
|
|
"Wrong 'name' format",
|
|
|
|
));
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"extends" => match *assign.right {
|
|
|
|
syn::Expr::Path(ref exp) => {
|
|
|
|
self.base = syn::TypePath {
|
|
|
|
path: exp.path.clone(),
|
|
|
|
qself: None,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
return Err(syn::Error::new_spanned(
|
|
|
|
*assign.right.clone(),
|
|
|
|
"Wrong format for extends",
|
|
|
|
));
|
|
|
|
}
|
|
|
|
},
|
2019-06-03 03:18:44 +00:00
|
|
|
"module" => match *assign.right {
|
|
|
|
syn::Expr::Lit(syn::ExprLit {
|
|
|
|
lit: syn::Lit::Str(ref lit),
|
|
|
|
..
|
|
|
|
}) => {
|
|
|
|
self.module = Some(lit.clone());
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
return Err(syn::Error::new_spanned(
|
|
|
|
*assign.right.clone(),
|
|
|
|
"Wrong format for module",
|
|
|
|
));
|
|
|
|
}
|
|
|
|
},
|
2019-02-18 19:07:41 +00:00
|
|
|
_ => {
|
|
|
|
return Err(syn::Error::new_spanned(
|
|
|
|
*assign.left.clone(),
|
|
|
|
"Unsupported parameter",
|
|
|
|
));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Match a key/value flag
|
|
|
|
fn add_path(&mut self, exp: &syn::ExprPath) -> syn::Result<()> {
|
|
|
|
let flag = exp.path.segments.first().unwrap().value().ident.to_string();
|
|
|
|
let path = match flag.as_str() {
|
|
|
|
"gc" => {
|
2019-03-16 10:40:56 +00:00
|
|
|
parse_quote! {pyo3::type_object::PY_TYPE_FLAG_GC}
|
2019-02-18 19:07:41 +00:00
|
|
|
}
|
|
|
|
"weakref" => {
|
2019-03-16 10:40:56 +00:00
|
|
|
parse_quote! {pyo3::type_object::PY_TYPE_FLAG_WEAKREF}
|
2019-02-18 19:07:41 +00:00
|
|
|
}
|
|
|
|
"subclass" => {
|
2019-03-16 10:40:56 +00:00
|
|
|
parse_quote! {pyo3::type_object::PY_TYPE_FLAG_BASETYPE}
|
2019-02-18 19:07:41 +00:00
|
|
|
}
|
|
|
|
"dict" => {
|
2019-03-16 10:40:56 +00:00
|
|
|
parse_quote! {pyo3::type_object::PY_TYPE_FLAG_DICT}
|
2019-02-18 19:07:41 +00:00
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
return Err(syn::Error::new_spanned(
|
|
|
|
exp.path.clone(),
|
|
|
|
"Unsupported parameter",
|
|
|
|
));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
self.flags.push(syn::Expr::Path(path));
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn build_py_class(class: &mut syn::ItemStruct, attr: &PyClassArgs) -> syn::Result<TokenStream> {
|
2018-07-04 17:07:27 +00:00
|
|
|
let doc = utils::get_doc(&class.attrs, true);
|
2017-08-05 02:53:23 +00:00
|
|
|
let mut descriptors = Vec::new();
|
2018-05-13 19:24:40 +00:00
|
|
|
|
2019-06-04 05:17:07 +00:00
|
|
|
check_generics(class)?;
|
2018-07-04 17:07:27 +00:00
|
|
|
if let syn::Fields::Named(ref mut fields) = class.fields {
|
|
|
|
for field in fields.named.iter_mut() {
|
2019-02-18 19:07:41 +00:00
|
|
|
let field_descs = parse_descriptors(field)?;
|
2018-11-12 13:15:11 +00:00
|
|
|
if !field_descs.is_empty() {
|
|
|
|
descriptors.push((field.clone(), field_descs));
|
2017-05-28 05:45:48 +00:00
|
|
|
}
|
2018-05-13 19:24:40 +00:00
|
|
|
}
|
|
|
|
} else {
|
2019-02-18 19:07:41 +00:00
|
|
|
return Err(syn::Error::new_spanned(
|
|
|
|
&class.fields,
|
|
|
|
"#[pyclass] can only be used with C-style structs",
|
|
|
|
));
|
2017-05-17 06:43:39 +00:00
|
|
|
}
|
|
|
|
|
2019-02-18 19:07:41 +00:00
|
|
|
Ok(impl_class(&class.ident, &attr, doc, descriptors))
|
2017-05-16 05:24:06 +00:00
|
|
|
}
|
|
|
|
|
2019-02-18 19:07:41 +00:00
|
|
|
/// Parses `#[pyo3(get, set)]`
|
|
|
|
fn parse_descriptors(item: &mut syn::Field) -> syn::Result<Vec<FnType>> {
|
2017-08-05 02:53:23 +00:00
|
|
|
let mut descs = Vec::new();
|
|
|
|
let mut new_attrs = Vec::new();
|
|
|
|
for attr in item.attrs.iter() {
|
2019-02-18 19:07:41 +00:00
|
|
|
if let Ok(syn::Meta::List(ref list)) = attr.parse_meta() {
|
2018-06-15 20:41:16 +00:00
|
|
|
match list.ident.to_string().as_str() {
|
2019-02-18 19:07:41 +00:00
|
|
|
"pyo3" => {
|
2018-05-13 19:24:40 +00:00
|
|
|
for meta in list.nested.iter() {
|
2019-02-18 19:07:41 +00:00
|
|
|
if let syn::NestedMeta::Meta(ref metaitem) = meta {
|
2018-06-15 20:41:16 +00:00
|
|
|
match metaitem.name().to_string().as_str() {
|
2018-05-13 19:24:40 +00:00
|
|
|
"get" => {
|
|
|
|
descs.push(FnType::Getter(None));
|
|
|
|
}
|
|
|
|
"set" => {
|
|
|
|
descs.push(FnType::Setter(None));
|
|
|
|
}
|
2019-02-18 19:07:41 +00:00
|
|
|
_ => {
|
|
|
|
return Err(syn::Error::new_spanned(
|
|
|
|
metaitem,
|
|
|
|
"Only get and set are supported",
|
|
|
|
));
|
2017-08-05 02:53:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-05-13 19:24:40 +00:00
|
|
|
_ => new_attrs.push(attr.clone()),
|
2017-08-05 02:53:23 +00:00
|
|
|
}
|
2018-05-13 19:24:40 +00:00
|
|
|
} else {
|
|
|
|
new_attrs.push(attr.clone());
|
2017-08-05 02:53:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
item.attrs.clear();
|
|
|
|
item.attrs.extend(new_attrs);
|
2019-02-18 19:07:41 +00:00
|
|
|
Ok(descs)
|
2017-08-05 02:53:23 +00:00
|
|
|
}
|
|
|
|
|
2019-01-30 14:26:45 +00:00
|
|
|
/// The orphan rule disallows using a generic inventory struct, so we create the whole boilerplate
|
|
|
|
/// once per class
|
|
|
|
fn impl_inventory(cls: &syn::Ident) -> TokenStream {
|
|
|
|
// Try to build a unique type that gives a hint about it's function when
|
|
|
|
// it comes up in error messages
|
|
|
|
let name = cls.to_string() + "GeneratedPyo3Inventory";
|
|
|
|
let inventory_cls = syn::Ident::new(&name, Span::call_site());
|
|
|
|
|
|
|
|
quote! {
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub struct #inventory_cls {
|
2019-03-16 10:40:56 +00:00
|
|
|
methods: &'static [pyo3::class::PyMethodDefType],
|
2019-01-30 14:26:45 +00:00
|
|
|
}
|
|
|
|
|
2019-03-16 10:40:56 +00:00
|
|
|
impl pyo3::class::methods::PyMethodsInventory for #inventory_cls {
|
|
|
|
fn new(methods: &'static [pyo3::class::PyMethodDefType]) -> Self {
|
2019-01-30 14:26:45 +00:00
|
|
|
Self {
|
|
|
|
methods
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-16 10:40:56 +00:00
|
|
|
fn get_methods(&self) -> &'static [pyo3::class::PyMethodDefType] {
|
2019-01-30 14:26:45 +00:00
|
|
|
self.methods
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-16 10:40:56 +00:00
|
|
|
impl pyo3::class::methods::PyMethodsInventoryDispatch for #cls {
|
2019-01-30 14:26:45 +00:00
|
|
|
type InventoryType = #inventory_cls;
|
|
|
|
}
|
|
|
|
|
2019-03-16 10:40:56 +00:00
|
|
|
pyo3::inventory::collect!(#inventory_cls);
|
2019-01-30 14:26:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-13 19:24:40 +00:00
|
|
|
fn impl_class(
|
|
|
|
cls: &syn::Ident,
|
2019-02-18 19:07:41 +00:00
|
|
|
attr: &PyClassArgs,
|
2018-05-13 19:24:40 +00:00
|
|
|
doc: syn::Lit,
|
2018-07-03 20:28:40 +00:00
|
|
|
descriptors: Vec<(syn::Field, Vec<FnType>)>,
|
2018-06-15 20:41:16 +00:00
|
|
|
) -> TokenStream {
|
2019-02-18 19:07:41 +00:00
|
|
|
let cls_name = match &attr.name {
|
2018-05-13 19:24:40 +00:00
|
|
|
Some(name) => quote! { #name }.to_string(),
|
2019-02-18 19:07:41 +00:00
|
|
|
None => cls.to_string(),
|
2017-06-09 19:30:13 +00:00
|
|
|
};
|
2017-05-18 23:57:39 +00:00
|
|
|
|
2017-06-09 21:27:37 +00:00
|
|
|
let extra = {
|
2019-02-18 19:07:41 +00:00
|
|
|
if let Some(freelist) = &attr.freelist {
|
2018-11-12 13:58:16 +00:00
|
|
|
quote! {
|
2019-03-16 10:40:56 +00:00
|
|
|
impl pyo3::freelist::PyObjectWithFreeList for #cls {
|
2017-06-09 21:27:37 +00:00
|
|
|
#[inline]
|
2019-03-16 10:40:56 +00:00
|
|
|
fn get_free_list() -> &'static mut pyo3::freelist::FreeList<*mut pyo3::ffi::PyObject> {
|
|
|
|
static mut FREELIST: *mut pyo3::freelist::FreeList<*mut pyo3::ffi::PyObject> = 0 as *mut _;
|
2017-06-09 21:27:37 +00:00
|
|
|
unsafe {
|
|
|
|
if FREELIST.is_null() {
|
|
|
|
FREELIST = Box::into_raw(Box::new(
|
2019-03-16 10:40:56 +00:00
|
|
|
pyo3::freelist::FreeList::with_capacity(#freelist)));
|
2017-06-09 21:27:37 +00:00
|
|
|
|
2019-03-16 10:40:56 +00:00
|
|
|
<#cls as pyo3::type_object::PyTypeObject>::init_type();
|
2017-06-09 21:27:37 +00:00
|
|
|
}
|
2017-07-18 14:10:56 +00:00
|
|
|
&mut *FREELIST
|
2017-06-09 21:27:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-11-12 13:58:16 +00:00
|
|
|
}
|
2017-06-09 21:27:37 +00:00
|
|
|
} else {
|
2018-11-12 13:58:16 +00:00
|
|
|
quote! {
|
2019-03-16 10:40:56 +00:00
|
|
|
impl pyo3::type_object::PyObjectAlloc for #cls {}
|
2018-11-12 13:58:16 +00:00
|
|
|
}
|
2017-06-09 21:27:37 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-08-05 02:53:23 +00:00
|
|
|
let extra = if !descriptors.is_empty() {
|
2019-04-13 23:47:19 +00:00
|
|
|
let path = syn::Path::from(syn::PathSegment::from(cls.clone()));
|
|
|
|
let ty = syn::Type::from(syn::TypePath { path, qself: None });
|
2017-08-05 02:53:23 +00:00
|
|
|
let desc_impls = impl_descriptors(&ty, descriptors);
|
2018-11-12 13:58:16 +00:00
|
|
|
quote! {
|
2017-08-05 02:53:23 +00:00
|
|
|
#desc_impls
|
|
|
|
#extra
|
2018-11-12 13:58:16 +00:00
|
|
|
}
|
2017-08-05 02:53:23 +00:00
|
|
|
} else {
|
|
|
|
extra
|
|
|
|
};
|
|
|
|
|
2017-07-24 20:03:18 +00:00
|
|
|
// insert space for weak ref
|
|
|
|
let mut has_weakref = false;
|
2017-07-28 14:21:59 +00:00
|
|
|
let mut has_dict = false;
|
2019-07-14 14:35:06 +00:00
|
|
|
let mut has_gc = false;
|
2019-02-18 19:07:41 +00:00
|
|
|
for f in attr.flags.iter() {
|
2018-05-13 19:24:40 +00:00
|
|
|
if let syn::Expr::Path(ref epath) = f {
|
2019-03-16 10:40:56 +00:00
|
|
|
if epath.path == parse_quote! {pyo3::type_object::PY_TYPE_FLAG_WEAKREF} {
|
2018-05-13 19:24:40 +00:00
|
|
|
has_weakref = true;
|
2019-03-16 10:40:56 +00:00
|
|
|
} else if epath.path == parse_quote! {pyo3::type_object::PY_TYPE_FLAG_DICT} {
|
2018-05-13 19:24:40 +00:00
|
|
|
has_dict = true;
|
2019-07-14 14:35:06 +00:00
|
|
|
} else if epath.path == parse_quote! {pyo3::type_object::PY_TYPE_FLAG_GC} {
|
|
|
|
has_gc = true;
|
2018-05-13 19:24:40 +00:00
|
|
|
}
|
2017-07-24 20:03:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
let weakref = if has_weakref {
|
2019-03-16 10:40:56 +00:00
|
|
|
quote! {std::mem::size_of::<*const pyo3::ffi::PyObject>()}
|
2017-07-24 20:03:18 +00:00
|
|
|
} else {
|
2018-07-04 17:07:27 +00:00
|
|
|
quote! {0}
|
2017-07-24 20:03:18 +00:00
|
|
|
};
|
2017-07-28 14:21:59 +00:00
|
|
|
let dict = if has_dict {
|
2019-03-16 10:40:56 +00:00
|
|
|
quote! {std::mem::size_of::<*const pyo3::ffi::PyObject>()}
|
2017-07-28 14:21:59 +00:00
|
|
|
} else {
|
2018-07-04 17:07:27 +00:00
|
|
|
quote! {0}
|
2017-07-28 14:21:59 +00:00
|
|
|
};
|
2019-06-03 03:18:44 +00:00
|
|
|
let module = if let Some(m) = &attr.module {
|
|
|
|
quote! { Some(#m) }
|
|
|
|
} else {
|
|
|
|
quote! { None }
|
|
|
|
};
|
2017-07-24 20:03:18 +00:00
|
|
|
|
2019-07-14 14:35:06 +00:00
|
|
|
// Enforce at compile time that PyGCProtocol is implemented
|
|
|
|
let gc_impl = if has_gc {
|
|
|
|
let closure_name = format!("__assertion_closure_{}", cls.to_string());
|
|
|
|
let closure_token = syn::Ident::new(&closure_name, Span::call_site());
|
|
|
|
quote! {
|
|
|
|
fn #closure_token() {
|
|
|
|
use pyo3::class;
|
|
|
|
|
|
|
|
fn _assert_implements_protocol<'p, T: pyo3::class::PyGCProtocol<'p>>() {}
|
|
|
|
_assert_implements_protocol::<#cls>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
quote! {}
|
|
|
|
};
|
|
|
|
|
2019-01-30 14:26:45 +00:00
|
|
|
let inventory_impl = impl_inventory(&cls);
|
|
|
|
|
2019-02-18 19:07:41 +00:00
|
|
|
let base = &attr.base;
|
|
|
|
let flags = &attr.flags;
|
|
|
|
|
2017-05-17 06:43:39 +00:00
|
|
|
quote! {
|
2019-03-16 10:40:56 +00:00
|
|
|
impl pyo3::type_object::PyTypeInfo for #cls {
|
2017-05-23 06:19:14 +00:00
|
|
|
type Type = #cls;
|
2017-07-28 02:47:01 +00:00
|
|
|
type BaseType = #base;
|
|
|
|
|
2017-07-13 23:45:50 +00:00
|
|
|
const NAME: &'static str = #cls_name;
|
2019-06-03 03:18:44 +00:00
|
|
|
const MODULE: Option<&'static str> = #module;
|
2017-07-13 23:45:50 +00:00
|
|
|
const DESCRIPTION: &'static str = #doc;
|
2017-07-27 05:29:55 +00:00
|
|
|
const FLAGS: usize = #(#flags)|*;
|
2017-05-23 06:19:14 +00:00
|
|
|
|
2017-07-28 02:47:01 +00:00
|
|
|
const SIZE: usize = {
|
|
|
|
Self::OFFSET as usize +
|
2018-09-26 22:55:45 +00:00
|
|
|
::std::mem::size_of::<#cls>() + #weakref + #dict
|
2017-07-28 02:47:01 +00:00
|
|
|
};
|
|
|
|
const OFFSET: isize = {
|
|
|
|
// round base_size up to next multiple of align
|
|
|
|
(
|
2019-03-16 10:40:56 +00:00
|
|
|
(<#base as pyo3::type_object::PyTypeInfo>::SIZE +
|
2018-09-26 22:55:45 +00:00
|
|
|
::std::mem::align_of::<#cls>() - 1) /
|
|
|
|
::std::mem::align_of::<#cls>() * ::std::mem::align_of::<#cls>()
|
2017-07-28 02:47:01 +00:00
|
|
|
) as isize
|
|
|
|
};
|
2017-07-24 19:19:05 +00:00
|
|
|
|
2017-05-17 06:43:39 +00:00
|
|
|
#[inline]
|
2019-03-16 10:40:56 +00:00
|
|
|
unsafe fn type_object() -> &'static mut pyo3::ffi::PyTypeObject {
|
|
|
|
static mut TYPE_OBJECT: pyo3::ffi::PyTypeObject = pyo3::ffi::PyTypeObject_INIT;
|
2017-07-13 23:45:50 +00:00
|
|
|
&mut TYPE_OBJECT
|
2017-05-17 06:43:39 +00:00
|
|
|
}
|
|
|
|
}
|
2017-05-25 05:43:07 +00:00
|
|
|
|
2019-03-16 10:40:56 +00:00
|
|
|
impl pyo3::IntoPyObject for #cls {
|
|
|
|
fn into_object(self, py: pyo3::Python) -> pyo3::PyObject {
|
|
|
|
pyo3::Py::new(py, self).unwrap().into_object(py)
|
2018-09-06 16:04:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-30 14:26:45 +00:00
|
|
|
#inventory_impl
|
|
|
|
|
2017-05-28 05:45:48 +00:00
|
|
|
#extra
|
2019-07-14 14:35:06 +00:00
|
|
|
|
|
|
|
#gc_impl
|
|
|
|
|
2017-05-16 05:24:06 +00:00
|
|
|
}
|
|
|
|
}
|
2017-06-01 16:45:00 +00:00
|
|
|
|
2018-07-03 20:28:40 +00:00
|
|
|
fn impl_descriptors(cls: &syn::Type, descriptors: Vec<(syn::Field, Vec<FnType>)>) -> TokenStream {
|
|
|
|
let methods: Vec<TokenStream> = descriptors
|
|
|
|
.iter()
|
|
|
|
.flat_map(|&(ref field, ref fns)| {
|
|
|
|
fns.iter()
|
|
|
|
.map(|desc| {
|
|
|
|
let name = field.ident.clone().unwrap();
|
|
|
|
let field_ty = &field.ty;
|
|
|
|
match *desc {
|
|
|
|
FnType::Getter(_) => {
|
|
|
|
quote! {
|
|
|
|
impl #cls {
|
2019-03-16 10:40:56 +00:00
|
|
|
fn #name(&self) -> pyo3::PyResult<#field_ty> {
|
2018-07-03 20:28:40 +00:00
|
|
|
Ok(self.#name.clone())
|
|
|
|
}
|
|
|
|
}
|
2017-08-05 02:53:23 +00:00
|
|
|
}
|
|
|
|
}
|
2018-07-03 20:28:40 +00:00
|
|
|
FnType::Setter(_) => {
|
|
|
|
let setter_name =
|
|
|
|
syn::Ident::new(&format!("set_{}", name), Span::call_site());
|
|
|
|
quote! {
|
|
|
|
impl #cls {
|
2019-03-16 10:40:56 +00:00
|
|
|
fn #setter_name(&mut self, value: #field_ty) -> pyo3::PyResult<()> {
|
2018-07-03 20:28:40 +00:00
|
|
|
self.#name = value;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
2017-08-05 02:53:23 +00:00
|
|
|
}
|
|
|
|
}
|
2018-07-03 20:28:40 +00:00
|
|
|
_ => unreachable!(),
|
2017-08-05 02:53:23 +00:00
|
|
|
}
|
2018-07-03 20:28:40 +00:00
|
|
|
})
|
|
|
|
.collect::<Vec<TokenStream>>()
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
let py_methods: Vec<TokenStream> = descriptors
|
|
|
|
.iter()
|
|
|
|
.flat_map(|&(ref field, ref fns)| {
|
|
|
|
fns.iter()
|
|
|
|
.map(|desc| {
|
|
|
|
let name = field.ident.clone().unwrap();
|
|
|
|
|
|
|
|
// FIXME better doc?
|
2019-04-13 23:47:19 +00:00
|
|
|
let doc = syn::Lit::from(syn::LitStr::new(&name.to_string(), name.span()));
|
2018-07-03 20:28:40 +00:00
|
|
|
|
|
|
|
let field_ty = &field.ty;
|
|
|
|
match *desc {
|
2019-07-12 14:41:13 +00:00
|
|
|
FnType::Getter(ref getter) => impl_py_getter_def(
|
|
|
|
&name,
|
|
|
|
doc,
|
|
|
|
getter,
|
|
|
|
&impl_wrap_getter(&cls, &name, false),
|
|
|
|
),
|
2018-07-03 20:28:40 +00:00
|
|
|
FnType::Setter(ref setter) => {
|
|
|
|
let setter_name =
|
|
|
|
syn::Ident::new(&format!("set_{}", name), Span::call_site());
|
|
|
|
let spec = FnSpec {
|
|
|
|
tp: FnType::Setter(None),
|
|
|
|
attrs: Vec::new(),
|
|
|
|
args: vec![FnArg {
|
|
|
|
name: &name,
|
|
|
|
mutability: &None,
|
|
|
|
by_ref: &None,
|
|
|
|
ty: field_ty,
|
|
|
|
optional: None,
|
|
|
|
py: true,
|
|
|
|
reference: false,
|
|
|
|
}],
|
2019-02-18 19:07:41 +00:00
|
|
|
output: parse_quote!(PyResult<()>),
|
2018-07-03 20:28:40 +00:00
|
|
|
};
|
|
|
|
impl_py_setter_def(
|
|
|
|
&name,
|
|
|
|
doc,
|
|
|
|
setter,
|
|
|
|
&impl_wrap_setter(&cls, &setter_name, &spec),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
2018-09-28 21:34:57 +00:00
|
|
|
})
|
|
|
|
.collect::<Vec<TokenStream>>()
|
|
|
|
})
|
|
|
|
.collect();
|
2017-08-05 02:53:23 +00:00
|
|
|
|
2018-07-03 19:11:56 +00:00
|
|
|
quote! {
|
2017-08-05 02:53:23 +00:00
|
|
|
#(#methods)*
|
|
|
|
|
2019-03-16 10:40:56 +00:00
|
|
|
pyo3::inventory::submit! {
|
2019-02-01 13:49:25 +00:00
|
|
|
#![crate = pyo3] {
|
2019-03-16 10:40:56 +00:00
|
|
|
type ClsInventory = <#cls as pyo3::class::methods::PyMethodsInventoryDispatch>::InventoryType;
|
|
|
|
<ClsInventory as pyo3::class::methods::PyMethodsInventory>::new(&[#(#py_methods),*])
|
2017-08-05 02:53:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-06-04 05:17:07 +00:00
|
|
|
|
|
|
|
fn check_generics(class: &mut syn::ItemStruct) -> syn::Result<()> {
|
|
|
|
if class.generics.params.is_empty() {
|
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
Err(syn::Error::new_spanned(
|
|
|
|
&class.generics,
|
|
|
|
"#[pyclass] cannot have generic parameters",
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|