-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathvenvUtils.ts
More file actions
484 lines (436 loc) · 17 KB
/
venvUtils.ts
File metadata and controls
484 lines (436 loc) · 17 KB
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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
import * as fsapi from 'fs-extra';
import * as os from 'os';
import * as path from 'path';
import { l10n, LogOutputChannel, ProgressLocation, QuickPickItem, QuickPickItemKind, ThemeIcon, Uri } from 'vscode';
import { EnvironmentManager, PythonEnvironment, PythonEnvironmentApi, PythonEnvironmentInfo } from '../../api';
import { ENVS_EXTENSION_ID } from '../../common/constants';
import { Common, VenvManagerStrings } from '../../common/localize';
import { traceInfo } from '../../common/logging';
import { getWorkspacePersistentState } from '../../common/persistentState';
import { EventNames } from '../../common/telemetry/constants';
import { sendTelemetryEvent } from '../../common/telemetry/sender';
import { normalizePath } from '../../common/utils/pathUtils';
import {
showErrorMessage,
showOpenDialog,
showQuickPick,
showWarningMessage,
withProgress,
} from '../../common/window.apis';
import { getConfiguration } from '../../common/workspace.apis';
import {
isNativeEnvInfo,
NativeEnvInfo,
NativePythonEnvironmentKind,
NativePythonFinder,
} from '../common/nativePythonFinder';
import { getShellActivationCommands, shortVersion, sortEnvironments } from '../common/utils';
import { runPython, runUV, shouldUseUv } from './helpers';
import { getProjectInstallable, PipPackages } from './pipUtils';
import { resolveSystemPythonEnvironmentPath } from './utils';
import { addUvEnvironment, removeUvEnvironment, UV_ENVS_KEY } from './uvEnvironments';
import { createStepBasedVenvFlow } from './venvStepBasedFlow';
export const VENV_WORKSPACE_KEY = `${ENVS_EXTENSION_ID}:venv:WORKSPACE_SELECTED`;
export const VENV_GLOBAL_KEY = `${ENVS_EXTENSION_ID}:venv:GLOBAL_SELECTED`;
/**
* Result of environment creation operation.
*/
export interface CreateEnvironmentResult {
/**
* The created environment, if successful.
*/
environment?: PythonEnvironment;
/*
* Exists if error occurred during environment creation and includes error explanation.
*/
envCreationErr?: string;
/*
* Exists if error occurred while installing packages and includes error description.
*/
pkgInstallationErr?: string;
}
export async function clearVenvCache(): Promise<void> {
const keys = [VENV_WORKSPACE_KEY, VENV_GLOBAL_KEY, UV_ENVS_KEY];
const state = await getWorkspacePersistentState();
await state.clear(keys);
}
export async function getVenvForWorkspace(fsPath: string): Promise<string | undefined> {
if (process.env.VIRTUAL_ENV) {
return process.env.VIRTUAL_ENV;
}
const state = await getWorkspacePersistentState();
const data: { [key: string]: string } | undefined = await state.get(VENV_WORKSPACE_KEY);
if (data) {
try {
const envPath = data[fsPath];
if (await fsapi.pathExists(envPath)) {
return envPath;
}
setVenvForWorkspace(fsPath, undefined);
} catch {
return undefined;
}
}
return undefined;
}
export async function setVenvForWorkspace(fsPath: string, envPath: string | undefined): Promise<void> {
const state = await getWorkspacePersistentState();
const data: { [key: string]: string } = (await state.get(VENV_WORKSPACE_KEY)) ?? {};
if (envPath) {
data[fsPath] = envPath;
} else {
delete data[fsPath];
}
await state.set(VENV_WORKSPACE_KEY, data);
}
export async function setVenvForWorkspaces(fsPaths: string[], envPath: string | undefined): Promise<void> {
const state = await getWorkspacePersistentState();
const data: { [key: string]: string } = (await state.get(VENV_WORKSPACE_KEY)) ?? {};
fsPaths.forEach((s) => {
if (envPath) {
data[s] = envPath;
} else {
delete data[s];
}
});
await state.set(VENV_WORKSPACE_KEY, data);
}
export async function getVenvForGlobal(): Promise<string | undefined> {
const state = await getWorkspacePersistentState();
const envPath: string | undefined = await state.get(VENV_GLOBAL_KEY);
if (envPath && (await fsapi.pathExists(envPath))) {
return envPath;
}
return undefined;
}
export async function setVenvForGlobal(envPath: string | undefined): Promise<void> {
const state = await getWorkspacePersistentState();
await state.set(VENV_GLOBAL_KEY, envPath);
}
function getName(binPath: string): string {
const dir1 = path.dirname(binPath);
if (dir1.endsWith('bin') || dir1.endsWith('Scripts') || dir1.endsWith('scripts')) {
return path.basename(path.dirname(dir1));
}
return path.basename(dir1);
}
async function getPythonInfo(env: NativeEnvInfo): Promise<PythonEnvironmentInfo> {
if (env.executable && env.version && env.prefix) {
const venvName = env.name ?? getName(env.executable);
const sv = shortVersion(env.version);
const name = `${venvName} (${sv})`;
let description = undefined;
if (env.kind === NativePythonEnvironmentKind.venvUv) {
description = l10n.t('uv');
}
const binDir = path.dirname(env.executable);
const { shellActivation, shellDeactivation } = await getShellActivationCommands(binDir);
return {
name: name,
displayName: name,
shortDisplayName: `${sv} (${venvName})`,
displayPath: env.executable,
version: env.version,
description: description,
tooltip: env.executable,
environmentPath: Uri.file(env.executable),
iconPath: new ThemeIcon('python'),
sysPrefix: env.prefix,
execInfo: {
run: {
executable: env.executable,
},
activatedRun: {
executable: env.executable,
},
shellActivation,
shellDeactivation,
},
};
} else {
throw new Error(`Invalid python info: ${JSON.stringify(env)}`);
}
}
export async function findVirtualEnvironments(
hardRefresh: boolean,
nativeFinder: NativePythonFinder,
api: PythonEnvironmentApi,
log: LogOutputChannel,
manager: EnvironmentManager,
uris?: Uri[],
): Promise<PythonEnvironment[]> {
const collection: PythonEnvironment[] = [];
const data = await nativeFinder.refresh(hardRefresh, uris);
const envs = data
.filter((e) => isNativeEnvInfo(e))
.map((e) => e as NativeEnvInfo)
.filter((e) => e.kind === NativePythonEnvironmentKind.venv || e.kind === NativePythonEnvironmentKind.venvUv);
for (const e of envs) {
if (!(e.prefix && e.executable && e.version)) {
log.warn(`Invalid venv environment: ${JSON.stringify(e)}`);
continue;
}
const env = api.createPythonEnvironmentItem(await getPythonInfo(e), manager);
collection.push(env);
log.info(`Found venv environment: ${env.name}`);
// Track UV environments using environmentPath for consistency
if (e.kind === NativePythonEnvironmentKind.venvUv) {
await addUvEnvironment(env.environmentPath.fsPath);
}
}
return collection;
}
export async function getDefaultGlobalVenvLocation(): Promise<Uri> {
const dir = path.join(os.homedir(), '.virtualenvs');
await fsapi.ensureDir(dir);
return Uri.file(dir);
}
function getVenvFoldersSetting(): string[] {
const settings = getConfiguration('python');
return settings.get<string[]>('venvFolders', []);
}
interface FolderQuickPickItem extends QuickPickItem {
uri?: Uri;
}
export async function getGlobalVenvLocation(): Promise<Uri | undefined> {
const items: FolderQuickPickItem[] = [
{
label: Common.browse,
description: VenvManagerStrings.venvGlobalFolder,
},
];
const venvPaths = getVenvFoldersSetting();
if (venvPaths.length > 0) {
items.push(
{
label: VenvManagerStrings.venvGlobalFoldersSetting,
kind: QuickPickItemKind.Separator,
},
...venvPaths.map((p) => ({
label: path.basename(p),
description: path.resolve(p),
uri: Uri.file(path.resolve(p)),
})),
);
}
if (process.env.WORKON_HOME) {
items.push(
{
label: 'virtualenvwrapper',
kind: QuickPickItemKind.Separator,
},
{
label: 'WORKON_HOME (env variable)',
description: process.env.WORKON_HOME,
uri: Uri.file(process.env.WORKON_HOME),
},
);
}
const selected = await showQuickPick(items, {
placeHolder: VenvManagerStrings.venvGlobalFolder,
ignoreFocusOut: true,
});
if (selected) {
if (selected.label === Common.browse) {
const result = await showOpenDialog({
canSelectFiles: false,
canSelectFolders: true,
canSelectMany: false,
openLabel: Common.selectFolder,
});
if (result && result.length > 0) {
return result[0];
}
} else if (selected.uri) {
return selected.uri;
}
}
return undefined;
}
export async function createWithProgress(
nativeFinder: NativePythonFinder,
api: PythonEnvironmentApi,
log: LogOutputChannel,
manager: EnvironmentManager,
basePython: PythonEnvironment,
venvRoot: Uri,
envPath: string,
packages?: PipPackages,
): Promise<CreateEnvironmentResult | undefined> {
const pythonPath =
os.platform() === 'win32' ? path.join(envPath, 'Scripts', 'python.exe') : path.join(envPath, 'bin', 'python');
return await withProgress(
{
location: ProgressLocation.Notification,
title: l10n.t(
'Creating virtual environment named {0} using python version {1}.',
path.basename(envPath),
basePython.version,
),
},
async () => {
const result: CreateEnvironmentResult = {};
try {
const useUv = await shouldUseUv(log, basePython.environmentPath.fsPath);
// env creation
if (basePython.execInfo?.run.executable) {
if (useUv) {
await runUV(
['venv', '--verbose', '--seed', '--python', basePython.execInfo?.run.executable, envPath],
venvRoot.fsPath,
log,
);
} else {
await runPython(
basePython.execInfo.run.executable,
['-m', 'venv', envPath],
venvRoot.fsPath,
manager.log,
);
}
if (!(await fsapi.pathExists(pythonPath))) {
throw new Error('no python executable found in virtual environment');
}
}
// handle admin of new env
const resolved = await nativeFinder.resolve(pythonPath);
const env = api.createPythonEnvironmentItem(await getPythonInfo(resolved), manager);
if (useUv && resolved.kind === NativePythonEnvironmentKind.venvUv) {
await addUvEnvironment(env.environmentPath.fsPath);
}
// install packages
if (packages && (packages.install.length > 0 || packages.uninstall.length > 0)) {
try {
await api.managePackages(env, {
upgrade: false,
install: packages?.install,
uninstall: packages?.uninstall ?? [],
});
} catch (e) {
// error occurred while installing packages
result.pkgInstallationErr = e instanceof Error ? e.message : String(e);
}
}
result.environment = env;
} catch (e) {
log.error(`Failed to create virtual environment: ${e}`);
result.envCreationErr = `Failed to create virtual environment: ${e}`;
}
return result;
},
);
}
export function ensureGlobalEnv(basePythons: PythonEnvironment[], log: LogOutputChannel): PythonEnvironment[] {
if (basePythons.length === 0) {
log.error('No base python found');
showErrorMessage(VenvManagerStrings.venvErrorNoBasePython);
throw new Error('No base python found');
}
const filtered = basePythons.filter((e) => e.version.startsWith('3.'));
if (filtered.length === 0) {
log.error('Did not find any base python 3.*');
showErrorMessage(VenvManagerStrings.venvErrorNoPython3);
basePythons.forEach((e, i) => {
log.error(`${i}: ${e.version} : ${e.environmentPath.fsPath}`);
});
throw new Error('Did not find any base python 3.*');
}
return sortEnvironments(filtered);
}
export async function quickCreateVenv(
nativeFinder: NativePythonFinder,
api: PythonEnvironmentApi,
log: LogOutputChannel,
manager: EnvironmentManager,
baseEnv: PythonEnvironment,
venvRoot: Uri,
additionalPackages?: string[],
): Promise<CreateEnvironmentResult | undefined> {
const project = api.getPythonProject(venvRoot);
sendTelemetryEvent(EventNames.VENV_CREATION, undefined, { creationType: 'quick' });
const installables = await getProjectInstallable(api, project ? [project] : undefined);
const allPackages = [];
allPackages.push(...(installables?.flatMap((i) => i.args ?? []) ?? []));
if (additionalPackages) {
allPackages.push(...additionalPackages);
}
// Check if .venv already exists
let venvPath = path.join(venvRoot.fsPath, '.venv');
if (await fsapi.pathExists(venvPath)) {
// increment to create a unique name, e.g. .venv-1
let i = 1;
while (await fsapi.pathExists(`${venvPath}-${i}`)) {
i++;
}
venvPath = `${venvPath}-${i}`;
}
// createWithProgress handles building CreateEnvironmentResult and adding err msgs
return await createWithProgress(nativeFinder, api, log, manager, baseEnv, venvRoot, venvPath, {
install: allPackages,
uninstall: [],
});
}
export async function createPythonVenv(
nativeFinder: NativePythonFinder,
api: PythonEnvironmentApi,
log: LogOutputChannel,
manager: EnvironmentManager,
basePythons: PythonEnvironment[],
venvRoot: Uri,
options: { showQuickAndCustomOptions: boolean; additionalPackages?: string[] },
): Promise<CreateEnvironmentResult | undefined> {
return createStepBasedVenvFlow(nativeFinder, api, log, manager, basePythons, venvRoot, options);
}
export async function removeVenv(environment: PythonEnvironment, log: LogOutputChannel): Promise<boolean> {
const pythonPath = os.platform() === 'win32' ? 'python.exe' : 'python';
const envPath = environment.environmentPath.fsPath.endsWith(pythonPath)
? path.dirname(path.dirname(environment.environmentPath.fsPath))
: environment.environmentPath.fsPath;
// Normalize path for UI display - ensure forward slashes on Windows
const displayPath = normalizePath(envPath);
const confirm = await showWarningMessage(
l10n.t('Are you sure you want to remove {0}?', displayPath),
{
modal: true,
},
{ title: Common.yes },
{ title: Common.no, isCloseAffordance: true },
);
if (confirm?.title === Common.yes) {
const result = await withProgress(
{
location: ProgressLocation.Notification,
title: VenvManagerStrings.venvRemoving,
},
async () => {
try {
await fsapi.remove(envPath);
await removeUvEnvironment(environment.environmentPath.fsPath);
return true;
} catch (e) {
log.error(`Failed to remove virtual environment: ${e}`);
showErrorMessage(VenvManagerStrings.venvRemoveFailed);
return false;
}
},
);
return result;
}
traceInfo(`User cancelled removal of virtual environment: ${displayPath}`);
return false;
}
export async function resolveVenvPythonEnvironmentPath(
fsPath: string,
nativeFinder: NativePythonFinder,
api: PythonEnvironmentApi,
manager: EnvironmentManager,
baseManager: EnvironmentManager,
): Promise<PythonEnvironment | undefined> {
const resolved = await nativeFinder.resolve(fsPath);
if (resolved.kind === NativePythonEnvironmentKind.venv || resolved.kind === NativePythonEnvironmentKind.venvUv) {
const envInfo = await getPythonInfo(resolved);
// can't decide on if I need anything here....
return api.createPythonEnvironmentItem(envInfo, manager);
}
return resolveSystemPythonEnvironmentPath(fsPath, nativeFinder, api, baseManager);
}