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 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742
//! A code generator for state machines with an entry API.
//!
//! See the [`fsmentry` crate](https://docs.rs/fsmentry).
mod dsl;
mod util;
use heck::{ToSnakeCase as _, ToUpperCamelCase as _};
use proc_macro2::{Ident, Span};
use quote::{quote, ToTokens};
use std::{collections::BTreeMap, iter};
use syn::{
parse::ParseStream, parse_quote, punctuated::Punctuated, spanned::Spanned as _, token, Token,
};
use util::OuterDocString;
#[derive(Hash, PartialEq, Eq, Debug, Clone, PartialOrd, Ord)]
struct NodeId {
inner: Ident,
}
impl From<Ident> for NodeId {
fn from(inner: Ident) -> Self {
Self { inner }
}
}
impl NodeId {
pub fn transition_fn(&self) -> Ident {
self.inner.snake_case()
}
pub fn variant(&self) -> Ident {
self.inner.UpperCamelCase()
}
}
fn ident(s: impl AsRef<str>) -> Ident {
Ident::new(s.as_ref(), Span::call_site())
}
#[derive(Debug, Clone)]
struct NodeData {
/// Stored as a single tuple member in the state enum.
ty: Option<syn::Type>,
/// These are attached to each variant.
docs: Vec<OuterDocString>,
}
/// A code generator for state machines with an entry API.
///
/// The generator is created with a graph definition in either:
/// - [The `DOT` graph description language](https://en.wikipedia.org/wiki/DOT_%28graph_description_language%29).
/// See [`Self::parse_dot`].
/// - A domain specific language.
/// See [`Self::parse_dsl`].
///
/// [`Self::codegen`] performs the actual generation.
#[derive(Debug, Clone)]
pub struct FSMGenerator {
/// All are passed through to the state enum and the state machine struct.
///
/// `#[doc]` attributes are passed through to the module
attributes: Vec<syn::Attribute>,
vis: syn::Visibility,
ident: Ident,
/// All nodes must be in this map.
nodes: BTreeMap<NodeId, NodeData>,
/// Directed L -> R.
///
/// Documentation is passed through to the transition functions
edges: BTreeMap<(NodeId, NodeId), Vec<OuterDocString>>,
}
impl FSMGenerator {
/// Generates a state machine.
///
/// The basic layout of the generated code is as follows:
///
/// ```rust,ignore
/// (pub) mod <name> {
/// // The actual state machine
/// pub struct <name> { .. }
/// // The possible states, including inner data
/// pub enum State { .. }
/// // The entry api, which gives you handles to transition the machine
/// pub enum Entry { .. }
///
/// // additional structs are generated to perform the actual state transitions
/// }
/// ```
pub fn codegen(&self) -> syn::File {
let state_machine_name = self.ident.UpperCamelCase();
let state_enum_name = self.state_enum_name();
let entry_enum_name = self.entry_enum_name();
let mut state_variants = Punctuated::<syn::Variant, Token![,]>::new();
let mut entry_variants = Punctuated::<syn::Variant, Token![,]>::new();
let mut entry_has_lifetime = false;
let mut entry_construction = Vec::<syn::Arm>::new();
let mut transition_tys = Vec::<syn::ItemStruct>::new();
let mut transition_impls = Vec::<syn::ItemImpl>::new();
for (
node,
NodeData {
ty: node_ty,
docs: node_docs,
},
) in self.nodes.iter()
{
let node_variant_name = node.variant();
let mut node_docs = node_docs.clone();
if let Some(reachability_docs) = self.reachability_docs(node) {
if !node_docs.is_empty() {
node_docs.push(OuterDocString::new("", Span::call_site()))
}
node_docs.extend(reachability_docs)
}
match (node_ty, self.outgoing(node)) {
(None, None) => {
// This node has no data, and no transitions, so the entry and state enums are bare
state_variants.push(parse_quote!(#(#node_docs)* #node_variant_name));
entry_variants.push(parse_quote!(#(#node_docs)* #node_variant_name));
entry_construction.push(parse_quote!(#state_enum_name::#node_variant_name => #entry_enum_name::#node_variant_name,))
}
(Some(ty), None) => {
// This node has data, but no transitions, so the entry and state enums just contain a reference to the data
state_variants.push(parse_quote!(#(#node_docs)* #node_variant_name(#ty)));
entry_has_lifetime = true;
entry_variants
.push(parse_quote!(#(#node_docs)* #node_variant_name(&'a mut #ty)));
entry_construction.push(parse_quote!{
#state_enum_name::#node_variant_name(_) => {
// need to reborrow to get the data
match &mut self.state {
#state_enum_name::#node_variant_name(data) => #entry_enum_name::#node_variant_name(data),
_ => ::core::unreachable!("state cannot change underneath us while we hold a mutable reference")
}
}
});
}
(node_data_ty, Some(outgoing)) => {
// this node has transitions, so create a transition type
let transition_ty_name = self.transition_ty(node);
entry_has_lifetime = true;
transition_tys.push(parse_quote!(
#(#node_docs)*
pub struct #transition_ty_name<'a> {
inner: &'a mut #state_enum_name,
}
));
entry_variants.push(
parse_quote!(#(#node_docs)* #node_variant_name(#transition_ty_name<'a>)),
);
entry_construction.push(parse_quote!{
#state_enum_name::#node_variant_name{..} => #entry_enum_name::#node_variant_name(#transition_ty_name {
inner: &mut self.state,
}),
});
let msg = "this variant is only created when state is known to match, and we hold a mutable reference to state";
match node_data_ty {
Some(ty) => {
// this node has data, so store it in the state enum, and add getters for the transition type
state_variants
.push(parse_quote!(#(#node_docs)* #node_variant_name(#ty)));
let (get, get_mut) = self.getter_names();
transition_impls.push(parse_quote! {
impl #transition_ty_name<'_> {
/// Get a reference to the data stored in this state
pub fn #get(&self) -> & #ty {
match &self.inner {
#state_enum_name::#node_variant_name(data) => data,
_ => ::core::unreachable!(#msg)
}
}
/// Get a mutable reference to the data stored in this state
pub fn #get_mut(&mut self) -> &mut #ty {
match self.inner {
#state_enum_name::#node_variant_name(data) => data,
_ => ::core::unreachable!(#msg)
}
}
}
});
}
None => {
state_variants.push(parse_quote!(#(#node_docs)* #node_variant_name));
}
}
for (outgoing, transition_docs) in outgoing {
let transition_fn_name = outgoing.transition_fn();
let outgoing_variant_name = outgoing.variant();
let body: syn::ImplItemFn = match (node_data_ty, &self.nodes[outgoing].ty) {
// no data -> no data
(None, None) => parse_quote! {
pub fn #transition_fn_name(self) {
let prev =
::core::mem::replace(self.inner, #state_enum_name::#outgoing_variant_name);
::core::debug_assert!(::core::matches!(prev, #state_enum_name::#node_variant_name));
}
},
// no data -> data
(None, Some(out)) => parse_quote! {
pub fn #transition_fn_name(self, next: #out) {
let prev =
::core::mem::replace(self.inner, #state_enum_name::#outgoing_variant_name(next));
::core::debug_assert!(::core::matches!(prev, #state_enum_name::#node_variant_name));
}
},
// data -> no data
(Some(input), None) => parse_quote! {
pub fn #transition_fn_name(self) -> #input {
let prev =
::core::mem::replace(self.inner, #state_enum_name::#outgoing_variant_name);
match prev {
#state_enum_name::#node_variant_name(data) => data,
_ => ::core::unreachable!(#msg)
}
}
},
// data -> data
(Some(input), Some(out)) => parse_quote! {
pub fn #transition_fn_name(self, next: #out) -> #input {
let prev =
::core::mem::replace(self.inner, #state_enum_name::#outgoing_variant_name(next));
match prev {
#state_enum_name::#node_variant_name(data) => data,
_ => ::core::unreachable!(#msg)
}
}
},
};
transition_impls.push(parse_quote!(
impl #transition_ty_name<'_> {
#(#transition_docs)*
#body
}
));
}
}
}
}
let attrs = &self.attributes;
let state_machine_struct: syn::ItemStruct = parse_quote! {
#(#attrs)*
pub struct #state_machine_name {
state: #state_enum_name
}
};
let state_machine_methods: syn::ItemImpl = parse_quote! {
impl #state_machine_name {
/// Create a new state machine
pub fn new(initial: #state_enum_name) -> Self {
Self { state: initial }
}
/// Get a reference to the current state of the state machine
pub fn state(&self) -> &#state_enum_name {
&self.state
}
/// Get a mutable reference to the current state of the state machine
pub fn state_mut(&mut self) -> &mut #state_enum_name {
&mut self.state
}
/// Transition the state machine
#[must_use = "The state must be inspected and transitioned through the returned enum"]
pub fn entry(&mut self) -> #entry_enum_name {
match &mut self.state {
#(#entry_construction)*
}
}
}
};
let attrs = &self.attributes;
let state_enum: syn::ItemEnum = parse_quote! {
#(#attrs)*
pub enum #state_enum_name {
#state_variants
}
};
let entry_enum_lifetime_param = match entry_has_lifetime {
false => None,
true => Some(quote!(<'a>)),
};
let comment = format!("Created from [`{}::entry`].", state_machine_name);
let entry_enum: syn::ItemEnum = parse_quote! {
/// Access to the current state with valid transitions for the state machine.
///
#[doc = #comment]
pub enum #entry_enum_name #entry_enum_lifetime_param {
#entry_variants
}
};
transition_impls.extend(transition_tys.iter().map(|strukt| {
let ident = &strukt.ident;
parse_quote! {
impl ::core::fmt::Debug for #ident<'_> {
fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
f.debug_struct(::core::stringify!(#ident)).finish_non_exhaustive()
}
}
}
}));
let vis = &self.vis;
let module_name = self.ident.snake_case();
let attrs = self
.attributes
.iter()
.filter(|it| it.path().is_ident("doc"));
parse_quote! {
#(#attrs)*
#vis mod #module_name {
#state_machine_struct
#state_machine_methods
#state_enum
#entry_enum
#(#transition_tys)*
#(#transition_impls)*
}
}
}
/// Get a basic representation of this graph in dot, suitable for documenting the state machine.
pub fn dot(&self) -> syn_graphs::dot::Graph {
use syn_graphs::dot::{
kw, pun, EdgeDirectedness, EdgeTarget, Graph, GraphDirectedness, NodeId as DotNodeId,
Stmt, StmtEdge, StmtList, StmtNode, ID,
};
fn conv_node_id(NodeId { inner }: NodeId) -> DotNodeId {
DotNodeId {
id: ID::AnyIdent(inner),
port: None,
}
}
let span = Span::call_site();
let mut stmts = vec![];
for node_id in self.nodes.keys() {
stmts.push((
Stmt::Node(StmtNode {
node_id: conv_node_id(node_id.clone()),
attrs: None,
}),
Some(Token),
))
}
for (from, to) in self.edges.keys() {
stmts.push((
Stmt::Edge(StmtEdge {
from: EdgeTarget::NodeId(conv_node_id(from.clone())),
edges: vec![(
EdgeDirectedness::Directed(pun::DirectedEdge(span)),
EdgeTarget::NodeId(conv_node_id(to.clone())),
)],
attrs: None,
}),
Some(Token),
))
}
Graph {
strict: Some(kw::strict(span)),
directedness: GraphDirectedness::Digraph(kw::digraph(span)),
id: Some(ID::AnyIdent(self.ident.clone())),
brace_token: token::Brace(span),
stmt_list: StmtList { stmts },
}
}
fn state_enum_name(&self) -> Ident {
ident("State")
}
fn entry_enum_name(&self) -> Ident {
ident("Entry")
}
fn transition_ty(&self, node_id: &NodeId) -> Ident {
ident(format!("{}", node_id.inner.UpperCamelCase()))
}
fn getter_names(&self) -> (Ident, Ident) {
fn names(root: &str) -> impl Iterator<Item = (Ident, Ident)> + '_ {
(0..).map(move |n| {
let mut get = String::from(root);
let mut get_mut = format!("{}_mut", root);
for _ in 0..n {
for s in [&mut get, &mut get_mut] {
s.push('_')
}
}
(ident(get), ident(get_mut))
})
}
for (get, get_mut) in itertools::interleave(names("get"), names("get_data")) {
if self.nodes.contains_key(&NodeId { inner: get.clone() }) {
continue;
}
if self.nodes.contains_key(&NodeId {
inner: get_mut.clone(),
}) {
continue;
}
return (get, get_mut);
}
unreachable!()
}
/// [`None`] if the node is a source
fn incoming(&self, to: &NodeId) -> Option<Vec<&NodeId>> {
let vec = self
.edges
.iter()
.filter_map(move |((src, dst), _)| match dst == to {
true => Some(src),
false => None,
})
.collect::<Vec<_>>();
match vec.is_empty() {
true => None,
false => Some(vec),
}
}
/// [`None`] if the node is a sink
fn outgoing<'a>(&'a self, from: &'a NodeId) -> Option<Vec<(&NodeId, &[OuterDocString])>> {
let vec = self
.edges
.iter()
.filter_map(move |((src, dst), docs)| match src == from {
true => Some((dst, docs.as_slice())),
false => None,
})
.collect::<Vec<_>>();
match vec.is_empty() {
true => None,
false => Some(vec),
}
}
fn reachability_docs(&self, node: &NodeId) -> Option<Vec<OuterDocString>> {
let mut docs = vec![];
let span = Span::call_site();
if let Some(incoming) = self.incoming(node) {
docs.push(OuterDocString::new(
"This node is reachable from the following states:",
span,
));
for each in incoming {
docs.push(OuterDocString::new(
format!("- [`{}::{}`]", self.state_enum_name(), each.variant()),
span,
))
}
}
if let Some(outgoing) = self.outgoing(node) {
if !docs.is_empty() {
docs.push(OuterDocString::new("", span))
}
docs.push(OuterDocString::new(
"This node can reach the following states:",
span,
));
for (each, _) in outgoing {
docs.push(OuterDocString::new(
format!("- [`{}::{}`]", self.state_enum_name(), each.variant()),
span,
))
}
}
match docs.is_empty() {
true => None,
false => Some(docs),
}
}
}
macro_rules! bail_at {
($span:expr, $fmt:literal $(, $arg:expr)* $(,)?) => {
return Err(syn::Error::new($span, format!($fmt, $($arg,)*)))
};
}
impl FSMGenerator {
/// Parse a state machine from the following language:
/// ```
/// # use syn::parse::Parser as _;
/// # fsmentry_core::FSMGenerator::parse_dsl.parse2(quote::quote! {
/// /// This is documentation for the state machine.
/// #[derive(Clone)] // these attributes will be passed to
/// // MyStateMachine and the State enum
/// pub MyStateMachine {
/// /// This is a node declaration.
/// /// This documentation will be attached to the node.
/// ShavingYaks;
///
/// /// This node contains data.
/// SweepingHair: usize;
///
/// /// These are edge declarations
/// /// This documentation will be shared with each edge.
/// ShavingYaks -> SweepingHair -"this is edge-specific documentation"-> Resting;
/// // implicit nodes will be created as appropriate ^
/// }
/// # }).unwrap();
/// ```
pub fn parse_dsl(input: ParseStream) -> syn::Result<Self> {
Self::try_from_dsl(input.parse()?)
}
/// Parse a state machine from the [`DOT` graph description language](https://en.wikipedia.org/wiki/DOT_%28graph_description_language%29):
/// ```
/// # use syn::parse::Parser as _;
/// # fsmentry_core::FSMGenerator::parse_dot.parse2(quote::quote! {
/// digraph my_state_machine {
/// // declaring a node.
/// shaving_yaks;
///
/// // declaring some edges, with implicit nodes.
/// shaving_yaks -> sweeping_hair -> resting;
/// }
/// # }).unwrap();
/// ```
// Transpiles DOT to the DSL, and then calls [`Self::try_from_dsl`]
pub fn parse_dot(input: ParseStream) -> syn::Result<Self> {
use dsl::{
pun, Edge as DslEdge, Stmt as DslStmt, StmtEdges as DslStmtEdges,
StmtNode as DslStmtNode,
};
use syn_graphs::dot::{
EdgeDirectedness, EdgeTarget, Graph, GraphDirectedness, NodeId as DotNodeId,
Stmt as DotStmt, StmtEdge as DotStmtEdge, StmtNode as DotStmtNode, ID,
};
let Graph {
strict: _,
directedness,
id,
brace_token,
stmt_list,
} = input.parse::<Graph>()?;
let GraphDirectedness::Digraph(_) = directedness else {
bail_at!(directedness.span(), "must be `digraph`")
};
let Some(ID::AnyIdent(id)) = id else {
bail_at!(directedness.span(), "graph must be named")
};
let mut stmts = vec![];
let span = Span::call_site();
for (stmt, _) in stmt_list.stmts {
match stmt {
DotStmt::Node(DotStmtNode {
node_id: DotNodeId { id, port },
attrs,
}) => {
if let Some(attrs) = attrs {
bail_at!(attrs.span(), "attrs are not supported")
}
if let Some(port) = port {
bail_at!(port.span(), "ports are not supported")
}
let ID::AnyIdent(id) = id else {
bail_at!(id.span(), "unsupported id")
};
stmts.push(DslStmt::Node(DslStmtNode {
attrs: vec![],
ident: syn::parse2(id.into_token_stream())?,
colon: None,
ty: None,
semi: Token,
}))
}
DotStmt::Edge(DotStmtEdge { from, edges, attrs }) => {
if let Some(attrs) = attrs {
bail_at!(attrs.span(), "attrs are not supported")
};
let mut rest = edges
.into_iter()
.map(|(dir, to)| {
let EdgeDirectedness::Directed(_) = dir else {
bail_at!(dir.span(), "edge must be directed")
};
Ok((
DslEdge::Short(pun::ShortArrow(span)),
edge_target_to_ident(to)?,
))
})
.collect::<syn::Result<Vec<_>>>()?;
let (edge, to) = rest.remove(0);
stmts.push(DslStmt::Edges(DslStmtEdges {
attrs: vec![],
from: edge_target_to_ident(from)?,
edge,
to,
rest,
semi: Token,
}))
}
it @ (DotStmt::Attr(_) | DotStmt::Assign(_) | DotStmt::Subgraph(_)) => {
bail_at!(it.span(), "unsupported statement")
}
}
}
return Self::try_from_dsl(crate::dsl::Dsl {
attrs: vec![],
vis: parse_quote!(pub),
name: syn::parse2(id.into_token_stream())?,
brace_token,
stmts,
});
fn edge_target_to_ident(edge_target: EdgeTarget) -> syn::Result<Ident> {
match edge_target {
EdgeTarget::Subgraph(_) => {
bail_at!(edge_target.span(), "subgraphs are not supported")
}
EdgeTarget::NodeId(DotNodeId { id, port }) => {
if let Some(port) = port {
bail_at!(port.span(), "ports are not supported")
}
let ID::AnyIdent(id) = id else {
bail_at!(id.span(), "only idents are allowed here")
};
syn::parse2(id.into_token_stream())
}
}
}
}
fn try_from_dsl(dsl: crate::dsl::Dsl) -> syn::Result<Self> {
use dsl::{DocumentedArrow, Dsl, Edge, Stmt, StmtEdges, StmtNode};
use std::{
cmp::Ordering::{Equal, Greater, Less},
collections::btree_map::Entry::{Occupied, Vacant},
};
let Dsl {
attrs,
vis,
name,
brace_token: _,
mut stmts,
} = dsl;
let mut nodes = BTreeMap::new();
let mut edges = BTreeMap::new();
// Nodes first, so Node should be less than Edge
stmts.sort_unstable_by(|left, right| match (left, right) {
(Stmt::Edges(_), Stmt::Edges(_)) => Equal,
(Stmt::Edges(_), Stmt::Node(_)) => Greater,
(Stmt::Node(_), Stmt::Edges(_)) => Less,
(Stmt::Node(_), Stmt::Node(_)) => Equal,
});
for stmt in stmts {
match stmt {
Stmt::Node(StmtNode {
attrs,
ident,
colon: _,
ty,
semi: _,
}) => {
let span = ident.span();
match nodes.entry(ident.into()) {
Occupied(_) => bail_at!(span, "duplicate node definition"),
Vacant(v) => v.insert(NodeData { ty, docs: attrs }),
};
}
Stmt::Edges(StmtEdges {
attrs,
mut from,
edge,
to,
rest,
semi: _,
}) => {
for ident in iter::once(&from)
.chain([&to])
.chain(rest.iter().map(|(_edge, ident)| ident))
{
nodes.entry(ident.clone().into()).or_insert(NodeData {
ty: None,
docs: vec![],
});
}
for (edge, to) in iter::once((edge, to)).chain(rest) {
match edges.entry((from.clone().into(), to.clone().into())) {
Occupied(_) => bail_at!(edge.span(), "duplicate edge definition"),
Vacant(v) => {
let mut attrs = attrs.clone();
if let Edge::Documented(DocumentedArrow { doc, .. }) = edge {
if !attrs.is_empty() {
// newline
attrs.push(OuterDocString::new("", doc.span()))
}
attrs.push(OuterDocString::new(doc.value(), doc.span()))
}
v.insert(attrs);
}
}
from = to;
}
}
}
}
if nodes.is_empty() {
bail_at!(name.span(), "must have at least one state")
}
Ok(Self {
attributes: attrs,
vis,
ident: name,
nodes,
edges,
})
}
}
trait IdentExt {
fn get_ident(&self) -> &Ident;
#[allow(non_snake_case)]
fn UpperCamelCase(&self) -> Ident {
Ident::new(
&self.get_ident().to_string().to_upper_camel_case(),
self.get_ident().span(),
)
}
fn snake_case(&self) -> Ident {
Ident::new(
&self.get_ident().to_string().to_snake_case(),
self.get_ident().span(),
)
}
}
impl IdentExt for Ident {
fn get_ident(&self) -> &Ident {
self
}
}