mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
71 lines
2.7 KiB
Dart
71 lines
2.7 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 '../base/file_system.dart';
|
|
import '../codegen.dart';
|
|
import '../convert.dart';
|
|
import '../globals.dart' as globals;
|
|
import '../project.dart';
|
|
import '../runner/flutter_command.dart';
|
|
|
|
class GenerateCommand extends FlutterCommand {
|
|
GenerateCommand() {
|
|
usesTargetOption();
|
|
}
|
|
@override
|
|
String get description => 'run code generators.';
|
|
|
|
@override
|
|
String get name => 'generate';
|
|
|
|
@override
|
|
bool get hidden => true;
|
|
|
|
@override
|
|
Future<FlutterCommandResult> runCommand() async {
|
|
final FlutterProject flutterProject = FlutterProject.current();
|
|
globals.printError(<String>[
|
|
'"flutter generate" is deprecated, use "dart pub run build_runner" instead. ',
|
|
'The following dependencies must be added to dev_dependencies in pubspec.yaml:',
|
|
'build_runner: 1.10.0',
|
|
for (Object dependency in flutterProject.builders?.keys ?? const <Object>[])
|
|
'$dependency: ${flutterProject.builders[dependency]}'
|
|
].join('\n'));
|
|
|
|
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.');
|
|
break;
|
|
}
|
|
if (codegenStatus == CodegenStatus.Succeeded) {
|
|
break;
|
|
}
|
|
}
|
|
// Check for errors output in the build_runner cache.
|
|
final Directory buildDirectory = flutterProject.dartTool.childDirectory('build');
|
|
final Directory errorCacheParent = buildDirectory.listSync().whereType<Directory>().firstWhere((Directory dir) {
|
|
return dir.childDirectory('error_cache').existsSync();
|
|
}, orElse: () => null);
|
|
if (errorCacheParent == null) {
|
|
return FlutterCommandResult.success();
|
|
}
|
|
final Directory errorCache = errorCacheParent.childDirectory('error_cache');
|
|
for (final File errorFile in errorCache.listSync(recursive: true).whereType<File>()) {
|
|
try {
|
|
final List<Object> errorData = json.decode(errorFile.readAsStringSync()) as List<Object>;
|
|
final List<Object> stackData = errorData[1] as List<Object>;
|
|
globals.printError(errorData.first as String);
|
|
globals.printError(stackData[0] as String);
|
|
globals.printError(stackData[1] as String);
|
|
globals.printError(StackTrace.fromString(stackData[2] as String).toString());
|
|
} on Exception catch (err) {
|
|
globals.printError('Error reading error in ${errorFile.path}: $err');
|
|
}
|
|
}
|
|
return FlutterCommandResult.fail();
|
|
}
|
|
}
|