Pkg: actually require argument to be a repo
Signed-off-by: Luca Fulchir <luca.fulchir@runesauth.com>
This commit is contained in:
parent
46b7e9282d
commit
bf8f6721a4
@ -73,7 +73,7 @@ pub(crate) fn package(
|
|||||||
.into();
|
.into();
|
||||||
};
|
};
|
||||||
let generic_struct: ::syn::ItemStruct = ::syn::parse_quote! {
|
let generic_struct: ::syn::ItemStruct = ::syn::parse_quote! {
|
||||||
pub struct test<R> where R: ::std::fmt::Debug + 'static {}
|
pub struct test<R> where R: ::bok::Repository + 'static {}
|
||||||
};
|
};
|
||||||
let (_, generics, where_clause) = generic_struct.generics.split_for_impl();
|
let (_, generics, where_clause) = generic_struct.generics.split_for_impl();
|
||||||
|
|
||||||
@ -506,7 +506,7 @@ pub(crate) fn package_impl_base_add(
|
|||||||
let generic_struct: ::syn::ItemImpl = ::syn::parse_quote! {
|
let generic_struct: ::syn::ItemImpl = ::syn::parse_quote! {
|
||||||
impl<R> test for #pkg_type <R>
|
impl<R> test for #pkg_type <R>
|
||||||
where
|
where
|
||||||
R: ::std::fmt::Debug + 'static
|
R: ::bok::Repository + 'static
|
||||||
{}
|
{}
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -775,7 +775,7 @@ pub(crate) fn derive_package(input: TokenStream) -> TokenStream {
|
|||||||
let expanded = quote! {
|
let expanded = quote! {
|
||||||
impl<R> ::core::fmt::Display for #name<R>
|
impl<R> ::core::fmt::Display for #name<R>
|
||||||
where
|
where
|
||||||
R: ::std::fmt::Debug
|
R: ::bok::Repository,
|
||||||
{
|
{
|
||||||
fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>)
|
fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>)
|
||||||
->::core::fmt::Result
|
->::core::fmt::Result
|
||||||
@ -785,7 +785,7 @@ pub(crate) fn derive_package(input: TokenStream) -> TokenStream {
|
|||||||
}
|
}
|
||||||
impl<R> ::bok::PkgCode for #name<R>
|
impl<R> ::bok::PkgCode for #name<R>
|
||||||
where
|
where
|
||||||
R: ::std::fmt::Debug +'static
|
R: ::bok::Repository +'static,
|
||||||
{
|
{
|
||||||
fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>)
|
fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>)
|
||||||
->::core::fmt::Result
|
->::core::fmt::Result
|
||||||
@ -848,7 +848,7 @@ pub(crate) fn derive_package(input: TokenStream) -> TokenStream {
|
|||||||
}
|
}
|
||||||
impl<R> #name<R>
|
impl<R> #name<R>
|
||||||
where
|
where
|
||||||
R: ::std::fmt::Debug +'static + ::core::default::Default
|
R: ::bok::Repository + 'static + ::core::default::Default,
|
||||||
{
|
{
|
||||||
pub fn as_pkg(&self) -> &dyn ::bok::Pkg {
|
pub fn as_pkg(&self) -> &dyn ::bok::Pkg {
|
||||||
self
|
self
|
||||||
@ -869,7 +869,7 @@ pub(crate) fn derive_package(input: TokenStream) -> TokenStream {
|
|||||||
#[derive(::std::default::Default, ::std::fmt::Debug)]
|
#[derive(::std::default::Default, ::std::fmt::Debug)]
|
||||||
pub struct #name_builder<R>
|
pub struct #name_builder<R>
|
||||||
where
|
where
|
||||||
R: ::std::fmt::Debug +'static
|
R: ::bok::Repository + 'static,
|
||||||
{
|
{
|
||||||
_bok_repo: ::std::marker::PhantomData<R>,
|
_bok_repo: ::std::marker::PhantomData<R>,
|
||||||
#(#non_opt_fields: ::std::option::Option<#non_opt_types>,)*
|
#(#non_opt_fields: ::std::option::Option<#non_opt_types>,)*
|
||||||
@ -877,7 +877,7 @@ pub(crate) fn derive_package(input: TokenStream) -> TokenStream {
|
|||||||
}
|
}
|
||||||
impl<R> ::bok::PkgBuilder for #name_builder2<R>
|
impl<R> ::bok::PkgBuilder for #name_builder2<R>
|
||||||
where
|
where
|
||||||
R: ::std::fmt::Debug + 'static
|
R: ::bok::Repository + 'static,
|
||||||
{
|
{
|
||||||
fn name(&self) -> ::bok::PkgName {
|
fn name(&self) -> ::bok::PkgName {
|
||||||
use ::bok::Pkg;
|
use ::bok::Pkg;
|
||||||
@ -916,7 +916,7 @@ pub(crate) fn derive_package(input: TokenStream) -> TokenStream {
|
|||||||
}
|
}
|
||||||
impl<R> #name_builder3<R>
|
impl<R> #name_builder3<R>
|
||||||
where
|
where
|
||||||
R: ::std::fmt::Debug +'static
|
R: ::bok::Repository +'static,
|
||||||
{
|
{
|
||||||
pub fn as_any(&self) -> &dyn ::std::any::Any {
|
pub fn as_any(&self) -> &dyn ::std::any::Any {
|
||||||
self
|
self
|
||||||
|
@ -538,6 +538,18 @@ pub(crate) fn repo_impl_methods(
|
|||||||
fn_to_add.push(pkg_fn);
|
fn_to_add.push(pkg_fn);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// keep sorted for easier debugging when expanding macros
|
||||||
|
fn_to_add
|
||||||
|
.sort_by(|a, b| a.sig.ident.to_string().cmp(&b.sig.ident.to_string()));
|
||||||
|
all_pkgs_types.sort_by(|a, b| {
|
||||||
|
a.segments
|
||||||
|
.last()
|
||||||
|
.unwrap()
|
||||||
|
.ident
|
||||||
|
.to_string()
|
||||||
|
.cmp(&b.segments.last().unwrap().ident.to_string())
|
||||||
|
});
|
||||||
|
|
||||||
let new_fn = fn_to_add.iter();
|
let new_fn = fn_to_add.iter();
|
||||||
|
|
||||||
let mut all_impl_deps = Vec::with_capacity(all_pkgs_types.len());
|
let mut all_impl_deps = Vec::with_capacity(all_pkgs_types.len());
|
||||||
@ -556,7 +568,6 @@ pub(crate) fn repo_impl_methods(
|
|||||||
impl #bok_dep_trait for #local_ident {}
|
impl #bok_dep_trait for #local_ident {}
|
||||||
};
|
};
|
||||||
all_impl_deps.push(dep_view);
|
all_impl_deps.push(dep_view);
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
quote! {
|
quote! {
|
||||||
@ -586,7 +597,7 @@ pub(crate) fn repo_impl_pkg_deps(
|
|||||||
.expect("#[::bok_macro::repo_impl_pkg_deps()]: no trait found")
|
.expect("#[::bok_macro::repo_impl_pkg_deps()]: no trait found")
|
||||||
.1;
|
.1;
|
||||||
let local_attrs = local.attrs.iter();
|
let local_attrs = local.attrs.iter();
|
||||||
let (_, generics, where_clause) = local.generics.split_for_impl();
|
let (_, generics, _) = local.generics.split_for_impl();
|
||||||
let ident = &local.self_ty;
|
let ident = &local.self_ty;
|
||||||
|
|
||||||
//let deps = Vec::<::syn::TraitItemFn>::new();
|
//let deps = Vec::<::syn::TraitItemFn>::new();
|
||||||
@ -611,7 +622,7 @@ pub(crate) fn repo_impl_pkg_deps(
|
|||||||
quote! {
|
quote! {
|
||||||
#(#local_attrs)
|
#(#local_attrs)
|
||||||
*
|
*
|
||||||
impl #impl_trait for #ident #generics #where_clause {
|
impl #impl_trait for #ident #generics {
|
||||||
#(#deps)
|
#(#deps)
|
||||||
*
|
*
|
||||||
}
|
}
|
||||||
|
@ -27,7 +27,7 @@ pub struct One {
|
|||||||
|
|
||||||
impl<R> ::std::default::Default for One<R>
|
impl<R> ::std::default::Default for One<R>
|
||||||
where
|
where
|
||||||
R: ::std::fmt::Debug,
|
R: ::bok::Repository,
|
||||||
{
|
{
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
One {
|
One {
|
||||||
|
@ -26,7 +26,7 @@ pub struct Three {
|
|||||||
|
|
||||||
impl<R> ::std::default::Default for Three<R>
|
impl<R> ::std::default::Default for Three<R>
|
||||||
where
|
where
|
||||||
R: ::std::fmt::Debug,
|
R: ::bok::Repository,
|
||||||
{
|
{
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
Three {
|
Three {
|
||||||
|
@ -26,7 +26,7 @@ pub struct Two {
|
|||||||
|
|
||||||
impl<R> ::std::default::Default for Two<R>
|
impl<R> ::std::default::Default for Two<R>
|
||||||
where
|
where
|
||||||
R: ::std::fmt::Debug,
|
R: ::bok::Repository,
|
||||||
{
|
{
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
Two {
|
Two {
|
||||||
|
Loading…
Reference in New Issue
Block a user