diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2016-09-18 20:50:08 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2016-09-18 20:54:03 -0700 |
| commit | ccca198c1b1730b0241911cb56dc8e3504958b2a (patch) | |
| tree | a2dd9b8b087a09afdcecc5cbb3377bed15127eb2 /scripts/fetchDependency.ps1 | |
| download | vcpkg-ccca198c1b1730b0241911cb56dc8e3504958b2a.tar.gz vcpkg-ccca198c1b1730b0241911cb56dc8e3504958b2a.zip | |
Initial commit
Diffstat (limited to 'scripts/fetchDependency.ps1')
| -rw-r--r-- | scripts/fetchDependency.ps1 | 212 |
1 files changed, 212 insertions, 0 deletions
diff --git a/scripts/fetchDependency.ps1 b/scripts/fetchDependency.ps1 new file mode 100644 index 000000000..5873fd727 --- /dev/null +++ b/scripts/fetchDependency.ps1 @@ -0,0 +1,212 @@ +[CmdletBinding()] +param( + [string]$Dependency +) + +Import-Module BitsTransfer + +$scriptsdir = split-path -parent $MyInvocation.MyCommand.Definition +$vcpkgroot = Split-path $scriptsdir -Parent +$downloadsdir = "$vcpkgroot\downloads" + +function SelectProgram([Parameter(Mandatory=$true)][string]$Dependency) +{ + function hasGreaterOrEqualVersion([Parameter(Mandatory=$true)]$requiredVersion, [Parameter(Mandatory=$true)]$availableVersion) + { + if ($availableVersion[0] -gt $requiredVersion[0]) {return $true} + if ($availableVersion[0] -lt $requiredVersion[0]) {return $false} + + if ($availableVersion[1] -gt $requiredVersion[1]) {return $true} + if ($availableVersion[1] -lt $requiredVersion[1]) {return $false} + + return ($availableVersion[2] -ge $requiredVersion[2]) + } + + function promptForDownload([string]$title, [string]$message, [string]$yesDescription, [string]$noDescription) + { + if ((Test-Path "$downloadsdir\AlwaysAllowEverything") -Or (Test-Path "$downloadsdir\AlwaysAllowDownloads")) + { + return $true + } + + $yes = New-Object System.Management.Automation.Host.ChoiceDescription "&Yes", $yesDescription + $no = New-Object System.Management.Automation.Host.ChoiceDescription "&No", $noDescription + $AlwaysAllowDownloads = New-Object System.Management.Automation.Host.ChoiceDescription "&Always Allow Downloads", ($yesDescription + "(Future download prompts will not be displayed)") + + $options = [System.Management.Automation.Host.ChoiceDescription[]]($yes, $no, $AlwaysAllowDownloads) + $result = $host.ui.PromptForChoice($title, $message, $options, 0) + + switch ($result) + { + 0 {return $true} + 1 {return $false} + 2 { + New-Item "$downloadsdir\AlwaysAllowDownloads" -type file -force | Out-Null + return $true + } + } + + throw "Unexpected result" + } + + + function performDownload( [Parameter(Mandatory=$true)][string]$Dependency, + [Parameter(Mandatory=$true)][string]$url, + [Parameter(Mandatory=$true)][string]$downloaddir, + [Parameter(Mandatory=$true)][string]$downloadPath, + [Parameter(Mandatory=$true)][string]$downloadVersion, + [Parameter(Mandatory=$true)][string]$requiredVersion) + { + if (Test-Path $downloadPath) + { + return + } + + $title = "Download " + $Dependency + $message = ("No suitable version of " + $Dependency + " was found (requires $requiredVersion or higher). Download portable version?") + $yesDescription = "Downloads " + $Dependency + " v" + $downloadVersion +" app-locally." + $noDescription = "Does not download " + $Dependency + "." + + $userAllowedDownload = promptForDownload $title $message $yesDescription $noDescription + if (!$userAllowedDownload) + { + throw [System.IO.FileNotFoundException] ("Could not detect suitable version of " + $Dependency + " and download not allowed") + } + + if (!(Test-Path $downloaddir)) + { + New-Item -ItemType directory -Path $downloaddir | Out-Null + } + + if ($Dependency -ne "git") # git fails with BITS + { + Start-BitsTransfer -Source $url -Destination $downloadPath -ErrorAction SilentlyContinue + } + else + { + if (!(Test-Path $downloadPath)) + { + Write-Host("Downloading $Dependency...") + (New-Object System.Net.WebClient).DownloadFile($url, $downloadPath) + } + } + } + + # Enums (without resorting to C#) are only available on powershell 5+. + $ExtractionType_NO_EXTRACTION_REQUIRED = 0 + $ExtractionType_ZIP = 1 + $ExtractionType_SELF_EXTRACTING_7Z = 2 + + + # Using this to wait for the execution to finish + function Invoke-Command() + { + param ( [string]$program = $(throw "Please specify a program" ), + [string]$argumentString = "", + [switch]$waitForExit ) + + $psi = new-object "Diagnostics.ProcessStartInfo" + $psi.FileName = $program + $psi.Arguments = $argumentString + $proc = [Diagnostics.Process]::Start($psi) + if ( $waitForExit ) + { + $proc.WaitForExit(); + } + } + + function Expand-ZIPFile($file, $destination) + { + Write-Host($file) + Write-Host($destination) + $shell = new-object -com shell.application + $zip = $shell.NameSpace($file) + foreach($item in $zip.items()) + { + # Piping to Out-Null is used to block until finished + $shell.Namespace($destination).copyhere($item) | Out-Null + } + } + + if($Dependency -eq "cmake") + { + $requiredVersion = "3.5.0" + $downloadVersion = "3.5.2" + $url = "https://cmake.org/files/v3.5/cmake-3.5.2-win32-x86.zip" + $downloadName = "cmake-3.5.2-win32-x86.zip" + $expectedDownloadedFileHash = "671073aee66b3480a564d0736792e40570a11e861bb34819bb7ae7858bbdfb80" + $executableFromDownload = "$downloadsdir\cmake-3.5.2-win32-x86\bin\cmake.exe" + $extractionType = $ExtractionType_ZIP + } + elseif($Dependency -eq "nuget") + { + $requiredVersion = "1.0.0" + $downloadVersion = "3.4.3" + $url = "https://dist.nuget.org/win-x86-commandline/v3.4.3/nuget.exe" + $downloadName = "nuget.exe" + $expectedDownloadedFileHash = "3B1EA72943968D7AF6BACDB4F2F3A048A25AFD14564EF1D8B1C041FDB09EBB0A" + $executableFromDownload = "$downloadsdir\nuget.exe" + $extractionType = $ExtractionType_NO_EXTRACTION_REQUIRED + } + elseif($Dependency -eq "git") + { + $requiredVersion = "2.0.0" + $downloadVersion = "2.8.3" + $url = "https://github.com/git-for-windows/git/releases/download/v2.8.3.windows.1/PortableGit-2.8.3-32-bit.7z.exe" # We choose the 32-bit version + $downloadName = "PortableGit-2.8.3-32-bit.7z.exe" + $expectedDownloadedFileHash = "DE52D070219E9C4EC1DB179F2ADBF4B760686C3180608F0382A1F8C7031E72AD" + # There is another copy of git.exe in PortableGit\bin. However, an installed version of git add the cmd dir to the PATH. + # Therefore, choosing the cmd dir here as well. + $executableFromDownload = "$downloadsdir\PortableGit\cmd\git.exe" + $extractionType = $ExtractionType_SELF_EXTRACTING_7Z + } + else + { + throw "Unknown program requested" + } + + $downloadPath = "$downloadsdir\$downloadName" + performDownload $Dependency $url $downloadsdir $downloadPath $downloadVersion $requiredVersion + + #calculating the hash + $hashAlgorithm = [Security.Cryptography.HashAlgorithm]::Create("SHA256") + $fileAsByteArray = [io.File]::ReadAllBytes($downloadPath) + $hashByteArray = $hashAlgorithm.ComputeHash($fileAsByteArray) + $downloadedFileHash = -Join ($hashByteArray | ForEach {"{0:x2}" -f $_}) + + if ($expectedDownloadedFileHash -ne $downloadedFileHash) + { + throw [System.IO.FileNotFoundException] ("Mismatching hash of the downloaded " + $Dependency) + } + + if ($extractionType -eq $ExtractionType_NO_EXTRACTION_REQUIRED) + { + # do nothing + } + elseif($extractionType -eq $ExtractionType_ZIP) + { + if (-not (Test-Path $executableFromDownload)) # consider renaming the extraction folder to make sure the extraction finished + { + # Expand-Archive $downloadPath -dest "$downloadsdir" -Force # Requires powershell 5+ + Expand-ZIPFile -File $downloadPath -Destination $downloadsdir + } + } + elseif($extractionType -eq $ExtractionType_SELF_EXTRACTING_7Z) + { + if (-not (Test-Path $executableFromDownload)) + { + Invoke-Command $downloadPath "-y" -waitForExit:$true + } + } + else + { + throw "Invalid extraction type" + } + + if (-not (Test-Path $executableFromDownload)) + { + throw [System.IO.FileNotFoundException] ("Could not detect or download " + $Dependency) + } +} + +SelectProgram $Dependency
\ No newline at end of file |
