mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-12-30 13:20:59 +00:00
* WIP rt refactors * refactor: break drivers out into separate crates also cleans up significant technical debt
97 lines
3.0 KiB
Rust
97 lines
3.0 KiB
Rust
use proc_macro::TokenStream;
|
|
|
|
use quote::quote;
|
|
|
|
use sqlx_macros_core::*;
|
|
|
|
#[proc_macro]
|
|
pub fn expand_query(input: TokenStream) -> TokenStream {
|
|
let input = syn::parse_macro_input!(input as query::QueryMacroInput);
|
|
|
|
match query::expand_input(input, FOSS_DRIVERS) {
|
|
Ok(ts) => ts.into(),
|
|
Err(e) => {
|
|
if let Some(parse_err) = e.downcast_ref::<syn::Error>() {
|
|
parse_err.to_compile_error().into()
|
|
} else {
|
|
let msg = e.to_string();
|
|
quote!(::std::compile_error!(#msg)).into()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#[proc_macro_derive(Encode, attributes(sqlx))]
|
|
pub fn derive_encode(tokenstream: TokenStream) -> TokenStream {
|
|
let input = syn::parse_macro_input!(tokenstream as syn::DeriveInput);
|
|
match derives::expand_derive_encode(&input) {
|
|
Ok(ts) => ts.into(),
|
|
Err(e) => e.to_compile_error().into(),
|
|
}
|
|
}
|
|
|
|
#[proc_macro_derive(Decode, attributes(sqlx))]
|
|
pub fn derive_decode(tokenstream: TokenStream) -> TokenStream {
|
|
let input = syn::parse_macro_input!(tokenstream as syn::DeriveInput);
|
|
match derives::expand_derive_decode(&input) {
|
|
Ok(ts) => ts.into(),
|
|
Err(e) => e.to_compile_error().into(),
|
|
}
|
|
}
|
|
|
|
#[proc_macro_derive(Type, attributes(sqlx))]
|
|
pub fn derive_type(tokenstream: TokenStream) -> TokenStream {
|
|
let input = syn::parse_macro_input!(tokenstream as syn::DeriveInput);
|
|
match derives::expand_derive_type_encode_decode(&input) {
|
|
Ok(ts) => ts.into(),
|
|
Err(e) => e.to_compile_error().into(),
|
|
}
|
|
}
|
|
|
|
#[proc_macro_derive(FromRow, attributes(sqlx))]
|
|
pub fn derive_from_row(input: TokenStream) -> TokenStream {
|
|
let input = syn::parse_macro_input!(input as syn::DeriveInput);
|
|
|
|
match derives::expand_derive_from_row(&input) {
|
|
Ok(ts) => ts.into(),
|
|
Err(e) => e.to_compile_error().into(),
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "migrate")]
|
|
#[proc_macro]
|
|
pub fn migrate(input: TokenStream) -> TokenStream {
|
|
use syn::LitStr;
|
|
|
|
let input = syn::parse_macro_input!(input as LitStr);
|
|
match migrate::expand_migrator_from_lit_dir(input) {
|
|
Ok(ts) => ts.into(),
|
|
Err(e) => {
|
|
if let Some(parse_err) = e.downcast_ref::<syn::Error>() {
|
|
parse_err.to_compile_error().into()
|
|
} else {
|
|
let msg = e.to_string();
|
|
quote!(::std::compile_error!(#msg)).into()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#[proc_macro_attribute]
|
|
pub fn test(args: TokenStream, input: TokenStream) -> TokenStream {
|
|
let args = syn::parse_macro_input!(args as syn::AttributeArgs);
|
|
let input = syn::parse_macro_input!(input as syn::ItemFn);
|
|
|
|
match test_attr::expand(args, input) {
|
|
Ok(ts) => ts.into(),
|
|
Err(e) => {
|
|
if let Some(parse_err) = e.downcast_ref::<syn::Error>() {
|
|
parse_err.to_compile_error().into()
|
|
} else {
|
|
let msg = e.to_string();
|
|
quote!(::std::compile_error!(#msg)).into()
|
|
}
|
|
}
|
|
}
|
|
}
|