1use std::borrow::Cow;
4use std::hash::Hash;
5
6use proc_macro2::{Ident, Span, TokenStream};
7use quote::ToTokens;
8use serde::{Deserialize, Serialize};
9use syn::punctuated::Punctuated;
10use syn::spanned::Spanned;
11use syn::{Expr, ExprPath, GenericArgument, Token, Type};
12
13use self::ops::{OperatorConstraints, Persistence};
14use crate::diagnostic::{Diagnostic, Diagnostics, Level};
15use crate::parse::{DfirCode, IndexInt, Operator, PortIndex, Ported, SingletonRef};
16use crate::pretty_span::PrettySpan;
17
18mod di_mul_graph;
19mod eliminate_extra_unions_tees;
20mod flat_graph_builder;
21mod flat_to_partitioned;
22mod graph_write;
23mod meta_graph;
24mod meta_graph_debugging;
25
26use std::fmt::Display;
27
28pub use di_mul_graph::DiMulGraph;
29pub use eliminate_extra_unions_tees::eliminate_extra_unions_tees;
30pub use flat_graph_builder::{FlatGraphBuilder, FlatGraphBuilderOutput};
31pub use flat_to_partitioned::{PartitionError, partition_graph};
32pub use meta_graph::{DfirGraph, WriteConfig, WriteGraphType};
33
34pub use crate::graph_ids::{GraphEdgeId, GraphLoopId, GraphNodeId, GraphSubgraphId};
35
36pub mod graph_algorithms;
37pub mod ops;
38
39impl GraphSubgraphId {
40 pub fn as_ident(self, span: Span) -> Ident {
42 use slotmap::Key;
43 Ident::new(&format!("sgid_{:?}", self.data()), span)
44 }
45}
46
47impl GraphLoopId {
48 pub fn as_ident(self, span: Span) -> Ident {
50 use slotmap::Key;
51 Ident::new(&format!("loop_{:?}", self.data()), span)
52 }
53}
54
55const CONTEXT: &str = "context";
57const GRAPH: &str = "df";
59
60const HANDOFF_NODE_STR: &str = "handoff";
61const SINGLETON_SLOT_NODE_STR: &str = "singleton";
62const MODULE_BOUNDARY_NODE_STR: &str = "module_boundary";
63
64mod serde_syn {
65 use serde::{Deserialize, Deserializer, Serializer};
66
67 pub fn serialize<S, T>(value: &T, serializer: S) -> Result<S::Ok, S::Error>
68 where
69 S: Serializer,
70 T: quote::ToTokens,
71 {
72 serializer.serialize_str(&value.to_token_stream().to_string())
73 }
74
75 pub fn deserialize<'de, D, T>(deserializer: D) -> Result<T, D::Error>
76 where
77 D: Deserializer<'de>,
78 T: syn::parse::Parse,
79 {
80 let s = String::deserialize(deserializer)?;
81 syn::parse_str(&s).map_err(<D::Error as serde::de::Error>::custom)
82 }
83}
84
85#[derive(Clone, Debug, Serialize, Deserialize, PartialOrd, Ord, PartialEq, Eq, Hash)]
89pub struct Varname(#[serde(with = "serde_syn")] pub Ident);
90
91#[derive(Clone, Copy, Debug, PartialEq, Eq, Serialize, Deserialize)]
93pub enum HandoffKind {
94 Vec,
96 Singleton,
99 Optional,
102}
103
104#[derive(Clone, Serialize, Deserialize)]
106pub enum GraphNode {
107 Operator(#[serde(with = "serde_syn")] Operator),
109 Handoff {
111 kind: HandoffKind,
113 #[serde(skip, default = "Span::call_site")]
115 src_span: Span,
116 #[serde(skip, default = "Span::call_site")]
118 dst_span: Span,
119 },
120
121 ModuleBoundary {
123 input: bool,
125
126 #[serde(skip, default = "Span::call_site")]
130 import_expr: Span,
131 },
132}
133impl GraphNode {
134 pub fn to_pretty_string(&self) -> Cow<'static, str> {
136 match self {
137 GraphNode::Operator(op) => op.to_pretty_string().into(),
138 GraphNode::Handoff {
139 kind: HandoffKind::Vec,
140 ..
141 } => HANDOFF_NODE_STR.into(),
142 GraphNode::Handoff {
143 kind: HandoffKind::Singleton | HandoffKind::Optional,
144 ..
145 } => SINGLETON_SLOT_NODE_STR.into(),
146 GraphNode::ModuleBoundary { .. } => MODULE_BOUNDARY_NODE_STR.into(),
147 }
148 }
149
150 pub fn to_name_string(&self) -> Cow<'static, str> {
152 match self {
153 GraphNode::Operator(op) => op.name_string().into(),
154 GraphNode::Handoff {
155 kind: HandoffKind::Vec,
156 ..
157 } => HANDOFF_NODE_STR.into(),
158 GraphNode::Handoff {
159 kind: HandoffKind::Singleton | HandoffKind::Optional,
160 ..
161 } => SINGLETON_SLOT_NODE_STR.into(),
162 GraphNode::ModuleBoundary { .. } => MODULE_BOUNDARY_NODE_STR.into(),
163 }
164 }
165
166 pub fn span(&self) -> Span {
168 match self {
169 Self::Operator(op) => op.span(),
170 &Self::Handoff {
171 src_span, dst_span, ..
172 } => src_span.join(dst_span).unwrap_or(src_span),
173 Self::ModuleBoundary { import_expr, .. } => *import_expr,
174 }
175 }
176}
177impl std::fmt::Debug for GraphNode {
178 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
179 match self {
180 Self::Operator(operator) => {
181 write!(f, "Node::Operator({} span)", PrettySpan(operator.span()))
182 }
183 Self::Handoff { kind, .. } => write!(f, "Node::Handoff({kind:?})"),
184 Self::ModuleBoundary { input, .. } => {
185 write!(f, "Node::ModuleBoundary{{input: {}}}", input)
186 }
187 }
188 }
189}
190
191#[derive(Clone, Debug)]
200pub struct OperatorInstance {
201 pub op_constraints: &'static OperatorConstraints,
203 pub input_ports: Vec<PortIndexValue>,
205 pub output_ports: Vec<PortIndexValue>,
207 pub singletons_referenced: Vec<SingletonRef>,
209
210 pub generics: OpInstGenerics,
212 pub arguments_pre: Punctuated<Expr, Token![,]>,
218 pub arguments_raw: TokenStream,
220}
221
222#[derive(Clone, Debug)]
224pub struct OpInstGenerics {
225 pub generic_args: Option<Punctuated<GenericArgument, Token![,]>>,
227 pub persistence_args: Vec<Persistence>,
229 pub type_args: Vec<Type>,
231}
232
233impl OpInstGenerics {
234 fn join_spans<I>(mut spans: I) -> Option<Span>
239 where
240 I: Iterator<Item = Span>,
241 {
242 let mut span = spans.next()?;
243 for s in spans {
244 span = span.join(s)?;
245 }
246 Some(span)
247 }
248
249 pub fn persistence_args_span(&self) -> Option<Span> {
251 self.generic_args.as_ref().and_then(|args| {
252 Self::join_spans(
253 args.iter()
254 .filter(|a| matches!(a, GenericArgument::Lifetime(_)))
255 .map(|a| a.span()),
256 )
257 })
258 }
259
260 pub fn type_args_span(&self) -> Option<Span> {
262 self.generic_args.as_ref().and_then(|args| {
263 Self::join_spans(
264 args.iter()
265 .filter(|a| matches!(a, GenericArgument::Type(_)))
266 .map(|a| a.span()),
267 )
268 })
269 }
270}
271
272pub fn get_operator_generics(diagnostics: &mut Diagnostics, operator: &Operator) -> OpInstGenerics {
277 let generic_args = operator.type_arguments().cloned();
279 let persistence_args = generic_args.iter().flatten().map_while(|generic_arg| match generic_arg {
280 GenericArgument::Lifetime(lifetime) => {
281 match &*lifetime.ident.to_string() {
282 "tick" => Some(Persistence::Tick),
283 "static" => Some(Persistence::Static),
284 _ => {
285 diagnostics.push(Diagnostic::spanned(
286 generic_arg.span(),
287 Level::Error,
288 format!("Unknown lifetime generic argument `'{}`, expected `'tick` or `'static`.", lifetime.ident),
289 ));
290 None
292 }
293 }
294 },
295 _ => None,
296 }).collect::<Vec<_>>();
297 let type_args = generic_args
298 .iter()
299 .flatten()
300 .skip(persistence_args.len())
301 .map_while(|generic_arg| match generic_arg {
302 GenericArgument::Type(typ) => Some(typ),
303 _ => None,
304 })
305 .cloned()
306 .collect::<Vec<_>>();
307
308 OpInstGenerics {
309 generic_args,
310 persistence_args,
311 type_args,
312 }
313}
314
315#[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Serialize, Deserialize)]
317pub enum Color {
318 Pull,
320 Push,
322 Comp,
324 Hoff,
326}
327
328#[derive(Clone, Debug, Serialize, Deserialize)]
330pub enum PortIndexValue {
331 Int(#[serde(with = "serde_syn")] IndexInt),
333 Path(#[serde(with = "serde_syn")] ExprPath),
335 Elided(#[serde(skip)] Option<Span>),
338}
339impl PortIndexValue {
340 pub fn from_ported<Inner>(ported: Ported<Inner>) -> (Self, Inner, Self)
343 where
344 Inner: Spanned,
345 {
346 let ported_span = Some(ported.inner.span());
347 let port_inn = ported
348 .inn
349 .map(|idx| idx.index.into())
350 .unwrap_or_else(|| Self::Elided(ported_span));
351 let inner = ported.inner;
352 let port_out = ported
353 .out
354 .map(|idx| idx.index.into())
355 .unwrap_or_else(|| Self::Elided(ported_span));
356 (port_inn, inner, port_out)
357 }
358
359 pub fn is_specified(&self) -> bool {
361 !matches!(self, Self::Elided(_))
362 }
363
364 #[allow(clippy::allow_attributes, reason = "Only triggered on nightly.")]
368 #[allow(
369 clippy::result_large_err,
370 reason = "variants are same size, error isn't to be propagated."
371 )]
372 pub fn combine(self, other: Self) -> Result<Self, Self> {
373 match (self.is_specified(), other.is_specified()) {
374 (false, _other) => Ok(other),
375 (true, false) => Ok(self),
376 (true, true) => Err(self),
377 }
378 }
379
380 pub fn as_error_message_string(&self) -> String {
382 match self {
383 PortIndexValue::Int(n) => format!("`{}`", n.value),
384 PortIndexValue::Path(path) => format!("`{}`", path.to_token_stream()),
385 PortIndexValue::Elided(_) => "<elided>".to_owned(),
386 }
387 }
388
389 pub fn span(&self) -> Span {
391 match self {
392 PortIndexValue::Int(x) => x.span(),
393 PortIndexValue::Path(x) => x.span(),
394 PortIndexValue::Elided(span) => span.unwrap_or_else(Span::call_site),
395 }
396 }
397}
398impl From<PortIndex> for PortIndexValue {
399 fn from(value: PortIndex) -> Self {
400 match value {
401 PortIndex::Int(x) => Self::Int(x),
402 PortIndex::Path(x) => Self::Path(x),
403 }
404 }
405}
406impl PartialEq for PortIndexValue {
407 fn eq(&self, other: &Self) -> bool {
408 match (self, other) {
409 (Self::Int(l0), Self::Int(r0)) => l0 == r0,
410 (Self::Path(l0), Self::Path(r0)) => l0 == r0,
411 (Self::Elided(_), Self::Elided(_)) => true,
412 _else => false,
413 }
414 }
415}
416impl Eq for PortIndexValue {}
417impl PartialOrd for PortIndexValue {
418 fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
419 Some(self.cmp(other))
420 }
421}
422impl Ord for PortIndexValue {
423 fn cmp(&self, other: &Self) -> std::cmp::Ordering {
424 match (self, other) {
425 (Self::Int(s), Self::Int(o)) => s.cmp(o),
426 (Self::Path(s), Self::Path(o)) => s
427 .to_token_stream()
428 .to_string()
429 .cmp(&o.to_token_stream().to_string()),
430 (Self::Elided(_), Self::Elided(_)) => std::cmp::Ordering::Equal,
431 (Self::Int(_), Self::Path(_)) => std::cmp::Ordering::Less,
432 (Self::Path(_), Self::Int(_)) => std::cmp::Ordering::Greater,
433 (_, Self::Elided(_)) => std::cmp::Ordering::Less,
434 (Self::Elided(_), _) => std::cmp::Ordering::Greater,
435 }
436 }
437}
438
439impl Display for PortIndexValue {
440 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
441 match self {
442 PortIndexValue::Int(x) => write!(f, "{}", x.to_token_stream()),
443 PortIndexValue::Path(x) => write!(f, "{}", x.to_token_stream()),
444 PortIndexValue::Elided(_) => write!(f, "[]"),
445 }
446 }
447}
448
449pub struct BuildDfirCodeOutput {
451 pub partitioned_graph: DfirGraph,
453 pub code: TokenStream,
455 pub diagnostics: Diagnostics,
457}
458
459pub fn build_dfir_code(
461 dfir_code: DfirCode,
462 root: &TokenStream,
463) -> Result<BuildDfirCodeOutput, Diagnostics> {
464 let flat_graph_builder = FlatGraphBuilder::from_dfir(dfir_code);
465
466 let FlatGraphBuilderOutput {
467 mut flat_graph,
468 uses,
469 mut diagnostics,
470 } = flat_graph_builder.build()?;
471
472 let () = match flat_graph.merge_modules() {
473 Ok(()) => (),
474 Err(d) => {
475 diagnostics.push(d);
476 return Err(diagnostics);
477 }
478 };
479
480 eliminate_extra_unions_tees(&mut flat_graph);
481
482 for (edge_id, (src, dst)) in flat_graph.edges() {
485 let _ = edge_id;
486 if matches!(flat_graph.node(src), GraphNode::Handoff { .. })
487 && matches!(flat_graph.node(dst), GraphNode::Handoff { .. })
488 {
489 let span = flat_graph.node(dst).span();
490 diagnostics.push(Diagnostic::spanned(
491 span,
492 Level::Error,
493 "Adjacent handoff/singleton operators are not allowed. \
494 Remove one or insert an operator between them.",
495 ));
496 }
497 }
498
499 if diagnostics.has_error() {
500 return Err(diagnostics);
501 }
502
503 let partitioned_graph = match partition_graph(flat_graph) {
504 Ok(partitioned_graph) => partitioned_graph,
505 Err(err) => {
506 diagnostics.push(err.diagnostic);
507 return Err(diagnostics);
508 }
509 };
510
511 let code =
512 partitioned_graph.as_code(root, true, quote::quote! { #( #uses )* }, &mut diagnostics)?;
513
514 Ok(BuildDfirCodeOutput {
515 partitioned_graph,
516 code,
517 diagnostics,
518 })
519}
520
521fn change_spans(tokens: TokenStream, span: Span) -> TokenStream {
523 use proc_macro2::{Group, TokenTree};
524 tokens
525 .into_iter()
526 .map(|token| match token {
527 TokenTree::Group(mut group) => {
528 group.set_span(span);
529 TokenTree::Group(Group::new(
530 group.delimiter(),
531 change_spans(group.stream(), span),
532 ))
533 }
534 TokenTree::Ident(mut ident) => {
535 ident.set_span(span.resolved_at(ident.span()));
536 TokenTree::Ident(ident)
537 }
538 TokenTree::Punct(mut punct) => {
539 punct.set_span(span);
540 TokenTree::Punct(punct)
541 }
542 TokenTree::Literal(mut literal) => {
543 literal.set_span(span);
544 TokenTree::Literal(literal)
545 }
546 })
547 .collect()
548}