mirror of
https://github.com/launchbadge/sqlx.git
synced 2025-12-30 13:20:59 +00:00
* fix(macros): tell the compiler about external files/env vars to watch closes #663 closes #681 * feat(cli): add `migrate` subcommand for generating a build script suggest embedding migrations on `sqlx migrate add` in a new project
146 lines
4.1 KiB
Rust
146 lines
4.1 KiB
Rust
#![cfg_attr(
|
|
not(any(feature = "postgres", feature = "mysql", feature = "offline")),
|
|
allow(dead_code, unused_macros, unused_imports)
|
|
)]
|
|
#![cfg_attr(
|
|
any(sqlx_macros_unstable, procmacro2_semver_exempt),
|
|
feature(track_path, proc_macro_tracked_env)
|
|
)]
|
|
extern crate proc_macro;
|
|
|
|
use proc_macro::TokenStream;
|
|
|
|
use quote::quote;
|
|
|
|
type Error = Box<dyn std::error::Error>;
|
|
|
|
type Result<T> = std::result::Result<T, Error>;
|
|
|
|
mod common;
|
|
mod database;
|
|
mod derives;
|
|
mod query;
|
|
|
|
#[cfg(feature = "migrate")]
|
|
mod migrate;
|
|
|
|
#[proc_macro]
|
|
pub fn expand_query(input: TokenStream) -> TokenStream {
|
|
let input = syn::parse_macro_input!(input as query::QueryMacroInput);
|
|
|
|
match query::expand_input(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_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_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()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#[doc(hidden)]
|
|
#[proc_macro_attribute]
|
|
pub fn test(_attr: TokenStream, input: TokenStream) -> TokenStream {
|
|
let input = syn::parse_macro_input!(input as syn::ItemFn);
|
|
|
|
let ret = &input.sig.output;
|
|
let name = &input.sig.ident;
|
|
let body = &input.block;
|
|
let attrs = &input.attrs;
|
|
|
|
let result = if cfg!(feature = "_rt-tokio") {
|
|
quote! {
|
|
#[test]
|
|
#(#attrs)*
|
|
fn #name() #ret {
|
|
::sqlx_rt::tokio::runtime::Builder::new_multi_thread()
|
|
.enable_io()
|
|
.enable_time()
|
|
.build()
|
|
.unwrap()
|
|
.block_on(async { #body })
|
|
}
|
|
}
|
|
} else if cfg!(feature = "_rt-async-std") {
|
|
quote! {
|
|
#[test]
|
|
#(#attrs)*
|
|
fn #name() #ret {
|
|
::sqlx_rt::async_std::task::block_on(async { #body })
|
|
}
|
|
}
|
|
} else if cfg!(feature = "_rt-actix") {
|
|
quote! {
|
|
#[test]
|
|
#(#attrs)*
|
|
fn #name() #ret {
|
|
::sqlx_rt::actix_rt::System::new()
|
|
.block_on(async { #body })
|
|
}
|
|
}
|
|
} else {
|
|
panic!("one of 'runtime-actix', 'runtime-async-std' or 'runtime-tokio' features must be enabled");
|
|
};
|
|
|
|
result.into()
|
|
}
|