Commit 1ae0a76c authored by Devon Carew's avatar Devon Carew

warn when flutter doesn't match the pubspec version (#4109)

parent 4962656b
...@@ -7,7 +7,7 @@ import 'dart:io'; ...@@ -7,7 +7,7 @@ import 'dart:io';
import 'package:package_config/packages_file.dart' as packages_file; import 'package:package_config/packages_file.dart' as packages_file;
import 'package:path/path.dart' as path; import 'package:path/path.dart' as path;
const String _kPackages = '.packages'; const String kPackagesFileName = '.packages';
Map<String, Uri> _parse(String packagesPath) { Map<String, Uri> _parse(String packagesPath) {
List<int> source = new File(packagesPath).readAsBytesSync(); List<int> source = new File(packagesPath).readAsBytesSync();
......
...@@ -15,8 +15,8 @@ import 'package:yaml/yaml.dart'; ...@@ -15,8 +15,8 @@ import 'package:yaml/yaml.dart';
import 'base/file_system.dart' show ensureDirectoryExists; import 'base/file_system.dart' show ensureDirectoryExists;
import 'base/process.dart'; import 'base/process.dart';
import 'cache.dart'; import 'cache.dart';
import 'dart/package_map.dart';
import 'globals.dart'; import 'globals.dart';
import 'package_map.dart';
import 'toolchain.dart'; import 'toolchain.dart';
import 'zip.dart'; import 'zip.dart';
......
...@@ -9,11 +9,11 @@ import 'package:args/command_runner.dart'; ...@@ -9,11 +9,11 @@ import 'package:args/command_runner.dart';
import '../application_package.dart'; import '../application_package.dart';
import '../build_info.dart'; import '../build_info.dart';
import '../dart/package_map.dart';
import '../dart/pub.dart'; import '../dart/pub.dart';
import '../device.dart'; import '../device.dart';
import '../flx.dart' as flx; import '../flx.dart' as flx;
import '../globals.dart'; import '../globals.dart';
import '../package_map.dart';
import '../usage.dart'; import '../usage.dart';
import 'flutter_command_runner.dart'; import 'flutter_command_runner.dart';
......
...@@ -14,8 +14,8 @@ import '../base/context.dart'; ...@@ -14,8 +14,8 @@ import '../base/context.dart';
import '../base/logger.dart'; import '../base/logger.dart';
import '../base/process.dart'; import '../base/process.dart';
import '../cache.dart'; import '../cache.dart';
import '../dart/package_map.dart';
import '../globals.dart'; import '../globals.dart';
import '../package_map.dart';
import '../toolchain.dart'; import '../toolchain.dart';
import '../version.dart'; import '../version.dart';
...@@ -50,10 +50,10 @@ class FlutterCommandRunner extends CommandRunner { ...@@ -50,10 +50,10 @@ class FlutterCommandRunner extends CommandRunner {
help: 'Suppress analytics reporting when this command runs.'); help: 'Suppress analytics reporting when this command runs.');
String packagesHelp; String packagesHelp;
if (FileSystemEntity.isFileSync('.packages')) if (FileSystemEntity.isFileSync(kPackagesFileName))
packagesHelp = '\n(defaults to ".packages")'; packagesHelp = '\n(defaults to "$kPackagesFileName")';
else else
packagesHelp = '\n(required, since the current directory does not contain a ".packages" file)'; packagesHelp = '\n(required, since the current directory does not contain a "$kPackagesFileName" file)';
argParser.addOption('packages', argParser.addOption('packages',
hide: !verboseHelp, hide: !verboseHelp,
help: 'Path to your ".packages" file.$packagesHelp'); help: 'Path to your ".packages" file.$packagesHelp');
...@@ -139,10 +139,11 @@ class FlutterCommandRunner extends CommandRunner { ...@@ -139,10 +139,11 @@ class FlutterCommandRunner extends CommandRunner {
if (globalResults['suppress-analytics']) if (globalResults['suppress-analytics'])
flutterUsage.suppressAnalytics = true; flutterUsage.suppressAnalytics = true;
_checkFlutterCopy(); if (!_checkFlutterCopy())
return new Future<int>.value(1);
PackageMap.instance = new PackageMap(path.normalize(path.absolute( PackageMap.instance = new PackageMap(path.normalize(path.absolute(
globalResults.wasParsed('packages') ? globalResults['packages'] : '.packages' globalResults.wasParsed('packages') ? globalResults['packages'] : kPackagesFileName
))); )));
// See if the user specified a specific device. // See if the user specified a specific device.
...@@ -258,18 +259,20 @@ class FlutterCommandRunner extends CommandRunner { ...@@ -258,18 +259,20 @@ class FlutterCommandRunner extends CommandRunner {
.toList(); .toList();
} }
/// Check that the Flutter being run is the one we're expecting. bool _checkFlutterCopy() {
void _checkFlutterCopy() { // If the current directory is contained by a flutter repo, check that it's
// the same flutter that is currently running.
String directory = path.normalize(path.absolute(Directory.current.path)); String directory = path.normalize(path.absolute(Directory.current.path));
// Check if the cwd is a flutter dir. // Check if the cwd is a flutter dir.
while (directory.isNotEmpty) { while (directory.isNotEmpty) {
if (_isDirectoryFlutterRepo(directory)) { if (_isDirectoryFlutterRepo(directory)) {
if (directory != Cache.flutterRoot) { if (directory != Cache.flutterRoot) {
// Warn, but continue execution.
printError( printError(
'Warning: the active Flutter is not the one from the current directory.\n' 'Warning - the active Flutter is not the one from the current directory:\n'
' Active Flutter : ${Cache.flutterRoot}\n' ' active Flutter : ${Cache.flutterRoot}\n'
' Current directory: $directory\n' ' current directory: $directory\n'
); );
} }
...@@ -281,6 +284,30 @@ class FlutterCommandRunner extends CommandRunner { ...@@ -281,6 +284,30 @@ class FlutterCommandRunner extends CommandRunner {
break; break;
directory = parent; directory = parent;
} }
// Check that the flutter running is that same as the one referenced in the pubspec.
if (FileSystemEntity.isFileSync(kPackagesFileName)) {
PackageMap packageMap = new PackageMap(kPackagesFileName);
Uri flutterUri = packageMap.map['flutter'];
if (flutterUri != null && (flutterUri.scheme == 'file' || flutterUri.scheme == '')) {
// .../flutter/packages/flutter/lib
Uri rootUri = flutterUri.resolve('../../..');
String flutterPath = path.normalize(new File.fromUri(rootUri).absolute.path);
if (flutterPath != Cache.flutterRoot) {
// Warn and exit the app.
printError(
'Warning - the active Flutter is different from the one referenced in your pubspec:\n'
' active Flutter : ${Cache.flutterRoot}\n'
' pubspec reference: $flutterPath'
);
return false;
}
}
}
return true;
} }
// Check if `bin/flutter` and `bin/cache/engine.stamp` exist. // Check if `bin/flutter` and `bin/cache/engine.stamp` exist.
......
...@@ -9,8 +9,8 @@ import 'dart:io'; ...@@ -9,8 +9,8 @@ import 'dart:io';
import 'package:path/path.dart' as path; import 'package:path/path.dart' as path;
import 'package:yaml/yaml.dart'; import 'package:yaml/yaml.dart';
import 'dart/package_map.dart';
import 'globals.dart'; import 'globals.dart';
import 'package_map.dart';
const String _kFlutterManifestPath = 'flutter.yaml'; const String _kFlutterManifestPath = 'flutter.yaml';
const String _kFlutterServicesManifestPath = 'flutter_services.yaml'; const String _kFlutterServicesManifestPath = 'flutter_services.yaml';
......
...@@ -14,7 +14,7 @@ import 'package:test/src/backend/test_platform.dart'; // ignore: implementation_ ...@@ -14,7 +14,7 @@ import 'package:test/src/backend/test_platform.dart'; // ignore: implementation_
import 'package:test/src/runner/plugin/platform.dart'; // ignore: implementation_imports import 'package:test/src/runner/plugin/platform.dart'; // ignore: implementation_imports
import 'package:test/src/runner/plugin/hack_register_platform.dart' as hack; // ignore: implementation_imports import 'package:test/src/runner/plugin/hack_register_platform.dart' as hack; // ignore: implementation_imports
import '../package_map.dart'; import '../dart/package_map.dart';
final String _kSkyShell = Platform.environment['SKY_SHELL']; final String _kSkyShell = Platform.environment['SKY_SHELL'];
const String _kHost = '127.0.0.1'; const String _kHost = '127.0.0.1';
......
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