forked from invertase/dart_custom_lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkspace.dart
1210 lines (1019 loc) · 36.6 KB
/
workspace.dart
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
import 'dart:async';
import 'dart:collection';
import 'dart:convert';
import 'dart:io';
import 'package:analyzer_plugin/protocol/protocol_generated.dart'
as analyzer_plugin;
import 'package:async/async.dart';
import 'package:collection/collection.dart';
import 'package:custom_lint_core/custom_lint_core.dart';
import 'package:meta/meta.dart';
import 'package:package_config/package_config.dart';
import 'package:path/path.dart';
import 'package:pub_semver/pub_semver.dart';
import 'package:pubspec_parse/pubspec_parse.dart';
import 'package:rxdart/rxdart.dart';
import 'package:yaml/yaml.dart';
/// Compute the constraint for a dependency which matches with all the constraints
/// used in the workspace.
String _buildDependencyConstraint(
String name,
List<({CustomLintProject project, Dependency dependency})> dependencies, {
required Directory workingDirectory,
required String fileName,
}) {
// We can't pick the "first" then use .skip(1) because the pattern match
// may transform the shared constraint. Such as modifying path dependencies
// to all use absolute paths.
Dependency? sharedConstraint;
for (final (:project, :dependency) in dependencies) {
final dependencyMeta = dependencies.map(
(d) => DependencyConstraintMeta.fromDependency(
d.dependency,
d.project,
workingDirectory: workingDirectory,
),
);
Never throws() => throw IncompatibleDependencyConstraintsException(
ConflictKind.dependency(name),
dependencyMeta.toList(),
fileName: fileName,
);
switch ((dependency: dependency, constraint: sharedConstraint)) {
case (
:final HostedDependency dependency,
:final HostedDependency? constraint,
):
sharedConstraint = dependency;
if (constraint == null) continue;
if (constraint.hosted?.declaredName !=
dependency.hosted?.declaredName ||
constraint.hosted?.url != dependency.hosted?.url) {
throws();
}
final newConstraint = constraint.version.intersect(dependency.version);
if (newConstraint.isEmpty) throws();
sharedConstraint = HostedDependency(
version: newConstraint,
hosted: constraint.hosted,
);
case (
:final PathDependency dependency,
:final PathDependency? constraint,
):
final absoluteDependencyPath = normalize(
absolute(
project.directory.path,
dependency.path,
),
);
sharedConstraint = PathDependency(absoluteDependencyPath);
if (constraint == null) continue;
if (constraint.path != absoluteDependencyPath) throws();
case (
:final SdkDependency dependency,
:final SdkDependency? constraint,
):
sharedConstraint = dependency;
if (constraint == null) continue;
if (constraint.sdk != dependency.sdk) throws();
case (
:final GitDependency dependency,
:final GitDependency? constraint,
):
sharedConstraint = dependency;
if (constraint == null) continue;
if (constraint.url != dependency.url ||
constraint.path != dependency.path ||
constraint.ref != dependency.ref) {
throws();
}
default:
throws();
}
}
switch (sharedConstraint) {
case HostedDependency():
final hosted = sharedConstraint.hosted;
if (hosted == null) {
return ' ${sharedConstraint.getDisplayString()}';
}
final result = StringBuffer();
result.writeln();
result.writeln(' hosted:');
if (hosted.declaredName != null) {
result.writeln(' name: ${hosted.declaredName}');
}
if (hosted.url != null) {
result.writeln(' url: ${hosted.url}');
}
result.write(' version: ${sharedConstraint.getDisplayString()}');
return result.toString();
case PathDependency():
// Use appropriate path separators across platforms
final path = posix.prettyUri(sharedConstraint.path);
return '\n path: "$path"';
case SdkDependency():
return '\n sdk: ${sharedConstraint.sdk}';
case GitDependency():
final result = StringBuffer('\n git:');
result.write('\n url: ${sharedConstraint.url}');
if (sharedConstraint.ref != null) {
result.write('\n ref: ${sharedConstraint.ref}');
}
if (sharedConstraint.path != null) {
result.write('\n path: "${sharedConstraint.path}"');
}
return result.toString();
case _:
throw StateError(
'Unknown constraint type: ${sharedConstraint.runtimeType}',
);
}
}
/// A type of version conflict
sealed class ConflictKind {
/// A conflict between two dependencies from different packages in the same workspace.
factory ConflictKind.dependency(String packageName) = _DependencyConflict;
/// A conflict between two dependencies from the same package in the same workspace.
factory ConflictKind.environment(String packageName) = _EnvironmentConflict;
/// The human readable name of the conflict type.
String get kindDisplayString;
/// The value of the conflict.
String get value;
}
class _EnvironmentConflict implements ConflictKind {
_EnvironmentConflict(this.key);
@override
String get kindDisplayString => 'environment';
@override
String get value => key;
final String key;
}
class _DependencyConflict implements ConflictKind {
_DependencyConflict(this.packageName);
@override
String get kindDisplayString => 'package';
@override
String get value => packageName;
final String packageName;
}
/// Information related to a dependency and the project it is used in.
class DependencyConstraintMeta {
DependencyConstraintMeta._(
this.dependencyDisplayString,
CustomLintProject project, {
required Directory workingDirectory,
}) : projectName = project.pubspec.name,
projectPath = join(
'.',
normalize(
relative(project.directory.path, from: workingDirectory.path),
),
);
/// Construct a [DependencyConstraintMeta] from a [VersionConstraint].
DependencyConstraintMeta.fromVersionConstraint(
VersionConstraint constraint,
CustomLintProject project, {
required Directory workingDirectory,
}) : this._(
HostedDependency(version: constraint).getDisplayString(),
project,
workingDirectory: workingDirectory,
);
/// Construct a [DependencyConstraintMeta] from a [Dependency].
DependencyConstraintMeta.fromDependency(
Dependency dependency,
CustomLintProject project, {
required Directory workingDirectory,
}) : this._(
dependency.getDisplayString(),
project,
workingDirectory: workingDirectory,
);
/// Either a [VersionConstraint] or a [Dependency].
final String dependencyDisplayString;
/// The name of the project which uses the dependency.
final String projectName;
/// The path to the project which uses the dependency.
final String projectPath;
}
extension on Dependency {
String getDisplayString() {
final that = this;
return switch (that) {
HostedDependency() when that.version == VersionConstraint.any => 'any',
HostedDependency() => '"${that.version}"',
PathDependency() => '"${that.path}"',
SdkDependency() => 'sdk: ${that.sdk}',
GitDependency() => 'git: ${that.url}',
};
}
}
/// {@template IncompatibleDependencyConstraintsException}
/// An exception thrown when a dependency is used with different constraints
/// {@endtemplate}
class IncompatibleDependencyConstraintsException implements Exception {
/// {@macro IncompatibleDependencyConstraintsException}
IncompatibleDependencyConstraintsException(
this.kind,
this.conflictingDependencies, {
required this.fileName,
}) : assert(
conflictingDependencies.length > 1,
'Must have at least 2 items',
);
/// The name of the file where the conflict was found.
final String fileName;
/// The type of conflict.
final ConflictKind kind;
/// The conflicting dependencies.
final List<DependencyConstraintMeta> conflictingDependencies;
@override
String toString() {
final buffer = StringBuffer(
'The ${kind.kindDisplayString} "${kind.value}" has incompatible version constraints in the project:\n',
);
for (final DependencyConstraintMeta(
dependencyDisplayString: dependency,
:projectName,
:projectPath
) in conflictingDependencies) {
buffer.write('''
- $dependency
from "$projectName" at "${join(projectPath, fileName)}".
''');
}
return buffer.toString();
}
}
/// An exception thrown by [visitAnalysisOptionAndIncludes] when an "include"
/// directive creates a cycle.
class CyclicIncludeException implements Exception {
CyclicIncludeException._(this.path);
/// The path that ends-up including itself.
final String path;
@override
String toString() => 'Cyclic include detected: $path';
}
/// Returns a stream of YAML maps obtained by recursively following the "include"
/// keys in an analysis options file, starting from the given [analysisOptionsFile].
///
/// The function yields the YAML map in the original analysis options file first,
/// and then yields the YAML maps in the included files in order.
/// If the analysis options file does not exist or is not a YAML map, or if
/// any included file does not exist or is not a YAML map, the function skips
/// that file and will end execution. If no YAML maps are found in the
/// analysis options file or its included files, the function returns
/// an empty stream.
///
///
/// If an included file contains a "package" URI scheme, the function resolves
/// the URI using the `package_config.json` file in the same directory as the
/// [analysisOptionsFile].
/// If the `package_config.json` file does not exist or the `package_config.json`
/// does not contain the imported package, the function will stop its execution.
///
/// If any included file is visited multiple times, the function throws a
/// [CyclicIncludeException] indicating a cycle in the include graph.
Stream<YamlMap> visitAnalysisOptionAndIncludes(
File analysisOptionsFile,
) async* {
final visited = <String>{};
late final packageConfigFuture = loadPackageConfig(
File(
join(analysisOptionsFile.parent.path, '.dart_tool/package_config.json'),
),
).then<PackageConfig?>(
(value) => value,
// On error, return null to not throw. The function later handles the null
onError: (e, s) => null,
);
for (Uri? optionsPath = analysisOptionsFile.uri; optionsPath != null;) {
final optionsFile = File.fromUri(optionsPath);
if (!visited.add(optionsFile.path)) {
// The file was visited multiple times. This is a cycle.
throw CyclicIncludeException._(optionsFile.path);
}
if (!optionsFile.existsSync()) return;
final yaml = loadYaml(optionsFile.readAsStringSync());
if (yaml is! YamlMap) return;
yield yaml;
final includePath = yaml['include'];
if (includePath is! String) return;
final includeUri = Uri.tryParse(includePath);
if (includeUri == null) return;
if (includeUri.scheme == 'package') {
final packageName = includeUri.pathSegments.first;
final packageConfig = await packageConfigFuture;
// Search for the package with matching name in packageConfig
final package = packageConfig?.packages.firstWhereOrNull(
(package) => package.name == packageName,
);
if (package == null) return;
final packageRoot = Directory.fromUri(package.packageUriRoot);
final packagePath = join(
packageRoot.path,
// Skip the first segment, which is the package name.
// In package:foo/src/file.dart, we only care about src/file.dart
joinAll(includeUri.pathSegments.skip(1)),
);
optionsPath = Uri.file(packagePath);
continue;
}
optionsPath = optionsPath.resolveUri(includeUri);
}
}
/// A typedef for [Process.run].
typedef RunProcess = Future<ProcessResult> Function(
String executable,
List<String> arguments, {
String? workingDirectory,
Map<String, String>? environment,
bool includeParentEnvironment,
bool runInShell,
Encoding? stdoutEncoding,
Encoding? stderrEncoding,
});
/// A mockable way to run processes.
@visibleForTesting
RunProcess runProcess = Process.run;
/// Allow mocking of the platform for tests.
@visibleForTesting
bool platformIsWindows = Platform.isWindows;
String? _findOptionsForPubspec(String pubspecPath) {
final analysisOptions = File(join(pubspecPath, 'analysis_options.yaml'));
if (analysisOptions.existsSync()) return analysisOptions.path;
final parent = Directory(pubspecPath).parent;
if (parent.path == pubspecPath) return null;
return _findOptionsForPubspec(parent.path);
}
Iterable<String> _findRoots(String path) sync* {
final directory = Directory(path);
yield* directory.listSync(recursive: true).whereType<File>().where((file) {
final fileName = basename(file.path);
if (fileName != 'pubspec.yaml' && fileName != 'analysis_options.yaml') {
return false;
}
return file.parent.packageConfig.existsSync();
}).map((file) => file.parent.path);
}
/// The holder of metadatas related to the enabled plugins and analyzed projects.
@internal
class CustomLintWorkspace {
/// Creates a new workspace.
CustomLintWorkspace._(
this.projects,
this.contextRoots,
this.uniquePluginNames, {
required this.workingDirectory,
});
/// Initializes the custom_lint workspace from a directory.
static Future<CustomLintWorkspace> fromPaths(
List<String> paths, {
required Directory workingDirectory,
}) async {
final distinctRoots = paths
.map((e) => normalize(absolute(e, workingDirectory.path)))
.expand(_findRoots)
.toSet();
final foundRoots = await Future.wait(
distinctRoots.map((rootPath) async {
final projectDir = tryFindProjectDirectory(Directory(rootPath));
if (projectDir == null) return null;
final pubspec = await tryParsePubspec(projectDir);
if (pubspec == null) return null;
final optionFile = _findOptionsForPubspec(rootPath);
if (optionFile == null) return null;
final options = File(optionFile);
final pluginDefinition = await _isCustomLintEnabled(options);
if (!pluginDefinition) {
return null;
}
return (
rootPath,
optionsFile: optionFile,
);
}),
);
return fromContextRoots(
foundRoots.nonNulls
.map(
(e) => analyzer_plugin.ContextRoot(
e.$1,
[
for (final otherPath in foundRoots)
if (otherPath != null && isWithin(e.$1, otherPath.$1))
otherPath.$1,
],
optionsFile: e.optionsFile,
),
)
.toList(),
workingDirectory: workingDirectory,
);
}
static Future<bool> _isCustomLintEnabled(File options) async {
final enabledPlugins = await visitAnalysisOptionAndIncludes(options)
.map((event) {
final analyzerMap = event['analyzer'];
if (analyzerMap is! YamlMap) return null;
return analyzerMap['plugins'];
})
.whereNotNull()
.firstOrNull;
if (enabledPlugins is! YamlList) return false;
return enabledPlugins.contains('custom_lint');
}
/// Initializes the custom_lint workspace from a compilation of context roots.
static Future<CustomLintWorkspace> fromContextRoots(
List<analyzer_plugin.ContextRoot> contextRoots, {
required Directory workingDirectory,
}) async {
final cache = CustomLintPluginCheckerCache();
final projects = await Future.wait([
for (final contextRoot in contextRoots)
CustomLintProject.parse(contextRoot, cache),
]);
final uniquePluginNames =
projects.expand((e) => e.plugins).map((e) => e.name).toSet();
final realProjects = projects.where((e) => e.isProjectRoot).toList();
return CustomLintWorkspace._(
realProjects,
contextRoots,
uniquePluginNames,
workingDirectory: workingDirectory,
);
}
/// Whether the workspace is using flutter.
bool get isUsingFlutter => projects
.expand((e) => e.packageConfig.packages)
.any((e) => e.name == 'flutter');
/// The working directory of the workspace.
/// This is the directory from which the workspace was initialized.
final Directory workingDirectory;
/// The list of analyzed projects.
final List<analyzer_plugin.ContextRoot> contextRoots;
/// The list of analyzed projects.
final List<CustomLintProject> projects;
/// The names of all enabled plugins.
final Set<String> uniquePluginNames;
/// A method to generate a `pubspec.yaml` in the client project
///
/// This is the combination of all `pubspec.yaml` in the workspace.
@internal
String computePubspec() {
final buffer = StringBuffer('''
name: custom_lint_client
description: A client for custom_lint
version: 0.0.1
publish_to: 'none'
''');
_writeEnvironment(buffer);
_writePubspecDependencies(buffer);
return buffer.toString();
}
void _writeEnvironment(StringBuffer buffer) {
final environmentKeys =
projects.expand((e) => e.pubspec.environment.keys).toSet();
if (environmentKeys.isEmpty) return;
buffer.writeln('\nenvironment:');
for (final key in environmentKeys) {
final projectMeta = projects
.map((project) {
final constraint = project.pubspec.environment[key];
if (constraint == null) return null;
return (project: project, constraint: constraint);
})
// TODO what if some projects specify SDK/Flutter but some don't?
.nonNulls
.toList();
final constraintCompatibleWithAllProjects = projectMeta.fold(
VersionConstraint.parse('^3.0.0'),
(acc, constraint) => acc.intersect(constraint.constraint),
);
if (constraintCompatibleWithAllProjects.isEmpty) {
throw IncompatibleDependencyConstraintsException(
ConflictKind.environment(key),
projectMeta
.map(
(e) => DependencyConstraintMeta.fromVersionConstraint(
e.constraint,
e.project,
workingDirectory: workingDirectory,
),
)
.toList(),
fileName: 'pubspec.yaml',
);
}
buffer.writeln(' $key: "$constraintCompatibleWithAllProjects"');
}
}
void _writePubspecDependencies(StringBuffer buffer) {
// Collect all the dependencies for each package.
final uniqueDependencyNames = projects.expand((e) sync* {
yield* e.pubspec.dependencies.keys;
yield* e.pubspec.devDependencies.keys;
yield* e.pubspec.dependencyOverrides.keys;
}).toSet();
final dependenciesByName = {
for (final name in uniqueDependencyNames)
name: (
dependencies: projects.expand((project) {
final dependency = project.pubspec.dependencies[name];
final devDependency = project.pubspec.devDependencies[name];
return [
if (dependency != null)
(project: project, dependency: dependency),
if (devDependency != null)
(project: project, dependency: devDependency),
];
}).toList(),
dependencyOverrides: projects
.map((project) {
final dependency = project.pubspec.dependencyOverrides[name];
if (dependency == null) return null;
return (project: project, dependency: dependency);
})
.nonNulls
.toList(),
),
};
final dependencies = <String, String>{};
// Iterate over each plugin and compute their constraints.
for (final name in uniquePluginNames) {
final allDependencies = dependenciesByName[name];
if (allDependencies == null) continue;
if (allDependencies.dependencies.isEmpty) {
continue;
}
final constraint = allDependencies.dependencyOverrides.isNotEmpty
? ' any'
: _buildDependencyConstraint(
name,
allDependencies.dependencies,
workingDirectory: workingDirectory,
fileName: 'pubspec.yaml',
);
dependencies[name] = constraint;
}
// Write the dependencies to the buffer.
if (dependencies.isNotEmpty) {
buffer.writeln('\ndependencies:');
for (final dependency in dependencies.entries) {
buffer.writeln(' ${dependency.key}:${dependency.value}');
}
}
// Write the dependency_overrides to the buffer.
_writeDependencyOverrides(
buffer,
dependencyOverrides: {
for (final entry in dependenciesByName.entries)
if (entry.value.dependencyOverrides.isNotEmpty)
entry.key: entry.value.dependencyOverrides,
},
);
}
void _writeDependencyOverrides(
StringBuffer buffer, {
required Map<String,
List<({Dependency dependency, CustomLintProject project})>>
dependencyOverrides,
}) {
var didWriteDependencyOverridesHeader = false;
for (final entry in dependencyOverrides.entries) {
if (!didWriteDependencyOverridesHeader) {
didWriteDependencyOverridesHeader = true;
// Add empty line to separate dependency_overrides from other dependencies.
if (buffer.isNotEmpty) buffer.writeln();
buffer.writeln('dependency_overrides:');
}
final constraint = _buildDependencyConstraint(
entry.key,
entry.value,
workingDirectory: workingDirectory,
fileName: 'pubspec_overrides.yaml',
);
buffer.writeln(' ${entry.key}:$constraint');
}
}
/// A method to generate a `pubspec_overrides.yaml` in the client project.
///
/// This is the combination of all `pubspec_overrides.yaml` in the workspace.
@internal
String? computePubspecOverride() {
final uniqueDependencyNames = projects //
.expand((e) => e.pubspecOverrides?.keys ?? <String>[])
.toSet();
if (uniqueDependencyNames.isEmpty) return null;
final dependenciesByName = {
for (final name in uniqueDependencyNames)
name: projects
.map((project) {
final dependency = project.pubspecOverrides?[name];
if (dependency == null) return null;
return (project: project, dependency: dependency);
})
.nonNulls
.toList(),
};
final buffer = StringBuffer();
_writeDependencyOverrides(
buffer,
dependencyOverrides: dependenciesByName,
);
return buffer.toString();
}
/// First attempts at creating the plugin host locally. And if it fails,
/// it will fallback to resolving packages using "pub get".
Future<void> resolvePluginHost(
Directory tempDir,
) async {
final pubspecContent = computePubspec();
final pubspecOverride = computePubspecOverride();
tempDir.pubspec.writeAsStringSync(pubspecContent);
if (pubspecOverride != null) {
tempDir.pubspecOverrides.writeAsStringSync(pubspecOverride);
}
await runPubGet(tempDir);
}
/// Run "pub get" in the client project.
Future<void> runPubGet(Directory tempDir) async {
final command = Platform.resolvedExecutable;
final result = await runProcess(
command,
const ['pub', 'get'],
stdoutEncoding: utf8,
stderrEncoding: utf8,
workingDirectory: tempDir.path,
runInShell: platformIsWindows,
);
if (result.exitCode != 0) {
throw Exception(
'Failed to run "pub get" in the client project:\n'
'${result.stdout}\n'
'${result.stderr}',
);
}
}
}
/// An util for detecting if a project is a custom_lint plugin.
@internal
class CustomLintPluginCheckerCache {
final _cache = <Directory, Future<bool>>{};
/// Returns `true` if the project at [directory] is a custom_lint plugin.
///
/// A project is considered a custom_lint plugin if it has a dependency on
/// `custom_lint_builder`.
Future<bool> isPlugin(Directory directory) {
final cached = _cache[directory];
if (cached != null) return cached;
return _cache[directory] = Future(() async {
final pubspec = await tryParsePubspec(directory);
if (pubspec == null) return false;
// TODO test that dependency_overrides & dev_dependencies aren't checked.
return pubspec.dependencies.containsKey('custom_lint_builder');
});
}
}
/// An util for parsing a pubspec once.
@internal
class PubspecCache {
final _cache = <Directory, Pubspec Function()>{};
/// Parses a pubspec and throws if the parsing fails.
///
/// If the value is already cached, it will return the cached value or rethrow
/// the previously thrown error.
Pubspec call(Directory directory) {
final cached = _cache[directory];
if (cached != null) return cached();
try {
final pubspec = parsePubspecSync(directory);
_cache[directory] = () => pubspec;
return pubspec;
} catch (e) {
// Indirect rethrow of an error. We can't use rethrow here.
// ignore: only_throw_errors, use_rethrow_when_possible
_cache[directory] = () => throw e;
rethrow;
}
}
}
/// No pubspec.yaml file was found for a plugin.
@internal
class PubspecParseError extends Error {
PubspecParseError._(
this.path, {
required this.error,
required this.errorStackTrace,
});
/// The path where the pubspec.yaml file was expected.
final String path;
/// The inner error that was thrown when trying to parse the pubspec.
final Object error;
/// The stacktrace of [error].
final StackTrace errorStackTrace;
@override
String toString() {
return 'Failed to read pubspec.yaml at $path:\n'
'$error\n'
'$errorStackTrace';
}
}
/// No .dart_tool/package_config.json file was found for a plugin.
@internal
class PackageConfigParseError extends Error {
PackageConfigParseError._(
this.path, {
required this.error,
required this.errorStackTrace,
});
/// The path where the pubspec.yaml file was expected.
final String path;
/// The inner error that was thrown when trying to parse the pubspec.
final Object error;
/// The stacktrace of [error].
final StackTrace errorStackTrace;
@override
String toString() =>
'Failed to decode .dart_tool/package_config.json at $path. '
'Make sure to run `pub get` first.\n'
'$error\n'
'$errorStackTrace';
}
/// The plugin was not found in the package config.
@internal
class PluginNotFoundInPackageConfigError extends Error {
PluginNotFoundInPackageConfigError._(this.name, this.path);
/// The name of the plugin.
final String name;
/// The path where the pubspec.yaml file was expected.
final String path;
@override
String toString() => 'The plugin $name was not found in the package config '
'at $path. Make sure to run `pub get` first.';
}
/// A project analyzed by custom_lint, with its enabled plugins.
@internal
class CustomLintProject {
CustomLintProject._({
required this.plugins,
required this.directory,
required this.packageConfig,
required this.pubspec,
required this.pubspecOverrides,
required this.analysisDirectory,
});
/// Decode a [CustomLintProject] from a directory.
static Future<CustomLintProject> parse(
analyzer_plugin.ContextRoot contextRoot,
CustomLintPluginCheckerCache cache,
) async {
final directory = Directory(contextRoot.root);
final projectDirectory = findProjectDirectory(directory);
final projectPubspec = await parsePubspec(projectDirectory).catchError(
// ignore: avoid_types_on_closure_parameters, false positive
(Object err, StackTrace stack) {
throw PubspecParseError._(
directory.path,
error: err,
errorStackTrace: stack,
);
});
final pubspecOverrides = await tryParsePubspecOverrides(projectDirectory);
final projectPackageConfig = await parsePackageConfig(projectDirectory)
// ignore: avoid_types_on_closure_parameters, false positive
.catchError((Object err, StackTrace stack) {
throw PackageConfigParseError._(
directory.path,
error: err,
errorStackTrace: stack,
);
});
final plugins = await Future.wait(
{
...projectPubspec.dependencies,
...projectPubspec.devDependencies,
}.entries.map((e) async {
final packageWithName = projectPackageConfig.packages
.firstWhereOrNull((p) => p.name == e.key);
if (packageWithName == null) {
throw PluginNotFoundInPackageConfigError._(e.key, directory.path);
}
final pluginDirectory = Directory.fromUri(packageWithName.root);
final isPlugin = await cache.isPlugin(pluginDirectory);
if (!isPlugin) return null;
// TODO test error
final pluginPubspec = await parsePubspec(pluginDirectory);
return CustomLintPlugin._(
name: e.key,
directory: pluginDirectory,
pubspec: pluginPubspec,
package: packageWithName,
constraint: PubspecDependency.fromDependency(e.value),
ownerPubspec: projectPubspec,
ownerPackageConfig: projectPackageConfig,
);
}),
);
return CustomLintProject._(
plugins: plugins.nonNulls.toList(),
directory: projectDirectory,
analysisDirectory: directory,
packageConfig: projectPackageConfig,
pubspec: projectPubspec,
pubspecOverrides: pubspecOverrides,
);
}
/// The resolved package_config.json at the moment of parsing.
final PackageConfig packageConfig;
/// The pubspec.yaml at the moment of parsing.
final Pubspec pubspec;
/// The pubspec.yaml at the moment of parsing.
final Map<String, Dependency>? pubspecOverrides;
/// The folder of the project being analyzed.
/// Generally, where the pubspec.yaml is located
final Directory directory;
/// The enabled plugins for this project.
final List<CustomLintPlugin> plugins;
/// Where the analysis options file is located
/// It could be null if the project doesn't have an analysis options file.
///
/// The analysis options file doesn't not have to be in [directory]
final Directory? analysisDirectory;
bool get isProjectRoot {