actyx_sdk_macros/lib.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
/*
* Copyright 2020 Actyx AG
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
//! Supporting macros for the Actyx SDK
//!
//! The macros exported here are in this separate crate due to current restrictions on
//! proc_macros in Rust. Please see the [Actyx SDK](https://docs.rs/actyx_sdk) for
//! more information.
extern crate proc_macro;
use proc_macro2::{Span, TokenStream};
use quote::{quote, ToTokens};
use syn::{
parse::{Parse, ParseStream},
Error, Expr, ExprGroup, ExprLit, ExprRange, Item, Lit, LitByteStr, LitStr, RangeLimits, Token,
};
enum Str {
Chars(LitStr),
Bytes(LitByteStr),
}
impl Str {
pub fn len(&self) -> usize {
match self {
Str::Bytes(lit) => lit.value().len(),
Str::Chars(lit) => lit.value().len(),
}
}
pub fn span(&self) -> Span {
match self {
Str::Bytes(lit) => lit.span(),
Str::Chars(lit) => lit.span(),
}
}
pub fn kind(&self) -> &str {
match self {
Str::Bytes(_) => "byte-string",
Str::Chars(_) => "string",
}
}
}
struct Args {
lit: Str,
min: usize,
max: usize,
}
fn parse_opt_usize(boxed: &Option<Box<Expr>>, default: usize) -> Result<usize, Error> {
let expr = match boxed {
Some(expr) => &**expr,
None => return Ok(default),
};
if let Expr::Lit(ExprLit { lit: Lit::Int(i), .. }) = expr {
i.base10_parse::<usize>()
} else {
Err(Error::new_spanned(boxed, ""))
}
}
fn parse_range(from: Option<Box<Expr>>, to: Option<Box<Expr>>, limits: RangeLimits) -> Result<(usize, usize), Error> {
let from = match parse_opt_usize(&from, 0) {
Ok(from) => from,
_ => return Err(Error::new_spanned(from, "must range over usize values")),
};
let to = match (parse_opt_usize(&to, usize::max_value()), limits) {
(Ok(to), RangeLimits::HalfOpen(_)) => to - 1,
(Ok(to), RangeLimits::Closed(_)) => to,
_ => return Err(Error::new_spanned(from, "must range over usize values")),
};
Ok((from, to))
}
#[rustfmt::skip]
macro_rules! lit {
($typ:ident, $pat:ident) => {
Expr::Lit(ExprLit {
lit: Lit::$typ($pat),
..
})
};
}
#[rustfmt::skip]
macro_rules! range {
($from:ident, $to:ident, $limits:ident) => {
ExprRange {
$from,
$to,
$limits,
..
}
};
}
/// This macro takes a string and a range and asserts that the string’s length
/// lies within this range. Due to the limitations of proc_macros this macro
/// must be used in type position (for the simple check with two arguments), or
/// it must be used in item position (for the extended mode shown below).
///
/// This works:
///
/// ```rust
/// use actyx_sdk_macros::assert_len;
///
/// // this is normally emitted by macro_rules
/// #[allow(dead_code)]
/// type X = assert_len!(b"A", 1..=1);
/// # type Y = assert_len!(r#"A"#, 1..2);
/// ```
///
/// This does not compile:
///
/// ```compile_fail
/// use actyx_sdk_macros::assert_len;
///
/// type X = assert_len!(r##"123456"##, ..5);
/// ```
///
/// It is possible to only perform the length check if the argument is a (byte)string literal
/// and emit transformation code depending on whether it was a literal.
/// Due to the restriction on procedural macros (they cannot expand to expressions or statements)
/// we need to wrap the resulting logic in top-level items as shown below:
///
/// ```rust
/// macro_rules! transform {
/// ($expr:expr) => {{
/// mod y {
/// actyx_sdk_macros::assert_len! {
/// $expr,
/// 1..5,
/// pub fn x() -> usize { ($expr).len() }, // it was a string literal
/// pub fn x() -> String { format!("{}", $expr) } // it was something else
/// }
/// }
/// y::x()
/// }};
/// }
///
/// assert_eq!(transform!("helo"), 4);
/// assert_eq!(transform!("hello".to_string()), "hello");
/// ```
#[proc_macro]
pub fn assert_len(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
match assert_len_impl(input) {
Ok(res) => res.into(),
Err(err) => err.to_compile_error().into(),
}
}
struct Inputs {
literal: Expr,
range: ExprRange,
first: Option<Item>,
second: Option<Item>,
}
/// when this macro’s input comes from another macro, expressions may be invisibly
/// wrapped, so strip that away
fn strip_invisible_group(expr: Expr) -> Expr {
match expr {
Expr::Group(ExprGroup { expr, .. }) => *expr,
e => e,
}
}
impl Parse for Inputs {
fn parse(input: ParseStream) -> Result<Self, Error> {
let literal: Expr = strip_invisible_group(input.parse()?);
input.parse::<Token![,]>()?;
let range: ExprRange = match strip_invisible_group(input.parse()?) {
Expr::Range(e) => e,
other => return Err(Error::new_spanned(other, "expected range here")),
};
let mut first: Option<Item> = None;
let mut second: Option<Item> = None;
if input.parse::<Token![,]>().is_err() {
return Ok(Inputs {
literal,
range,
first,
second,
});
}
first = Some(input.parse()?);
input.parse::<Token![,]>()?;
second = Some(input.parse()?);
Ok(Inputs {
literal,
range,
first,
second,
})
}
}
fn assert_len_impl(input: proc_macro::TokenStream) -> Result<TokenStream, Error> {
let Inputs {
literal,
range,
first,
second,
} = syn::parse(input)?;
let parsed = match (literal, range) {
(lit!(Str, s), range!(from, to, limits)) => {
let (from, to) = parse_range(from, to, limits)?;
Some(Args {
lit: Str::Chars(s),
min: from,
max: to,
})
}
(lit!(ByteStr, s), range!(from, to, limits)) => {
let (from, to) = parse_range(from, to, limits)?;
Some(Args {
lit: Str::Bytes(s),
min: from,
max: to,
})
}
_ => None,
};
if parsed.is_none() {
if let Some(second) = second {
return Ok(second.into_token_stream());
}
return Err(Error::new(
Span::call_site(),
"argument must be a tuple of string and usize range",
));
}
let Args { lit, min, max } = parsed.unwrap();
let len = lit.len();
let mut error = TokenStream::new();
if len < min {
error.extend(
Error::new(
lit.span(),
format!(
"{} of length {} not allowed here, need at least {}",
lit.kind(),
len,
min
),
)
.to_compile_error(),
);
}
if len > max {
error.extend(
Error::new(
lit.span(),
format!(
"{} of length {} not allowed here, need at most {}",
lit.kind(),
len,
max
),
)
.to_compile_error(),
);
}
Ok(first
.map(|f| {
let first = f.into_token_stream();
// must emit compile_error! macro invocation together with the item to
// avoid irrelevant warnings in case of errors
quote!(#error #first)
})
.unwrap_or_else(|| if error.is_empty() { quote!(()) } else { error }))
}