316 lines
11 KiB
Rust
316 lines
11 KiB
Rust
//! Details of the `response` section of the procedural macro.
|
|
|
|
use proc_macro2::TokenStream;
|
|
use quote::{quote, quote_spanned};
|
|
use syn::{spanned::Spanned, Attribute, Field, Ident};
|
|
|
|
/// The result of processing the `response` section of the macro.
|
|
pub(crate) struct Response {
|
|
/// The attributes that will be applied to the struct definition.
|
|
pub attributes: Vec<Attribute>,
|
|
|
|
/// The fields of the response.
|
|
pub fields: Vec<ResponseField>,
|
|
}
|
|
|
|
impl Response {
|
|
/// Whether or not this response has any data in the HTTP body.
|
|
pub fn has_body_fields(&self) -> bool {
|
|
self.fields.iter().any(|field| field.is_body())
|
|
}
|
|
|
|
/// Whether or not this response has any data in HTTP headers.
|
|
pub fn has_header_fields(&self) -> bool {
|
|
self.fields.iter().any(|field| field.is_header())
|
|
}
|
|
|
|
/// Produces code for a response struct initializer.
|
|
pub fn init_fields(&self, ruma_api: &TokenStream) -> TokenStream {
|
|
let http = quote! { #ruma_api::exports::http };
|
|
|
|
let mut fields = vec![];
|
|
let mut new_type_raw_body = None;
|
|
for response_field in &self.fields {
|
|
let field = response_field.field();
|
|
let field_name = field.ident.as_ref().expect("expected field to have an identifier");
|
|
let span = field.span();
|
|
let cfg_attrs =
|
|
field.attrs.iter().filter(|a| a.path.is_ident("cfg")).collect::<Vec<_>>();
|
|
|
|
fields.push(match response_field {
|
|
ResponseField::Body(_) => {
|
|
quote_spanned! {span=>
|
|
#( #cfg_attrs )*
|
|
#field_name: response_body.#field_name
|
|
}
|
|
}
|
|
ResponseField::Header(_, header_name) => {
|
|
let optional_header = match &field.ty {
|
|
syn::Type::Path(syn::TypePath {
|
|
path: syn::Path { segments, .. }, ..
|
|
}) if segments.last().unwrap().ident == "Option" => {
|
|
quote! {
|
|
#field_name: #ruma_api::try_deserialize!(
|
|
response,
|
|
headers.remove(#http::header::#header_name)
|
|
.map(|h| h.to_str().map(|s| s.to_owned()))
|
|
.transpose()
|
|
)
|
|
}
|
|
}
|
|
_ => quote! {
|
|
#field_name: #ruma_api::try_deserialize!(
|
|
response,
|
|
headers.remove(#http::header::#header_name)
|
|
.expect("response missing expected header")
|
|
.to_str()
|
|
)
|
|
.to_owned()
|
|
},
|
|
};
|
|
quote_spanned! {span=> #optional_header }
|
|
}
|
|
ResponseField::NewtypeBody(_) => {
|
|
quote_spanned! {span=>
|
|
#field_name: response_body.0
|
|
}
|
|
}
|
|
// This field must be instantiated last to avoid `use of move value` error.
|
|
// We are guaranteed only one new body field because of a check in `try_from`.
|
|
ResponseField::NewtypeRawBody(_) => {
|
|
new_type_raw_body = Some(quote_spanned! {span=>
|
|
#field_name: response.into_body()
|
|
});
|
|
// skip adding to the vec
|
|
continue;
|
|
}
|
|
});
|
|
}
|
|
|
|
fields.extend(new_type_raw_body);
|
|
|
|
quote! {
|
|
#(#fields,)*
|
|
}
|
|
}
|
|
|
|
/// Produces code to add necessary HTTP headers to an `http::Response`.
|
|
pub fn apply_header_fields(&self, ruma_api: &TokenStream) -> TokenStream {
|
|
let http = quote! { #ruma_api::exports::http };
|
|
|
|
let header_calls = self.fields.iter().filter_map(|response_field| {
|
|
if let ResponseField::Header(ref field, ref header_name) = *response_field {
|
|
let field_name =
|
|
field.ident.as_ref().expect("expected field to have an identifier");
|
|
let span = field.span();
|
|
|
|
let optional_header = match &field.ty {
|
|
syn::Type::Path(syn::TypePath { path: syn::Path { segments, .. }, .. })
|
|
if segments.last().unwrap().ident == "Option" =>
|
|
{
|
|
quote! {
|
|
if let Some(header) = response.#field_name {
|
|
headers
|
|
.insert(
|
|
#http::header::#header_name,
|
|
header.parse()?,
|
|
);
|
|
}
|
|
}
|
|
}
|
|
_ => quote! {
|
|
headers
|
|
.insert(
|
|
#http::header::#header_name,
|
|
response.#field_name.parse()?,
|
|
);
|
|
},
|
|
};
|
|
|
|
Some(quote_spanned! {span=>
|
|
#optional_header
|
|
})
|
|
} else {
|
|
None
|
|
}
|
|
});
|
|
|
|
quote! { #(#header_calls)* }
|
|
}
|
|
|
|
/// Produces code to initialize the struct that will be used to create the response body.
|
|
pub fn to_body(&self, ruma_api: &TokenStream) -> TokenStream {
|
|
let serde_json = quote! { #ruma_api::exports::serde_json };
|
|
|
|
if let Some(field) = self.newtype_raw_body_field() {
|
|
let field_name = field.ident.as_ref().expect("expected field to have an identifier");
|
|
let span = field.span();
|
|
return quote_spanned!(span=> response.#field_name);
|
|
}
|
|
|
|
let body = if let Some(field) = self.newtype_body_field() {
|
|
let field_name = field.ident.as_ref().expect("expected field to have an identifier");
|
|
let span = field.span();
|
|
quote_spanned!(span=> response.#field_name)
|
|
} else {
|
|
let fields = self.fields.iter().filter_map(|response_field| {
|
|
if let ResponseField::Body(ref field) = *response_field {
|
|
let field_name =
|
|
field.ident.as_ref().expect("expected field to have an identifier");
|
|
let span = field.span();
|
|
let cfg_attrs =
|
|
field.attrs.iter().filter(|a| a.path.is_ident("cfg")).collect::<Vec<_>>();
|
|
|
|
Some(quote_spanned! {span=>
|
|
#( #cfg_attrs )*
|
|
#field_name: response.#field_name
|
|
})
|
|
} else {
|
|
None
|
|
}
|
|
});
|
|
|
|
quote! {
|
|
ResponseBody { #(#fields),* }
|
|
}
|
|
};
|
|
|
|
quote!(#serde_json::to_vec(&#body)?)
|
|
}
|
|
|
|
/// Gets the newtype body field, if this response has one.
|
|
pub fn newtype_body_field(&self) -> Option<&Field> {
|
|
self.fields.iter().find_map(ResponseField::as_newtype_body_field)
|
|
}
|
|
|
|
/// Gets the newtype raw body field, if this response has one.
|
|
pub fn newtype_raw_body_field(&self) -> Option<&Field> {
|
|
self.fields.iter().find_map(ResponseField::as_newtype_raw_body_field)
|
|
}
|
|
|
|
pub(super) fn expand_type_def(&self, ruma_api: &TokenStream) -> TokenStream {
|
|
let ruma_serde = quote! { #ruma_api::exports::ruma_serde };
|
|
let serde = quote! { #ruma_api::exports::serde };
|
|
|
|
let struct_attributes = &self.attributes;
|
|
|
|
let response_def = if self.fields.is_empty() {
|
|
quote!(;)
|
|
} else {
|
|
let fields = self.fields.iter().map(|response_field| response_field.field());
|
|
quote! { { #(#fields),* } }
|
|
};
|
|
|
|
let def = if let Some(body_field) = self.fields.iter().find(|f| f.is_newtype_body()) {
|
|
let field = Field { ident: None, colon_token: None, ..body_field.field().clone() };
|
|
|
|
quote! { (#field); }
|
|
} else if self.has_body_fields() {
|
|
let fields = self.fields.iter().filter(|f| f.is_body());
|
|
|
|
let fields = fields.map(ResponseField::field);
|
|
|
|
quote! { { #(#fields),* } }
|
|
} else {
|
|
quote! { {} }
|
|
};
|
|
|
|
let response_body_struct = quote! {
|
|
/// Data in the response body.
|
|
#[derive(Debug, #ruma_serde::Outgoing, #serde::Deserialize, #serde::Serialize)]
|
|
struct ResponseBody #def
|
|
};
|
|
|
|
quote! {
|
|
#[derive(Debug, Clone, #ruma_serde::Outgoing, #ruma_serde::_FakeDeriveSerde)]
|
|
#[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
|
|
#[incoming_derive(!Deserialize)]
|
|
#( #struct_attributes )*
|
|
pub struct Response #response_def
|
|
|
|
#response_body_struct
|
|
}
|
|
}
|
|
}
|
|
|
|
/// The types of fields that a response can have.
|
|
pub(crate) enum ResponseField {
|
|
/// JSON data in the body of the response.
|
|
Body(Field),
|
|
|
|
/// Data in an HTTP header.
|
|
Header(Field, Ident),
|
|
|
|
/// A specific data type in the body of the response.
|
|
NewtypeBody(Field),
|
|
|
|
/// Arbitrary bytes in the body of the response.
|
|
NewtypeRawBody(Field),
|
|
}
|
|
|
|
impl ResponseField {
|
|
/// Gets the inner `Field` value.
|
|
pub fn field(&self) -> &Field {
|
|
match self {
|
|
ResponseField::Body(field)
|
|
| ResponseField::Header(field, _)
|
|
| ResponseField::NewtypeBody(field)
|
|
| ResponseField::NewtypeRawBody(field) => field,
|
|
}
|
|
}
|
|
|
|
/// Whether or not this response field is a body kind.
|
|
pub fn is_body(&self) -> bool {
|
|
self.as_body_field().is_some()
|
|
}
|
|
|
|
/// Whether or not this response field is a header kind.
|
|
pub fn is_header(&self) -> bool {
|
|
matches!(self, ResponseField::Header(..))
|
|
}
|
|
|
|
/// Whether or not this response field is a newtype body kind.
|
|
pub fn is_newtype_body(&self) -> bool {
|
|
self.as_newtype_body_field().is_some()
|
|
}
|
|
|
|
/// Return the contained field if this response field is a body kind.
|
|
pub fn as_body_field(&self) -> Option<&Field> {
|
|
match self {
|
|
ResponseField::Body(field) => Some(field),
|
|
_ => None,
|
|
}
|
|
}
|
|
|
|
/// Return the contained field if this response field is a newtype body kind.
|
|
pub fn as_newtype_body_field(&self) -> Option<&Field> {
|
|
match self {
|
|
ResponseField::NewtypeBody(field) => Some(field),
|
|
_ => None,
|
|
}
|
|
}
|
|
|
|
/// Return the contained field if this response field is a newtype raw body kind.
|
|
pub fn as_newtype_raw_body_field(&self) -> Option<&Field> {
|
|
match self {
|
|
ResponseField::NewtypeRawBody(field) => Some(field),
|
|
_ => None,
|
|
}
|
|
}
|
|
}
|
|
|
|
/// The types of fields that a response can have, without their values.
|
|
pub(crate) enum ResponseFieldKind {
|
|
/// See the similarly named variant of `ResponseField`.
|
|
Body,
|
|
|
|
/// See the similarly named variant of `ResponseField`.
|
|
Header,
|
|
|
|
/// See the similarly named variant of `ResponseField`.
|
|
NewtypeBody,
|
|
|
|
/// See the similarly named variant of `ResponseField`.
|
|
NewtypeRawBody,
|
|
}
|