aboutsummaryrefslogtreecommitdiff
path: root/macros/src/util
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2023-08-13 11:26:37 +0200
committerHampusM <hampus@hampusmat.com>2023-08-13 11:26:37 +0200
commit8f990a4477aa126e6bc79b98ba5f6685b0658fe7 (patch)
tree9ea852d71f3afa201f5633eb789ff488c6df1358 /macros/src/util
parent89c238f9c82ade2d7656e2bee76838a391609a88 (diff)
feat: add internal logging for macros
Diffstat (limited to 'macros/src/util')
-rw-r--r--macros/src/util/mod.rs1
-rw-r--r--macros/src/util/tokens.rs89
2 files changed, 90 insertions, 0 deletions
diff --git a/macros/src/util/mod.rs b/macros/src/util/mod.rs
index d3edb67..2244229 100644
--- a/macros/src/util/mod.rs
+++ b/macros/src/util/mod.rs
@@ -3,6 +3,7 @@ pub mod item_impl;
pub mod iterator_ext;
pub mod string;
pub mod syn_path;
+pub mod tokens;
macro_rules! to_option {
($($tokens: tt)+) => {
diff --git a/macros/src/util/tokens.rs b/macros/src/util/tokens.rs
new file mode 100644
index 0000000..c614ea0
--- /dev/null
+++ b/macros/src/util/tokens.rs
@@ -0,0 +1,89 @@
+use std::fmt::Write;
+
+use proc_macro2::{Delimiter, Spacing, TokenTree};
+use quote::ToTokens;
+
+pub trait ToTokensExt
+{
+ fn to_str_pretty(&self) -> String;
+}
+
+impl<T: ToTokens> ToTokensExt for T
+{
+ fn to_str_pretty(&self) -> String
+ {
+ let mut spaceable = Spaceable::None;
+
+ self.to_token_stream()
+ .into_iter()
+ .fold(String::new(), |mut acc, token_tree| {
+ let prev_spaceable = spaceable;
+
+ spaceable = get_tt_spaceable(&token_tree);
+
+ if matches!(prev_spaceable, Spaceable::Left | Spaceable::LeftRight)
+ && matches!(spaceable, Spaceable::Right | Spaceable::LeftRight)
+ {
+ write!(acc, " ").ok();
+ }
+
+ match token_tree {
+ TokenTree::Group(group) => match group.delimiter() {
+ Delimiter::Parenthesis => {
+ write!(acc, "({})", group.stream().to_str_pretty()).ok();
+ }
+ Delimiter::Brace => {
+ write!(acc, "{{{}}}", group.stream().to_str_pretty()).ok();
+ }
+ Delimiter::Bracket => {
+ write!(acc, "[{}]", group.stream().to_str_pretty()).ok();
+ }
+ Delimiter::None => {
+ write!(acc, "{}", group.stream().to_str_pretty()).ok();
+ }
+ },
+ tt => {
+ write!(acc, "{tt}").ok();
+ }
+ }
+
+ acc
+ })
+ }
+}
+
+fn get_tt_spaceable(token_tree: &TokenTree) -> Spaceable
+{
+ match &token_tree {
+ TokenTree::Ident(_) => Spaceable::LeftRight,
+ TokenTree::Punct(punct)
+ if punct.spacing() == Spacing::Alone && (punct.as_char() == '+') =>
+ {
+ Spaceable::LeftRight
+ }
+ TokenTree::Punct(punct)
+ if punct.spacing() == Spacing::Alone
+ && (punct.as_char() == '>' || punct.as_char() == ',') =>
+ {
+ Spaceable::Left
+ }
+ TokenTree::Punct(punct)
+ if punct.spacing() == Spacing::Joint && punct.as_char() == '-' =>
+ {
+ // Is part of ->
+ Spaceable::Right
+ }
+ TokenTree::Punct(punct) if punct.as_char() == '&' => Spaceable::Right,
+ TokenTree::Group(_) => Spaceable::Left,
+ _ => Spaceable::None,
+ }
+}
+
+#[derive(Debug, Clone, Copy)]
+enum Spaceable
+{
+ Left,
+ Right,
+ LeftRight,
+ None,
+}