version.dart 26.4 KB
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

5 6 7 8 9
import 'dart:async';

import 'package:meta/meta.dart';

import 'base/common.dart';
10
import 'base/file_system.dart';
11
import 'base/io.dart';
12
import 'base/process.dart';
13
import 'base/time.dart';
14
import 'cache.dart';
15
import 'convert.dart';
16
import 'globals.dart' as globals;
17

18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
/// The names of each channel/branch in order of increasing stability.
enum Channel {
  master,
  dev,
  beta,
  stable,
}

/// Retrieve a human-readable name for a given [channel].
///
/// Requires [FlutterVersion.officialChannels] to be correctly ordered.
String getNameForChannel(Channel channel) {
  return FlutterVersion.officialChannels.elementAt(channel.index);
}

/// Retrieve the [Channel] representation for a string [name].
///
/// Returns `null` if [name] is not in the list of official channels, according
/// to [FlutterVersion.officialChannels].
Channel getChannelForName(String name) {
  if (FlutterVersion.officialChannels.contains(name)) {
    return Channel.values[FlutterVersion.officialChannels.toList().indexOf(name)];
  }
  return null;
}

44
class FlutterVersion {
45 46 47 48 49 50 51
  FlutterVersion([this._clock = const SystemClock(), this._workingDirectory]) {
    _frameworkRevision = _runGit(
      gitLog(<String>['-n', '1', '--pretty=format:%H']).join(' '),
      processUtils,
      _workingDirectory,
    );
    _gitTagVersion = GitTagVersion.determine(processUtils, _workingDirectory);
52
    _frameworkVersion = gitTagVersion.frameworkVersionFor(_frameworkRevision);
53
  }
54

55
  final SystemClock _clock;
56
  final String _workingDirectory;
57

58
  String _repositoryUrl;
59 60 61 62
  String get repositoryUrl {
    final String _ = channel;
    return _repositoryUrl;
  }
63

64 65 66 67
  /// Whether we are currently on the master branch.
  bool get isMaster {
    final String branchName = getBranchName();
    return !<String>['dev', 'beta', 'stable'].contains(branchName);
68 69
  }

70
  // Beware: Keep order in accordance with stability
71
  static const Set<String> officialChannels = <String>{
72 73 74
    'master',
    'dev',
    'beta',
75
    'stable',
76
  };
77 78 79 80 81 82 83 84 85 86 87 88

  /// 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',
  };

89
  String _channel;
90
  /// The channel is the upstream branch.
91
  /// `master`, `dev`, `beta`, `stable`; or old ones, like `alpha`, `hackathon`, ...
92 93
  String get channel {
    if (_channel == null) {
94 95 96 97 98
      final String channel = _runGit(
        'git rev-parse --abbrev-ref --symbolic @{u}',
        processUtils,
        _workingDirectory,
      );
99 100 101
      final int slash = channel.indexOf('/');
      if (slash != -1) {
        final String remote = channel.substring(0, slash);
102 103 104 105 106
        _repositoryUrl = _runGit(
          'git ls-remote --get-url $remote',
          processUtils,
          _workingDirectory,
        );
107
        _channel = channel.substring(slash + 1);
108
      } else if (channel.isEmpty) {
109 110 111 112 113 114 115
        _channel = 'unknown';
      } else {
        _channel = channel;
      }
    }
    return _channel;
  }
116

117 118 119
  GitTagVersion _gitTagVersion;
  GitTagVersion get gitTagVersion => _gitTagVersion;

120 121
  /// The name of the local branch.
  /// Use getBranchName() to read this.
122 123
  String _branch;

124 125
  String _frameworkRevision;
  String get frameworkRevision => _frameworkRevision;
126
  String get frameworkRevisionShort => _shortGitRevision(frameworkRevision);
127 128

  String _frameworkAge;
129
  String get frameworkAge {
130 131 132 133 134
    return _frameworkAge ??= _runGit(
      gitLog(<String>['-n', '1', '--pretty=format:%ar']).join(' '),
      processUtils,
      _workingDirectory,
    );
135
  }
136

137 138 139
  String _frameworkVersion;
  String get frameworkVersion => _frameworkVersion;

140 141
  String get frameworkDate => frameworkCommitDate;

142
  String get dartSdkVersion => globals.cache.dartSdkVersion;
143

144
  String get engineRevision => globals.cache.engineRevision;
145
  String get engineRevisionShort => _shortGitRevision(engineRevision);
146

147
  Future<void> ensureVersionFile() {
148
    globals.fs.file(globals.fs.path.join(Cache.flutterRoot, 'version')).writeAsStringSync(_frameworkVersion);
149
    return Future<void>.value();
150
  }
151 152 153

  @override
  String toString() {
154
    final String versionText = frameworkVersion == 'unknown' ? '' : ' $frameworkVersion';
155
    final String flutterText = 'Flutter$versionText • channel $channel${repositoryUrl ?? 'unknown source'}';
156 157 158
    final String frameworkText = 'Framework • revision $frameworkRevisionShort ($frameworkAge) • $frameworkCommitDate';
    final String engineText = 'Engine • revision $engineRevisionShort';
    final String toolsText = 'Tools • Dart $dartSdkVersion';
159

160 161 162 163
    // Flutter 1.10.2-pre.69 • channel master • https://github.com/flutter/flutter.git
    // Framework • revision 340c158f32 (84 minutes ago) • 2018-10-26 11:27:22 -0400
    // Engine • revision 9c46333e14
    // Tools • Dart 2.1.0 (build 2.1.0-dev.8.0 bf26f760b1)
164

165
    return '$flutterText\n$frameworkText\n$engineText\n$toolsText';
166 167
  }

168
  Map<String, Object> toJson() => <String, Object>{
169 170 171 172 173 174 175 176
    'frameworkVersion': frameworkVersion ?? 'unknown',
    'channel': channel,
    'repositoryUrl': repositoryUrl ?? 'unknown source',
    'frameworkRevision': frameworkRevision,
    'frameworkCommitDate': frameworkCommitDate,
    'engineRevision': engineRevision,
    'dartSdkVersion': dartSdkVersion,
  };
177

178
  /// A date String describing the last framework commit.
179 180 181 182 183 184 185 186 187 188 189 190 191
  ///
  /// If a git command fails, this will return a placeholder date.
  String get frameworkCommitDate => _latestGitCommitDate(lenient: true);

  // The date of the latest commit on the given branch. If no branch is
  // specified, then it is the current local branch.
  //
  // If lenient is true, and the git command fails, a placeholder date is
  // returned. Otherwise, the VersionCheckError exception is propagated.
  static String _latestGitCommitDate({
    String branch,
    bool lenient = false,
  }) {
192
    final List<String> args = gitLog(<String>[
193 194 195 196 197
      if (branch != null) branch,
      '-n',
      '1',
      '--pretty=format:%ad',
      '--date=iso',
198
    ]);
199 200 201 202 203 204 205
    try {
      // Don't plumb 'lenient' through directly so that we can print an error
      // if something goes wrong.
      return _runSync(args, lenient: false);
    } on VersionCheckError catch (e) {
      if (lenient) {
        final DateTime dummyDate = DateTime.fromMillisecondsSinceEpoch(0);
206
        globals.printError('Failed to find the latest git commit date: $e\n'
207 208 209 210 211 212 213
          'Returning $dummyDate instead.');
        // Return something that DateTime.parse() can parse.
        return dummyDate.toString();
      } else {
        rethrow;
      }
    }
214 215 216 217 218 219 220 221
  }

  /// 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.
222
  static const String _versionCheckRemote = '__flutter_version_check__';
223 224 225

  /// The date of the latest framework commit in the remote repository.
  ///
226 227
  /// Throws [VersionCheckError] if a git command fails, for example, when the
  /// remote git repository is not reachable due to a network issue.
228
  static Future<String> fetchRemoteFrameworkCommitDate(String branch) async {
229 230 231 232 233 234
    await _removeVersionCheckRemoteIfExists();
    try {
      await _run(<String>[
        'git',
        'remote',
        'add',
235
        _versionCheckRemote,
236 237
        'https://github.com/flutter/flutter.git',
      ]);
238
      await _run(<String>['git', 'fetch', _versionCheckRemote, branch]);
239 240 241 242
      return _latestGitCommitDate(
        branch: '$_versionCheckRemote/$branch',
        lenient: false,
      );
243 244 245 246 247
    } finally {
      await _removeVersionCheckRemoteIfExists();
    }
  }

248
  static Future<void> _removeVersionCheckRemoteIfExists() async {
249 250
    final List<String> remotes = (await _run(<String>['git', 'remote']))
        .split('\n')
251
        .map<String>((String name) => name.trim()) // to account for OS-specific line-breaks
252
        .toList();
253
    if (remotes.contains(_versionCheckRemote)) {
254
      await _run(<String>['git', 'remote', 'remove', _versionCheckRemote]);
255
    }
256 257
  }

258
  /// Return a short string for the version (e.g. `master/0.0.59-pre.92`, `scroll_refactor/a76bc8e22b`).
259
  String getVersionString({ bool redactUnknownBranches = false }) {
260
    if (frameworkVersion != 'unknown') {
261
      return '${getBranchName(redactUnknownBranches: redactUnknownBranches)}/$frameworkVersion';
262
    }
263
    return '${getBranchName(redactUnknownBranches: redactUnknownBranches)}/$frameworkRevisionShort';
264 265 266 267
  }

  /// Return the branch name.
  ///
268 269
  /// If [redactUnknownBranches] is true and the branch is unknown,
  /// the branch name will be returned as `'[user-branch]'`.
270
  String getBranchName({ bool redactUnknownBranches = false }) {
271
    _branch ??= () {
272
      final String branch = _runGit('git rev-parse --abbrev-ref HEAD', processUtils);
273 274
      return branch == 'HEAD' ? channel : branch;
    }();
275
    if (redactUnknownBranches || _branch.isEmpty) {
276
      // Only return the branch names we know about; arbitrary branch names might contain PII.
277 278
      if (!officialChannels.contains(_branch) &&
          !obsoleteBranches.containsKey(_branch)) {
279
        return '[user-branch]';
280
      }
281
    }
282
    return _branch;
283
  }
284

285 286 287 288 289 290 291
  /// Returns true if `tentativeDescendantRevision` is a direct descendant to
  /// the `tentativeAncestorRevision` revision on the Flutter framework repo
  /// tree.
  bool checkRevisionAncestry({
    String tentativeDescendantRevision,
    String tentativeAncestorRevision,
  }) {
292
    final ProcessResult result = globals.processManager.runSync(
293 294 295 296 297 298 299
      <String>[
        'git',
        'merge-base',
        '--is-ancestor',
        tentativeAncestorRevision,
        tentativeDescendantRevision
      ],
300 301 302 303 304
      workingDirectory: Cache.flutterRoot,
    );
    return result.exitCode == 0;
  }

305 306 307
  /// The amount of time we wait before pinging the server to check for the
  /// availability of a newer version of Flutter.
  @visibleForTesting
308
  static const Duration checkAgeConsideredUpToDate = Duration(days: 3);
309 310

  /// We warn the user if the age of their Flutter installation is greater than
311 312 313
  /// this duration. The durations are slightly longer than the expected release
  /// cadence for each channel, to give the user a grace period before they get
  /// notified.
314
  ///
315 316
  /// For example, for the beta channel, this is set to five weeks because
  /// beta releases happen approximately every month.
317
  @visibleForTesting
318 319 320 321 322 323 324 325 326 327 328 329
  static Duration versionAgeConsideredUpToDate(String channel) {
    switch (channel) {
      case 'stable':
        return const Duration(days: 365 ~/ 2); // Six months
      case 'beta':
        return const Duration(days: 7 * 8); // Eight weeks
      case 'dev':
        return const Duration(days: 7 * 4); // Four weeks
      default:
        return const Duration(days: 7 * 3); // Three weeks
    }
  }
330

331 332 333
  /// The amount of time we wait between issuing a warning.
  ///
  /// This is to avoid annoying users who are unable to upgrade right away.
334
  @visibleForTesting
335
  static const Duration maxTimeSinceLastWarning = Duration(days: 1);
336 337 338 339 340 341

  /// 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
342
  static Duration timeToPauseToLetUserReadTheMessage = const Duration(seconds: 2);
343

344 345 346 347 348 349
  /// Reset the version freshness information by removing the stamp file.
  ///
  /// New version freshness information will be regenerated when
  /// [checkFlutterVersionFreshness] is called after this. This is typically
  /// used when switching channels so that stale information from another
  /// channel doesn't linger.
350
  static Future<void> resetFlutterVersionFreshnessCheck() async {
351
    try {
352
      await globals.cache.getStampFileFor(
353
        VersionCheckStamp.flutterVersionCheckStampFile,
354 355 356 357 358 359
      ).delete();
    } on FileSystemException {
      // Ignore, since we don't mind if the file didn't exist in the first place.
    }
  }

360 361 362 363 364
  /// 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.
365
  Future<void> checkFlutterVersionFreshness() async {
366
    // Don't perform update checks if we're not on an official channel.
367
    if (!officialChannels.contains(channel)) {
368 369 370
      return;
    }

371 372 373 374 375 376 377 378 379 380
    DateTime localFrameworkCommitDate;
    try {
      localFrameworkCommitDate = DateTime.parse(_latestGitCommitDate(
        lenient: false
      ));
    } on VersionCheckError {
      // Don't perform the update check if the verison check failed.
      return;
    }

381
    final Duration frameworkAge = _clock.now().difference(localFrameworkCommitDate);
382
    final bool installationSeemsOutdated = frameworkAge > versionAgeConsideredUpToDate(channel);
383

384 385 386 387
    // 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();
388 389 390 391 392
    final VersionCheckResult remoteVersionStatus = latestFlutterCommitDate == null
        ? VersionCheckResult.unknown
        : latestFlutterCommitDate.isAfter(localFrameworkCommitDate)
          ? VersionCheckResult.newVersionAvailable
          : VersionCheckResult.versionIsCurrent;
393 394

    // Do not load the stamp before the above server check as it may modify the stamp file.
395
    final VersionCheckStamp stamp = await VersionCheckStamp.load();
396 397
    final DateTime lastTimeWarningWasPrinted = stamp.lastTimeWarningWasPrinted ?? _clock.ago(maxTimeSinceLastWarning * 2);
    final bool beenAWhileSinceWarningWasPrinted = _clock.now().difference(lastTimeWarningWasPrinted) > maxTimeSinceLastWarning;
398

399 400 401
    // 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 =
402 403 404
      remoteVersionStatus == VersionCheckResult.newVersionAvailable ||
        (remoteVersionStatus == VersionCheckResult.unknown &&
          installationSeemsOutdated);
405 406 407

    if (beenAWhileSinceWarningWasPrinted && canShowWarning) {
      final String updateMessage =
408 409 410
        remoteVersionStatus == VersionCheckResult.newVersionAvailable
          ? newVersionAvailableMessage()
          : versionOutOfDateMessage(frameworkAge);
411
      globals.printStatus(updateMessage, emphasis: true);
412
      await Future.wait<void>(<Future<void>>[
xster's avatar
xster committed
413 414 415
        stamp.store(
          newTimeWarningWasPrinted: _clock.now(),
        ),
416
        Future<void>.delayed(timeToPauseToLetUserReadTheMessage),
417
      ]);
418
    }
419 420
  }

421 422 423 424 425 426 427 428
  /// log.showSignature=false is a user setting and it will break things,
  /// so we want to disable it for every git log call.  This is a convenience
  /// wrapper that does that.
  @visibleForTesting
  static List<String> gitLog(List<String> args) {
    return <String>['git', '-c', 'log.showSignature=false', 'log'] + args;
  }

429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
  @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".                    ║
  ╚════════════════════════════════════════════════════════════════════════════╝
''';
  }

444 445 446 447 448 449 450 451 452 453 454
  @visibleForTesting
  static String newVersionAvailableMessage() {
    return '''
  ╔════════════════════════════════════════════════════════════════════════════╗
  ║ A new version of Flutter is available!                                     ║
  ║                                                                            ║
  ║ To update to the latest version, run "flutter upgrade".                    ║
  ╚════════════════════════════════════════════════════════════════════════════╝
''';
  }

455 456 457
  /// Gets the release date of the latest available Flutter version.
  ///
  /// This method sends a server request if it's been more than
458
  /// [checkAgeConsideredUpToDate] since the last version check.
459
  ///
460
  /// Returns null if the cached version is out-of-date or missing, and we are
461
  /// unable to reach the server to get the latest version.
462
  Future<DateTime> _getLatestAvailableFlutterDate() async {
463
    Cache.checkLockAcquired();
464
    final VersionCheckStamp versionCheckStamp = await VersionCheckStamp.load();
465

466
    if (versionCheckStamp.lastTimeVersionWasChecked != null) {
467 468 469
      final Duration timeSinceLastCheck = _clock.now().difference(
        versionCheckStamp.lastTimeVersionWasChecked,
      );
470 471

      // Don't ping the server too often. Return cached value if it's fresh.
472
      if (timeSinceLastCheck < checkAgeConsideredUpToDate) {
473
        return versionCheckStamp.lastKnownRemoteVersion;
474
      }
475 476 477 478
    }

    // Cache is empty or it's been a while since the last server ping. Ping the server.
    try {
479 480 481
      final DateTime remoteFrameworkCommitDate = DateTime.parse(
        await FlutterVersion.fetchRemoteFrameworkCommitDate(channel),
      );
xster's avatar
xster committed
482
      await versionCheckStamp.store(
483 484 485
        newTimeVersionWasChecked: _clock.now(),
        newKnownRemoteVersion: remoteFrameworkCommitDate,
      );
486 487 488 489 490
      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.
491
      globals.printTrace('Failed to check Flutter version in the remote repository: $error');
492 493 494 495 496
      // 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(),
      );
497 498 499
      return null;
    }
  }
500 501
}

502 503 504 505 506 507 508 509 510 511 512 513 514
/// Contains data and load/save logic pertaining to Flutter version checks.
@visibleForTesting
class VersionCheckStamp {
  const VersionCheckStamp({
    this.lastTimeVersionWasChecked,
    this.lastKnownRemoteVersion,
    this.lastTimeWarningWasPrinted,
  });

  final DateTime lastTimeVersionWasChecked;
  final DateTime lastKnownRemoteVersion;
  final DateTime lastTimeWarningWasPrinted;

515 516
  /// The prefix of the stamp file where we cache Flutter version check data.
  @visibleForTesting
517
  static const String flutterVersionCheckStampFile = 'flutter_version_check';
518

519
  static Future<VersionCheckStamp> load() async {
520
    final String versionCheckStamp = globals.cache.getStampFor(flutterVersionCheckStampFile);
521 522 523 524

    if (versionCheckStamp != null) {
      // Attempt to parse stamp JSON.
      try {
525
        final dynamic jsonObject = json.decode(versionCheckStamp);
526
        if (jsonObject is Map<String, dynamic>) {
527
          return fromJson(jsonObject);
528
        } else {
529
          globals.printTrace('Warning: expected version stamp to be a Map but found: $jsonObject');
530
        }
531
      } catch (error, stackTrace) {
532
        // Do not crash if JSON is malformed.
533
        globals.printTrace('${error.runtimeType}: $error\n$stackTrace');
534 535 536 537
      }
    }

    // Stamp is missing or is malformed.
538
    return const VersionCheckStamp();
539 540
  }

541
  static VersionCheckStamp fromJson(Map<String, dynamic> jsonObject) {
542
    DateTime readDateTime(String property) {
543
      return jsonObject.containsKey(property)
544
          ? DateTime.parse(jsonObject[property] as String)
545
          : null;
546 547
    }

548
    return VersionCheckStamp(
549 550 551 552 553 554
      lastTimeVersionWasChecked: readDateTime('lastTimeVersionWasChecked'),
      lastKnownRemoteVersion: readDateTime('lastKnownRemoteVersion'),
      lastTimeWarningWasPrinted: readDateTime('lastTimeWarningWasPrinted'),
    );
  }

555
  Future<void> store({
556 557 558 559 560 561
    DateTime newTimeVersionWasChecked,
    DateTime newKnownRemoteVersion,
    DateTime newTimeWarningWasPrinted,
  }) async {
    final Map<String, String> jsonData = toJson();

562
    if (newTimeVersionWasChecked != null) {
563
      jsonData['lastTimeVersionWasChecked'] = '$newTimeVersionWasChecked';
564
    }
565

566
    if (newKnownRemoteVersion != null) {
567
      jsonData['lastKnownRemoteVersion'] = '$newKnownRemoteVersion';
568
    }
569

570
    if (newTimeWarningWasPrinted != null) {
571
      jsonData['lastTimeWarningWasPrinted'] = '$newTimeWarningWasPrinted';
572
    }
573

574
    const JsonEncoder prettyJsonEncoder = JsonEncoder.withIndent('  ');
575
    globals.cache.setStampFor(flutterVersionCheckStampFile, prettyJsonEncoder.convert(jsonData));
576 577 578 579 580 581 582 583 584 585 586 587 588
  }

  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>{};

589
    if (updateTimeVersionWasChecked != null) {
590
      jsonData['lastTimeVersionWasChecked'] = '$updateTimeVersionWasChecked';
591
    }
592

593
    if (updateKnownRemoteVersion != null) {
594
      jsonData['lastKnownRemoteVersion'] = '$updateKnownRemoteVersion';
595
    }
596

597
    if (updateTimeWarningWasPrinted != null) {
598
      jsonData['lastTimeWarningWasPrinted'] = '$updateTimeWarningWasPrinted';
599
    }
600 601 602 603 604

    return jsonData;
  }
}

605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621
/// 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.
///
622
/// If [lenient] is true and the command fails, returns an empty string.
623
/// Otherwise, throws a [ToolExit] exception.
624
String _runSync(List<String> command, { bool lenient = true }) {
625
  final ProcessResult results = globals.processManager.runSync(
626 627 628
    command,
    workingDirectory: Cache.flutterRoot,
  );
629

630
  if (results.exitCode == 0) {
631
    return (results.stdout as String).trim();
632
  }
633 634

  if (!lenient) {
635
    throw VersionCheckError(
636
      'Command exited with code ${results.exitCode}: ${command.join(' ')}\n'
637
      'Standard out: ${results.stdout}\n'
638 639 640 641 642 643 644
      'Standard error: ${results.stderr}'
    );
  }

  return '';
}

645
String _runGit(String command, ProcessUtils processUtils, [String workingDirectory]) {
646 647
  return processUtils.runSync(
    command.split(' '),
648
    workingDirectory: workingDirectory ?? Cache.flutterRoot,
649
  ).stdout.trim();
650 651
}

652 653 654 655 656
/// 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 {
657
  final ProcessResult results = await globals.processManager.run(command, workingDirectory: Cache.flutterRoot);
658

659
  if (results.exitCode == 0) {
660
    return (results.stdout as String).trim();
661
  }
662

663
  throw VersionCheckError(
664 665 666
    'Command exited with code ${results.exitCode}: ${command.join(' ')}\n'
    'Standard error: ${results.stderr}'
  );
667
}
668 669

String _shortGitRevision(String revision) {
670
  if (revision == null) {
671
    return '';
672
  }
673 674
  return revision.length > 10 ? revision.substring(0, 10) : revision;
}
675 676

class GitTagVersion {
677
  const GitTagVersion(this.x, this.y, this.z, this.hotfix, this.commits, this.hash);
678 679 680 681
  const GitTagVersion.unknown()
    : x = null,
      y = null,
      z = null,
682
      hotfix = null,
683 684
      commits = 0,
      hash = '';
685 686 687 688 689 690 691 692 693 694

  /// 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;

695
  /// the F in vX.Y.Z+hotfix.F
696 697
  final int hotfix;

698 699 700 701 702 703
  /// 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;

704 705
  static GitTagVersion determine(ProcessUtils processUtils, [String workingDirectory]) {
    return parse(_runGit('git describe --match v*.*.* --first-parent --long --tags', processUtils, workingDirectory));
706 707 708
  }

  static GitTagVersion parse(String version) {
709
    final RegExp versionPattern = RegExp(r'^v([0-9]+)\.([0-9]+)\.([0-9]+)(?:\+hotfix\.([0-9]+))?-([0-9]+)-g([a-f0-9]+)$');
710
    final List<String> parts = versionPattern.matchAsPrefix(version)?.groups(<int>[1, 2, 3, 4, 5, 6]);
711
    if (parts == null) {
712
      globals.printTrace('Could not interpret results of "git describe": $version');
713 714
      return const GitTagVersion.unknown();
    }
715 716
    final List<int> parsedParts = parts.take(5).map<int>((String source) => source == null ? null : int.tryParse(source)).toList();
    return GitTagVersion(parsedParts[0], parsedParts[1], parsedParts[2], parsedParts[3], parsedParts[4], parts[5]);
717 718 719
  }

  String frameworkVersionFor(String revision) {
720
    if (x == null || y == null || z == null || !revision.startsWith(hash)) {
721
      return '0.0.0-unknown';
722
    }
723
    if (commits == 0) {
724
      if (hotfix != null) {
725
        return '$x.$y.$z+hotfix.$hotfix';
726
      }
727
      return '$x.$y.$z';
728
    }
729
    if (hotfix != null) {
730
      return '$x.$y.$z+hotfix.${hotfix + 1}-pre.$commits';
731
    }
732 733 734
    return '$x.$y.${z + 1}-pre.$commits';
  }
}
735 736 737 738 739 740 741 742 743 744

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,
}