Commit 8dc1634b authored by Phil Quitslund's avatar Phil Quitslund Committed by GitHub

Stop building unlinked summaries for packages. (#7538)

Stop building (unused) unlinked summaries for packages.

Improves update speed considerably (for `n` packages it saves us `n` needless calls to `pub get`).
parent 3312af7d
......@@ -9,7 +9,6 @@ import '../base/os.dart';
import '../base/process.dart';
import '../cache.dart';
import '../dart/pub.dart';
import '../dart/summary.dart';
import '../doctor.dart';
import '../globals.dart';
import '../runner/flutter_command.dart';
......@@ -51,8 +50,6 @@ class UpgradeCommand extends FlutterCommand {
if (code != 0)
throwToolExit(null, exitCode: code);
await buildUnlinkedForPackages(Cache.flutterRoot);
// Check for and download any engine and pkg/ updates.
// We run the 'flutter' shell script re-entrantly here
// so that it will download the updated Dart and so forth
......
import 'dart:async';
import 'package:analyzer/file_system/file_system.dart';
import 'package:analyzer/file_system/physical_file_system.dart';
import 'package:analyzer/src/context/builder.dart'; // ignore: implementation_imports
......@@ -7,15 +5,11 @@ import 'package:analyzer/src/dart/sdk/sdk.dart'; // ignore: implementation_impor
import 'package:analyzer/src/generated/engine.dart'; // ignore: implementation_imports
import 'package:analyzer/src/generated/source.dart'; // ignore: implementation_imports
import 'package:analyzer/src/summary/summary_file_builder.dart'; // ignore: implementation_imports
import 'package:analyzer/src/summary/pub_summary.dart'; // ignore: implementation_imports
import 'package:flutter_tools/src/base/logger.dart';
import 'package:flutter_tools/src/dart/pub.dart';
import 'package:flutter_tools/src/globals.dart';
import 'package:path/path.dart' as pathos;
import 'package:yaml/src/yaml_node.dart'; // ignore: implementation_imports
import '../base/file_system.dart' as file;
import '../base/io.dart';
/// Given the [skyEnginePath], locate corresponding `_embedder.yaml` and compose
/// the full embedded Dart SDK, and build the [outBundleName] file with its
......@@ -50,53 +44,3 @@ void buildSkyEngineSdkSummary(String skyEnginePath, String outBundleName, bool s
String outputPath = pathos.join(skyEnginePath, outBundleName);
file.fs.file(outputPath).writeAsBytesSync(bytes);
}
Future<Null> buildUnlinkedForPackages(String flutterPath) async {
PhysicalResourceProvider provider = PhysicalResourceProvider.INSTANCE;
PubSummaryManager manager =
new PubSummaryManager(provider, '__unlinked_$pid.ds');
Folder flutterFolder = provider.getFolder(flutterPath);
// Build in packages/.
Folder packagesFolder = flutterFolder.getChildAssumingFolder('packages');
await _buildUnlinkedForDirectChildren(manager, packagesFolder);
// Build in bin/cache/pkg/.
Folder pkgFolder = flutterFolder
.getChildAssumingFolder('bin')
.getChildAssumingFolder('cache')
.getChildAssumingFolder('pkg');
await _buildUnlinkedForDirectChildren(manager, pkgFolder);
}
Future<Null> _buildUnlinkedForDirectChildren(
PubSummaryManager manager,
Folder packagesFolder
) async {
for (Resource child in packagesFolder.getChildren()) {
if (child is Folder)
await _buildUnlinkedForPackage(manager, child);
}
}
Future<Null> _buildUnlinkedForPackage(
PubSummaryManager manager,
Folder packageFolder
) async {
if (packageFolder.exists) {
String name = packageFolder.shortName;
File pubspecFile = packageFolder.getChildAssumingFile('pubspec.yaml');
Folder libFolder = packageFolder.getChildAssumingFolder('lib');
if (pubspecFile.exists && libFolder.exists) {
await pubGet(directory: packageFolder.path);
Status status =
logger.startProgress('Building unlinked bundles for $name...');
try {
await manager.computeUnlinkedForFolder(name, libFolder);
} finally {
status.stop();
}
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment