mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
275 lines
10 KiB
Dart
275 lines
10 KiB
Dart
// Copyright 2014 The Flutter Authors. 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:meta/meta.dart';
|
|
|
|
import 'artifacts.dart';
|
|
import 'base/context.dart';
|
|
import 'build_info.dart';
|
|
import 'compile.dart';
|
|
import 'dart/package_map.dart';
|
|
import 'globals.dart' as globals;
|
|
import 'project.dart';
|
|
|
|
// Arbitrarily chosen multi-root file scheme. This is used to configure the
|
|
// frontend_server to resolve a package uri to multiple filesystem directories.
|
|
// In this case, the source directory and a generated directory.
|
|
const String kMultiRootScheme = 'org-dartlang-app';
|
|
|
|
/// The [CodeGenerator] instance.
|
|
///
|
|
/// If [experimentalBuildEnabled] is false, this will contain an unsupported
|
|
/// implementation.
|
|
CodeGenerator get codeGenerator => context.get<CodeGenerator>();
|
|
|
|
/// A wrapper for a build_runner process which delegates to a generated
|
|
/// build script.
|
|
///
|
|
/// This is only enabled if [experimentalBuildEnabled] is true, and only for
|
|
/// external flutter users.
|
|
abstract class CodeGenerator {
|
|
const CodeGenerator();
|
|
|
|
/// Starts a persistent code generating daemon.
|
|
///
|
|
/// The defines of the daemon command are the arguments required in the
|
|
/// flutter_build kernel builder.
|
|
Future<CodegenDaemon> daemon(FlutterProject flutterProject);
|
|
|
|
// Generates a synthetic package under .dart_tool/flutter_tool which is in turn
|
|
// used to generate a build script.
|
|
Future<void> generateBuildScript(FlutterProject flutterProject);
|
|
|
|
/// Create generated packages file which adds a multi-root scheme to the user's
|
|
/// project directory. Currently we only replace the root package with a multi-root
|
|
/// scheme. To support codegen on arbitrary packages we would need to do
|
|
/// this for each dependency.
|
|
void updatePackages(FlutterProject flutterProject) {
|
|
final String oldPackagesContents = globals.fs.file(PackageMap.globalPackagesPath).readAsStringSync();
|
|
final String appName = flutterProject.manifest.appName;
|
|
final String newPackagesContents = oldPackagesContents.replaceFirst('$appName:lib/', '$appName:$kMultiRootScheme:/');
|
|
final String generatedPackagesPath = globals.fs.path.setExtension(PackageMap.globalPackagesPath, '.generated');
|
|
globals.fs.file(generatedPackagesPath).writeAsStringSync(newPackagesContents);
|
|
}
|
|
}
|
|
|
|
class UnsupportedCodeGenerator extends CodeGenerator {
|
|
const UnsupportedCodeGenerator();
|
|
|
|
@override
|
|
Future<void> generateBuildScript(FlutterProject flutterProject) {
|
|
throw UnsupportedError('build_runner is not currently supported.');
|
|
}
|
|
|
|
@override
|
|
Future<CodegenDaemon> daemon(FlutterProject flutterProject) {
|
|
throw UnsupportedError('build_runner is not currently supported.');
|
|
}
|
|
}
|
|
|
|
abstract class CodegenDaemon {
|
|
/// Whether the previously enqueued build was successful.
|
|
Stream<CodegenStatus> get buildResults;
|
|
|
|
CodegenStatus get lastStatus;
|
|
|
|
/// Starts a new build.
|
|
void startBuild();
|
|
}
|
|
|
|
/// An implementation of the [KernelCompiler] which delegates to build_runner.
|
|
///
|
|
/// Only a subset of the arguments provided to the [KernelCompiler] are
|
|
/// supported here. Using the build pipeline implies a fixed multi-root
|
|
/// filesystem and requires a pubspec.
|
|
class CodeGeneratingKernelCompiler implements KernelCompiler {
|
|
const CodeGeneratingKernelCompiler();
|
|
|
|
static const KernelCompiler _delegate = KernelCompiler();
|
|
|
|
@override
|
|
Future<CompilerOutput> compile({
|
|
String mainPath,
|
|
String outputFilePath,
|
|
bool linkPlatformKernelIn = false,
|
|
bool aot = false,
|
|
@required BuildMode buildMode,
|
|
bool trackWidgetCreation,
|
|
List<String> extraFrontEndOptions,
|
|
// These arguments are currently unused.
|
|
String sdkRoot,
|
|
String packagesPath,
|
|
List<String> fileSystemRoots,
|
|
String fileSystemScheme,
|
|
String depFilePath,
|
|
TargetModel targetModel = TargetModel.flutter,
|
|
String initializeFromDill,
|
|
String platformDill,
|
|
List<String> dartDefines,
|
|
}) async {
|
|
if (fileSystemRoots != null || fileSystemScheme != null || depFilePath != null || targetModel != null || sdkRoot != null || packagesPath != null) {
|
|
globals.printTrace('fileSystemRoots, fileSystemScheme, depFilePath, targetModel, '
|
|
'sdkRoot, packagesPath are not supported when using the experimental '
|
|
'build* pipeline');
|
|
}
|
|
final FlutterProject flutterProject = FlutterProject.current();
|
|
codeGenerator.updatePackages(flutterProject);
|
|
final CodegenDaemon codegenDaemon = await codeGenerator.daemon(flutterProject);
|
|
codegenDaemon.startBuild();
|
|
await for (final CodegenStatus codegenStatus in codegenDaemon.buildResults) {
|
|
if (codegenStatus == CodegenStatus.Failed) {
|
|
globals.printError('Code generation failed, build may have compile errors.');
|
|
break;
|
|
}
|
|
if (codegenStatus == CodegenStatus.Succeeded) {
|
|
break;
|
|
}
|
|
}
|
|
return _delegate.compile(
|
|
mainPath: mainPath,
|
|
outputFilePath: outputFilePath,
|
|
linkPlatformKernelIn: linkPlatformKernelIn,
|
|
aot: aot,
|
|
buildMode: buildMode,
|
|
trackWidgetCreation: trackWidgetCreation,
|
|
extraFrontEndOptions: extraFrontEndOptions,
|
|
sdkRoot: sdkRoot,
|
|
packagesPath: PackageMap.globalGeneratedPackagesPath,
|
|
fileSystemRoots: <String>[
|
|
globals.fs.path.join(flutterProject.generated.path, 'lib${globals.platform.pathSeparator}'),
|
|
globals.fs.path.join(flutterProject.directory.path, 'lib${globals.platform.pathSeparator}'),
|
|
],
|
|
fileSystemScheme: kMultiRootScheme,
|
|
depFilePath: depFilePath,
|
|
targetModel: targetModel,
|
|
initializeFromDill: initializeFromDill,
|
|
dartDefines: dartDefines,
|
|
);
|
|
}
|
|
}
|
|
|
|
/// An implementation of a [ResidentCompiler] which runs a [BuildRunner] before
|
|
/// talking to the CFE.
|
|
class CodeGeneratingResidentCompiler implements ResidentCompiler {
|
|
CodeGeneratingResidentCompiler._(this._residentCompiler, this._codegenDaemon, this._flutterProject);
|
|
|
|
/// Creates a new [ResidentCompiler] and configures a [BuildDaemonClient] to
|
|
/// run builds.
|
|
///
|
|
/// If `runCold` is true, then no codegen daemon will be created. Instead the
|
|
/// compiler will only be initialized with the correct configuration for
|
|
/// codegen mode.
|
|
static Future<ResidentCompiler> create({
|
|
@required FlutterProject flutterProject,
|
|
@required BuildMode buildMode,
|
|
bool trackWidgetCreation = false,
|
|
CompilerMessageConsumer compilerMessageConsumer = globals.printError,
|
|
bool unsafePackageSerialization = false,
|
|
String outputPath,
|
|
String initializeFromDill,
|
|
bool runCold = false,
|
|
TargetPlatform targetPlatform,
|
|
@required List<String> dartDefines,
|
|
}) async {
|
|
codeGenerator.updatePackages(flutterProject);
|
|
final ResidentCompiler residentCompiler = ResidentCompiler(
|
|
globals.artifacts.getArtifactPath(
|
|
Artifact.flutterPatchedSdkPath,
|
|
platform: targetPlatform,
|
|
mode: buildMode,
|
|
),
|
|
buildMode: buildMode,
|
|
trackWidgetCreation: trackWidgetCreation,
|
|
packagesPath: PackageMap.globalGeneratedPackagesPath,
|
|
fileSystemRoots: <String>[
|
|
globals.fs.path.join(flutterProject.generated.path, 'lib${globals.platform.pathSeparator}'),
|
|
globals.fs.path.join(flutterProject.directory.path, 'lib${globals.platform.pathSeparator}'),
|
|
],
|
|
fileSystemScheme: kMultiRootScheme,
|
|
targetModel: TargetModel.flutter,
|
|
unsafePackageSerialization: unsafePackageSerialization,
|
|
initializeFromDill: initializeFromDill,
|
|
dartDefines: dartDefines,
|
|
);
|
|
if (runCold) {
|
|
return residentCompiler;
|
|
}
|
|
final CodegenDaemon codegenDaemon = await codeGenerator.daemon(flutterProject);
|
|
codegenDaemon.startBuild();
|
|
final CodegenStatus status = await codegenDaemon.buildResults.firstWhere((CodegenStatus status) {
|
|
return status == CodegenStatus.Succeeded || status == CodegenStatus.Failed;
|
|
});
|
|
if (status == CodegenStatus.Failed) {
|
|
globals.printError('Code generation failed, build may have compile errors.');
|
|
}
|
|
return CodeGeneratingResidentCompiler._(residentCompiler, codegenDaemon, flutterProject);
|
|
}
|
|
|
|
final ResidentCompiler _residentCompiler;
|
|
final CodegenDaemon _codegenDaemon;
|
|
final FlutterProject _flutterProject;
|
|
|
|
@override
|
|
void accept() {
|
|
_residentCompiler.accept();
|
|
}
|
|
|
|
@override
|
|
Future<CompilerOutput> compileExpression(String expression, List<String> definitions, List<String> typeDefinitions, String libraryUri, String klass, bool isStatic) {
|
|
return _residentCompiler.compileExpression(expression, definitions, typeDefinitions, libraryUri, klass, isStatic);
|
|
}
|
|
|
|
@override
|
|
Future<CompilerOutput> recompile(String mainPath, List<Uri> invalidatedFiles, {String outputPath, String packagesFilePath}) async {
|
|
if (_codegenDaemon.lastStatus != CodegenStatus.Succeeded && _codegenDaemon.lastStatus != CodegenStatus.Failed) {
|
|
await _codegenDaemon.buildResults.firstWhere((CodegenStatus status) {
|
|
return status == CodegenStatus.Succeeded || status == CodegenStatus.Failed;
|
|
});
|
|
}
|
|
if (_codegenDaemon.lastStatus == CodegenStatus.Failed) {
|
|
globals.printError('Code generation failed, build may have compile errors.');
|
|
}
|
|
// Update the generated packages file if the original packages file has changes.
|
|
if (globals.fs.statSync(PackageMap.globalPackagesPath).modified.millisecondsSinceEpoch >
|
|
globals.fs.statSync(PackageMap.globalGeneratedPackagesPath).modified.millisecondsSinceEpoch) {
|
|
codeGenerator.updatePackages(_flutterProject);
|
|
invalidatedFiles.add(globals.fs.file(PackageMap.globalGeneratedPackagesPath).uri);
|
|
}
|
|
return _residentCompiler.recompile(
|
|
mainPath,
|
|
invalidatedFiles,
|
|
outputPath: outputPath,
|
|
packagesFilePath: PackageMap.globalGeneratedPackagesPath,
|
|
);
|
|
}
|
|
|
|
@override
|
|
Future<CompilerOutput> reject() {
|
|
return _residentCompiler.reject();
|
|
}
|
|
|
|
@override
|
|
void reset() {
|
|
_residentCompiler.reset();
|
|
}
|
|
|
|
@override
|
|
Future<void> shutdown() {
|
|
return _residentCompiler.shutdown();
|
|
}
|
|
}
|
|
|
|
/// The current status of a codegen build.
|
|
enum CodegenStatus {
|
|
/// The build has started running.
|
|
///
|
|
/// If this is the current status when running a hot reload, an additional build does
|
|
/// not need to be started.
|
|
Started,
|
|
/// The build succeeded.
|
|
Succeeded,
|
|
/// The build failed.
|
|
Failed
|
|
}
|