@@ -3,74 +3,74 @@ import RootFile from "./components/RootFile";
3
3
import NamespacesFolder from "./components/NamespacesFolder" ;
4
4
5
5
export default class PathRefsValidator {
6
- root_file : RootFile ;
7
- namespaces_folder : NamespacesFolder ;
6
+ root_file : RootFile ;
7
+ namespaces_folder : NamespacesFolder ;
8
8
9
- referenced_paths : Record < string , Set < string > > = { } ; // file -> paths
10
- available_paths : Record < string , Set < string > > = { } ; // file -> paths
9
+ referenced_paths : Record < string , Set < string > > = { } ; // file -> paths
10
+ available_paths : Record < string , Set < string > > = { } ; // file -> paths
11
11
12
- constructor ( root_file : RootFile , namespaces_folder : NamespacesFolder ) {
13
- this . root_file = root_file ;
14
- this . namespaces_folder = namespaces_folder ;
15
- this . #build_referenced_paths( ) ;
16
- this . #build_available_paths( ) ;
17
- }
12
+ constructor ( root_file : RootFile , namespaces_folder : NamespacesFolder ) {
13
+ this . root_file = root_file ;
14
+ this . namespaces_folder = namespaces_folder ;
15
+ this . #build_referenced_paths( ) ;
16
+ this . #build_available_paths( ) ;
17
+ }
18
18
19
- #build_referenced_paths( ) {
20
- for ( const [ path , spec ] of Object . entries ( this . root_file . spec ( ) . paths ) ) {
21
- const ref = spec ! . $ref ! ;
22
- const file = ref . split ( '#' ) [ 0 ] ;
23
- if ( ! this . referenced_paths [ file ] ) this . referenced_paths [ file ] = new Set ( ) ;
24
- this . referenced_paths [ file ] . add ( path ) ;
25
- }
19
+ #build_referenced_paths( ) {
20
+ for ( const [ path , spec ] of Object . entries ( this . root_file . spec ( ) . paths ) ) {
21
+ const ref = spec ! . $ref ! ;
22
+ const file = ref . split ( '#' ) [ 0 ] ;
23
+ if ( ! this . referenced_paths [ file ] ) this . referenced_paths [ file ] = new Set ( ) ;
24
+ this . referenced_paths [ file ] . add ( path ) ;
26
25
}
26
+ }
27
27
28
- #build_available_paths( ) {
29
- for ( const file of this . namespaces_folder . files ) {
30
- this . available_paths [ file . file ] = new Set ( Object . keys ( file . spec ( ) . paths || { } ) ) ;
31
- }
28
+ #build_available_paths( ) {
29
+ for ( const file of this . namespaces_folder . files ) {
30
+ this . available_paths [ file . file ] = new Set ( Object . keys ( file . spec ( ) . paths || { } ) ) ;
32
31
}
32
+ }
33
33
34
- validate ( ) : ValidationError [ ] {
35
- return [
36
- ...this . validate_unresolved_refs ( ) ,
37
- ...this . validate_unreferenced_paths ( ) ,
38
- ] ;
39
- }
34
+ validate ( ) : ValidationError [ ] {
35
+ return [
36
+ ...this . validate_unresolved_refs ( ) ,
37
+ ...this . validate_unreferenced_paths ( ) ,
38
+ ] ;
39
+ }
40
40
41
- validate_unresolved_refs ( ) : ValidationError [ ] {
42
- return Object . entries ( this . referenced_paths ) . flatMap ( ( [ ref_file , ref_paths ] ) => {
43
- const available = this . available_paths [ ref_file ] ;
44
- if ( ! available ) return {
45
- file : this . root_file . file ,
46
- location : `Paths: ${ [ ...ref_paths ] . join ( ' , ' ) } ` ,
47
- message : `Unresolved path reference: Namespace file ${ ref_file } does not exist.` ,
48
- } ;
41
+ validate_unresolved_refs ( ) : ValidationError [ ] {
42
+ return Object . entries ( this . referenced_paths ) . flatMap ( ( [ ref_file , ref_paths ] ) => {
43
+ const available = this . available_paths [ ref_file ] ;
44
+ if ( ! available ) return {
45
+ file : this . root_file . file ,
46
+ location : `Paths: ${ [ ...ref_paths ] . join ( ' , ' ) } ` ,
47
+ message : `Unresolved path reference: Namespace file ${ ref_file } does not exist.` ,
48
+ } ;
49
49
50
- return Array . from ( ref_paths ) . map ( ( path ) => {
51
- if ( ! available . has ( path ) ) return {
52
- file : this . root_file . file ,
53
- location : `Path: ${ path } ` ,
54
- message : `Unresolved path reference: Path ${ path } does not exist in namespace file ${ ref_file } .` ,
55
- } ;
56
- } ) . filter ( ( e ) => e ) as ValidationError [ ] ;
57
- } ) ;
58
- }
50
+ return Array . from ( ref_paths ) . map ( ( path ) => {
51
+ if ( ! available . has ( path ) ) return {
52
+ file : this . root_file . file ,
53
+ location : `Path: ${ path } ` ,
54
+ message : `Unresolved path reference: Path ${ path } does not exist in namespace file ${ ref_file } .` ,
55
+ } ;
56
+ } ) . filter ( ( e ) => e ) as ValidationError [ ] ;
57
+ } ) ;
58
+ }
59
59
60
- validate_unreferenced_paths ( ) : ValidationError [ ] {
61
- return Object . entries ( this . available_paths ) . flatMap ( ( [ ns_file , ns_paths ] ) => {
62
- const referenced = this . referenced_paths [ ns_file ] ;
63
- if ( ! referenced ) return {
64
- file : ns_file ,
65
- message : `Unreferenced paths: No paths are referenced in the root file.` ,
66
- } ;
67
- return Array . from ( ns_paths ) . map ( ( path ) => {
68
- if ( ! referenced || ! referenced . has ( path ) ) return {
69
- file : ns_file ,
70
- location : `Path: ${ path } ` ,
71
- message : `Unreferenced path: Path ${ path } is not referenced in the root file.` ,
72
- } ;
73
- } ) . filter ( ( e ) => e ) as ValidationError [ ] ;
74
- } ) ;
75
- }
60
+ validate_unreferenced_paths ( ) : ValidationError [ ] {
61
+ return Object . entries ( this . available_paths ) . flatMap ( ( [ ns_file , ns_paths ] ) => {
62
+ const referenced = this . referenced_paths [ ns_file ] ;
63
+ if ( ! referenced ) return {
64
+ file : ns_file ,
65
+ message : `Unreferenced paths: No paths are referenced in the root file.` ,
66
+ } ;
67
+ return Array . from ( ns_paths ) . map ( ( path ) => {
68
+ if ( ! referenced || ! referenced . has ( path ) ) return {
69
+ file : ns_file ,
70
+ location : `Path: ${ path } ` ,
71
+ message : `Unreferenced path: Path ${ path } is not referenced in the root file.` ,
72
+ } ;
73
+ } ) . filter ( ( e ) => e ) as ValidationError [ ] ;
74
+ } ) ;
75
+ }
76
76
}
0 commit comments