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
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
//! Implementation of scopes for WDL documents.

use std::fmt;
use std::sync::Arc;

use indexmap::IndexMap;
use rowan::GreenNode;
use wdl_ast::support::token;
use wdl_ast::v1;
use wdl_ast::v1::ImportStatement;
use wdl_ast::v1::StringPart;
use wdl_ast::v1::WorkflowStatement;
use wdl_ast::Ast;
use wdl_ast::AstNode;
use wdl_ast::AstToken;
use wdl_ast::Diagnostic;
use wdl_ast::Ident;
use wdl_ast::Span;
use wdl_ast::SyntaxElement;
use wdl_ast::SyntaxKind;
use wdl_ast::SyntaxNode;
use wdl_ast::ToSpan;
use wdl_ast::Version;

use crate::DocumentId;
use crate::State;

/// Represents the context of a name for diagnostic reporting.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
enum NameContext {
    /// The name is a workflow name.
    Workflow(Span),
    /// The name is a task name.
    Task(Span),
    /// The name is a struct name.
    Struct(Span),
    /// The name is a struct member name.
    StructMember(Span),
    /// A name local to a scope.
    Scoped(ScopedNameContext),
}

impl NameContext {
    /// Gets the span of the name.
    fn span(&self) -> Span {
        match self {
            Self::Workflow(s) => *s,
            Self::Task(s) => *s,
            Self::Struct(s) => *s,
            Self::StructMember(s) => *s,
            Self::Scoped(n) => n.span(),
        }
    }
}

impl fmt::Display for NameContext {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::Workflow(_) => write!(f, "workflow"),
            Self::Task(_) => write!(f, "task"),
            Self::Struct(_) => write!(f, "struct"),
            Self::StructMember(_) => write!(f, "struct member"),
            Self::Scoped(n) => n.fmt(f),
        }
    }
}

/// Creates a "placeholder in import" diagnostic
fn placeholder_in_import(span: Span) -> Diagnostic {
    Diagnostic::error("import URI cannot contain placeholders")
        .with_label("remove this placeholder", span)
}

/// Creates a "name conflict" diagnostic
fn name_conflict(name: &str, conflicting: NameContext, first: NameContext) -> Diagnostic {
    Diagnostic::error(format!("conflicting {conflicting} name `{name}`"))
        .with_label(
            format!("this conflicts with a {first} of the same name"),
            conflicting.span(),
        )
        .with_label(
            format!("the {first} with the conflicting name is here"),
            first.span(),
        )
}

/// Creates a "namespace conflict" diagnostic
fn namespace_conflict(name: &str, conflicting: Span, first: Span, suggest_fix: bool) -> Diagnostic {
    let diagnostic = Diagnostic::error(format!("conflicting import namespace `{name}`"))
        .with_label("this conflicts with another import namespace", conflicting)
        .with_label(
            "the conflicting import namespace was introduced here",
            first,
        );

    if suggest_fix {
        diagnostic.with_fix("add an `as` clause to the import to specify a namespace")
    } else {
        diagnostic
    }
}

/// Creates an "invalid import namespace" diagnostic
fn invalid_import_namespace(span: Span) -> Diagnostic {
    Diagnostic::error("import namespace is not a valid WDL identifier")
        .with_label("a namespace cannot be derived from this import path", span)
        .with_fix("add an `as` clause to the import to specify a namespace")
}

/// Creates an "import cycle" diagnostic
fn import_cycle(span: Span) -> Diagnostic {
    Diagnostic::error("import introduces a dependency cycle")
        .with_label("this import has been skipped to break the cycle", span)
}

/// Creates an "import failure" diagnostic
fn import_failure(uri: &str, error: &anyhow::Error, span: Span) -> Diagnostic {
    Diagnostic::error(format!("failed to import `{uri}`: {error:?}")).with_highlight(span)
}

/// Creates an "incompatible import" diagnostic
fn incompatible_import(
    import_version: &str,
    import_span: Span,
    importer_version: &Version,
) -> Diagnostic {
    Diagnostic::error("imported document has incompatible version")
        .with_label(
            format!("the imported document is version `{import_version}`"),
            import_span,
        )
        .with_label(
            format!(
                "the importing document is version `{version}`",
                version = importer_version.as_str()
            ),
            importer_version.span(),
        )
}

/// Creates an "import missing version" diagnostic
fn import_missing_version(span: Span) -> Diagnostic {
    Diagnostic::error("imported document is missing a version statement").with_highlight(span)
}

/// Creates an "invalid relative import" diagnostic
fn invalid_relative_import(error: &anyhow::Error, span: Span) -> Diagnostic {
    Diagnostic::error(format!("{error:?}")).with_highlight(span)
}

/// Creates a "struct not in scope" diagnostic
fn struct_not_in_scope(name: &Ident) -> Diagnostic {
    Diagnostic::error(format!(
        "a struct named `{name}` does not exist in the imported document",
        name = name.as_str()
    ))
    .with_label("this struct does not exist", name.span())
}

/// Creates an "imported struct conflict" diagnostic
fn imported_struct_conflict(
    name: &str,
    conflicting: Span,
    first: Span,
    suggest_fix: bool,
) -> Diagnostic {
    let diagnostic = Diagnostic::error(format!("conflicting struct name `{name}`"))
        .with_label(
            "this import introduces a conflicting definition",
            conflicting,
        )
        .with_label("the first definition was introduced by this import", first);

    if suggest_fix {
        diagnostic.with_fix("add an `alias` clause to the import to specify a different name")
    } else {
        diagnostic
    }
}

/// Creates a "struct conflicts with import" diagnostic
fn struct_conflicts_with_import(name: &str, conflicting: Span, import: Span) -> Diagnostic {
    Diagnostic::error(format!("conflicting struct name `{name}`"))
        .with_label("this name conflicts with an imported struct", conflicting)
        .with_label("the import that introduced the struct is here", import)
        .with_fix(
            "either rename the struct or use an `alias` clause on the import with a different name",
        )
}

/// Creates a "duplicate workflow" diagnostic
fn duplicate_workflow(name: &Ident, first: Span) -> Diagnostic {
    Diagnostic::error(format!(
        "cannot define workflow `{name}` as only one workflow is allowed per source file",
        name = name.as_str(),
    ))
    .with_label("consider moving this workflow to a new file", name.span())
    .with_label("first workflow is defined here", first)
}

/// Creates a "call conflict" diagnostic
fn call_conflict(name: &Ident, first: NameContext, suggest_fix: bool) -> Diagnostic {
    let diagnostic = Diagnostic::error(format!(
        "conflicting call name `{name}`",
        name = name.as_str()
    ))
    .with_label(
        format!("this conflicts with a {first} of the same name"),
        name.span(),
    )
    .with_label(
        format!("the {first} with the conflicting name is here"),
        first.span(),
    );

    if suggest_fix {
        diagnostic.with_fix("add an `as` clause to the call to specify a different name")
    } else {
        diagnostic
    }
}

/// Represents the context of a name in a workflow or task scope.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum ScopedNameContext {
    /// The name was introduced by an task or workflow input.
    Input(Span),
    /// The name was introduced by an task or workflow output.
    Output(Span),
    /// The name was introduced by a private declaration.
    Decl(Span),
    /// The name was introduced by a workflow call statement.
    Call(Span),
    /// The name was introduced by a variable in workflow scatter statement.
    ScatterVariable(Span),
}

impl ScopedNameContext {
    /// Gets the span of the name.
    pub fn span(&self) -> Span {
        match self {
            Self::Input(s) => *s,
            Self::Output(s) => *s,
            Self::Decl(s) => *s,
            Self::Call(s) => *s,
            Self::ScatterVariable(s) => *s,
        }
    }
}

impl fmt::Display for ScopedNameContext {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::Input(_) => write!(f, "input"),
            Self::Output(_) => write!(f, "output"),
            Self::Decl(_) => write!(f, "declaration"),
            Self::Call(_) => write!(f, "call"),
            Self::ScatterVariable(_) => write!(f, "scatter variable"),
        }
    }
}

impl From<ScopedNameContext> for NameContext {
    fn from(context: ScopedNameContext) -> Self {
        Self::Scoped(context)
    }
}

/// Represents a name in a task or workflow scope.
#[derive(Debug, Clone)]
pub struct ScopedName {
    /// The context of the name.
    context: ScopedNameContext,
    /// The CST node that introduced the name.
    node: GreenNode,
    /// Whether or not the name was implicitly introduced.
    ///
    /// This is true for names introduced in outer scopes from workflow scatter
    /// and conditional statements.
    implicit: bool,
}

impl ScopedName {
    /// Gets the context of the scoped name.
    pub fn context(&self) -> ScopedNameContext {
        self.context
    }

    /// Gets the node of the scoped name.
    ///
    /// This may be a bound declaration, an unbound declaration, a workflow call
    /// statement, or a workflow scatter statement.
    pub fn node(&self) -> &GreenNode {
        &self.node
    }

    /// Whether or not the name was introduced implicitly into the scope.
    ///
    /// This is true for names introduced in outer scopes from workflow scatter
    /// and conditional statements.
    pub fn implicit(&self) -> bool {
        self.implicit
    }

    /// Determines if the name was introduced for a scatter variable.
    fn is_scatter_variable(&self) -> bool {
        if !self.implicit {
            return matches!(self.context, ScopedNameContext::ScatterVariable(_));
        }

        false
    }
}

/// Represents a namespace introduced by an import.
#[derive(Debug)]
pub struct Namespace {
    /// The span of the import that introduced the namespace.
    span: Span,
    /// The CST node of the import that introduced the namespace.
    node: GreenNode,
    /// The identifier of the imported document that introduced the namespace.
    source: Arc<DocumentId>,
    /// The namespace's document scope.
    scope: Arc<DocumentScope>,
}

impl Namespace {
    /// Gets the CST node that introduced the namespace.
    ///
    /// The node is an import statement.
    pub fn node(&self) -> &GreenNode {
        &self.node
    }

    /// Gets the identifier of the imported document that introduced the
    /// namespace.
    pub fn source(&self) -> &DocumentId {
        &self.source
    }

    /// Gets the scope of the imported document.
    pub fn scope(&self) -> &DocumentScope {
        &self.scope
    }
}

/// Represents a struct in a document.
#[derive(Debug)]
pub struct Struct {
    /// The span that introduced the struct.
    ///
    /// This is either the name of a struct definition (local) or an import's
    /// URI or alias (imported).
    span: Span,
    /// The source document that defines the struct.
    ///
    /// This is `Some` only for imported structs.
    source: Option<Arc<DocumentId>>,
    /// The CST node of the struct definition.
    node: GreenNode,
    /// The members of the struct.
    members: Arc<IndexMap<String, (Span, GreenNode)>>,
}

impl Struct {
    /// Gets the CST node of the struct definition.
    pub fn node(&self) -> &GreenNode {
        &self.node
    }

    /// Gets the source document that defines this struct.
    ///
    /// Returns `None` for structs defined in the containing scope or `Some` for
    /// a struct introduced by an import.
    pub fn source(&self) -> Option<&DocumentId> {
        self.source.as_deref()
    }

    /// Gets the members of the struct.
    pub fn members(&self) -> impl Iterator<Item = (&String, &GreenNode)> {
        self.members.iter().map(|(name, (_, node))| (name, node))
    }

    /// Gets a member of the struct by name.
    pub fn get_member(&self, name: &str) -> Option<&GreenNode> {
        self.members.get(name).map(|(_, n)| n)
    }

    /// Compares two structs for structural equality.
    fn is_equal(&self, other: &Self) -> bool {
        for ((a_name, a_node), (b_name, b_node)) in self.members().zip(other.members()) {
            if a_name != b_name {
                return false;
            }

            let adecl = v1::UnboundDecl::cast(SyntaxNode::new_root(a_node.clone()))
                .expect("node should cast");
            let bdecl = v1::UnboundDecl::cast(SyntaxNode::new_root(b_node.clone()))
                .expect("node should cast");
            if adecl.ty() != bdecl.ty() {
                return false;
            }
        }

        true
    }
}

/// Represents a scope in a WDL document.
#[derive(Debug)]
pub struct Scope {
    /// The span in the document where the names of the scope are visible.
    span: Span,
    /// The CST node that introduced the scope.
    ///
    /// This may be a struct, task, workflow, conditional statement, or scatter
    /// statement.
    node: GreenNode,
    /// The names in the task scope.
    names: IndexMap<String, ScopedName>,
    /// The child scopes of this scope.
    ///
    /// Child scopes are from workflow conditional and scatter statements.
    children: Vec<Scope>,
}

impl Scope {
    /// Gets the span where the names of the scope are visible.
    pub fn span(&self) -> Span {
        self.span
    }

    /// Gets the CST node that introduced the scope.
    ///
    /// This may be a struct, task, workflow, conditional statement, or scatter
    /// statement.
    pub fn node(&self) -> &GreenNode {
        &self.node
    }

    /// Gets the names in the scope.
    pub fn names(&self) -> impl Iterator<Item = (&String, &ScopedName)> {
        self.names.iter()
    }

    /// Gets a name within the scope.
    pub fn get_name(&self, name: &str) -> Option<&ScopedName> {
        self.names.get(name)
    }

    /// Gets the child scopes of this scope.
    ///
    /// Child scopes may exist in workflows when conditional or scatter
    /// statements are present.
    pub fn children(&self) -> impl Iterator<Item = &Scope> {
        self.children.iter()
    }

    /// Finds the deepest child scope by position within the document.
    pub fn find_child_scope(&self, position: usize) -> Option<&Scope> {
        let scope = match self
            .children
            .binary_search_by_key(&position, |s| s.span.start())
        {
            Ok(index) => &self.children[index],
            Err(insertion) => {
                // This indicates that we couldn't find a match and the match would go _before_
                // the first child scope, so there is no corresponding scope.
                if insertion == 0 {
                    return None;
                }

                // Check to see if the span before the insertion point actually contains the
                // position.
                let child = &self.children[insertion - 1];
                if position - child.span.start() < child.span.len() {
                    return None;
                }

                child
            }
        };

        Some(scope.find_child_scope(position).unwrap_or(scope))
    }
}

/// Represents context about a scope in a document.
#[derive(Debug, Clone, Copy)]
enum ScopeContext {
    /// The scope is a task.
    ///
    /// The value is an index into the document's `tasks` collection.
    Task(usize),
    /// The scope is a workflow.
    Workflow,
}

/// Represents a task scope.
#[derive(Debug)]
struct TaskScope {
    /// The span of the task name.
    name_span: Span,
    /// The scope of the task.
    scope: Scope,
}

/// Represents a workflow scope.
#[derive(Debug)]
struct WorkflowScope {
    /// The span of the workflow name.
    name_span: Span,
    /// The name of the workflow.
    name: String,
    /// The scope of the task.
    scope: Scope,
}

/// Represents the scope of a document.
#[derive(Debug, Default)]
pub struct DocumentScope {
    /// The namespaces in the document.
    namespaces: IndexMap<String, Namespace>,
    /// The tasks in the document.
    tasks: IndexMap<String, TaskScope>,
    /// The singular workflow in the document.
    workflow: Option<WorkflowScope>,
    /// The structs in the document.
    structs: IndexMap<String, Struct>,
    /// A sorted list of scopes within the document.
    ///
    /// This can be used to quickly search for a scope by span.
    scopes: Vec<(Span, ScopeContext)>,
}

impl DocumentScope {
    /// Creates a new document scope for a given document.
    pub(crate) fn new(
        state: &State,
        id: &DocumentId,
        document: &wdl_ast::Document,
    ) -> (Self, Vec<Diagnostic>) {
        let mut scope = Self::default();
        let mut diagnostics = Vec::new();
        let version = match document.version_statement() {
            Some(stmt) => stmt.version(),
            None => {
                // Don't process a document with a missing version
                return (scope, diagnostics);
            }
        };

        match document.ast() {
            Ast::Unsupported => {}
            Ast::V1(ast) => {
                for item in ast.items() {
                    match item {
                        v1::DocumentItem::Import(import) => {
                            scope.add_namespace(state, &import, id, &version, &mut diagnostics);
                        }
                        v1::DocumentItem::Struct(s) => {
                            scope.add_struct(&s, &mut diagnostics);
                        }
                        v1::DocumentItem::Task(task) => {
                            scope.add_task_scope(&task, &mut diagnostics);
                        }
                        v1::DocumentItem::Workflow(workflow) => {
                            scope.add_workflow_scope(&workflow, &mut diagnostics);
                        }
                    }
                }
            }
        }

        (scope, diagnostics)
    }

    /// Gets the namespaces in the document scope.
    pub fn namespaces(&self) -> impl Iterator<Item = (&String, &Namespace)> {
        self.namespaces.iter()
    }

    /// Gets a namespace in the document scope by name.
    pub fn get_namespace(&self, name: &str) -> Option<&Namespace> {
        self.namespaces.get(name)
    }

    /// Gets the task scopes in the document scope.
    pub fn task_scopes(&self) -> impl Iterator<Item = (&String, &Scope)> {
        self.tasks.iter().map(|(n, s)| (n, &s.scope))
    }

    /// Gets a task scope in the document scope by name.
    pub fn get_task_scope(&self, name: &str) -> Option<&Scope> {
        self.tasks.get(name).map(|s| &s.scope)
    }

    /// Gets the workflow scope in the document scope.
    pub fn get_workflow_scope(&self) -> Option<&Scope> {
        self.workflow.as_ref().map(|s| &s.scope)
    }

    /// Gets the structs in the document scope.
    pub fn structs(&self) -> impl Iterator<Item = (&String, &Struct)> {
        self.structs.iter()
    }

    /// Gets a struct in the document scope by name.
    pub fn get_struct(&self, name: &str) -> Option<&Struct> {
        self.structs.get(name)
    }

    /// Finds the deepest scope based on a position within the document.
    pub fn find_scope_by_position(&self, position: usize) -> Option<&Scope> {
        let context = match self
            .scopes
            .binary_search_by_key(&position, |(s, _)| s.start())
        {
            Ok(index) => self.scopes[index].1,
            Err(insertion) => {
                // This indicates that we couldn't find a match and the match would go _before_
                // the first scope, so there is no corresponding scope.
                if insertion == 0 {
                    return None;
                }

                // Check to see if the span before the insertion point actually contains the
                // position.
                let (span, context) = &self.scopes[insertion - 1];
                if position - span.start() < span.len() {
                    return None;
                }

                *context
            }
        };

        let scope = match context {
            ScopeContext::Task(index) => &self.tasks[index].scope,
            ScopeContext::Workflow => {
                &self
                    .workflow
                    .as_ref()
                    .expect("expected a workflow scope")
                    .scope
            }
        };

        Some(scope.find_child_scope(position).unwrap_or(scope))
    }

    /// Adds a namespace to the document scope.
    fn add_namespace(
        &mut self,
        state: &State,
        import: &ImportStatement,
        importer_id: &DocumentId,
        importer_version: &Version,
        diagnostics: &mut Vec<Diagnostic>,
    ) {
        // Start by resolving the import to its document scope
        let (id, scope) = match Self::resolve_import(state, import, importer_id, importer_version) {
            Ok(scope) => scope,
            Err(diagnostic) => {
                diagnostics.push(diagnostic);
                return;
            }
        };

        // Check for conflicting namespaces
        let span = import.uri().syntax().text_range().to_span();
        match import.namespace() {
            Some((ns, span)) => {
                if let Some(prev) = self.namespaces.get(&ns) {
                    diagnostics.push(namespace_conflict(
                        &ns,
                        span,
                        prev.span,
                        import.explicit_namespace().is_none(),
                    ));
                    return;
                } else {
                    self.namespaces.insert(
                        ns,
                        Namespace {
                            span,
                            node: import.syntax().green().into(),
                            source: id.clone(),
                            scope: scope.clone(),
                        },
                    );
                }
            }
            None => {
                diagnostics.push(invalid_import_namespace(span));
                return;
            }
        }

        // Get the alias map for the structs in the document
        let aliases = import
            .aliases()
            .filter_map(|a| {
                let (from, to) = a.names();
                if !scope.structs.contains_key(from.as_str()) {
                    diagnostics.push(struct_not_in_scope(&from));
                    return None;
                }

                Some((from.as_str().to_string(), to))
            })
            .collect::<IndexMap<_, _>>();

        // Insert the scope's struct definitions
        for (name, scope) in &scope.structs {
            let (aliased_name, span, aliased) = aliases
                .get(name)
                .map(|a| (a.as_str(), a.span(), true))
                .unwrap_or_else(|| (name, span, false));
            match self.structs.get(aliased_name) {
                Some(prev) => {
                    // Import conflicts with a struct defined in this document
                    if prev.source.is_none() {
                        diagnostics.push(struct_conflicts_with_import(
                            aliased_name,
                            prev.span,
                            span,
                        ));
                        continue;
                    }

                    if !prev.is_equal(scope) {
                        diagnostics.push(imported_struct_conflict(
                            aliased_name,
                            span,
                            prev.span,
                            !aliased,
                        ));
                        continue;
                    }
                }
                None => {
                    self.structs.insert(
                        aliased_name.to_string(),
                        Struct {
                            span,
                            source: Some(scope.source.clone().unwrap_or(id.clone())),
                            node: scope.node.clone(),
                            members: scope.members.clone(),
                        },
                    );
                }
            }
        }
    }

    /// Adds a struct to the document scope.
    fn add_struct(&mut self, definition: &v1::StructDefinition, diagnostics: &mut Vec<Diagnostic>) {
        let name = definition.name();
        if let Some(prev) = self.structs.get(name.as_str()) {
            if prev.source.is_some() {
                diagnostics.push(struct_conflicts_with_import(
                    name.as_str(),
                    name.span(),
                    prev.span,
                ))
            } else {
                diagnostics.push(name_conflict(
                    name.as_str(),
                    NameContext::Struct(name.span()),
                    NameContext::Struct(prev.span),
                ));
            }
        } else {
            let mut members = IndexMap::new();
            for decl in definition.members() {
                let name = decl.name();
                if let Some((prev_span, _)) = members.get(name.as_str()) {
                    diagnostics.push(name_conflict(
                        name.as_str(),
                        NameContext::StructMember(name.span()),
                        NameContext::StructMember(*prev_span),
                    ));
                } else {
                    members.insert(
                        name.as_str().to_string(),
                        (name.span(), decl.syntax().green().into()),
                    );
                }
            }

            self.structs.insert(
                name.as_str().to_string(),
                Struct {
                    span: name.span(),
                    source: None,
                    node: definition.syntax().green().into(),
                    members: Arc::new(members),
                },
            );
        }
    }

    /// Adds inputs to a names collection.
    fn add_inputs(
        names: &mut IndexMap<String, ScopedName>,
        section: &v1::InputSection,
        diagnostics: &mut Vec<Diagnostic>,
    ) {
        for decl in section.declarations() {
            let name = decl.name();
            let context = ScopedNameContext::Input(name.span());
            if let Some(prev) = names.get(name.as_str()) {
                diagnostics.push(name_conflict(
                    name.as_str(),
                    context.into(),
                    prev.context().into(),
                ));
                continue;
            }

            names.insert(
                name.as_str().to_string(),
                ScopedName {
                    context,
                    node: decl.syntax().green().into(),
                    implicit: false,
                },
            );
        }
    }

    /// Adds outputs to a names collection.
    fn add_outputs(
        names: &mut IndexMap<String, ScopedName>,
        section: &v1::OutputSection,
        diagnostics: &mut Vec<Diagnostic>,
    ) {
        for decl in section.declarations() {
            let name = decl.name();
            let context = ScopedNameContext::Output(name.span());
            if let Some(prev) = names.get(name.as_str()) {
                diagnostics.push(name_conflict(
                    name.as_str(),
                    context.into(),
                    prev.context().into(),
                ));
                continue;
            }

            names.insert(
                name.as_str().to_string(),
                ScopedName {
                    context,
                    node: decl.syntax().green().into(),
                    implicit: false,
                },
            );
        }
    }

    /// Adds a task scope to the document's scope.
    fn add_task_scope(&mut self, task: &v1::TaskDefinition, diagnostics: &mut Vec<Diagnostic>) {
        // Check for a conflict with another task or workflow
        let name = task.name();
        if let Some(s) = self.tasks.get(name.as_str()) {
            diagnostics.push(name_conflict(
                name.as_str(),
                NameContext::Task(name.span()),
                NameContext::Task(s.name_span),
            ));
            return;
        } else if let Some(s) = &self.workflow {
            if s.name == name.as_str() {
                diagnostics.push(name_conflict(
                    name.as_str(),
                    NameContext::Task(name.span()),
                    NameContext::Workflow(s.name_span),
                ));
                return;
            }
        }

        // Populate the scope's names
        let mut names: IndexMap<_, ScopedName> = IndexMap::new();
        let mut saw_input = false;
        let mut saw_output = false;
        for item in task.items() {
            match item {
                v1::TaskItem::Input(section) if !saw_input => {
                    saw_input = true;
                    Self::add_inputs(&mut names, &section, diagnostics);
                }
                v1::TaskItem::Output(section) if !saw_output => {
                    saw_output = true;
                    Self::add_outputs(&mut names, &section, diagnostics);
                }
                v1::TaskItem::Declaration(decl) => {
                    let name = decl.name();
                    let context = ScopedNameContext::Decl(name.span());
                    if let Some(prev) = names.get(name.as_str()) {
                        diagnostics.push(name_conflict(
                            name.as_str(),
                            context.into(),
                            prev.context().into(),
                        ));
                        continue;
                    }

                    names.insert(
                        name.as_str().to_string(),
                        ScopedName {
                            context,
                            node: decl.syntax().green().into(),
                            implicit: false,
                        },
                    );
                }
                v1::TaskItem::Input(_)
                | v1::TaskItem::Output(_)
                | v1::TaskItem::Command(_)
                | v1::TaskItem::Requirements(_)
                | v1::TaskItem::Hints(_)
                | v1::TaskItem::Runtime(_)
                | v1::TaskItem::Metadata(_)
                | v1::TaskItem::ParameterMetadata(_) => continue,
            }
        }

        let span = Self::scope_span(task.syntax());
        let (index, _) = self.tasks.insert_full(
            name.as_str().to_string(),
            TaskScope {
                name_span: name.span(),
                scope: Scope {
                    span,
                    node: task.syntax().green().into(),
                    names,
                    children: Default::default(),
                },
            },
        );

        self.scopes.push((span, ScopeContext::Task(index)));
    }

    /// Adds a workflow scope to the document scope.
    fn add_workflow_scope(
        &mut self,
        workflow: &v1::WorkflowDefinition,
        diagnostics: &mut Vec<Diagnostic>,
    ) {
        // Check for conflicts with task names or an existing workspace
        let name = workflow.name();
        if let Some(s) = self.tasks.get(name.as_str()) {
            diagnostics.push(name_conflict(
                name.as_str(),
                NameContext::Workflow(name.span()),
                NameContext::Task(s.name_span),
            ));
            return;
        } else if let Some(s) = &self.workflow {
            diagnostics.push(duplicate_workflow(&name, s.name_span));
            return;
        }

        // First populate the "root" scope
        let mut scopes = vec![Scope {
            span: Self::scope_span(workflow.syntax()),
            node: workflow.syntax().green().into(),
            names: Default::default(),
            children: Default::default(),
        }];

        let mut saw_input = false;
        let mut saw_output = false;
        for item in workflow.items() {
            match item {
                v1::WorkflowItem::Input(section) if !saw_input => {
                    saw_input = true;
                    let scope = scopes.last_mut().unwrap();
                    Self::add_inputs(&mut scope.names, &section, diagnostics);
                }
                v1::WorkflowItem::Output(section) if !saw_output => {
                    saw_output = true;
                    let scope = scopes.last_mut().unwrap();
                    Self::add_outputs(&mut scope.names, &section, diagnostics);
                }
                v1::WorkflowItem::Declaration(decl) => {
                    Self::add_workflow_statement_decls(
                        &WorkflowStatement::Declaration(decl),
                        &mut scopes,
                        diagnostics,
                    );
                }
                v1::WorkflowItem::Conditional(stmt) => {
                    Self::add_workflow_statement_decls(
                        &WorkflowStatement::Conditional(stmt),
                        &mut scopes,
                        diagnostics,
                    );
                }
                v1::WorkflowItem::Scatter(stmt) => {
                    Self::add_workflow_statement_decls(
                        &WorkflowStatement::Scatter(stmt),
                        &mut scopes,
                        diagnostics,
                    );
                }
                v1::WorkflowItem::Call(stmt) => {
                    Self::add_workflow_statement_decls(
                        &WorkflowStatement::Call(stmt),
                        &mut scopes,
                        diagnostics,
                    );
                }
                v1::WorkflowItem::Input(_)
                | v1::WorkflowItem::Output(_)
                | v1::WorkflowItem::Metadata(_)
                | v1::WorkflowItem::ParameterMetadata(_)
                | v1::WorkflowItem::Hints(_) => continue,
            }
        }

        let scope = scopes.pop().unwrap();
        let span = scope.span;
        self.workflow = Some(WorkflowScope {
            name_span: name.span(),
            name: name.as_str().to_string(),
            scope,
        });
        self.scopes.push((span, ScopeContext::Workflow));
    }

    /// Adds declarations from workflow statements.
    fn add_workflow_statement_decls(
        stmt: &v1::WorkflowStatement,
        scopes: &mut Vec<Scope>,
        diagnostics: &mut Vec<Diagnostic>,
    ) {
        /// Finds a name by walking up the scope stack
        fn find_name<'a>(name: &str, scopes: &'a [Scope]) -> Option<&'a ScopedName> {
            for scope in scopes.iter().rev() {
                if let Some(name) = scope.names.get(name) {
                    return Some(name);
                }
            }

            None
        }

        match stmt {
            WorkflowStatement::Conditional(stmt) => {
                scopes.push(Scope {
                    span: Self::scope_span(stmt.syntax()),
                    node: stmt.syntax().green().into(),
                    names: Default::default(),
                    children: Default::default(),
                });

                for stmt in stmt.statements() {
                    Self::add_workflow_statement_decls(&stmt, scopes, diagnostics);
                }

                let scope = scopes.pop().unwrap();
                let parent = scopes.last_mut().unwrap();
                for (name, descendant) in &scope.names {
                    parent.names.insert(
                        name.clone(),
                        ScopedName {
                            context: descendant.context,
                            node: descendant.node.clone(),
                            implicit: true,
                        },
                    );
                }

                parent.children.push(scope);
            }
            WorkflowStatement::Scatter(stmt) => {
                let variable = stmt.variable();
                let context = ScopedNameContext::ScatterVariable(variable.span());
                let mut names = IndexMap::new();
                if let Some(prev) = find_name(variable.as_str(), scopes) {
                    diagnostics.push(name_conflict(
                        variable.as_str(),
                        context.into(),
                        prev.context().into(),
                    ));
                } else {
                    names.insert(
                        variable.as_str().to_string(),
                        ScopedName {
                            context,
                            node: stmt.syntax().green().into(),
                            implicit: false,
                        },
                    );
                }

                scopes.push(Scope {
                    span: Self::scope_span(stmt.syntax()),
                    node: stmt.syntax().green().into(),
                    names,
                    children: Default::default(),
                });

                for stmt in stmt.statements() {
                    Self::add_workflow_statement_decls(&stmt, scopes, diagnostics);
                }

                let scope = scopes.pop().unwrap();
                let parent = scopes.last_mut().unwrap();
                for (name, descendant) in &scope.names {
                    // Don't add an implicit name to the parent for the scatter variable
                    if descendant.is_scatter_variable() {
                        continue;
                    }

                    parent.names.insert(
                        name.clone(),
                        ScopedName {
                            context: descendant.context,
                            node: descendant.node.clone(),
                            implicit: true,
                        },
                    );
                }

                parent.children.push(scope);
            }
            WorkflowStatement::Call(stmt) => {
                let name = stmt.alias().map(|a| a.name()).unwrap_or_else(|| {
                    stmt.target()
                        .names()
                        .last()
                        .expect("expected a last call target name")
                });
                if let Some(prev) = find_name(name.as_str(), scopes) {
                    diagnostics.push(call_conflict(
                        &name,
                        prev.context().into(),
                        stmt.alias().is_none(),
                    ));

                    // Define the name in this scope if it conflicted with a scatter variable
                    if !prev.is_scatter_variable() {
                        return;
                    }
                }

                scopes.last_mut().unwrap().names.insert(
                    name.as_str().to_string(),
                    ScopedName {
                        context: ScopedNameContext::Call(name.span()),
                        node: stmt.syntax().green().into(),
                        implicit: false,
                    },
                );
            }
            WorkflowStatement::Declaration(decl) => {
                let name = decl.name();
                let context = ScopedNameContext::Decl(name.span());
                if let Some(prev) = find_name(name.as_str(), scopes) {
                    diagnostics.push(name_conflict(
                        name.as_str(),
                        context.into(),
                        prev.context().into(),
                    ));

                    // Define the name in this scope if it conflicted with a scatter variable
                    if !prev.is_scatter_variable() {
                        return;
                    }
                }

                scopes.last_mut().unwrap().names.insert(
                    name.as_str().to_string(),
                    ScopedName {
                        context,
                        node: decl.syntax().green().into(),
                        implicit: false,
                    },
                );
            }
        }
    }

    /// Resolves an import to its document scope.
    fn resolve_import(
        state: &State,
        stmt: &v1::ImportStatement,
        importer_id: &DocumentId,
        importer_version: &Version,
    ) -> Result<(Arc<DocumentId>, Arc<DocumentScope>), Diagnostic> {
        let uri = stmt.uri();
        let span = uri.syntax().text_range().to_span();
        let text = match uri.text() {
            Some(text) => text,
            None => {
                let span = uri
                    .parts()
                    .find_map(|p| match p {
                        StringPart::Text(_) => None,
                        StringPart::Placeholder(p) => Some(p),
                    })
                    .expect("should contain a placeholder")
                    .syntax()
                    .text_range()
                    .to_span();
                return Err(placeholder_in_import(span));
            }
        };

        let id = match DocumentId::relative_to(importer_id, text.as_str()) {
            Ok(id) => Arc::new(id),
            Err(e) => return Err(invalid_relative_import(&e, span)),
        };

        let (index, document) = state
            .graph
            .document(&id)
            .expect("missing import node in graph");

        // Check for an import cycle to report
        if state
            .cycles
            .contains(&(state.graph.indexes[importer_id], index))
        {
            // There was a cycle for this import
            return Err(import_cycle(span));
        }

        // Check for a failure to load the import
        if let Some(e) = &document.error {
            return Err(import_failure(text.as_str(), e, span));
        }

        // Ensure the import has a matching WDL version
        let root = wdl_ast::Document::cast(SyntaxNode::new_root(
            document.root.clone().expect("document should have a root"),
        ))
        .expect("root should cast");

        // Check for compatible imports
        match root.version_statement() {
            Some(stmt) => {
                let our_version = stmt.version();
                if matches!((our_version.as_str().split('.').next(), importer_version.as_str().split('.').next()), (Some(our_major), Some(their_major)) if our_major != their_major)
                {
                    return Err(incompatible_import(
                        our_version.as_str(),
                        span,
                        importer_version,
                    ));
                }
            }
            None => {
                return Err(import_missing_version(span));
            }
        }

        Ok((id, state.graph.inner[index].state.completed().scope.clone()))
    }

    /// Calculates the span of a scope given a node which uses braces to
    /// delineate the scope.
    fn scope_span(parent: &SyntaxNode) -> Span {
        let open = token(parent, SyntaxKind::OpenBrace).expect("task must have an opening brace");
        let close = parent
            .last_child_or_token()
            .and_then(SyntaxElement::into_token)
            .expect("task must have a last token");
        assert_eq!(
            close.kind(),
            SyntaxKind::CloseBrace,
            "the last token of a task should be a close brace"
        );
        let open = open.text_range().to_span();
        let close = close.text_range().to_span();

        // The span starts after the opening brace and before the closing brace
        Span::new(open.end(), close.start() - open.end())
    }
}