aboutsummaryrefslogtreecommitdiff
path: root/scripts/VcpkgPowershellUtils.ps1
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-11-15 18:07:50 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-11-15 22:37:24 -0800
commit2abdcc1eec62fa7bd6af7abe0d7884966bd65b59 (patch)
tree6b86a40651a8451136ac7007427d00630d62d1e5 /scripts/VcpkgPowershellUtils.ps1
parent7e3dcc4f096925f152593e3c8cd33e5dbf0b4e6f (diff)
downloadvcpkg-2abdcc1eec62fa7bd6af7abe0d7884966bd65b59.tar.gz
vcpkg-2abdcc1eec62fa7bd6af7abe0d7884966bd65b59.zip
Introduce VcpkgPowershellUtils
Diffstat (limited to 'scripts/VcpkgPowershellUtils.ps1')
-rw-r--r--scripts/VcpkgPowershellUtils.ps1185
1 files changed, 185 insertions, 0 deletions
diff --git a/scripts/VcpkgPowershellUtils.ps1 b/scripts/VcpkgPowershellUtils.ps1
new file mode 100644
index 000000000..c7447b383
--- /dev/null
+++ b/scripts/VcpkgPowershellUtils.ps1
@@ -0,0 +1,185 @@
+function vcpkgHasModule([Parameter(Mandatory=$true)][string]$moduleName)
+{
+ return [bool](Get-Module -ListAvailable -Name $moduleName)
+}
+
+function vcpkgCreateDirectory([Parameter(Mandatory=$true)][string]$dirPath)
+{
+ if (!(Test-Path $dirPath))
+ {
+ New-Item -ItemType Directory -Path $dirPath | Out-Null
+ }
+}
+
+function vcpkgRemoveDirectory([Parameter(Mandatory=$true)][string]$dirPath)
+{
+ if (Test-Path $dirPath)
+ {
+ Remove-Item $dirPath -Recurse -Force
+ }
+}
+
+function vcpkgRemoveFile([Parameter(Mandatory=$true)][string]$filePath)
+{
+ if (Test-Path $filePath)
+ {
+ Remove-Item $filePath -Force
+ }
+}
+
+function vcpkgHasCommand([Parameter(Mandatory=$true)][string]$commandName)
+{
+ return [bool](Get-Command -Name $commandName -ErrorAction SilentlyContinue)
+}
+
+function vcpkgHasCommandParameter([Parameter(Mandatory=$true)][string]$commandName, [Parameter(Mandatory=$true)][string]$parameterName)
+{
+ return (Get-Command $commandName).Parameters.Keys -contains $parameterName
+}
+
+function vcpkgGetCredentials()
+{
+ if (vcpkgHasCommandParameter -commandName 'Get-Credential' -parameterName 'Message')
+ {
+ return Get-Credential -Message "Enter credentials for Proxy Authentication"
+ }
+ else
+ {
+ Write-Host "Enter credentials for Proxy Authentication"
+ return Get-Credential
+ }
+}
+
+function vcpkgGetSHA256([Parameter(Mandatory=$true)][string]$filePath)
+{
+ if (vcpkgHasCommand -commandName 'Microsoft.PowerShell.Utility\Get-FileHash')
+ {
+ Write-Verbose("Hashing with Microsoft.PowerShell.Utility\Get-FileHash")
+ $hash = (Microsoft.PowerShell.Utility\Get-FileHash -Path $filePath -Algorithm SHA256).Hash
+ }
+ elseif(vcpkgHasCommand -commandName 'Pscx\Get-Hash')
+ {
+ Write-Verbose("Hashing with Pscx\Get-Hash")
+ $hash = (Pscx\Get-Hash -Path $filePath -Algorithm SHA256).HashString
+ }
+ else
+ {
+ Write-Verbose("Hashing with .NET")
+ $hashAlgorithm = [Security.Cryptography.HashAlgorithm]::Create("SHA256")
+ $fileAsByteArray = [io.File]::ReadAllBytes($filePath)
+ $hashByteArray = $hashAlgorithm.ComputeHash($fileAsByteArray)
+ $hash = -Join ($hashByteArray | ForEach-Object {"{0:x2}" -f $_})
+ }
+
+ return $hash.ToLower()
+}
+
+function vcpkgCheckEqualFileHash( [Parameter(Mandatory=$true)][string]$filePath,
+ [Parameter(Mandatory=$true)][string]$expectedHash,
+ [Parameter(Mandatory=$true)][string]$actualHash )
+{
+ if ($expectedDownloadedFileHash -ne $downloadedFileHash)
+ {
+ Write-Host ("`nFile does not have expected hash:`n" +
+ " File path: [ $filePath ]`n" +
+ " Expected hash: [ $expectedHash ]`n" +
+ " Actual hash: [ $actualHash ]`n")
+ throw "Invalid Hash for file $filePath"
+ }
+}
+
+if (vcpkgHasModule -moduleName 'BitsTransfer')
+{
+ Import-Module BitsTransfer -Verbose:$false
+}
+
+function vcpkgDownloadFile( [Parameter(Mandatory=$true)][string]$url,
+ [Parameter(Mandatory=$true)][string]$downloadPath)
+{
+ if (Test-Path $downloadPath)
+ {
+ return
+ }
+
+ $downloadDir = split-path -parent $downloadPath
+ vcpkgCreateDirectory $downloadDir
+
+ $downloadPartPath = "$downloadPath.part"
+ vcpkgRemoveFile $downloadPartPath
+
+ $wc = New-Object System.Net.WebClient
+ $proxyAuth = !$wc.Proxy.IsBypassed($url)
+ if ($proxyAuth)
+ {
+ $wc.Proxy.Credentials = vcpkgGetCredentials
+ }
+
+ # Some download (e.g. git from github)fail with Start-BitsTransfer
+ if (vcpkgHasCommand -commandName 'Start-BitsTransfer')
+ {
+ try
+ {
+ if ($proxyAuth)
+ {
+ $PSDefaultParameterValues.Add("Start-BitsTransfer:ProxyAuthentication","Basic")
+ $PSDefaultParameterValues.Add("Start-BitsTransfer:ProxyCredential", $wc.Proxy.Credentials)
+ }
+ Start-BitsTransfer -Source $url -Destination $downloadPartPath -ErrorAction Stop
+ Move-Item -Path $downloadPartPath -Destination $downloadPath
+ return
+ }
+ catch [System.Exception]
+ {
+ # If BITS fails for any reason, delete any potentially partially downloaded files and continue
+ vcpkgRemoveFile $downloadPartPath
+ }
+ }
+
+ Write-Verbose("Downloading $Dependency...")
+ $wc.DownloadFile($url, $downloadPartPath)
+ Move-Item -Path $downloadPartPath -Destination $downloadPath
+}
+
+function vcpkgExtractFile( [Parameter(Mandatory=$true)][string]$file,
+ [Parameter(Mandatory=$true)][string]$destination)
+{
+ vcpkgCreateDirectory $destination
+
+ if (vcpkgHasCommand -commandName 'Microsoft.PowerShell.Archive\Expand-Archive')
+ {
+ Write-Verbose("Extracting with Microsoft.PowerShell.Archive\Expand-Archive")
+ Microsoft.PowerShell.Archive\Expand-Archive -path $file -destinationpath $destination
+ }
+ elseif (vcpkgHasCommand -commandName 'Pscx\Expand-Archive')
+ {
+ Write-Verbose("Extracting with Pscx\Expand-Archive")
+ Pscx\Expand-Archive -path $file -OutputPath $destination
+ }
+ else
+ {
+ Write-Verbose("Extracting via shell")
+ $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
+ }
+ }
+}
+
+function vcpkgInvokeCommand()
+{
+ param ( [Parameter(Mandatory=$true)][string]$executable,
+ [string]$arguments = "",
+ [switch]$wait)
+
+ Write-Verbose "Executing: ${executable} ${arguments}"
+ $process = Start-Process -FilePath $executable -ArgumentList $arguments -PassThru
+ if ($wait)
+ {
+ Wait-Process -InputObject $process
+ $ec = $process.ExitCode
+ Write-Verbose "Execution terminated with exit code $ec."
+ }
+} \ No newline at end of file