Update syn/quote/proc-macro2 to 1.0

This commit is contained in:
Graham Esau 2019-10-12 12:56:51 +01:00
parent 505c369f27
commit 7d162a8fb5
4 changed files with 45 additions and 35 deletions

View file

@ -2,14 +2,14 @@
name = "schemars" name = "schemars"
description = "Generate JSON Schemas from Rust code" description = "Generate JSON Schemas from Rust code"
repository = "https://github.com/GREsau/schemars" repository = "https://github.com/GREsau/schemars"
version = "0.1.9" version = "0.1.10"
authors = ["Graham Esau <gesau@hotmail.co.uk>"] authors = ["Graham Esau <gesau@hotmail.co.uk>"]
edition = "2018" edition = "2018"
license = "MIT" license = "MIT"
keywords = ["rust", "json-schema", "serde"] keywords = ["rust", "json-schema", "serde"]
[dependencies] [dependencies]
schemars_derive = { version = "0.1.9", path = "../schemars_derive" } schemars_derive = { version = "0.1.10", path = "../schemars_derive" }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" serde_json = "1.0"
chrono = { version = "0.4", default-features = false, optional = true } chrono = { version = "0.4", default-features = false, optional = true }

View file

@ -2,7 +2,7 @@
name = "schemars_derive" name = "schemars_derive"
description = "Macros for #[derive(JsonSchema)], for use with schemars" description = "Macros for #[derive(JsonSchema)], for use with schemars"
repository = "https://github.com/GREsau/schemars" repository = "https://github.com/GREsau/schemars"
version = "0.1.9" version = "0.1.10"
authors = ["Graham Esau <gesau@hotmail.co.uk>"] authors = ["Graham Esau <gesau@hotmail.co.uk>"]
edition = "2018" edition = "2018"
license = "MIT" license = "MIT"
@ -12,10 +12,10 @@ keywords = ["rust", "json-schema", "serde"]
proc-macro = true proc-macro = true
[dependencies] [dependencies]
proc-macro2 = "0.4" proc-macro2 = "1.0"
quote = "0.6.13" quote = "1.0"
syn = { version = "0.15.44", features = ["extra-traits"] } syn = { version = "1.0", features = ["extra-traits"] }
serde_derive_internals = "0.24.1" serde_derive_internals = "0.25"
[dev-dependencies] [dev-dependencies]
pretty_assertions = "0.6.1" pretty_assertions = "0.6.1"

View file

@ -6,10 +6,10 @@ extern crate proc_macro;
mod preprocess; mod preprocess;
use proc_macro2::{Span, TokenStream}; use proc_macro2::TokenStream;
use quote::ToTokens; use quote::ToTokens;
use serde_derive_internals::ast::{Container, Data, Field, Style, Variant}; use serde_derive_internals::ast::{Container, Data, Field, Style, Variant};
use serde_derive_internals::attr::{self, Default as SerdeDefault, EnumTag}; use serde_derive_internals::attr::{self, Default as SerdeDefault, TagType};
use serde_derive_internals::{Ctxt, Derive}; use serde_derive_internals::{Ctxt, Derive};
use syn::spanned::Spanned; use syn::spanned::Spanned;
@ -19,14 +19,15 @@ pub fn derive_json_schema(input: proc_macro::TokenStream) -> proc_macro::TokenSt
preprocess::add_trait_bounds(&mut input.generics); preprocess::add_trait_bounds(&mut input.generics);
if let Err(e) = preprocess::process_serde_attrs(&mut input) { if let Err(e) = preprocess::process_serde_attrs(&mut input) {
return compile_error(input.span(), e).into(); return compile_error(e).into();
} }
let ctxt = Ctxt::new(); let ctxt = Ctxt::new();
let cont = Container::from_ast(&ctxt, &input, Derive::Deserialize); let cont = Container::from_ast(&ctxt, &input, Derive::Deserialize);
if let Err(e) = ctxt.check() { if let Err(e) = ctxt.check() {
return compile_error(input.span(), e).into(); return compile_error(e).into();
} }
let cont = cont.expect("from_ast set no errors on Ctxt, so should have returned Some");
let schema = match cont.data { let schema = match cont.data {
Data::Struct(Style::Unit, _) => schema_for_unit_struct(), Data::Struct(Style::Unit, _) => schema_for_unit_struct(),
@ -56,10 +57,8 @@ pub fn derive_json_schema(input: proc_macro::TokenStream) -> proc_macro::TokenSt
for tp in &type_params { for tp in &type_params {
schema_name_fmt.push_str(&format!("{{{}:.0}}", tp)); schema_name_fmt.push_str(&format!("{{{}:.0}}", tp));
} }
let fmt_param_names = &type_params;
let type_params = &type_params;
quote! { quote! {
format!(#schema_name_fmt #(,#fmt_param_names=#type_params::schema_name())*) format!(#schema_name_fmt #(,#type_params=#type_params::schema_name())*)
} }
}; };
@ -90,9 +89,10 @@ fn wrap_schema_fields(schema_contents: TokenStream) -> TokenStream {
} }
} }
fn compile_error(span: Span, message: String) -> TokenStream { fn compile_error(errors: Vec<syn::Error>) -> TokenStream {
quote_spanned! {span=> let compile_errors = errors.iter().map(syn::Error::to_compile_error);
compile_error!(#message); quote! {
#(#compile_errors)*
} }
} }
@ -106,10 +106,10 @@ fn is_unit_variant(v: &Variant) -> bool {
fn schema_for_enum(variants: &[Variant], cattrs: &attr::Container) -> TokenStream { fn schema_for_enum(variants: &[Variant], cattrs: &attr::Container) -> TokenStream {
let variants = variants.iter().filter(|v| !v.attrs.skip_deserializing()); let variants = variants.iter().filter(|v| !v.attrs.skip_deserializing());
match cattrs.tag() { match cattrs.tag() {
EnumTag::External => schema_for_external_tagged_enum(variants, cattrs), TagType::External => schema_for_external_tagged_enum(variants, cattrs),
EnumTag::None => schema_for_untagged_enum(variants, cattrs), TagType::None => schema_for_untagged_enum(variants, cattrs),
EnumTag::Internal { tag } => schema_for_internal_tagged_enum(variants, cattrs, tag), TagType::Internal { tag } => schema_for_internal_tagged_enum(variants, cattrs, tag),
EnumTag::Adjacent { .. } => unimplemented!("Adjacent tagged enums not yet supported."), TagType::Adjacent { .. } => unimplemented!("Adjacent tagged enums not yet supported."),
} }
} }
@ -329,7 +329,7 @@ fn without_last_element(path: Option<&syn::ExprPath>, last: &str) -> Option<syn:
.path .path
.segments .segments
.last() .last()
.map(|p| p.value().ident == last) .map(|p| p.ident == last)
.unwrap_or(false) => .unwrap_or(false) =>
{ {
let mut expr_path = expr_path.clone(); let mut expr_path = expr_path.clone();

View file

@ -16,7 +16,7 @@ pub fn add_trait_bounds(generics: &mut Generics) {
// If a struct/variant/field has any #[schemars] attributes, then rename them // If a struct/variant/field has any #[schemars] attributes, then rename them
// to #[serde] so that serde_derive_internals will parse them for us. // to #[serde] so that serde_derive_internals will parse them for us.
pub fn process_serde_attrs(input: &mut DeriveInput) -> Result<(), String> { pub fn process_serde_attrs(input: &mut DeriveInput) -> Result<(), Vec<syn::Error>> {
let ctxt = Ctxt::new(); let ctxt = Ctxt::new();
process_attrs(&ctxt, &mut input.attrs); process_attrs(&ctxt, &mut input.attrs);
match input.data { match input.data {
@ -63,7 +63,6 @@ fn process_attrs(ctxt: &Ctxt, attrs: &mut Vec<Attribute>) {
.flat_map(|attr| get_meta_items(&ctxt, attr)) .flat_map(|attr| get_meta_items(&ctxt, attr))
.flatten() .flatten()
.flat_map(|m| get_meta_ident(&ctxt, &m)) .flat_map(|m| get_meta_ident(&ctxt, &m))
.map(|i| i.to_string())
.collect(); .collect();
if schemars_meta_names.contains("with") { if schemars_meta_names.contains("with") {
schemars_meta_names.insert("serialize_with".to_string()); schemars_meta_names.insert("serialize_with".to_string());
@ -87,32 +86,43 @@ fn process_attrs(ctxt: &Ctxt, attrs: &mut Vec<Attribute>) {
let parser = Attribute::parse_outer; let parser = Attribute::parse_outer;
match parser.parse2(new_serde_attr) { match parser.parse2(new_serde_attr) {
Ok(ref mut parsed) => attrs.append(parsed), Ok(ref mut parsed) => attrs.append(parsed),
Err(e) => ctxt.error(e), Err(e) => ctxt.error_spanned_by(to_tokens(attrs), e),
} }
} }
fn to_tokens(attrs: &[Attribute]) -> impl ToTokens {
let mut tokens = proc_macro2::TokenStream::new();
for attr in attrs {
attr.to_tokens(&mut tokens);
}
tokens
}
fn get_meta_items(ctxt: &Ctxt, attr: &Attribute) -> Result<Vec<NestedMeta>, ()> { fn get_meta_items(ctxt: &Ctxt, attr: &Attribute) -> Result<Vec<NestedMeta>, ()> {
match attr.parse_meta() { match attr.parse_meta() {
Ok(Meta::List(meta)) => Ok(meta.nested.into_iter().collect()), Ok(Meta::List(meta)) => Ok(meta.nested.into_iter().collect()),
Ok(_) => { Ok(_) => {
ctxt.error("expected #[schemars(...)] or #[serde(...)]"); ctxt.error_spanned_by(attr, "expected #[schemars(...)] or #[serde(...)]");
Err(()) Err(())
} }
Err(err) => { Err(err) => {
ctxt.error(err); ctxt.error_spanned_by(attr, err);
Err(()) Err(())
} }
} }
} }
fn get_meta_ident(ctxt: &Ctxt, meta: &NestedMeta) -> Result<Ident, ()> { fn get_meta_ident(ctxt: &Ctxt, meta: &NestedMeta) -> Result<String, ()> {
match meta { match meta {
NestedMeta::Meta(m) => Ok(m.name()), NestedMeta::Meta(m) => m.path().get_ident().map(|i| i.to_string()).ok_or(()),
NestedMeta::Literal(lit) => { NestedMeta::Lit(lit) => {
ctxt.error(format!( ctxt.error_spanned_by(
meta,
format!(
"unexpected literal in attribute: {}", "unexpected literal in attribute: {}",
lit.into_token_stream() lit.into_token_stream()
)); ),
);
Err(()) Err(())
} }
} }
@ -156,7 +166,7 @@ mod tests {
}; };
if let Err(e) = process_serde_attrs(&mut input) { if let Err(e) = process_serde_attrs(&mut input) {
panic!("process_serde_attrs returned error: {}", e) panic!("process_serde_attrs returned error: {}", e[0])
}; };
assert_eq!(input, expected); assert_eq!(input, expected);