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 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
use proc_macro2::TokenStream;
use quote::ToTokens;
use syn::{
parse::{discouraged::Speculative, Parse, ParseStream},
parse_quote,
punctuated::Punctuated,
spanned::Spanned,
token::{Brace, Comma, Paren},
Attribute, Expr, Lit, Pat, PatType, Token,
};
use super::{parse::parse_valid_block_expr, InvalidBlock};
use crate::{
node::{NodeBlock, NodeName},
parser::recoverable::{ParseRecoverable, RecoverableContext},
};
#[derive(Clone, Debug, syn_derive::ToTokens)]
pub struct AttributeValueExpr {
pub token_eq: Token![=],
pub value: KVAttributeValue,
}
#[derive(Clone, Debug, syn_derive::ToTokens)]
pub enum KVAttributeValue {
Expr(Expr),
InvalidBraced(InvalidBlock),
}
impl AttributeValueExpr {
///
/// Returns string representation of inner value,
/// if value expression contain something that can be treated as displayable
/// literal.
///
/// Example of displayable literals:
/// `"string"` // string
/// `'c'` // char
/// `0x12`, `1231` // integer - converted to decimal form
/// `0.12` // float point value - converted to decimal form
/// `true`, `false` // booleans
///
/// Examples of literals that also will be non-displayable:
/// `b'a'` // byte
/// `b"asdad"` // byte-string
///
/// Examples of non-static non-displayable expressions:
/// `{ x + 1}` // block of code
/// `y` // usage of variable
/// `|v| v + 1` // closure is valid expression too
/// `[1, 2, 3]` // arrays,
/// `for/while/if` // any controll flow
/// .. and this list can be extended
///
/// Adapted from leptos
pub fn value_literal_string(&self) -> Option<String> {
match &self.value {
KVAttributeValue::Expr(Expr::Lit(l)) => match &l.lit {
Lit::Str(s) => Some(s.value()),
Lit::Char(c) => Some(c.value().to_string()),
Lit::Int(i) => Some(i.base10_digits().to_string()),
Lit::Float(f) => Some(f.base10_digits().to_string()),
Lit::Bool(b) => Some(b.value.to_string()),
_ => None,
},
_ => None,
}
}
}
#[derive(Clone, Debug, syn_derive::ToTokens)]
pub enum KeyedAttributeValue {
Binding(FnBinding),
Value(AttributeValueExpr),
None,
}
impl KeyedAttributeValue {
pub fn to_value(&self) -> Option<&AttributeValueExpr> {
match self {
KeyedAttributeValue::Value(v) => Some(v),
KeyedAttributeValue::None => None,
KeyedAttributeValue::Binding(_) => None,
}
}
}
///
/// Element attribute with fixed key.
///
/// Example:
/// key=value // attribute with ident as value
/// key // attribute without value
#[derive(Clone, Debug, syn_derive::ToTokens)]
pub struct KeyedAttribute {
/// Key of the element attribute.
pub key: NodeName,
/// Value of the element attribute.
pub possible_value: KeyedAttributeValue,
}
impl KeyedAttribute {
///
/// Returns string representation of inner value,
/// if value expression contain something that can be treated as displayable
/// literal.
///
/// Example of displayable literals:
/// `"string"` // string
/// `'c'` // char
/// `0x12`, `1231` // integer - converted to decimal form
/// `0.12` // float point value - converted to decimal form
/// `true`, `false` // booleans
///
/// Examples of literals that also will be non-displayable:
/// `b'a'` // byte
/// `b"asdad"` // byte-string
///
/// Examples of non-static non-displayable expressions:
/// `{ x + 1}` // block of code
/// `y` // usage of variable
/// `|v| v + 1` // closure is valid expression too
/// `[1, 2, 3]` // arrays,
/// `for/while/if` // any controll flow
/// .. and this list can be extended
///
/// Adapted from leptos
pub fn value_literal_string(&self) -> Option<String> {
self.possible_value
.to_value()
.and_then(|v| v.value_literal_string())
}
pub fn value(&self) -> Option<&Expr> {
self.possible_value
.to_value()
.map(|v| match &v.value {
KVAttributeValue::Expr(expr) => Some(expr),
KVAttributeValue::InvalidBraced(_) => None,
})
.flatten()
}
// Checks if error is about eof.
// This error is known to report Span::call_site.
// Correct them to point to ParseStream
pub(crate) fn correct_expr_error_span(error: syn::Error, input: ParseStream) -> syn::Error {
let error_str = error.to_string();
if error_str.starts_with("unexpected end of input") {
let stream = input
.parse::<TokenStream>()
.expect("BUG: Token stream should always be parsable");
return syn::Error::new(
stream.span(),
format!("failed to parse expression: {}", error),
);
}
error
}
}
/// Represent arguments of closure.
/// One can use it to represent variable binding from one scope to another.
#[derive(Clone, Debug)]
pub struct FnBinding {
pub paren: Paren,
pub inputs: Punctuated<Pat, Comma>,
}
// Copy - pasted from syn1 closure argument parsing
fn closure_arg(input: ParseStream) -> syn::Result<Pat> {
let attrs = input.call(Attribute::parse_outer)?;
let mut pat: Pat = Pat::parse_single(input)?;
if input.peek(Token![:]) {
Ok(Pat::Type(PatType {
attrs,
pat: Box::new(pat),
colon_token: input.parse()?,
ty: input.parse()?,
}))
} else {
match &mut pat {
Pat::Ident(pat) => pat.attrs = attrs,
Pat::Lit(pat) => pat.attrs = attrs,
Pat::Macro(pat) => pat.attrs = attrs,
Pat::Or(pat) => pat.attrs = attrs,
Pat::Path(pat) => pat.attrs = attrs,
Pat::Range(pat) => pat.attrs = attrs,
Pat::Reference(pat) => pat.attrs = attrs,
Pat::Rest(pat) => pat.attrs = attrs,
Pat::Slice(pat) => pat.attrs = attrs,
Pat::Struct(pat) => pat.attrs = attrs,
Pat::Tuple(pat) => pat.attrs = attrs,
Pat::TupleStruct(pat) => pat.attrs = attrs,
Pat::Type(_) => unreachable!("BUG: Type handled in if"),
Pat::Verbatim(_) => {}
Pat::Wild(pat) => pat.attrs = attrs,
_ => unreachable!(),
}
Ok(pat)
}
}
/// Sum type for Dyn and Keyed attributes.
///
/// Attributes is stored in opening tags.
#[derive(Clone, Debug, syn_derive::ToTokens)]
pub enum NodeAttribute {
///
/// Element attribute that is computed from rust code block.
///
/// Example:
/// `<div {"some-fixed-key"}>` // attribute without value
/// that is computed from string
Block(NodeBlock),
///
/// Element attribute with key, and possible value.
/// Value is a valid Rust expression.
///
/// Example:
/// - `<div attr>`
/// - `<div attr = value>`
///
/// Value can be also in parens after key, but then it is parsed as closure
/// arguments. Example:
/// - `<div attr(x)>`
/// - `<div attr(x: Type)>`
Attribute(KeyedAttribute),
}
impl ParseRecoverable for KeyedAttribute {
fn parse_recoverable(parser: &mut RecoverableContext, input: ParseStream) -> Option<Self> {
let key = NodeName::parse(input)
.map_err(|e| parser.push_diagnostic(e))
.ok()?;
let possible_value = if input.peek(Paren) {
KeyedAttributeValue::Binding(
FnBinding::parse(input)
.map_err(|e| parser.push_diagnostic(e))
.ok()?,
)
} else if input.peek(Token![=]) {
let eq = input
.parse::<Token![=]>()
.map_err(|e| parser.push_diagnostic(e))
.ok()?;
if input.is_empty() {
parser.push_diagnostic(syn::Error::new(eq.span(), "missing attribute value"));
return None;
}
let fork = input.fork();
let rs = match parse_valid_block_expr(parser, &fork) {
Ok(vbl) => {
input.advance_to(&fork);
KVAttributeValue::Expr(parse_quote!(#vbl))
}
Err(err) if input.fork().peek(Brace) && parser.config().recover_block => {
parser.push_diagnostic(err);
let ivb = parser.parse_simple(input)?;
KVAttributeValue::InvalidBraced(ivb)
}
Err(_) => {
let res = fork
.parse::<Expr>()
.map_err(|e| {
// if we stuck on end of input, span that is created will be call_site,
// so we need to correct it, in order to
// make it more IDE friendly.
if fork.is_empty() {
KeyedAttribute::correct_expr_error_span(e, input)
} else {
e
}
})
.map_err(|e| parser.push_diagnostic(e))
.ok()?;
input.advance_to(&fork);
KVAttributeValue::Expr(res)
}
};
KeyedAttributeValue::Value(AttributeValueExpr {
token_eq: eq,
value: rs,
})
} else {
KeyedAttributeValue::None
};
Some(KeyedAttribute {
key,
possible_value,
})
}
}
impl ParseRecoverable for NodeAttribute {
fn parse_recoverable(parser: &mut RecoverableContext, input: ParseStream) -> Option<Self> {
let node = if input.peek(Brace) {
NodeAttribute::Block(parser.parse_recoverable(input)?)
} else {
NodeAttribute::Attribute(parser.parse_recoverable(input)?)
};
Some(node)
}
}
impl Parse for FnBinding {
fn parse(stream: ParseStream) -> syn::Result<Self> {
let content;
let paren = syn::parenthesized!(content in stream);
let inputs = Punctuated::parse_terminated_with(&content, closure_arg)?;
Ok(Self { paren, inputs })
}
}
impl ToTokens for FnBinding {
fn to_tokens(&self, tokens: &mut TokenStream) {
self.paren.surround(tokens, |tokens| {
self.inputs.to_tokens(tokens);
})
}
}