
* Improve update checking This change emables pinging the server to check for updates regardless of whether the local version is "out of date". The server code already has a 7-day cache so the result is that we can now ping the server once every 7 days instead of waiting for the local install to be 4 weeks out of date before pinging. The original 4 week period is still used for when we'll start warning the user they're out of date if we could not confirm with the server whether there's a new version. * Improve message when we know there's a new version available * Fix bnullable bool checks * Switch nullable bool to enum * Fix casing of enum values * Remove stale comment The names are now descriptive so doesn't need additional explanation. * Improve name of function * Remove note: * Rename kPauseToLetUserReadTheMessage -> timeToPauseToLetUserReadTheMessage * Change kVersionAgeConsideredUpToDate to 5 weeks from 4 * Inline the isNewerFrameworkVersionAvailable check * Fix indenting (?) * Fix more indenting * Rename function to be clearer it's getting the commit date * Formating tweaks * Update stamp when connection failed, and reduce time before we'll try again Previously we would hit the server on every command if we thought we might be out of date and we never successfully connected (eg. if you're offline). This makes the stamp update even when there's a conneciton failure so that this won't happen, but reduces the time till we check again from 7 days to 3 days to compensate a little in case it was a one-off. https://github.com/flutter/flutter/pull/18193#issuecomment-399222269 * Fix comment * Don't perform update checks if not on an official channel
562 lines
21 KiB
Dart
562 lines
21 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:convert';
|
|
|
|
import 'package:meta/meta.dart';
|
|
import 'package:quiver/time.dart';
|
|
|
|
import 'base/common.dart';
|
|
import 'base/context.dart';
|
|
import 'base/file_system.dart';
|
|
import 'base/io.dart';
|
|
import 'base/process.dart';
|
|
import 'base/process_manager.dart';
|
|
import 'cache.dart';
|
|
import 'globals.dart';
|
|
|
|
class FlutterVersion {
|
|
@visibleForTesting
|
|
FlutterVersion(this._clock) {
|
|
_channel = _runGit('git rev-parse --abbrev-ref --symbolic @{u}');
|
|
final String branch = _runGit('git rev-parse --abbrev-ref HEAD');
|
|
_branch = branch == 'HEAD' ? _channel : branch;
|
|
|
|
final int slash = _channel.indexOf('/');
|
|
if (slash != -1) {
|
|
final String remote = _channel.substring(0, slash);
|
|
_repositoryUrl = _runGit('git ls-remote --get-url $remote');
|
|
_channel = _channel.substring(slash + 1);
|
|
} else if (_channel.isEmpty) {
|
|
_channel = 'unknown';
|
|
}
|
|
|
|
_frameworkRevision = _runGit('git log -n 1 --pretty=format:%H');
|
|
_frameworkAge = _runGit('git log -n 1 --pretty=format:%ar');
|
|
_frameworkVersion = GitTagVersion.determine().frameworkVersionFor(_frameworkRevision);
|
|
}
|
|
|
|
final Clock _clock;
|
|
|
|
String _repositoryUrl;
|
|
String get repositoryUrl => _repositoryUrl;
|
|
|
|
static Set<String> officialChannels = new Set<String>.from(<String>[
|
|
'master',
|
|
'dev',
|
|
'beta',
|
|
'release',
|
|
]);
|
|
|
|
/// This maps old branch names to the names of branches that replaced them.
|
|
///
|
|
/// For example, in early 2018 we changed from having an "alpha" branch to
|
|
/// having a "dev" branch, so anyone using "alpha" now gets transitioned to
|
|
/// "dev".
|
|
static Map<String, String> obsoleteBranches = <String, String>{
|
|
'alpha': 'dev',
|
|
'hackathon': 'dev',
|
|
'codelab': 'dev',
|
|
};
|
|
|
|
String _channel;
|
|
/// The channel is the upstream branch.
|
|
/// `master`, `dev`, `beta`, `release`; or old ones, like `alpha`, `hackathon`, ...
|
|
String get channel => _channel;
|
|
|
|
/// The name of the local branch.
|
|
/// Use getBranchName() to read this.
|
|
String _branch;
|
|
|
|
String _frameworkRevision;
|
|
String get frameworkRevision => _frameworkRevision;
|
|
String get frameworkRevisionShort => _shortGitRevision(frameworkRevision);
|
|
|
|
String _frameworkAge;
|
|
String get frameworkAge => _frameworkAge;
|
|
|
|
String _frameworkVersion;
|
|
String get frameworkVersion => _frameworkVersion;
|
|
|
|
String get frameworkDate => frameworkCommitDate;
|
|
|
|
String get dartSdkVersion => Cache.instance.dartSdkVersion.split(' ')[0];
|
|
|
|
String get engineRevision => Cache.instance.engineRevision;
|
|
String get engineRevisionShort => _shortGitRevision(engineRevision);
|
|
|
|
Future<void> ensureVersionFile() {
|
|
return fs.file(fs.path.join(Cache.flutterRoot, 'version')).writeAsString(_frameworkVersion);
|
|
}
|
|
|
|
@override
|
|
String toString() {
|
|
final String versionText = frameworkVersion == 'unknown' ? '' : ' $frameworkVersion';
|
|
final String flutterText = 'Flutter$versionText • channel $channel • ${repositoryUrl == null ? 'unknown source' : repositoryUrl}';
|
|
final String frameworkText = 'Framework • revision $frameworkRevisionShort ($frameworkAge) • $frameworkCommitDate';
|
|
final String engineText = 'Engine • revision $engineRevisionShort';
|
|
final String toolsText = 'Tools • Dart $dartSdkVersion';
|
|
|
|
// Flutter 1.3.922-pre.2 • channel master • https://github.com/flutter/flutter.git
|
|
// Framework • revision 2259c59be8 • 19 minutes ago • 2016-08-15 22:51:40
|
|
// Engine • revision fe509b0d96
|
|
// Tools • Dart 1.19.0-dev.5.0
|
|
|
|
return '$flutterText\n$frameworkText\n$engineText\n$toolsText';
|
|
}
|
|
|
|
Map<String, Object> toJson() => <String, Object>{
|
|
'channel': channel,
|
|
'repositoryUrl': repositoryUrl ?? 'unknown source',
|
|
'frameworkRevision': frameworkRevision,
|
|
'frameworkCommitDate': frameworkCommitDate,
|
|
'engineRevision': engineRevision,
|
|
'dartSdkVersion': dartSdkVersion,
|
|
};
|
|
|
|
/// A date String describing the last framework commit.
|
|
String get frameworkCommitDate => _latestGitCommitDate();
|
|
|
|
static String _latestGitCommitDate([String branch]) {
|
|
final List<String> args = <String>['git', 'log'];
|
|
|
|
if (branch != null)
|
|
args.add(branch);
|
|
|
|
args.addAll(<String>['-n', '1', '--pretty=format:%ad', '--date=iso']);
|
|
return _runSync(args, lenient: false);
|
|
}
|
|
|
|
/// The name of the temporary git remote used to check for the latest
|
|
/// available Flutter framework version.
|
|
///
|
|
/// In the absence of bugs and crashes a Flutter developer should never see
|
|
/// this remote appear in their `git remote` list, but also if it happens to
|
|
/// persist we do the proper clean-up for extra robustness.
|
|
static const String _versionCheckRemote = '__flutter_version_check__';
|
|
|
|
/// The date of the latest framework commit in the remote repository.
|
|
///
|
|
/// Throws [ToolExit] if a git command fails, for example, when the remote git
|
|
/// repository is not reachable due to a network issue.
|
|
static Future<String> fetchRemoteFrameworkCommitDate(String branch) async {
|
|
await _removeVersionCheckRemoteIfExists();
|
|
try {
|
|
await _run(<String>[
|
|
'git',
|
|
'remote',
|
|
'add',
|
|
_versionCheckRemote,
|
|
'https://github.com/flutter/flutter.git',
|
|
]);
|
|
await _run(<String>['git', 'fetch', _versionCheckRemote, branch]);
|
|
return _latestGitCommitDate('$_versionCheckRemote/$branch');
|
|
} finally {
|
|
await _removeVersionCheckRemoteIfExists();
|
|
}
|
|
}
|
|
|
|
static Future<Null> _removeVersionCheckRemoteIfExists() async {
|
|
final List<String> remotes = (await _run(<String>['git', 'remote']))
|
|
.split('\n')
|
|
.map((String name) => name.trim()) // to account for OS-specific line-breaks
|
|
.toList();
|
|
if (remotes.contains(_versionCheckRemote))
|
|
await _run(<String>['git', 'remote', 'remove', _versionCheckRemote]);
|
|
}
|
|
|
|
static FlutterVersion get instance => context[FlutterVersion];
|
|
|
|
/// Return a short string for the version (e.g. `master/0.0.59-pre.92`, `scroll_refactor/a76bc8e22b`).
|
|
String getVersionString({bool redactUnknownBranches = false}) {
|
|
if (frameworkVersion != 'unknown')
|
|
return '${getBranchName(redactUnknownBranches: redactUnknownBranches)}/$frameworkVersion';
|
|
return '${getBranchName(redactUnknownBranches: redactUnknownBranches)}/$frameworkRevisionShort';
|
|
}
|
|
|
|
/// Return the branch name.
|
|
///
|
|
/// If [redactUnknownBranches] is true and the branch is unknown,
|
|
/// the branch name will be returned as `'[user-branch]'`.
|
|
String getBranchName({ bool redactUnknownBranches = false }) {
|
|
if (redactUnknownBranches || _branch.isEmpty) {
|
|
// Only return the branch names we know about; arbitrary branch names might contain PII.
|
|
if (!officialChannels.contains(_branch) && !obsoleteBranches.containsKey(_branch))
|
|
return '[user-branch]';
|
|
}
|
|
return _branch;
|
|
}
|
|
|
|
/// Returns true if `tentativeDescendantRevision` is a direct descendant to
|
|
/// the `tentativeAncestorRevision` revision on the Flutter framework repo
|
|
/// tree.
|
|
bool checkRevisionAncestry({
|
|
String tentativeDescendantRevision,
|
|
String tentativeAncestorRevision,
|
|
}) {
|
|
final ProcessResult result = processManager.runSync(
|
|
<String>['git', 'merge-base', '--is-ancestor', tentativeAncestorRevision, tentativeDescendantRevision],
|
|
workingDirectory: Cache.flutterRoot,
|
|
);
|
|
return result.exitCode == 0;
|
|
}
|
|
|
|
/// The amount of time we wait before pinging the server to check for the
|
|
/// availability of a newer version of Flutter.
|
|
@visibleForTesting
|
|
static const Duration kCheckAgeConsideredUpToDate = const Duration(days: 3);
|
|
|
|
/// We warn the user if the age of their Flutter installation is greater than
|
|
/// this duration.
|
|
///
|
|
/// This is set to 5 weeks because releases are currently around every 4 weeks.
|
|
@visibleForTesting
|
|
static const Duration kVersionAgeConsideredUpToDate = const Duration(days: 35);
|
|
|
|
/// The amount of time we wait between issuing a warning.
|
|
///
|
|
/// This is to avoid annoying users who are unable to upgrade right away.
|
|
@visibleForTesting
|
|
static const Duration kMaxTimeSinceLastWarning = const Duration(days: 1);
|
|
|
|
/// The amount of time we pause for to let the user read the message about
|
|
/// outdated Flutter installation.
|
|
///
|
|
/// This can be customized in tests to speed them up.
|
|
@visibleForTesting
|
|
static Duration timeToPauseToLetUserReadTheMessage = const Duration(seconds: 2);
|
|
|
|
/// Checks if the currently installed version of Flutter is up-to-date, and
|
|
/// warns the user if it isn't.
|
|
///
|
|
/// This function must run while [Cache.lock] is acquired because it reads and
|
|
/// writes shared cache files.
|
|
Future<Null> checkFlutterVersionFreshness() async {
|
|
// Don't perform update checks if we're not on an official channel.
|
|
if (!officialChannels.contains(_channel)) {
|
|
return;
|
|
}
|
|
|
|
final DateTime localFrameworkCommitDate = DateTime.parse(frameworkCommitDate);
|
|
final Duration frameworkAge = _clock.now().difference(localFrameworkCommitDate);
|
|
final bool installationSeemsOutdated = frameworkAge > kVersionAgeConsideredUpToDate;
|
|
|
|
// Get whether there's a newer version on the remote. This only goes
|
|
// to the server if we haven't checked recently so won't happen on every
|
|
// command.
|
|
final DateTime latestFlutterCommitDate = await _getLatestAvailableFlutterDate();
|
|
final VersionCheckResult remoteVersionStatus =
|
|
latestFlutterCommitDate == null
|
|
? VersionCheckResult.unknown
|
|
: latestFlutterCommitDate.isAfter(localFrameworkCommitDate)
|
|
? VersionCheckResult.newVersionAvailable
|
|
: VersionCheckResult.versionIsCurrent;
|
|
|
|
// Do not load the stamp before the above server check as it may modify the stamp file.
|
|
final VersionCheckStamp stamp = await VersionCheckStamp.load();
|
|
final DateTime lastTimeWarningWasPrinted = stamp.lastTimeWarningWasPrinted ?? _clock.agoBy(kMaxTimeSinceLastWarning * 2);
|
|
final bool beenAWhileSinceWarningWasPrinted = _clock.now().difference(lastTimeWarningWasPrinted) > kMaxTimeSinceLastWarning;
|
|
|
|
// We show a warning if either we know there is a new remote version, or we couldn't tell but the local
|
|
// version is outdated.
|
|
final bool canShowWarning =
|
|
remoteVersionStatus == VersionCheckResult.newVersionAvailable ||
|
|
(remoteVersionStatus == VersionCheckResult.unknown &&
|
|
installationSeemsOutdated);
|
|
|
|
if (beenAWhileSinceWarningWasPrinted && canShowWarning) {
|
|
final String updateMessage =
|
|
remoteVersionStatus == VersionCheckResult.newVersionAvailable
|
|
? newVersionAvailableMessage()
|
|
: versionOutOfDateMessage(frameworkAge);
|
|
printStatus(updateMessage, emphasis: true);
|
|
await Future.wait<Null>(<Future<Null>>[
|
|
stamp.store(
|
|
newTimeWarningWasPrinted: _clock.now(),
|
|
),
|
|
new Future<Null>.delayed(timeToPauseToLetUserReadTheMessage),
|
|
]);
|
|
}
|
|
}
|
|
|
|
@visibleForTesting
|
|
static String versionOutOfDateMessage(Duration frameworkAge) {
|
|
String warning = 'WARNING: your installation of Flutter is ${frameworkAge.inDays} days old.';
|
|
// Append enough spaces to match the message box width.
|
|
warning += ' ' * (74 - warning.length);
|
|
|
|
return '''
|
|
╔════════════════════════════════════════════════════════════════════════════╗
|
|
║ $warning ║
|
|
║ ║
|
|
║ To update to the latest version, run "flutter upgrade". ║
|
|
╚════════════════════════════════════════════════════════════════════════════╝
|
|
''';
|
|
}
|
|
|
|
@visibleForTesting
|
|
static String newVersionAvailableMessage() {
|
|
return '''
|
|
╔════════════════════════════════════════════════════════════════════════════╗
|
|
║ A new version of Flutter is available! ║
|
|
║ ║
|
|
║ To update to the latest version, run "flutter upgrade". ║
|
|
╚════════════════════════════════════════════════════════════════════════════╝
|
|
''';
|
|
}
|
|
|
|
/// Gets the release date of the latest available Flutter version.
|
|
///
|
|
/// This method sends a server request if it's been more than
|
|
/// [kCheckAgeConsideredUpToDate] since the last version check.
|
|
///
|
|
/// Returns null if the cached version is out-of-date or missing, and we are
|
|
/// unable to reach the server to get the latest version.
|
|
Future<DateTime> _getLatestAvailableFlutterDate() async {
|
|
Cache.checkLockAcquired();
|
|
final VersionCheckStamp versionCheckStamp = await VersionCheckStamp.load();
|
|
|
|
if (versionCheckStamp.lastTimeVersionWasChecked != null) {
|
|
final Duration timeSinceLastCheck = _clock.now().difference(versionCheckStamp.lastTimeVersionWasChecked);
|
|
|
|
// Don't ping the server too often. Return cached value if it's fresh.
|
|
if (timeSinceLastCheck < kCheckAgeConsideredUpToDate)
|
|
return versionCheckStamp.lastKnownRemoteVersion;
|
|
}
|
|
|
|
// Cache is empty or it's been a while since the last server ping. Ping the server.
|
|
try {
|
|
final DateTime remoteFrameworkCommitDate = DateTime.parse(await FlutterVersion.fetchRemoteFrameworkCommitDate(_channel));
|
|
await versionCheckStamp.store(
|
|
newTimeVersionWasChecked: _clock.now(),
|
|
newKnownRemoteVersion: remoteFrameworkCommitDate,
|
|
);
|
|
return remoteFrameworkCommitDate;
|
|
} on VersionCheckError catch (error) {
|
|
// This happens when any of the git commands fails, which can happen when
|
|
// there's no Internet connectivity. Remote version check is best effort
|
|
// only. We do not prevent the command from running when it fails.
|
|
printTrace('Failed to check Flutter version in the remote repository: $error');
|
|
// Still update the timestamp to avoid us hitting the server on every single
|
|
// command if for some reason we cannot connect (eg. we may be offline).
|
|
await versionCheckStamp.store(
|
|
newTimeVersionWasChecked: _clock.now(),
|
|
);
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Contains data and load/save logic pertaining to Flutter version checks.
|
|
@visibleForTesting
|
|
class VersionCheckStamp {
|
|
/// The prefix of the stamp file where we cache Flutter version check data.
|
|
@visibleForTesting
|
|
static const String kFlutterVersionCheckStampFile = 'flutter_version_check';
|
|
|
|
const VersionCheckStamp({
|
|
this.lastTimeVersionWasChecked,
|
|
this.lastKnownRemoteVersion,
|
|
this.lastTimeWarningWasPrinted,
|
|
});
|
|
|
|
final DateTime lastTimeVersionWasChecked;
|
|
final DateTime lastKnownRemoteVersion;
|
|
final DateTime lastTimeWarningWasPrinted;
|
|
|
|
static Future<VersionCheckStamp> load() async {
|
|
final String versionCheckStamp = Cache.instance.getStampFor(kFlutterVersionCheckStampFile);
|
|
|
|
if (versionCheckStamp != null) {
|
|
// Attempt to parse stamp JSON.
|
|
try {
|
|
final dynamic jsonObject = json.decode(versionCheckStamp);
|
|
if (jsonObject is Map) {
|
|
return fromJson(jsonObject);
|
|
} else {
|
|
printTrace('Warning: expected version stamp to be a Map but found: $jsonObject');
|
|
}
|
|
} catch (error, stackTrace) {
|
|
// Do not crash if JSON is malformed.
|
|
printTrace('${error.runtimeType}: $error\n$stackTrace');
|
|
}
|
|
}
|
|
|
|
// Stamp is missing or is malformed.
|
|
return const VersionCheckStamp();
|
|
}
|
|
|
|
static VersionCheckStamp fromJson(Map<String, String> jsonObject) {
|
|
DateTime readDateTime(String property) {
|
|
return jsonObject.containsKey(property)
|
|
? DateTime.parse(jsonObject[property])
|
|
: null;
|
|
}
|
|
|
|
return new VersionCheckStamp(
|
|
lastTimeVersionWasChecked: readDateTime('lastTimeVersionWasChecked'),
|
|
lastKnownRemoteVersion: readDateTime('lastKnownRemoteVersion'),
|
|
lastTimeWarningWasPrinted: readDateTime('lastTimeWarningWasPrinted'),
|
|
);
|
|
}
|
|
|
|
Future<Null> store({
|
|
DateTime newTimeVersionWasChecked,
|
|
DateTime newKnownRemoteVersion,
|
|
DateTime newTimeWarningWasPrinted,
|
|
}) async {
|
|
final Map<String, String> jsonData = toJson();
|
|
|
|
if (newTimeVersionWasChecked != null)
|
|
jsonData['lastTimeVersionWasChecked'] = '$newTimeVersionWasChecked';
|
|
|
|
if (newKnownRemoteVersion != null)
|
|
jsonData['lastKnownRemoteVersion'] = '$newKnownRemoteVersion';
|
|
|
|
if (newTimeWarningWasPrinted != null)
|
|
jsonData['lastTimeWarningWasPrinted'] = '$newTimeWarningWasPrinted';
|
|
|
|
const JsonEncoder kPrettyJsonEncoder = const JsonEncoder.withIndent(' ');
|
|
Cache.instance.setStampFor(kFlutterVersionCheckStampFile, kPrettyJsonEncoder.convert(jsonData));
|
|
}
|
|
|
|
Map<String, String> toJson({
|
|
DateTime updateTimeVersionWasChecked,
|
|
DateTime updateKnownRemoteVersion,
|
|
DateTime updateTimeWarningWasPrinted,
|
|
}) {
|
|
updateTimeVersionWasChecked = updateTimeVersionWasChecked ?? lastTimeVersionWasChecked;
|
|
updateKnownRemoteVersion = updateKnownRemoteVersion ?? lastKnownRemoteVersion;
|
|
updateTimeWarningWasPrinted = updateTimeWarningWasPrinted ?? lastTimeWarningWasPrinted;
|
|
|
|
final Map<String, String> jsonData = <String, String>{};
|
|
|
|
if (updateTimeVersionWasChecked != null)
|
|
jsonData['lastTimeVersionWasChecked'] = '$updateTimeVersionWasChecked';
|
|
|
|
if (updateKnownRemoteVersion != null)
|
|
jsonData['lastKnownRemoteVersion'] = '$updateKnownRemoteVersion';
|
|
|
|
if (updateTimeWarningWasPrinted != null)
|
|
jsonData['lastTimeWarningWasPrinted'] = '$updateTimeWarningWasPrinted';
|
|
|
|
return jsonData;
|
|
}
|
|
}
|
|
|
|
/// Thrown when we fail to check Flutter version.
|
|
///
|
|
/// This can happen when we attempt to `git fetch` but there is no network, or
|
|
/// when the installation is not git-based (e.g. a user clones the repo but
|
|
/// then removes .git).
|
|
class VersionCheckError implements Exception {
|
|
|
|
VersionCheckError(this.message);
|
|
|
|
final String message;
|
|
|
|
@override
|
|
String toString() => '$VersionCheckError: $message';
|
|
}
|
|
|
|
/// Runs [command] and returns the standard output as a string.
|
|
///
|
|
/// If [lenient] is true and the command fails, returns an empty string.
|
|
/// Otherwise, throws a [ToolExit] exception.
|
|
String _runSync(List<String> command, {bool lenient = true}) {
|
|
final ProcessResult results = processManager.runSync(command, workingDirectory: Cache.flutterRoot);
|
|
|
|
if (results.exitCode == 0)
|
|
return results.stdout.trim();
|
|
|
|
if (!lenient) {
|
|
throw new VersionCheckError(
|
|
'Command exited with code ${results.exitCode}: ${command.join(' ')}\n'
|
|
'Standard error: ${results.stderr}'
|
|
);
|
|
}
|
|
|
|
return '';
|
|
}
|
|
|
|
String _runGit(String command) {
|
|
return runSync(command.split(' '), workingDirectory: Cache.flutterRoot);
|
|
}
|
|
|
|
/// Runs [command] in the root of the Flutter installation and returns the
|
|
/// standard output as a string.
|
|
///
|
|
/// If the command fails, throws a [ToolExit] exception.
|
|
Future<String> _run(List<String> command) async {
|
|
final ProcessResult results = await processManager.run(command, workingDirectory: Cache.flutterRoot);
|
|
|
|
if (results.exitCode == 0)
|
|
return results.stdout.trim();
|
|
|
|
throw new VersionCheckError(
|
|
'Command exited with code ${results.exitCode}: ${command.join(' ')}\n'
|
|
'Standard error: ${results.stderr}'
|
|
);
|
|
}
|
|
|
|
String _shortGitRevision(String revision) {
|
|
if (revision == null)
|
|
return '';
|
|
return revision.length > 10 ? revision.substring(0, 10) : revision;
|
|
}
|
|
|
|
class GitTagVersion {
|
|
const GitTagVersion(this.x, this.y, this.z, this.commits, this.hash);
|
|
const GitTagVersion.unknown() : x = null, y = null, z = null, commits = 0, hash = '';
|
|
|
|
/// The X in vX.Y.Z.
|
|
final int x;
|
|
|
|
/// The Y in vX.Y.Z.
|
|
final int y;
|
|
|
|
/// The Z in vX.Y.Z.
|
|
final int z;
|
|
|
|
/// Number of commits since the vX.Y.Z tag.
|
|
final int commits;
|
|
|
|
/// The git hash (or an abbreviation thereof) for this commit.
|
|
final String hash;
|
|
|
|
static GitTagVersion determine() {
|
|
final String version = _runGit('git describe --match v*.*.* --first-parent --long --tags');
|
|
final RegExp versionPattern = new RegExp('^v([0-9]+)\.([0-9]+)\.([0-9]+)-([0-9]+)-g([a-f0-9]+)\$');
|
|
final List<String> parts = versionPattern.matchAsPrefix(version)?.groups(<int>[1, 2, 3, 4, 5]);
|
|
if (parts == null) {
|
|
printTrace('Could not interpret results of "git describe": $version');
|
|
return const GitTagVersion.unknown();
|
|
}
|
|
final List<int> parsedParts = parts.take(4).map<int>(
|
|
// ignore: deprecated_member_use
|
|
(String value) => int.parse(value, onError: (String value) => null),
|
|
).toList();
|
|
return new GitTagVersion(parsedParts[0], parsedParts[1], parsedParts[2], parsedParts[3], parts[4]);
|
|
}
|
|
|
|
String frameworkVersionFor(String revision) {
|
|
if (x == null || y == null || z == null || !revision.startsWith(hash))
|
|
return '0.0.0-unknown';
|
|
if (commits == 0)
|
|
return '$x.$y.$z';
|
|
return '$x.$y.${z + 1}-pre.$commits';
|
|
}
|
|
}
|
|
|
|
enum VersionCheckResult {
|
|
/// Unable to check whether a new version is available, possibly due to
|
|
/// a connectivity issue.
|
|
unknown,
|
|
/// The current version is up to date.
|
|
versionIsCurrent,
|
|
/// A newer version is available.
|
|
newVersionAvailable,
|
|
}
|