Spaces:
Running
Running
File size: 7,890 Bytes
1d777c4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
param([parameter(Position=0,Mandatory=$false)] [Hashtable] $CondaModuleArgs=@{})
# Defaults from before we had arguments.
if (-not $CondaModuleArgs.ContainsKey('ChangePs1')) {
$CondaModuleArgs.ChangePs1 = $True
}
## ENVIRONMENT MANAGEMENT ######################################################
<#
.SYNOPSIS
Obtains a list of valid conda environments.
.EXAMPLE
Get-CondaEnvironment
.EXAMPLE
genv
#>
function Get-CondaEnvironment {
[CmdletBinding()]
param();
begin {}
process {
# NB: the JSON output of conda env list does not include the names
# of each env, so we need to parse the fragile output instead.
& $Env:CONDA_EXE $Env:_CE_M $Env:_CE_CONDA env list | `
Where-Object { -not $_.StartsWith("#") } | `
Where-Object { -not $_.Trim().Length -eq 0 } | `
ForEach-Object {
$envLine = $_ -split "\s+";
$Active = $envLine[1] -eq "*";
[PSCustomObject] @{
Name = $envLine[0];
Active = $Active;
Path = if ($Active) {$envLine[2]} else {$envLine[1]};
} | Write-Output;
}
}
end {}
}
<#
.SYNOPSIS
Activates a conda environment, placing its commands and packages at
the head of $Env:PATH.
.EXAMPLE
Enter-CondaEnvironment base
.EXAMPLE
etenv base
.NOTES
This command does not currently support activating environments stored
in a non-standard location.
#>
function Enter-CondaEnvironment {
[CmdletBinding()]
param(
[Parameter(Mandatory=$false)][switch]$Stack,
[Parameter(Position=0)][string]$Name
);
begin {
If ($Stack) {
$activateCommand = (& $Env:CONDA_EXE $Env:_CE_M $Env:_CE_CONDA shell.powershell activate --stack $Name | Out-String);
} Else {
$activateCommand = (& $Env:CONDA_EXE $Env:_CE_M $Env:_CE_CONDA shell.powershell activate $Name | Out-String);
}
Write-Verbose "[conda shell.powershell activate $Name]`n$activateCommand";
Invoke-Expression -Command $activateCommand;
}
process {}
end {}
}
<#
.SYNOPSIS
Deactivates the current conda environment, if any.
.EXAMPLE
Exit-CondaEnvironment
.EXAMPLE
exenv
#>
function Exit-CondaEnvironment {
[CmdletBinding()]
param();
begin {
$deactivateCommand = (& $Env:CONDA_EXE $Env:_CE_M $Env:_CE_CONDA shell.powershell deactivate | Out-String);
# If deactivate returns an empty string, we have nothing more to do,
# so return early.
if ($deactivateCommand.Trim().Length -eq 0) {
return;
}
Write-Verbose "[conda shell.powershell deactivate]`n$deactivateCommand";
Invoke-Expression -Command $deactivateCommand;
}
process {}
end {}
}
## CONDA WRAPPER ###############################################################
<#
.SYNOPSIS
conda is a tool for managing and deploying applications, environments
and packages.
.PARAMETER Command
Subcommand to invoke.
.EXAMPLE
conda install toolz
#>
function Invoke-Conda() {
# Don't use any explicit args here, we'll use $args and tab completion
# so that we can capture everything, INCLUDING short options (e.g. -n).
if ($Args.Count -eq 0) {
# No args, just call the underlying conda executable.
& $Env:CONDA_EXE $Env:_CE_M $Env:_CE_CONDA;
}
else {
$Command = $Args[0];
if ($Args.Count -ge 2) {
$OtherArgs = $Args[1..($Args.Count - 1)];
} else {
$OtherArgs = @();
}
switch ($Command) {
"activate" {
Enter-CondaEnvironment @OtherArgs;
}
"deactivate" {
Exit-CondaEnvironment;
}
default {
# There may be a command we don't know want to handle
# differently in the shell wrapper, pass it through
# verbatim.
& $Env:CONDA_EXE $Env:_CE_M $Env:_CE_CONDA $Command @OtherArgs;
}
}
}
}
## TAB COMPLETION ##############################################################
# We borrow the approach used by posh-git, in which we override any existing
# functions named TabExpansion, look for commands we can complete on, and then
# default to the previously defined TabExpansion function for everything else.
if (Test-Path Function:\TabExpansion) {
# Since this technique is common, we encounter an infinite loop if it's
# used more than once unless we give our backup a unique name.
Rename-Item Function:\TabExpansion CondaTabExpansionBackup
}
function Expand-CondaEnv() {
param(
[string]
$Filter
);
$ValidEnvs = Get-CondaEnvironment;
$ValidEnvs `
| Where-Object { $_.Name -like "$filter*" } `
| ForEach-Object { $_.Name } `
| Write-Output;
$ValidEnvs `
| Where-Object { $_.Path -like "$filter*" } `
| ForEach-Object { $_.Path } `
| Write-Output;
}
function Expand-CondaSubcommands() {
param(
[string]
$Filter
);
$ValidCommands = Invoke-Conda shell.powershell commands;
# Add in the commands defined within this wrapper, filter, sort, and return.
$ValidCommands + @('activate', 'deactivate') `
| Where-Object { $_ -like "$Filter*" } `
| Sort-Object `
| Write-Output;
}
function TabExpansion($line, $lastWord) {
$lastBlock = [regex]::Split($line, '[|;]')[-1].TrimStart()
switch -regex ($lastBlock) {
# Pull out conda commands we recognize first before falling through
# to the general patterns for conda itself.
"^conda activate (.*)" { Expand-CondaEnv $lastWord; break; }
"^etenv (.*)" { Expand-CondaEnv $lastWord; break; }
# If we got down to here, check arguments to conda itself.
"^conda (.*)" { Expand-CondaSubcommands $lastWord; break; }
# Finally, fall back on existing tab expansion.
default {
if (Test-Path Function:\CondaTabExpansionBackup) {
CondaTabExpansionBackup $line $lastWord
}
}
}
}
## PROMPT MANAGEMENT ###########################################################
<#
.SYNOPSIS
Modifies the current prompt to show the currently activated conda
environment, if any.
.EXAMPLE
Add-CondaEnvironmentToPrompt
Causes the current session's prompt to display the currently activated
conda environment.
#>
if ($CondaModuleArgs.ChangePs1) {
# We use the same procedure to nest prompts as we did for nested tab completion.
if (Test-Path Function:\prompt) {
Rename-Item Function:\prompt CondaPromptBackup
} else {
function CondaPromptBackup() {
# Restore a basic prompt if the definition is missing.
"PS $($executionContext.SessionState.Path.CurrentLocation)$('>' * ($nestedPromptLevel + 1)) ";
}
}
function global:prompt() {
if ($Env:CONDA_PROMPT_MODIFIER) {
$Env:CONDA_PROMPT_MODIFIER | Write-Host -NoNewline
}
CondaPromptBackup;
}
}
## ALIASES #####################################################################
New-Alias conda Invoke-Conda -Force
New-Alias genv Get-CondaEnvironment -Force
New-Alias etenv Enter-CondaEnvironment -Force
New-Alias exenv Exit-CondaEnvironment -Force
## EXPORTS ###################################################################
Export-ModuleMember `
-Alias * `
-Function `
Invoke-Conda, `
Get-CondaEnvironment, `
Enter-CondaEnvironment, Exit-CondaEnvironment, `
TabExpansion, prompt
|