@@ -211,6 +211,22 @@ abstract class ItemNode extends Locatable {
211
211
) .( Crate ) .getADependency * ( )
212
212
}
213
213
214
+ /** Holds if this item has a canonical path belonging to the crate `c`. */
215
+ abstract predicate hasCanonicalPath ( Crate c ) ;
216
+
217
+ /** Holds if this node provides a canonical path prefix for `child` in crate `c`. */
218
+ pragma [ nomagic]
219
+ predicate providesCanonicalPathPrefixFor ( Crate c , ItemNode child ) {
220
+ child .getImmediateParent ( ) = this and
221
+ this .hasCanonicalPath ( c )
222
+ }
223
+
224
+ /** Holds if this node has a canonical path prefix in crate `c`. */
225
+ pragma [ nomagic]
226
+ final predicate hasCanonicalPathPrefix ( Crate c ) {
227
+ any ( ItemNode parent ) .providesCanonicalPathPrefixFor ( c , this )
228
+ }
229
+
214
230
/**
215
231
* Gets the canonical path of this item, if any.
216
232
*
@@ -224,7 +240,7 @@ abstract class ItemNode extends Locatable {
224
240
/** Gets the canonical path prefix that this node provides for `child`. */
225
241
pragma [ nomagic]
226
242
string getCanonicalPathPrefixFor ( Crate c , ItemNode child ) {
227
- child . getImmediateParent ( ) = this and
243
+ this . providesCanonicalPathPrefixFor ( c , child ) and
228
244
result = this .getCanonicalPath ( c )
229
245
}
230
246
@@ -234,10 +250,6 @@ abstract class ItemNode extends Locatable {
234
250
result = any ( ItemNode parent ) .getCanonicalPathPrefixFor ( c , this )
235
251
}
236
252
237
- /** Gets the canonical path prefix of this node, if any. */
238
- pragma [ nomagic]
239
- final Crate getACanonicalPathCrate ( ) { exists ( this .getCanonicalPathPrefix ( result ) ) }
240
-
241
253
/** Gets the location of this item. */
242
254
Location getLocation ( ) { result = super .getLocation ( ) }
243
255
}
@@ -285,6 +297,8 @@ private class SourceFileItemNode extends ModuleLikeNode, SourceFile {
285
297
286
298
override TypeParam getTypeParam ( int i ) { none ( ) }
287
299
300
+ override predicate hasCanonicalPath ( Crate c ) { none ( ) }
301
+
288
302
override string getCanonicalPath ( Crate c ) { none ( ) }
289
303
}
290
304
@@ -334,33 +348,28 @@ class CrateItemNode extends ItemNode instanceof Crate {
334
348
335
349
override TypeParam getTypeParam ( int i ) { none ( ) }
336
350
337
- override string getCanonicalPath ( Crate c ) {
338
- c = this and
339
- result = Crate .super .getName ( ) and
340
- not exists ( FunctionItemNode main |
341
- main .getImmediateParent ( ) = this .getModuleNode ( ) and
342
- main .getName ( ) = "main"
343
- )
344
- }
351
+ override predicate hasCanonicalPath ( Crate c ) { c = this }
345
352
346
- override string getCanonicalPathPrefixFor ( Crate c , ItemNode child ) {
347
- exists ( ModuleLikeNode m |
348
- result = this .getCanonicalPath ( c ) and
349
- m = this .getModuleNode ( )
350
- |
353
+ override predicate providesCanonicalPathPrefixFor ( Crate c , ItemNode child ) {
354
+ this .hasCanonicalPath ( c ) and
355
+ exists ( ModuleLikeNode m | m = this .getModuleNode ( ) |
351
356
child = m
352
357
or
353
358
child .getImmediateParent ( ) = m .( SourceFile ) and
354
359
not m = child .( SourceFileItemNode ) .getSuper ( )
355
360
)
356
361
}
362
+
363
+ override string getCanonicalPath ( Crate c ) { c = this and result = Crate .super .getName ( ) }
357
364
}
358
365
359
366
/** An item that can occur in a trait or an `impl` block. */
360
367
abstract private class AssocItemNode extends ItemNode , AssocItem {
361
368
/** Holds if this associated item has an implementation. */
362
369
abstract predicate hasImplementation ( ) ;
363
370
371
+ override predicate hasCanonicalPath ( Crate c ) { this .hasCanonicalPathPrefix ( c ) }
372
+
364
373
bindingset [ c]
365
374
private string getCanonicalPathPart ( Crate c , int i ) {
366
375
i = 0 and
@@ -375,7 +384,7 @@ abstract private class AssocItemNode extends ItemNode, AssocItem {
375
384
376
385
language [ monotonicAggregates]
377
386
override string getCanonicalPath ( Crate c ) {
378
- c = this .getACanonicalPathCrate ( ) and
387
+ this .hasCanonicalPath ( c ) and
379
388
result = strictconcat ( int i | i in [ 0 .. 2 ] | this .getCanonicalPathPart ( c , i ) order by i )
380
389
}
381
390
}
@@ -401,6 +410,8 @@ private class EnumItemNode extends ItemNode instanceof Enum {
401
410
402
411
override TypeParam getTypeParam ( int i ) { result = super .getGenericParamList ( ) .getTypeParam ( i ) }
403
412
413
+ override predicate hasCanonicalPath ( Crate c ) { this .hasCanonicalPathPrefix ( c ) }
414
+
404
415
bindingset [ c]
405
416
private string getCanonicalPathPart ( Crate c , int i ) {
406
417
i = 0 and
@@ -415,7 +426,7 @@ private class EnumItemNode extends ItemNode instanceof Enum {
415
426
416
427
language [ monotonicAggregates]
417
428
override string getCanonicalPath ( Crate c ) {
418
- c = this .getACanonicalPathCrate ( ) and
429
+ this .hasCanonicalPath ( c ) and
419
430
result = strictconcat ( int i | i in [ 0 .. 2 ] | this .getCanonicalPathPart ( c , i ) order by i )
420
431
}
421
432
}
@@ -433,6 +444,8 @@ private class VariantItemNode extends ItemNode instanceof Variant {
433
444
434
445
override Visibility getVisibility ( ) { result = super .getEnum ( ) .getVisibility ( ) }
435
446
447
+ override predicate hasCanonicalPath ( Crate c ) { this .hasCanonicalPathPrefix ( c ) }
448
+
436
449
bindingset [ c]
437
450
private string getCanonicalPathPart ( Crate c , int i ) {
438
451
i = 0 and
@@ -447,7 +460,7 @@ private class VariantItemNode extends ItemNode instanceof Variant {
447
460
448
461
language [ monotonicAggregates]
449
462
override string getCanonicalPath ( Crate c ) {
450
- c = this .getACanonicalPathCrate ( ) and
463
+ this .hasCanonicalPath ( c ) and
451
464
result = strictconcat ( int i | i in [ 0 .. 2 ] | this .getCanonicalPathPart ( c , i ) order by i )
452
465
}
453
466
}
@@ -572,12 +585,14 @@ class ImplItemNode extends ImplOrTraitItemNode instanceof Impl {
572
585
573
586
override Visibility getVisibility ( ) { result = Impl .super .getVisibility ( ) }
574
587
588
+ override predicate hasCanonicalPath ( Crate c ) { this .resolveSelfTy ( ) .hasCanonicalPathPrefix ( c ) }
589
+
575
590
pragma [ nomagic]
576
591
private string getCanonicalPathTraitPart ( Crate c ) {
577
- exists ( Crate c2 | result = this . resolveTraitTy ( ) . getCanonicalPath ( c2 ) |
578
- c = c2
579
- or
580
- c2 = c .getADependency ( )
592
+ exists ( Crate c2 , TraitItemNode trait |
593
+ trait = this . resolveTraitTy ( ) and
594
+ result = trait . getCanonicalPath ( c2 ) and
595
+ if this . hasCanonicalPath ( c2 ) then c = c2 else c2 = c .getADependency ( )
581
596
)
582
597
}
583
598
@@ -607,7 +622,7 @@ class ImplItemNode extends ImplOrTraitItemNode instanceof Impl {
607
622
608
623
language [ monotonicAggregates]
609
624
override string getCanonicalPath ( Crate c ) {
610
- c = this .getACanonicalPathCrate ( ) and
625
+ this .hasCanonicalPath ( c ) and
611
626
exists ( int m | if exists ( this .getTraitPath ( ) ) then m = 4 else m = 2 |
612
627
result = strictconcat ( int i | i in [ 0 .. m ] | this .getCanonicalPathPart ( c , i ) order by i )
613
628
)
@@ -625,6 +640,8 @@ private class MacroCallItemNode extends AssocItemNode instanceof MacroCall {
625
640
626
641
override Visibility getVisibility ( ) { none ( ) }
627
642
643
+ override predicate hasCanonicalPath ( Crate c ) { none ( ) }
644
+
628
645
override string getCanonicalPath ( Crate c ) { none ( ) }
629
646
}
630
647
@@ -637,6 +654,25 @@ private class ModuleItemNode extends ModuleLikeNode instanceof Module {
637
654
638
655
override TypeParam getTypeParam ( int i ) { none ( ) }
639
656
657
+ override predicate hasCanonicalPath ( Crate c ) { this .hasCanonicalPathPrefix ( c ) }
658
+
659
+ override predicate providesCanonicalPathPrefixFor ( Crate c , ItemNode child ) {
660
+ this .hasCanonicalPath ( c ) and
661
+ (
662
+ exists ( SourceFile f |
663
+ fileImport ( this , f ) and
664
+ sourceFileEdge ( f , _, child )
665
+ )
666
+ or
667
+ this = child .getImmediateParent ( )
668
+ or
669
+ exists ( ItemNode mid |
670
+ this .providesCanonicalPathPrefixFor ( c , mid ) and
671
+ mid .( MacroCallItemNode ) = child .getImmediateParent ( )
672
+ )
673
+ )
674
+ }
675
+
640
676
bindingset [ c]
641
677
private string getCanonicalPathPart ( Crate c , int i ) {
642
678
i = 0 and
@@ -651,29 +687,9 @@ private class ModuleItemNode extends ModuleLikeNode instanceof Module {
651
687
652
688
language [ monotonicAggregates]
653
689
override string getCanonicalPath ( Crate c ) {
654
- c = this .getACanonicalPathCrate ( ) and
690
+ this .hasCanonicalPath ( c ) and
655
691
result = strictconcat ( int i | i in [ 0 .. 2 ] | this .getCanonicalPathPart ( c , i ) order by i )
656
692
}
657
-
658
- pragma [ nomagic]
659
- private ItemNode getACanonicalPathChild ( ) {
660
- exists ( SourceFile f |
661
- fileImport ( this , f ) and
662
- sourceFileEdge ( f , _, result )
663
- )
664
- or
665
- this = result .getImmediateParent ( )
666
- or
667
- exists ( ItemNode mid |
668
- mid = this .getACanonicalPathChild ( ) and
669
- mid .( MacroCallItemNode ) = result .getImmediateParent ( )
670
- )
671
- }
672
-
673
- override string getCanonicalPathPrefixFor ( Crate c , ItemNode child ) {
674
- child = this .getACanonicalPathChild ( ) and
675
- result = this .getCanonicalPath ( c )
676
- }
677
693
}
678
694
679
695
private class StructItemNode extends ItemNode instanceof Struct {
@@ -690,6 +706,8 @@ private class StructItemNode extends ItemNode instanceof Struct {
690
706
691
707
override TypeParam getTypeParam ( int i ) { result = super .getGenericParamList ( ) .getTypeParam ( i ) }
692
708
709
+ override predicate hasCanonicalPath ( Crate c ) { this .hasCanonicalPathPrefix ( c ) }
710
+
693
711
bindingset [ c]
694
712
private string getCanonicalPathPart ( Crate c , int i ) {
695
713
i = 0 and
@@ -704,7 +722,7 @@ private class StructItemNode extends ItemNode instanceof Struct {
704
722
705
723
language [ monotonicAggregates]
706
724
override string getCanonicalPath ( Crate c ) {
707
- c = this .getACanonicalPathCrate ( ) and
725
+ this .hasCanonicalPath ( c ) and
708
726
result = strictconcat ( int i | i in [ 0 .. 2 ] | this .getCanonicalPathPart ( c , i ) order by i )
709
727
}
710
728
}
@@ -728,6 +746,13 @@ class TraitItemNode extends ImplOrTraitItemNode instanceof Trait {
728
746
729
747
override TypeParam getTypeParam ( int i ) { result = super .getGenericParamList ( ) .getTypeParam ( i ) }
730
748
749
+ override predicate hasCanonicalPath ( Crate c ) { this .hasCanonicalPathPrefix ( c ) }
750
+
751
+ override predicate providesCanonicalPathPrefixFor ( Crate c , ItemNode child ) {
752
+ this .hasCanonicalPath ( c ) and
753
+ child = this .getAnAssocItem ( )
754
+ }
755
+
731
756
bindingset [ c]
732
757
private string getCanonicalPathPart ( Crate c , int i ) {
733
758
i = 0 and
@@ -748,14 +773,14 @@ class TraitItemNode extends ImplOrTraitItemNode instanceof Trait {
748
773
749
774
language [ monotonicAggregates]
750
775
override string getCanonicalPath ( Crate c ) {
751
- c = this .getACanonicalPathCrate ( ) and
776
+ this .hasCanonicalPath ( c ) and
752
777
result = strictconcat ( int i | i in [ 1 .. 3 ] | this .getCanonicalPathPart ( c , i ) order by i )
753
778
}
754
779
755
780
language [ monotonicAggregates]
756
781
override string getCanonicalPathPrefixFor ( Crate c , ItemNode child ) {
757
- result = strictconcat ( int i | i in [ 0 .. 4 ] | this .getCanonicalPathPart ( c , i ) order by i ) and
758
- child = this .getAnAssocItem ( )
782
+ this .providesCanonicalPathPrefixFor ( c , child ) and
783
+ result = strictconcat ( int i | i in [ 0 .. 4 ] | this .getCanonicalPathPart ( c , i ) order by i )
759
784
}
760
785
}
761
786
@@ -780,6 +805,8 @@ private class UnionItemNode extends ItemNode instanceof Union {
780
805
781
806
override TypeParam getTypeParam ( int i ) { result = super .getGenericParamList ( ) .getTypeParam ( i ) }
782
807
808
+ override predicate hasCanonicalPath ( Crate c ) { this .hasCanonicalPathPrefix ( c ) }
809
+
783
810
bindingset [ c]
784
811
private string getCanonicalPathPart ( Crate c , int i ) {
785
812
i = 0 and
@@ -794,7 +821,7 @@ private class UnionItemNode extends ItemNode instanceof Union {
794
821
795
822
language [ monotonicAggregates]
796
823
override string getCanonicalPath ( Crate c ) {
797
- c = this .getACanonicalPathCrate ( ) and
824
+ this .hasCanonicalPath ( c ) and
798
825
result = strictconcat ( int i | i in [ 0 .. 2 ] | this .getCanonicalPathPart ( c , i ) order by i )
799
826
}
800
827
}
@@ -808,6 +835,8 @@ private class UseItemNode extends ItemNode instanceof Use {
808
835
809
836
override TypeParam getTypeParam ( int i ) { none ( ) }
810
837
838
+ override predicate hasCanonicalPath ( Crate c ) { none ( ) }
839
+
811
840
override string getCanonicalPath ( Crate c ) { none ( ) }
812
841
}
813
842
@@ -820,6 +849,8 @@ private class BlockExprItemNode extends ItemNode instanceof BlockExpr {
820
849
821
850
override TypeParam getTypeParam ( int i ) { none ( ) }
822
851
852
+ override predicate hasCanonicalPath ( Crate c ) { none ( ) }
853
+
823
854
override string getCanonicalPath ( Crate c ) { none ( ) }
824
855
}
825
856
@@ -878,6 +909,8 @@ private class TypeParamItemNode extends ItemNode instanceof TypeParam {
878
909
879
910
override Location getLocation ( ) { result = TypeParam .super .getName ( ) .getLocation ( ) }
880
911
912
+ override predicate hasCanonicalPath ( Crate c ) { none ( ) }
913
+
881
914
override string getCanonicalPath ( Crate c ) { none ( ) }
882
915
}
883
916
0 commit comments