|
1 | 1 | 'use strict';
|
2 | 2 |
|
3 | 3 | import {
|
4 |
| - Uri, workspace, WorkspaceFolder, |
| 4 | + Uri, workspace, WorkspaceFolder, extensions, WorkspaceConfiguration |
5 | 5 | } from 'vscode';
|
6 | 6 | import * as fs from 'fs';
|
7 | 7 | import * as path from 'path';
|
| 8 | +import { Constants } from "./constants"; |
8 | 9 |
|
9 | 10 | export class Configuration {
|
10 | 11 |
|
@@ -52,10 +53,40 @@ export class Configuration {
|
52 | 53 | return Configuration.loadAnySetting<string>('linter.run', 'onType', resource);
|
53 | 54 | }
|
54 | 55 |
|
55 |
| - public static getPythonPath(resource: Uri = null): string { |
| 56 | + public static async getPythonPath(resource: Uri = null): Promise<string> { |
| 57 | + try { |
| 58 | + const extension = extensions.getExtension("ms-python.python"); |
| 59 | + if (!extension) { |
| 60 | + return Constants.python; |
| 61 | + } |
| 62 | + const usingNewInterpreterStorage = extension.packageJSON?.featureFlags?.usingNewInterpreterStorage; |
| 63 | + if (usingNewInterpreterStorage) { |
| 64 | + if (!extension.isActive) { |
| 65 | + await extension.activate(); |
| 66 | + } |
| 67 | + const pythonPath = extension.exports.settings.getExecutionDetails(resource).execCommand[0]; |
| 68 | + return pythonPath; |
| 69 | + } else { |
| 70 | + return this.getConfiguration("python", resource).get<string>("pythonPath"); |
| 71 | + } |
| 72 | + } catch (error) { |
| 73 | + return Constants.python; |
| 74 | + } |
| 75 | + } |
| 76 | + |
| 77 | + public static getConfiguration(section?: string, resource: Uri = null ): WorkspaceConfiguration { |
| 78 | + if (resource) { |
| 79 | + return workspace.getConfiguration(section, resource); |
| 80 | + } else { |
| 81 | + return workspace.getConfiguration(section); |
| 82 | + } |
| 83 | + } |
| 84 | + |
| 85 | + public static getPythonPath2(resource: Uri = null): string { |
56 | 86 | // IMPORTANT: python3 does not work, so the default comes from Python extension.
|
57 | 87 | const primary = Configuration.loadSetting('pythonPath', 'python3', resource, true, 'python');
|
58 |
| - // assume pythonPath is relative to workspace root. |
| 88 | + // the user setting python.defaultInterpreterPath must be used to invoke the interpreter from the |
| 89 | + // VSCode internal storage |
59 | 90 | if (primary) {
|
60 | 91 | const workspaceRoot = Configuration.GetRootPath(resource);
|
61 | 92 | if (workspaceRoot) {
|
|
0 commit comments