26d0486de2
TBR This also fixes a race condition on Windows, where we sometimes consume not serialized/deserialized Kernel. R=ahe@google.com, kmillikin@google.com, paulberry@google.com, sigmund@google.com Bug: Change-Id: Ie40534d2562e75c05618e9ccb4fb86fc499184ff Reviewed-on: https://dart-review.googlesource.com/14260 Reviewed-by: Konstantin Shcheglov <scheglov@google.com>
73 lines
2.2 KiB
Dart
73 lines
2.2 KiB
Dart
// 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.
|
|
|
|
import 'package:kernel/ast.dart';
|
|
import 'package:kernel/binary/ast_to_binary.dart';
|
|
|
|
/// Writes libraries that satisfy the [predicate].
|
|
///
|
|
/// Only the referenced subset of canonical names is indexed and written,
|
|
/// so we don't waste time indexing all libraries of a program, when only
|
|
/// a tiny subset is used.
|
|
class LimitedBinaryPrinter extends BinaryPrinter {
|
|
final LibraryFilter predicate;
|
|
|
|
/// Excludes all uriToSource information.
|
|
///
|
|
/// By default the [predicate] above will only exclude canonical names and
|
|
/// kernel libraries, but it will still emit the sources for all libraries.
|
|
/// filtered by libraries matching [predicate].
|
|
// TODO(sigmund): provide a way to filter sources directly based on
|
|
// [predicate]. That requires special logic to handle sources from part files.
|
|
final bool excludeUriToSource;
|
|
|
|
LimitedBinaryPrinter(
|
|
Sink<List<int>> sink, this.predicate, this.excludeUriToSource)
|
|
: super(sink);
|
|
|
|
@override
|
|
void computeCanonicalNames(Program program) {
|
|
for (var library in program.libraries) {
|
|
if (predicate(library)) {
|
|
program.root
|
|
.getChildFromUri(library.importUri)
|
|
.bindTo(library.reference);
|
|
library.computeCanonicalNames();
|
|
}
|
|
}
|
|
}
|
|
|
|
@override
|
|
bool shouldWriteLibraryCanonicalNames(Library library) {
|
|
return predicate(library);
|
|
}
|
|
|
|
@override
|
|
void writeLibraries(Program program) {
|
|
var librariesToWrite = program.libraries.where(predicate).toList();
|
|
writeList(librariesToWrite, writeNode);
|
|
}
|
|
|
|
@override
|
|
void writeNode(Node node) {
|
|
if (node is Library && !predicate(node)) return;
|
|
super.writeNode(node);
|
|
}
|
|
|
|
@override
|
|
void writeProgramIndex(Program program, List<Library> libraries) {
|
|
var librariesToWrite = libraries.where(predicate).toList();
|
|
super.writeProgramIndex(program, librariesToWrite);
|
|
}
|
|
|
|
@override
|
|
void indexUris(Program program) {
|
|
if (!excludeUriToSource) {
|
|
super.indexUris(program);
|
|
} else {
|
|
// We pretend not to know any uris, thereby excluding all sources.
|
|
}
|
|
}
|
|
}
|