forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimportSortProvider.ts
More file actions
40 lines (37 loc) · 2.05 KB
/
importSortProvider.ts
File metadata and controls
40 lines (37 loc) · 2.05 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
"use strict";
import * as vscode from "vscode";
import * as path from "path";
import * as fs from "fs";
import * as child_process from "child_process";
import * as settings from '../common/configSettings';
import {getTextEditsFromPatch, getTempFileWithDocumentContents} from "../common/editor";
export class PythonImportSortProvider {
public sortImports(extensionDir: string, document: vscode.TextDocument): Promise<vscode.TextEdit[]> {
if (document.lineCount === 1) {
return Promise.resolve([]);
}
return new Promise<vscode.TextEdit[]>((resolve, reject) => {
// isort does have the ability to read from the process input stream and return the formatted code out of the output stream
// However they don't support returning the diff of the formatted text when reading data from the input stream
// Yes getting text formatted that way avoids having to create a temporary file, however the diffing will have
// to be done here in node (extension), i.e. extension cpu, i.e. les responsive solution
let importScript = path.join(extensionDir, "pythonFiles", "sortImports.py");
let tmpFileCreated = document.isDirty;
let filePromise = tmpFileCreated ? getTempFileWithDocumentContents(document) : Promise.resolve(document.fileName);
filePromise.then(filePath => {
const pythonPath = settings.PythonSettings.getInstance().pythonPath;
child_process.exec(`${pythonPath} "${importScript}" "${filePath}" --diff`, (error, stdout, stderr) => {
if (tmpFileCreated) {
fs.unlink(filePath);
}
if (error || (stderr && stderr.length > 0)) {
return reject(error ? error : stderr);
}
let formattedText = stdout;
let edits = getTextEditsFromPatch(document.getText(), stdout);
resolve(edits);
});
}).catch(reject);
});
}
}