
Other changes in this patch: - Make the 'flutter' tool say "Updating flutter tool..." when it calls pub get, to avoid confusion about what the pub get output is about. - Make the bash flutter tool call pub get when the revision has changed. (This was already happening on Windows.) - Fix a raft of bugs found by the analyzer. - Fix some style nits in various bits of code that happened to be near things the analyzer noticed. - Remove the logic in "flutter test" that would run "pub get", since upon further reflexion it was determined it didn't work anyway. We'll probably have to add better diagnostics here and say to run the updater script. - Remove the native velocity tracker script, since it was testing code that has since been removed. Notes on ignored warnings: - We ignore warnings in any packages that are not in the Flutter repo or in the author's current directory. - We ignore various irrelevant Strong Mode warnings. We still enable strong mode because even though it's not really relevant to our needs, it does (more or less accidentally) catch a few things that are helpful to us. - We allow CONSTANTS_LIKE_THIS, since we get some of those from other platforms that we are copying for sanity and consistency. - We allow one-member abstract classes since we have a number of them where it's perfectly reasonable. - We unfortunately still ignore warnings in mojom.dart autogenerated files. We should really fix those but that's a separate patch. - We verify the actual source file when we see the 'Name non-constant identifiers using lowerCamelCase.' lint, to allow one-letter variables that use capital letters (e.g. for physics expressions) and to allow multiple-underscore variable names. - We ignore all errors on lines that contain the following magic incantation and a "#" character: // analyzer doesn't like constructor tear-offs - For all remaining errors, if the line contains a comment of the form // analyzer says "..." ...then we ignore any errors that have that "..." string in them.
68 lines
1.9 KiB
Dart
68 lines
1.9 KiB
Dart
// Copyright 2015 The Chromium 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 'dart:async';
|
|
import 'dart:io';
|
|
|
|
import 'package:args/command_runner.dart';
|
|
|
|
import '../application_package.dart';
|
|
import '../build_configuration.dart';
|
|
import '../device.dart';
|
|
import '../toolchain.dart';
|
|
import 'flutter_command_runner.dart';
|
|
|
|
abstract class FlutterCommand extends Command {
|
|
FlutterCommandRunner get runner => super.runner;
|
|
|
|
/// Whether this command needs to be run from the root of a project.
|
|
bool get requiresProjectRoot => true;
|
|
|
|
List<BuildConfiguration> get buildConfigurations => runner.buildConfigurations;
|
|
|
|
Future downloadApplicationPackages() async {
|
|
if (applicationPackages == null)
|
|
applicationPackages = await ApplicationPackageStore.forConfigs(buildConfigurations);
|
|
}
|
|
|
|
Future downloadToolchain() async {
|
|
if (toolchain == null)
|
|
toolchain = await Toolchain.forConfigs(buildConfigurations);
|
|
}
|
|
|
|
void connectToDevices() {
|
|
if (devices == null)
|
|
devices = new DeviceStore.forConfigs(buildConfigurations);
|
|
}
|
|
|
|
Future downloadApplicationPackagesAndConnectToDevices() async {
|
|
await downloadApplicationPackages();
|
|
connectToDevices();
|
|
}
|
|
|
|
void inheritFromParent(FlutterCommand other) {
|
|
applicationPackages = other.applicationPackages;
|
|
toolchain = other.toolchain;
|
|
devices = other.devices;
|
|
}
|
|
|
|
Future<int> run() async {
|
|
if (requiresProjectRoot) {
|
|
if (!FileSystemEntity.isFileSync('pubspec.yaml')) {
|
|
stderr.writeln('No pubspec.yaml file found. '
|
|
'This command should be run from the root of a project.');
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
return await runInProject();
|
|
}
|
|
|
|
Future<int> runInProject();
|
|
|
|
ApplicationPackageStore applicationPackages;
|
|
Toolchain toolchain;
|
|
DeviceStore devices;
|
|
}
|