update_dart_sdk.ps1 4.1 KB
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
# Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14 15
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.


# ---------------------------------- NOTE ---------------------------------- #
#
# Please keep the logic in this file consistent with the logic in the
# `update_dart_sdk.sh` script in the same directory to ensure that Flutter
# continues to work across all platforms!
#
# -------------------------------------------------------------------------- #

$ErrorActionPreference = "Stop"

16
$progName = Split-Path -parent $MyInvocation.MyCommand.Definition
17
$flutterRoot = (Get-Item $progName).parent.parent.FullName
18

19 20
$cachePath = "$flutterRoot\bin\cache"
$dartSdkPath = "$cachePath\dart-sdk"
21 22
$engineStamp = "$cachePath\engine-dart-sdk.stamp"
$engineVersion = (Get-Content "$flutterRoot\bin\internal\engine.version")
23

24 25
$oldDartSdkPrefix = "dart-sdk.old"

26 27 28 29 30
# Make sure that PowerShell has expected version.
$psMajorVersionRequired = 5
$psMajorVersionLocal = $PSVersionTable.PSVersion.Major
if ($psMajorVersionLocal -lt $psMajorVersionRequired) {
    Write-Host "Flutter requires PowerShell $psMajorVersionRequired.0 or newer."
31
    Write-Host "See https://flutter.dev/docs/get-started/install/windows for more."
32 33 34
    Write-Host "Current version is $psMajorVersionLocal."
    # Use exit code 2 to signal that shared.bat should exit immediately instead of retrying.
    exit 2
35 36
}

37
if ((Test-Path $engineStamp) -and ($engineVersion -eq (Get-Content $engineStamp))) {
38 39 40
    return
}

41 42 43 44
$dartSdkBaseUrl = $Env:FLUTTER_STORAGE_BASE_URL
if (-not $dartSdkBaseUrl) {
    $dartSdkBaseUrl = "https://storage.googleapis.com"
}
45
$dartZipName = "dart-sdk-windows-x64.zip"
46
$dartSdkUrl = "$dartSdkBaseUrl/flutter_infra_release/flutter/$engineVersion/$dartZipName"
47

48 49 50 51 52 53
if (Test-Path $dartSdkPath) {
    # Move old SDK to a new location instead of deleting it in case it is still in use (e.g. by IntelliJ).
    $oldDartSdkSuffix = 1
    while (Test-Path "$cachePath\$oldDartSdkPrefix$oldDartSdkSuffix") { $oldDartSdkSuffix++ }
    Rename-Item $dartSdkPath "$oldDartSdkPrefix$oldDartSdkSuffix"
}
54
New-Item $dartSdkPath -force -type directory | Out-Null
55
$dartSdkZip = "$cachePath\$dartZipName"
56 57 58

Try {
    Import-Module BitsTransfer
59
    $ProgressPreference = 'SilentlyContinue'
60
    Start-BitsTransfer -Source $dartSdkUrl -Destination $dartSdkZip -ErrorAction Stop
61 62 63
}
Catch {
    Write-Host "Downloading the Dart SDK using the BITS service failed, retrying with WebRequest..."
64 65 66 67 68 69
    # Invoke-WebRequest is very slow when the progress bar is visible - a 28
    # second download can become a 33 minute download. Disable it with
    # $ProgressPreference and then restore the original value afterwards.
    # https://github.com/flutter/flutter/issues/37789
    $OriginalProgressPreference = $ProgressPreference
    $ProgressPreference = 'SilentlyContinue'
70
    Invoke-WebRequest -Uri $dartSdkUrl -OutFile $dartSdkZip
71
    $ProgressPreference = $OriginalProgressPreference
72
}
73

74
Write-Host "Expanding downloaded archive..."
75 76
If (Get-Command 7z -errorAction SilentlyContinue) {
    # The built-in unzippers are painfully slow. Use 7-Zip, if available.
77
    & 7z x $dartSdkZip "-o$cachePath" -bd | Out-Null
78 79
} ElseIf (Get-Command 7za -errorAction SilentlyContinue) {
    # Use 7-Zip's standalone version 7za.exe, if available.
80
    & 7za x $dartSdkZip "-o$cachePath" -bd | Out-Null
81
} ElseIf (Get-Command Microsoft.PowerShell.Archive\Expand-Archive -errorAction SilentlyContinue) {
82
    # Use PowerShell's built-in unzipper, if available (requires PowerShell 5+).
83
    $global:ProgressPreference='SilentlyContinue'
84
    Microsoft.PowerShell.Archive\Expand-Archive $dartSdkZip -DestinationPath $cachePath
85 86
} Else {
    # As last resort: fall back to the Windows GUI.
87 88 89 90 91 92
    $shell = New-Object -com shell.application
    $zip = $shell.NameSpace($dartSdkZip)
    foreach($item in $zip.items()) {
        $shell.Namespace($cachePath).copyhere($item)
    }
}
93

94
Remove-Item $dartSdkZip
95
$engineVersion | Out-File $engineStamp -Encoding ASCII
96 97 98

# Try to delete all old SDKs.
Get-ChildItem -Path $cachePath | Where {$_.BaseName.StartsWith($oldDartSdkPrefix)} | Remove-Item -Recurse -ErrorAction SilentlyContinue