-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathdartdoc_options.dart
1604 lines (1399 loc) · 58.9 KB
/
dartdoc_options.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
// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/// dartdoc's dartdoc_options.yaml configuration file follows similar loading
/// semantics to that of analysis_options.yaml,
/// [documented here](https://dart.dev/guides/language/analysis-options).
/// It searches parent directories until it finds an analysis_options.yaml file,
/// and uses built-in defaults if one is not found.
///
/// The classes here manage both the dartdoc_options.yaml loading and command
/// line arguments.
library;
import 'dart:io' show exitCode, stderr, stdout;
import 'package:analyzer/dart/element/element2.dart';
import 'package:analyzer/file_system/file_system.dart';
import 'package:args/args.dart';
import 'package:dartdoc/src/dartdoc.dart' show dartdocVersion, programName;
import 'package:dartdoc/src/experiment_options.dart';
import 'package:dartdoc/src/failure.dart';
import 'package:dartdoc/src/generator/generator.dart';
import 'package:dartdoc/src/io_utils.dart';
import 'package:dartdoc/src/logging.dart';
import 'package:dartdoc/src/model/model.dart';
import 'package:dartdoc/src/package_meta.dart';
import 'package:dartdoc/src/source_linker.dart';
import 'package:dartdoc/src/tool_configuration.dart';
import 'package:dartdoc/src/warnings.dart';
import 'package:path/path.dart' as p show Context, canonicalize;
import 'package:yaml/yaml.dart';
/// Constants to help with type checking, because T is int and so forth
/// don't work in Dart.
const String _kStringVal = '';
const List<String> _kListStringVal = <String>[];
const Map<String, String> _kMapStringVal = <String, String>{};
const int _kIntVal = 0;
const double _kDoubleVal = 0.0;
const bool _kBoolVal = true;
const String compileArgsTagName = 'compile_args';
int get _usageLineLength => stdout.hasTerminal ? stdout.terminalColumns : 80;
typedef ConvertYamlToType<T> = T Function(YamlMap, String, ResourceProvider);
class DartdocOptionError extends DartdocFailure {
DartdocOptionError(super.details);
}
class DartdocFileMissing extends DartdocOptionError {
DartdocFileMissing(super.details);
}
/// Defines the attributes of a category in the options file, corresponding to
/// the 'categories' keyword in the options file, and populated by the
/// [CategoryConfiguration] class.
class CategoryDefinition {
/// Internal name of the category, or null for the default category.
final String? name;
/// Displayed name of the category in docs, or null if there is none.
final String? _displayName;
/// Canonical path of the markdown file used to document this category
/// (or null if undocumented).
final String? documentationMarkdown;
/// The external items defined for this category.
final List<ExternalItem> externalItems;
CategoryDefinition(
this.name,
this._displayName,
this.documentationMarkdown, {
this.externalItems = const [],
});
/// Returns the [_displayName], if available, or else simply [name].
String get displayName => _displayName ?? name ?? '';
}
/// A configuration class that can interpret category definitions from a YAML
/// map.
class CategoryConfiguration {
/// A map of [CategoryDefinition.name] to [CategoryDefinition] objects.
final Map<String, CategoryDefinition> categoryDefinitions;
CategoryConfiguration._(this.categoryDefinitions);
static CategoryConfiguration get empty {
return CategoryConfiguration._(const {});
}
static CategoryConfiguration fromYamlMap(YamlMap yamlMap,
String canonicalYamlPath, ResourceProvider resourceProvider) {
var newCategoryDefinitions = <String, CategoryDefinition>{};
for (var MapEntry(:key, value: categoryMap) in yamlMap.entries) {
var name = key.toString();
if (categoryMap is Map) {
var displayName = categoryMap['displayName']?.toString();
var documentationMarkdown = categoryMap['markdown']?.toString();
if (documentationMarkdown != null) {
documentationMarkdown = resourceProvider.pathContext.canonicalize(
resourceProvider.pathContext
.join(canonicalYamlPath, documentationMarkdown));
if (!resourceProvider.getFile(documentationMarkdown).exists) {
throw DartdocFileMissing(
'In categories definition for $name, "markdown" resolves to '
'the missing file $documentationMarkdown');
}
}
final externalItems = <ExternalItem>[];
var items = categoryMap['external'] as List?;
if (items != null) {
for (var item in items) {
if (item is! Map) {
throw DartdocOptionError("'external' field should be a map");
} else {
final itemName = item['name'] as String?;
if (itemName == null) {
throw DartdocOptionError(
"'external' item missing required field 'name'");
}
final itemUrl = item['url'] as String?;
if (itemUrl == null) {
throw DartdocOptionError(
"'external' item missing required field 'url'");
}
externalItems.add(ExternalItem(
name: itemName,
url: itemUrl,
docs: item['docs'] as String?,
));
}
}
}
newCategoryDefinitions[name] = CategoryDefinition(
name,
displayName,
documentationMarkdown,
externalItems: externalItems,
);
}
}
return CategoryConfiguration._(newCategoryDefinitions);
}
}
/// A container class to keep track of where our yaml data came from.
class _YamlFileData {
/// The map from the yaml file.
final Map<Object?, Object?> data;
/// The path to the directory containing the yaml file.
final String canonicalDirectoryPath;
_YamlFileData(this.data, this.canonicalDirectoryPath);
}
/// An enum to specify the multiple different kinds of data an option might
/// represent.
enum OptionKind {
/// Make no assumptions about the option data; it may be of any type or
/// semantic.
other,
/// Option data references a filename or filenames with strings.
file,
/// Option data references a directory name or names with strings.
dir,
/// Option data references globs with strings that may cover many filenames
/// and/or directories.
glob,
}
/// Some DartdocOption subclasses need to keep track of where they
/// got the value from; this class contains those intermediate results
/// so that error messages can be more useful.
class _OptionValueWithContext<T> {
/// The value of the option at canonicalDirectoryPath.
final T value;
/// A canonical path to the directory where this value came from. May
/// be different from [DartdocOption.valueAt]'s `dir` parameter.
String canonicalDirectoryPath;
/// If non-null, the basename of the configuration file the value came from.
String? definingFile;
/// A [p.Context] variable initialized with 'canonicalDirectoryPath'.
p.Context pathContext;
/// Build a _OptionValueWithContext.
///
/// [path] is the path where this value came from (not required to be
/// canonical).
_OptionValueWithContext(this.value, String path, {this.definingFile})
: canonicalDirectoryPath = p.canonicalize(path),
pathContext = p.Context(current: p.canonicalize(path));
/// Assume value is a path, and attempt to resolve it.
///
/// Throws [UnsupportedError] if [T] isn't a [String] or [List<String>].
T get resolvedValue {
final value = this.value;
return switch (value) {
List<String>() => value
.map((v) => pathContext.canonicalizeWithTilde(v))
.cast<String>()
.toList(growable: false) as T,
String() => pathContext.canonicalizeWithTilde(value) as T,
Map<String, String>() =>
value.map<String, String>((String key, String value) {
return MapEntry(key, pathContext.canonicalizeWithTilde(value));
}) as T,
_ => throw UnsupportedError('Type $T is not supported for resolvedValue')
};
}
}
/// An abstract class for interacting with dartdoc options.
///
/// This class and its implementations allow Dartdoc to declare options that
/// are both defined in a configuration file and specified via the command line,
/// with searching the directory tree for a proper file and overriding file
/// options with the command line built-in. A number of sanity checks are also
/// built in to these classes so that file existence can be verified, types
/// constrained, and defaults provided.
///
/// This class caches the current working directory from the [ResourceProvider];
/// do not attempt to change it during the life of an instance.
///
/// Use via implementations [DartdocOptionSet], [DartdocOptionArgFile],
/// [DartdocOptionArgOnly], and [DartdocOptionFileOnly].
abstract class DartdocOption<T extends Object?> {
/// This is the value returned if we couldn't find one otherwise.
final T? defaultsTo;
/// Text string for help passed on in command line options.
final String help;
/// The name of this option, not including the names of any parents.
final String name;
/// Set to true if this option represents the name of a directory.
bool get isDir => optionIs == OptionKind.dir;
/// Set to true if this option represents the name of a file.
bool get isFile => optionIs == OptionKind.file;
/// Set to true if this option represents a glob.
bool get isGlob => optionIs == OptionKind.glob;
final OptionKind optionIs;
/// Set to true if DartdocOption subclasses should validate that the
/// directory or file exists. Does not imply validation of [defaultsTo],
/// and requires that one of [isDir] or [isFile] is set.
final bool mustExist;
final ResourceProvider resourceProvider;
DartdocOption(this.name, this.defaultsTo, this.help, this.optionIs,
this.mustExist, this._convertYamlToType, this.resourceProvider) {
if (isDir || isFile || isGlob) {
assert(_isString || _isListString || _isMapString);
}
if (mustExist) {
// Globs by definition don't have to exist.
assert(isDir || isFile);
}
}
/// Closure to convert yaml data into some other structure.
final ConvertYamlToType<T>? _convertYamlToType;
// The choice not to use reflection means there's some ugly type checking,
// somewhat more ugly than we'd have to do anyway to automatically convert
// command line arguments and yaml data to real types.
//
// Condense the ugly all in one place, this set of getters.
bool get _isString => _kStringVal is T;
bool get _isListString => _kListStringVal is T;
bool get _isMapString => _kMapStringVal is T;
bool get _isBool => _kBoolVal is T;
bool get _isInt => _kIntVal is T;
bool get _isDouble => _kDoubleVal is T;
String get _expectedTypeForDisplay {
if (_isString) return 'String';
if (_isListString) return 'list of Strings';
if (_isMapString) return 'map of String to String';
if (_isBool) return 'boolean';
if (_isInt) return 'int';
if (_isDouble) return 'double';
assert(false, 'Expecting an unknown type');
return '<<unknown>>';
}
final Map<String, _YamlFileData> __yamlAtCanonicalPathCache = {};
/// Implementation detail for [DartdocOptionFileOnly]. Make sure we use
/// the root node's cache.
Map<String, _YamlFileData> get _yamlAtCanonicalPathCache =>
root.__yamlAtCanonicalPathCache;
/// Throw [DartdocFileMissing] with a detailed error message indicating where
/// the error came from when a file or directory option is missing.
void _onMissing(
_OptionValueWithContext<T> valueWithContext, String missingFilename);
/// Call [_onMissing] for every path that does not exist.
void _validatePaths(_OptionValueWithContext<T> valueWithContext) {
if (!mustExist) return;
assert(isDir || isFile);
List<String> resolvedPaths;
var value = valueWithContext.value;
switch (value) {
case String():
resolvedPaths = [valueWithContext.resolvedValue as String];
case List<String>():
resolvedPaths = valueWithContext.resolvedValue as List<String>;
case Map<String, String>():
resolvedPaths = (valueWithContext.resolvedValue as Map<String, String>)
.values
.toList(growable: false);
default:
assert(
false,
'Trying to ensure existence of unsupported type '
'${valueWithContext.value.runtimeType}');
return;
}
for (var path in resolvedPaths) {
var f = isDir
? resourceProvider.getFolder(path)
: resourceProvider.getFile(path);
if (!f.exists) {
_onMissing(valueWithContext, path);
}
}
}
/// For a [List<String>] or [String] value, if [isDir] or [isFile] is set,
/// resolve paths in value relative to canonicalPath.
T? _handlePathsInContext(_OptionValueWithContext<T>? valueWithContext) {
if (valueWithContext?.value == null || !(isDir || isFile || isGlob)) {
return valueWithContext?.value;
}
_validatePaths(valueWithContext!);
return valueWithContext.resolvedValue;
}
/// Call this with argv to set up the argument overrides. Applies to all
/// children.
void parseArguments(List<String> arguments) =>
root._parseArguments(arguments);
ArgResults get _argResults => root.__argResults;
/// To avoid accessing early, call [add] on the option's parent before
/// looking up unless this is a [DartdocOptionRoot].
late final DartdocOption<dynamic> parent;
/// The [DartdocOptionRoot] containing this object.
DartdocOptionRoot get root {
DartdocOption<dynamic> p = this;
while (p is! DartdocOptionRoot) {
p = p.parent;
}
return p;
}
/// All object names starting at the root.
Iterable<String> get keys {
var keyList = <String>[];
DartdocOption<dynamic> option = this;
while (option is! DartdocOptionRoot) {
keyList.add(option.name);
option = option.parent;
}
keyList.add(option.name);
return keyList.reversed;
}
/// Direct children of this node, mapped by name.
final Map<String, DartdocOption> _children = {};
/// Return the calculated value of this option, given the directory as
/// context.
///
/// If [isFile] or [isDir] is set, the returned value will be transformed
/// into a canonical path relative to the current working directory
/// (for arguments) or the config file from which the value was derived.
///
/// May throw [DartdocOptionError] if a command line argument is of the wrong
/// type. If [mustExist] is true, will throw [DartdocFileMissing] for command
/// line parameters and file paths in config files that don't point to
/// corresponding files or directories.
// TODO(jcollins-g): use of dynamic. https://github.com/dart-lang/dartdoc/issues/2814
dynamic valueAt(Folder dir);
/// Calls [valueAt] with the working directory at the start of the program.
Object? valueAtCurrent() => valueAt(_directoryCurrent);
late final Folder _directoryCurrent =
resourceProvider.getFolder(_directoryCurrentPath);
late final String _directoryCurrentPath =
resourceProvider.pathContext.current;
/// Adds a DartdocOption to the children of this DartdocOption.
void add(DartdocOption option) {
if (_children.containsKey(option.name)) {
throw DartdocOptionError(
'Tried to add two children with the same name: ${option.name}');
}
_children[option.name] = option;
// TODO(jcollins-g): Consider a stronger refactor that doesn't rely on
// post-construction setup for [parent].
option.parent = this;
}
/// This method is called when parsing options to set up the [ArgParser].
void _addToArgParser(ArgParser argParser) {}
/// Adds a list of dartdoc options to the children of this DartdocOption.
void addAll(Iterable<DartdocOption> options) => options.forEach(add);
/// Get the immediate child of this node named [name].
DartdocOption operator [](String name) {
return _children[name]!;
}
/// Get the immediate child of this node named [name] and its value at [dir].
U getValueAs<U>(String name, Folder dir) =>
_children[name]?.valueAt(dir) as U;
/// Apply the function [visit] to this [DartdocOption] and all children.
void traverse(void Function(DartdocOption option) visit) {
visit(this);
for (var value in _children.values) {
value.traverse(visit);
}
}
}
/// A class that defaults to a value computed from a closure, but can be
/// overridden by a file.
class DartdocOptionFileSynth<T> extends DartdocOption<T>
with DartdocSyntheticOption<T>, _DartdocFileOption<T> {
@override
final T Function(DartdocSyntheticOption<T>, Folder) _compute;
DartdocOptionFileSynth(
String name, this._compute, ResourceProvider resourceProvider,
{String help = ''})
: super(
name, null, help, OptionKind.other, false, null, resourceProvider);
@override
bool get parentDirOverridesChild => false;
@override
T? valueAt(Folder dir) {
var result = _valueAtFromFile(dir);
if (result?.definingFile != null) {
return _handlePathsInContext(result);
}
return _valueAtFromSynthetic(dir);
}
@override
Never _onMissing(
_OptionValueWithContext<T> valueWithContext, String missingPath) {
if (valueWithContext.definingFile != null) {
_onMissingFromFiles(valueWithContext, missingPath);
} else {
_onMissingFromSynthetic(valueWithContext, missingPath);
}
}
}
/// A class that defaults to a value computed from a closure, but can
/// be overridden on the command line.
class DartdocOptionArgSynth<T> extends DartdocOption<T>
with DartdocSyntheticOption<T>, _DartdocArgOption<T> {
@override
final String? abbr;
@override
final bool negatable;
@override
final T Function(DartdocSyntheticOption<T>, Folder) _compute;
DartdocOptionArgSynth(
String name, this._compute, ResourceProvider resourceProvider,
{this.abbr,
bool mustExist = false,
String help = '',
OptionKind optionIs = OptionKind.other,
this.negatable = false})
: super(name, null, help, optionIs, mustExist, null, resourceProvider);
@override
bool get hide => false;
@override
bool get splitCommas => false;
@override
Never _onMissing(
_OptionValueWithContext<T> valueWithContext, String missingPath) {
_onMissingFromArgs(valueWithContext, missingPath);
}
@override
T? valueAt(Folder dir) {
if (_argResults.wasParsed(argName)) {
return _valueAtFromArgs();
}
return _valueAtFromSynthetic(dir);
}
}
/// A synthetic option takes a closure at construction time that computes
/// the value of the configuration option based on other configuration options.
/// Does not protect against closures that self-reference. If [mustExist] and
/// [isDir] or [isFile] is set, computed values will be resolved to canonical
/// paths.
class DartdocOptionSyntheticOnly<T> extends DartdocOption<T>
with DartdocSyntheticOption<T> {
@override
final T Function(DartdocSyntheticOption<T>, Folder) _compute;
DartdocOptionSyntheticOnly(
String name, this._compute, ResourceProvider resourceProvider,
{bool mustExist = false,
String help = '',
OptionKind optionIs = OptionKind.other})
: super(name, null, help, optionIs, mustExist, null, resourceProvider);
}
mixin DartdocSyntheticOption<T> implements DartdocOption<T> {
T Function(DartdocSyntheticOption<T>, Folder) get _compute;
@override
T? valueAt(Folder dir) => _valueAtFromSynthetic(dir);
T? _valueAtFromSynthetic(Folder dir) {
var context = _OptionValueWithContext<T>(_compute(this, dir), dir.path);
return _handlePathsInContext(context);
}
@override
Never _onMissing(
_OptionValueWithContext<T> valueWithContext, String missingPath) =>
_onMissingFromSynthetic(valueWithContext, missingPath);
Never _onMissingFromSynthetic(
_OptionValueWithContext<T> valueWithContext, String missingPath) {
var description = 'Synthetic configuration option $name from <internal>';
throw DartdocFileMissing(
'$description, computed as ${valueWithContext.value}, resolves to '
'missing path: "$missingPath"');
}
}
typedef OptionGenerator = List<DartdocOption> Function(PackageMetaProvider);
/// This is a [DartdocOptionSet] used as a root node.
class DartdocOptionRoot extends DartdocOptionSet {
DartdocOptionRoot(super.name, super.resourceProvider);
late final ArgParser _argParser =
ArgParser(usageLineLength: _usageLineLength);
/// Asynchronous factory that is the main entry point to initialize Dartdoc
/// options for use.
///
/// [name] is the top level key for the option set.
/// [optionGenerators] is a sequence of asynchronous functions that return
/// [DartdocOption]s that will be added to the new option set.
static DartdocOptionRoot fromOptionGenerators(
String name,
Iterable<OptionGenerator> optionGenerators,
PackageMetaProvider packageMetaProvider) {
var optionSet =
DartdocOptionRoot(name, packageMetaProvider.resourceProvider);
for (var generator in optionGenerators) {
optionSet.addAll(generator(packageMetaProvider));
}
return optionSet;
}
ArgParser get argParser => _argParser;
/// Initialized via [_parseArguments].
late ArgResults __argResults;
bool _argParserInitialized = false;
/// Parse these as string arguments (from argv) with the argument parser.
/// Call before calling [valueAt] for any [DartdocOptionArgOnly] or
/// [DartdocOptionArgFile] in this tree.
void _parseArguments(List<String> arguments) {
if (!_argParserInitialized) {
_argParserInitialized = true;
traverse((DartdocOption option) {
option._addToArgParser(argParser);
});
}
__argResults = argParser.parse(arguments);
}
/// Traverse skips this node, because it doesn't represent a real
/// configuration object.
@override
void traverse(void Function(DartdocOption option) visitor) {
for (var value in _children.values) {
value.traverse(visitor);
}
}
@override
DartdocOption get parent =>
throw UnsupportedError('Root nodes have no parent');
}
/// A [DartdocOption] that only contains other [DartdocOption]s and is not an
/// option itself.
class DartdocOptionSet extends DartdocOption<void> {
DartdocOptionSet(String name, ResourceProvider resourceProvider)
: super(name, null, '', OptionKind.other, false, null, resourceProvider);
/// [DartdocOptionSet] always has the null value.
@override
void valueAt(Folder dir) {}
/// Since we have no value, [_onMissing] does nothing.
@override
void _onMissing(
_OptionValueWithContext<void> valueWithContext, String missingFilename) {}
}
/// A [DartdocOption] that only exists as a command line argument. `--help` is a
/// good example.
class DartdocOptionArgOnly<T> extends DartdocOption<T>
with _DartdocArgOption<T> {
@override
final String? abbr;
@override
final bool hide;
@override
final bool negatable;
@override
final bool splitCommas;
DartdocOptionArgOnly(
String name, T defaultsTo, ResourceProvider resourceProvider,
{this.abbr,
bool mustExist = false,
String help = '',
this.hide = false,
OptionKind optionIs = OptionKind.other,
this.negatable = false,
this.splitCommas = false})
: super(name, defaultsTo, help, optionIs, mustExist, null,
resourceProvider);
}
/// A [DartdocOption] that works with command line arguments and
/// `dartdoc_options` files.
class DartdocOptionArgFile<T> extends DartdocOption<T>
with _DartdocArgOption<T>, _DartdocFileOption<T> {
@override
final bool negatable;
@override
final bool splitCommas;
DartdocOptionArgFile(
String name, T defaultsTo, ResourceProvider resourceProvider,
{bool mustExist = false,
String help = '',
OptionKind optionIs = OptionKind.other,
this.negatable = false,
this.splitCommas = false})
: super(name, defaultsTo, help, optionIs, mustExist, null,
resourceProvider);
@override
String? get abbr => null;
@override
bool get hide => false;
@override
bool get parentDirOverridesChild => false;
@override
Never _onMissing(
_OptionValueWithContext<T> valueWithContext, String missingPath) {
if (valueWithContext.definingFile != null) {
_onMissingFromFiles(valueWithContext, missingPath);
} else {
_onMissingFromArgs(valueWithContext, missingPath);
}
}
/// Try to find an explicit argument setting this value, and fall back first
/// to files, then to the default.
@override
T? valueAt(Folder dir) =>
_valueAtFromArgs() ?? _valueAtFromFiles(dir) ?? defaultsTo;
}
class DartdocOptionFileOnly<T> extends DartdocOption<T>
with _DartdocFileOption<T> {
@override
final bool parentDirOverridesChild;
DartdocOptionFileOnly(
String name, T defaultsTo, ResourceProvider resourceProvider,
{bool mustExist = false,
String help = '',
OptionKind optionIs = OptionKind.other,
this.parentDirOverridesChild = false,
ConvertYamlToType<T>? convertYamlToType})
: super(name, defaultsTo, help, optionIs, mustExist, convertYamlToType,
resourceProvider);
}
/// Implements checking for options contained in dartdoc.yaml.
mixin _DartdocFileOption<T> implements DartdocOption<T> {
/// If true, the parent directory's value overrides the child's.
///
/// Otherwise, the child's value overrides values in parents.
bool get parentDirOverridesChild;
/// The name of the option, with nested options joined by `.`. For example:
///
/// ```yaml
/// dartdoc:
/// stuff:
/// things:
/// ```
/// would have the name `things` and the fieldName `dartdoc.stuff.things`.
String get fieldName => keys.join('.');
@override
Never _onMissing(
_OptionValueWithContext<T> valueWithContext, String missingPath) =>
_onMissingFromFiles(valueWithContext, missingPath);
Never _onMissingFromFiles(
_OptionValueWithContext<T> valueWithContext, String missingPath) {
var dartdocYaml = resourceProvider.pathContext.join(
valueWithContext.canonicalDirectoryPath, valueWithContext.definingFile);
throw DartdocFileMissing('Field $fieldName from $dartdocYaml, set to '
'${valueWithContext.value}, resolves to missing path: "$missingPath"');
}
/// Searches for a value in configuration files relative to [dir], and if not
/// found, returns [defaultsTo].
@override
T? valueAt(Folder dir) => _valueAtFromFiles(dir) ?? defaultsTo;
/// The backing store for [_valueAtFromFiles].
final Map<String, T?> __valueAtFromFiles = {};
// The value of this option from files will not change unless files are
// modified during execution (not allowed in Dartdoc).
T? _valueAtFromFiles(Folder dir) {
var key = resourceProvider.pathContext.canonicalize(dir.path);
if (!__valueAtFromFiles.containsKey(key)) {
_OptionValueWithContext<T>? valueWithContext;
if (parentDirOverridesChild) {
valueWithContext = _valueAtFromFilesLastFound(dir);
} else {
valueWithContext = _valueAtFromFilesFirstFound(dir);
}
__valueAtFromFiles[key] = _handlePathsInContext(valueWithContext);
}
return __valueAtFromFiles[key];
}
/// Searches all dartdoc options files through parent directories, starting at
/// [folder], for the option and returns one once found.
_OptionValueWithContext<T>? _valueAtFromFilesFirstFound(Folder folder) {
_OptionValueWithContext<T>? value;
for (var dir in folder.withAncestors) {
value = _valueAtFromFile(dir);
if (value != null) break;
}
return value;
}
/// Searches all dartdoc_options files for the option, and returns the value
/// in the top-most parent directory `dartdoc_options.yaml` file it is
/// mentioned in.
_OptionValueWithContext<T>? _valueAtFromFilesLastFound(Folder folder) {
_OptionValueWithContext<T>? value;
for (var dir in folder.withAncestors) {
var tmpValue = _valueAtFromFile(dir);
if (tmpValue != null) value = tmpValue;
}
return value;
}
/// Returns null if not set in the YAML file in this directory (or its
/// parents).
_OptionValueWithContext<T>? _valueAtFromFile(Folder dir) {
var yamlFileData = _yamlAtDirectory(dir);
var contextPath = yamlFileData.canonicalDirectoryPath;
Object yamlData = yamlFileData.data;
for (var key in keys) {
if (yamlData is Map && !yamlData.containsKey(key)) return null;
yamlData = (yamlData as Map)[key] ?? {};
}
Object? returnData;
if (_isListString) {
if (yamlData is YamlList) {
returnData = [
for (var item in yamlData) item.toString(),
];
}
} else if (yamlData is YamlMap) {
var convertYamlToType = _convertYamlToType;
// TODO(jcollins-g): This special casing is unfortunate. Consider
// a refactor to extract yaml data conversion into closures 100% of the
// time or find a cleaner way to do this.
//
// A refactor probably would integrate resolvedValue for
// _OptionValueWithContext into the return data here, and would not have
// that be separate.
if (_isMapString && convertYamlToType == null) {
convertYamlToType = (YamlMap yamlMap, String canonicalYamlPath,
ResourceProvider resourceProvider) {
var returnData = <String, String>{};
for (var MapEntry(:key, :value) in yamlMap.entries) {
returnData[key.toString()] = value.toString();
}
return returnData as T;
};
}
if (convertYamlToType == null) {
throw UnsupportedError(
'$fieldName: convertYamlToType method not defined');
}
var canonicalDirectoryPath =
resourceProvider.pathContext.canonicalize(contextPath);
returnData =
convertYamlToType(yamlData, canonicalDirectoryPath, resourceProvider);
} else if (_isDouble) {
if (yamlData is num) {
returnData = yamlData.toDouble();
}
} else if (_isInt || _isString || _isBool) {
if (yamlData is T) {
returnData = yamlData;
}
} else {
throw UnsupportedError('Type $T is not supported');
}
if (returnData == null) {
throw DartdocOptionError('Error in dartdoc_options.yaml, $fieldName: '
'expecting a $_expectedTypeForDisplay, got `$yamlData`');
}
return _OptionValueWithContext(returnData as T, contextPath,
definingFile: 'dartdoc_options.yaml');
}
_YamlFileData _yamlAtDirectory(Folder folder) {
var canonicalPaths = <String>[];
var yamlData = _YamlFileData({}, _directoryCurrentPath);
for (var dir in folder.withAncestors) {
var canonicalPath =
resourceProvider.pathContext.canonicalize(folder.path);
if (_yamlAtCanonicalPathCache.containsKey(canonicalPath)) {
yamlData = _yamlAtCanonicalPathCache[canonicalPath]!;
break;
}
canonicalPaths.add(canonicalPath);
if (dir.exists) {
var dartdocOptionsFile = resourceProvider.getFile(resourceProvider
.pathContext
.join(dir.path, 'dartdoc_options.yaml'));
if (dartdocOptionsFile.exists) {
final yaml = loadYaml(dartdocOptionsFile.readAsStringSync());
// [loadYaml] will return `null` for empty (or all comment) YAML
// files, so we must check for that case.
if (yaml != null) {
yamlData = _YamlFileData(
yaml, resourceProvider.pathContext.canonicalize(dir.path));
}
break;
}
}
}
for (var canonicalPath in canonicalPaths) {
_yamlAtCanonicalPathCache[canonicalPath] = yamlData;
}
return yamlData;
}
}
/// Mixin class implementing command-line arguments for [DartdocOption].
mixin _DartdocArgOption<T> implements DartdocOption<T> {
/// For [ArgParser], set to true if the argument can be negated with `--no` on
/// the command line.
bool get negatable;
/// For [ArgParser], set to true if a single string argument will be broken
/// into a list on commas.
bool get splitCommas;
/// For [ArgParser], set to true to hide this from the help menu.
bool get hide;
/// For [ArgParser], set to a single character to have a short version of the
/// command line argument.
String? get abbr;
/// valueAt for arguments ignores the [dir] parameter and only uses command
/// line arguments and the current working directory to resolve the result.
@override
T? valueAt(Folder dir) => _valueAtFromArgs() ?? defaultsTo;
/// For passing in to [int.parse] and [double.parse] `onError'.
void _throwErrorForTypes(String value) {
String example;
if (defaultsTo is Map) {
example = 'key::value';
} else if (_isInt) {
example = '32';
} else if (_isDouble) {
example = '0.76';
} else {
throw UnimplementedError(
'Type for $name is not implemented in $_throwErrorForTypes');
}
throw DartdocOptionError(
'Invalid argument value: --$argName, set to "$value", must be a '
'$T. Example: --$argName $example');
}
/// Returns null if no argument was given on the command line.
T? _valueAtFromArgs() {
var valueWithContext = _valueAtFromArgsWithContext();
return _handlePathsInContext(valueWithContext);
}
@override
Never _onMissing(
_OptionValueWithContext<T> valueWithContext, String missingPath) =>
_onMissingFromArgs(valueWithContext, missingPath);
Never _onMissingFromArgs(
_OptionValueWithContext<T> valueWithContext, String missingPath) {
throw DartdocFileMissing(
'Argument --$argName, set to ${valueWithContext.value}, resolves to '
'missing path: "$missingPath"');
}
/// Generates an [_OptionValueWithContext] using the value of the argument
/// from the [_argResults] and the working directory from [_directoryCurrent].
///
/// Throws [UnsupportedError] if [T] is not a supported type.
_OptionValueWithContext<T>? _valueAtFromArgsWithContext() {
if (!_argResults.wasParsed(argName)) return null;
// Unlike in _DartdocFileOption, we throw here on inputs being invalid
// rather than silently proceeding. This is because the user presumably
// typed something wrong on the command line and can therefore fix it.
// dartdoc_option.yaml files from other packages may not be fully in the
// user's control.
if (_isBool || _isListString || _isString) {
return _OptionValueWithContext(
_argResults[argName], _directoryCurrentPath);
} else if (_isInt) {
var value = int.tryParse(_argResults[argName]);
if (value == null) _throwErrorForTypes(_argResults[argName]);
return _OptionValueWithContext(value as T, _directoryCurrentPath);
} else if (_isDouble) {
var value = double.tryParse(_argResults[argName]);
if (value == null) _throwErrorForTypes(_argResults[argName]);
return _OptionValueWithContext(value as T, _directoryCurrentPath);