-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathpackage_meta.dart
436 lines (355 loc) · 12.5 KB
/
package_meta.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
// Copyright (c) 2014, 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.
library dartdoc.package_meta;
import 'dart:convert';
import 'dart:io';
import 'package:analyzer/dart/element/element.dart';
import 'package:dartdoc/dartdoc.dart';
import 'package:path/path.dart' as path;
import 'package:yaml/yaml.dart';
import 'logging.dart';
Map<String, PackageMeta> _packageMetaCache = {};
Encoding utf8AllowMalformed = Utf8Codec(allowMalformed: true);
Directory get defaultSdkDir {
Directory sdkDir = File(Platform.resolvedExecutable).parent.parent;
assert(path.equals(sdkDir.path, PackageMeta.sdkDirParent(sdkDir).path));
return sdkDir;
}
class PackageMetaFailure extends DartdocFailure {
PackageMetaFailure(String message) : super(message);
}
/// For each list in this list, at least one of the given paths must exist
/// for this to be detected as an SDK.
final List<List<String>> __sdkDirFilePathsPosix = [
['bin/dart.bat', 'bin/dart.exe', 'bin/dart'],
['bin/pub.bat', 'bin/pub'],
['lib/core/core.dart'],
];
abstract class PackageMeta {
final Directory dir;
PackageMeta(this.dir);
static List<List<String>> __sdkDirFilePaths;
static List<List<String>> get _sdkDirFilePaths {
if (__sdkDirFilePaths == null) {
__sdkDirFilePaths = [];
if (Platform.isWindows) {
for (List<String> paths in __sdkDirFilePathsPosix) {
List<String> windowsPaths = [];
for (String p in paths) {
windowsPaths.add(
path.joinAll(path.Context(style: path.Style.posix).split(p)));
}
__sdkDirFilePaths.add(windowsPaths);
}
} else {
__sdkDirFilePaths = __sdkDirFilePathsPosix;
}
}
return __sdkDirFilePaths;
}
/// Returns the directory of the SDK if the given directory is inside a Dart
/// SDK. Returns null if the directory isn't a subdirectory of the SDK.
static final Map<String, Directory> _sdkDirParent = {};
static Directory sdkDirParent(Directory dir) {
String dirPathCanonical = path.canonicalize(dir.path);
if (!_sdkDirParent.containsKey(dirPathCanonical)) {
_sdkDirParent[dirPathCanonical] = null;
while (dir.existsSync()) {
if (_sdkDirFilePaths.every((List<String> l) {
return l.any((f) => File(path.join(dir.path, f)).existsSync());
})) {
_sdkDirParent[dirPathCanonical] = dir;
break;
}
if (path.equals(dir.path, dir.parent.path)) break;
dir = dir.parent;
}
}
return _sdkDirParent[dirPathCanonical];
}
@override
bool operator ==(other) {
if (other is! PackageMeta) return false;
return path.equals(dir.absolute.path, other.dir.absolute.path);
}
@override
int get hashCode => path.hash(dir.absolute.path);
/// Use this instead of fromDir where possible.
factory PackageMeta.fromElement(
LibraryElement libraryElement, String sdkDir) {
if (libraryElement.isInSdk) {
return PackageMeta.fromDir(Directory(sdkDir));
}
return PackageMeta.fromDir(
File(path.canonicalize(libraryElement.source.fullName)).parent);
}
factory PackageMeta.fromFilename(String filename) {
return PackageMeta.fromDir(File(filename).parent);
}
/// This factory is guaranteed to return the same object for any given
/// [dir.absolute.path]. Multiple [dir.absolute.path]s will resolve to the
/// same object if they are part of the same package. Returns null
/// if the directory is not part of a known package.
factory PackageMeta.fromDir(Directory dir) {
Directory original = dir.absolute;
dir = original;
if (!original.existsSync()) {
throw PackageMetaFailure(
"fatal error: unable to locate the input directory at ${original.path}.");
}
if (!_packageMetaCache.containsKey(dir.path)) {
PackageMeta packageMeta;
// There are pubspec.yaml files inside the SDK. Ignore them.
Directory parentSdkDir = sdkDirParent(dir);
if (parentSdkDir != null) {
packageMeta = _SdkMeta(parentSdkDir);
} else {
while (dir.existsSync()) {
File pubspec = File(path.join(dir.path, 'pubspec.yaml'));
if (pubspec.existsSync()) {
packageMeta = _FilePackageMeta(dir);
break;
}
// Allow a package to be at root (possible in a Windows setting with
// drive letter mappings).
if (path.equals(dir.path, dir.parent.path)) break;
dir = dir.parent.absolute;
}
}
_packageMetaCache[dir.absolute.path] = packageMeta;
}
return _packageMetaCache[dir.absolute.path];
}
/// Returns true if this represents a 'Dart' SDK. A package can be part of
/// Dart and Flutter at the same time, but if we are part of a Dart SDK
/// sdkType should never return null.
bool get isSdk;
/// Returns 'Dart' or 'Flutter' (preferentially, 'Flutter' when the answer is
/// "both"), or null if this package is not part of a SDK.
String sdkType(String flutterRootPath) {
if (flutterRootPath != null) {
String flutterPackages = path.join(flutterRootPath, 'packages');
String flutterBinCache = path.join(flutterRootPath, 'bin', 'cache');
/// Don't include examples or other non-SDK components as being the
/// "Flutter SDK".
if (path.isWithin(
flutterPackages, path.canonicalize(dir.absolute.path)) ||
path.isWithin(
flutterBinCache, path.canonicalize(dir.absolute.path))) {
return 'Flutter';
}
}
return isSdk ? 'Dart' : null;
}
bool get needsPubGet => false;
bool get requiresFlutter;
void runPubGet(String flutterRoot);
String get name;
/// null if not a hosted pub package. If set, the hostname
/// that the package is hosted at -- usually 'pub.dartlang.org'.
String get hostedAt;
String get version;
String get description;
String get homepage;
String _resolvedDir;
String get resolvedDir {
if (_resolvedDir == null) {
_resolvedDir = dir.resolveSymbolicLinksSync();
}
return _resolvedDir;
}
FileContents getReadmeContents();
FileContents getLicenseContents();
FileContents getChangelogContents();
/// Returns true if we are a valid package, valid enough to generate docs.
bool get isValid => getInvalidReasons().isEmpty;
/// Returns a list of reasons this package is invalid, or an
/// empty list if no reasons found.
///
/// If the list is empty, this package is valid.
List<String> getInvalidReasons();
@override
String toString() => name;
}
class FileContents {
final File file;
FileContents._(this.file);
factory FileContents(File file) => file == null ? null : FileContents._(file);
String get contents => file.readAsStringSync(encoding: utf8AllowMalformed);
bool get isMarkdown => file.path.toLowerCase().endsWith('.md');
@override
String toString() => file.path;
}
class _FilePackageMeta extends PackageMeta {
FileContents _readme;
FileContents _license;
FileContents _changelog;
Map _pubspec;
_FilePackageMeta(Directory dir) : super(dir) {
File f = File(path.join(dir.path, 'pubspec.yaml'));
if (f.existsSync()) {
_pubspec = loadYaml(f.readAsStringSync());
} else {
_pubspec = {};
}
}
bool _setHostedAt = false;
String _hostedAt;
@override
String get hostedAt {
if (!_setHostedAt) {
_setHostedAt = true;
// Search for 'hosted/host.domain' as the immediate parent directories,
// and verify that a directory _temp exists alongside hosted. Those
// seem to be the only guaranteed things to exist if we're from a pub
// cache.
//
// TODO(jcollins-g): This is a funky heuristic. Make this better somehow,
// possibly by calculating hosting directly from pubspec.yaml or importing
// a pub library to do this.
// People could have a pub cache at root with Windows drive mappings.
if (path.split(path.canonicalize(dir.path)).length >= 3) {
String pubCacheRoot = dir.parent.parent.parent.path;
String hosted = path.canonicalize(dir.parent.parent.path);
String hostname = path.canonicalize(dir.parent.path);
if (path.basename(hosted) == 'hosted' &&
Directory(path.join(pubCacheRoot, '_temp')).existsSync()) {
_hostedAt = path.basename(hostname);
}
}
}
return _hostedAt;
}
@override
bool get isSdk => false;
@override
bool get needsPubGet =>
!(File(path.join(dir.path, '.dart_tool', 'package_config.json'))
.existsSync());
@override
void runPubGet(String flutterRoot) {
String binPath;
List<String> parameters;
if (requiresFlutter) {
binPath = path.join(flutterRoot, 'bin', 'flutter');
parameters = ['pub', 'get'];
} else {
binPath = path.join(path.dirname(Platform.resolvedExecutable), 'pub');
parameters = ['get'];
}
if (Platform.isWindows) binPath += '.bat';
ProcessResult result =
Process.runSync(binPath, parameters, workingDirectory: dir.path);
var trimmedStdout = (result.stdout as String).trim();
if (trimmedStdout.isNotEmpty) {
logInfo(trimmedStdout);
}
if (result.exitCode != 0) {
StringBuffer buf = StringBuffer();
buf.writeln('${result.stdout}');
buf.writeln('${result.stderr}');
throw DartdocFailure('pub get failed: ${buf.toString().trim()}');
}
}
@override
String get name => _pubspec['name'];
@override
String get version => _pubspec['version'];
@override
String get description => _pubspec['description'];
@override
String get homepage => _pubspec['homepage'];
@override
bool get requiresFlutter =>
_pubspec['environment']?.containsKey('flutter') == true ||
_pubspec['dependencies']?.containsKey('flutter') == true;
@override
FileContents getReadmeContents() {
if (_readme != null) return _readme;
_readme = FileContents(_locate(dir, ['readme.md', 'readme.txt', 'readme']));
return _readme;
}
@override
FileContents getLicenseContents() {
if (_license != null) return _license;
_license =
FileContents(_locate(dir, ['license.md', 'license.txt', 'license']));
return _license;
}
@override
FileContents getChangelogContents() {
if (_changelog != null) return _changelog;
_changelog = FileContents(
_locate(dir, ['changelog.md', 'changelog.txt', 'changelog']));
return _changelog;
}
/// Returns a list of reasons this package is invalid, or an
/// empty list if no reasons found.
@override
List<String> getInvalidReasons() {
List<String> reasons = <String>[];
if (_pubspec == null || _pubspec.isEmpty) {
reasons.add('no pubspec.yaml found');
} else if (!_pubspec.containsKey('name')) {
reasons.add('no name found in pubspec.yaml');
}
return reasons;
}
}
File _locate(Directory dir, List<String> fileNames) {
List<File> files = dir.listSync().whereType<File>().toList();
for (String name in fileNames) {
for (File f in files) {
String baseName = path.basename(f.path).toLowerCase();
if (baseName == name) return f;
if (baseName.startsWith(name)) return f;
}
}
return null;
}
class _SdkMeta extends PackageMeta {
String sdkReadmePath;
_SdkMeta(Directory dir) : super(dir) {
sdkReadmePath = path.join(dir.path, 'lib', 'api_readme.md');
}
@override
String get hostedAt => null;
@override
bool get isSdk => true;
@override
void runPubGet(String flutterRoot) {
throw 'unsupported operation';
}
@override
String get name => 'Dart';
@override
String get version {
File versionFile = File(path.join(dir.path, 'version'));
if (versionFile.existsSync()) return versionFile.readAsStringSync().trim();
return 'unknown';
}
@override
String get description =>
'The Dart SDK is a set of tools and libraries for the '
'Dart programming language.';
@override
String get homepage => 'https://github.com/dart-lang/sdk';
@override
bool get requiresFlutter => false;
@override
FileContents getReadmeContents() {
File f = File(path.join(dir.path, 'lib', 'api_readme.md'));
if (!f.existsSync()) {
f = File(path.join(dir.path, 'api_readme.md'));
}
return f.existsSync() ? FileContents(f) : null;
}
@override
List<String> getInvalidReasons() => [];
@override
FileContents getLicenseContents() => null;
// TODO: The changelog doesn't seem to be available in the sdk.
@override
FileContents getChangelogContents() => null;
}