forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLocalDebugClient.ts
More file actions
142 lines (132 loc) · 6.09 KB
/
Copy pathLocalDebugClient.ts
File metadata and controls
142 lines (132 loc) · 6.09 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
import {BaseDebugServer} from "../DebugServers/BaseDebugServer";
import {LocalDebugServer} from "../DebugServers/LocalDebugServer";
import {IPythonProcess, IPythonThread, IDebugServer} from "../Common/Contracts";
import {DebugSession, OutputEvent} from "vscode-debugadapter";
import * as path from "path";
import * as child_process from "child_process";
import {LaunchRequestArguments} from "../Common/Contracts";
import {DebugClient, DebugType} from "./DebugClient";
import * as fs from "fs";
import {open} from "../../common/open";
let fsExtra = require("fs-extra");
let tmp = require("tmp");
let prependFile = require("prepend-file");
let LineByLineReader = require("line-by-line");
const PTVS_FILES = ["visualstudio_ipython_repl.py", "visualstudio_py_debugger.py",
"visualstudio_py_launcher.py", "visualstudio_py_repl.py", "visualstudio_py_util.py"];
export class LocalDebugClient extends DebugClient {
protected args: LaunchRequestArguments;
constructor(args: any, debugSession: DebugSession) {
super(args, debugSession);
this.args = args;
}
private pyProc: child_process.ChildProcess;
private pythonProcess: IPythonProcess;
private debugServer: BaseDebugServer;
public CreateDebugServer(pythonProcess: IPythonProcess): BaseDebugServer {
this.pythonProcess = pythonProcess;
this.debugServer = new LocalDebugServer(this.debugSession, this.pythonProcess);
return this.debugServer;
}
public get DebugType(): DebugType {
return DebugType.Local;
}
public Stop() {
if (this.debugServer) {
this.debugServer.Stop();
this.debugServer = null;
}
if (this.pyProc) {
try { this.pyProc.send("EXIT"); }
catch (ex) { }
try { this.pyProc.stdin.write("EXIT"); }
catch (ex) { }
try { this.pyProc.disconnect(); }
catch (ex) { }
this.pyProc = null;
}
}
private getPTVSToolsFilePath(): string {
let currentFileName = module.filename;
let ptVSToolsPath = path.join(path.dirname(currentFileName), "..", "..", "..", "..", "pythonFiles", "PythonTools");
return path.join(ptVSToolsPath, "visualstudio_py_launcher.py");
}
private displayError(error: any, context: string = "") {
if (!error) { return; }
let errorMsg = typeof error === "string" ? error : ((error.message && error.message.length > 0) ? error.message : "");
if (errorMsg.length > 0) {
this.debugSession.sendEvent(new OutputEvent(context + (context.length > 0 ? ": " : "") + errorMsg + "\n", "stderr"));
}
}
public LaunchApplicationToDebug(dbgServer: IDebugServer): Promise<any> {
return new Promise<any>((resolve, reject) => {
let fileDir = path.dirname(this.args.program);
let processCwd = fileDir;
if (typeof this.args.cwd === "string" && this.args.cwd.length > 0) {
processCwd = this.args.cwd;
}
let fileNameWithoutPath = path.basename(this.args.program);
let pythonPath = "python";
if (typeof this.args.pythonPath === "string" && this.args.pythonPath.trim().length > 0) {
pythonPath = this.args.pythonPath;
}
let environmentVariables = this.args.env ? this.args.env : {};
if (environmentVariables) {
for (let setting in process.env) {
if (!environmentVariables[setting]) {
environmentVariables[setting] = process.env[setting];
}
}
}
if (!environmentVariables.hasOwnProperty("PYTHONIOENCODING")) {
environmentVariables["PYTHONIOENCODING"] = "UTF-8";
}
let currentFileName = module.filename;
let ptVSToolsFilePath = this.getPTVSToolsFilePath();
let launcherArgs = this.buildLauncherArguments();
let args = [ptVSToolsFilePath, processCwd, dbgServer.port.toString(), "34806ad9-833a-4524-8cd6-18ca4aa74f14"].concat(launcherArgs);
if (this.args.externalConsole === true) {
open({ wait: false, app: [pythonPath].concat(args), cwd: processCwd, env: environmentVariables }).then(proc => {
this.pyProc = proc;
resolve();
}, error => {
// TODO: This condition makes no sense (refactor)
if (!this.debugServer && this.debugServer.IsRunning) {
return;
}
reject(error);
});
return;
}
this.pyProc = child_process.spawn(pythonPath, args, { cwd: processCwd, env: environmentVariables });
this.pyProc.on("error", error => {
// TODO: This condition makes no sense (refactor)
if (!this.debugServer && this.debugServer.IsRunning) {
return;
}
this.displayError(error, "pyProc.error");
});
this.pyProc.stderr.setEncoding("utf8");
this.pyProc.stderr.on("data", error => {
// TODO: This condition makes no sense (refactor)
if (!this.debugServer && this.debugServer.IsRunning) {
return;
}
this.displayError(error, "pyProc.stderr");
});
this.pyProc.stdout.on("data", d => {
// This is necessary so we read the stdout of the python process
// Else it just keep building up (related to issue #203 and #52)
})
resolve();
});
}
protected buildLauncherArguments(): string[] {
let vsDebugOptions = "WaitOnAbnormalExit,WaitOnNormalExit,RedirectOutput";
if (Array.isArray(this.args.debugOptions)) {
vsDebugOptions = this.args.debugOptions.join(",");
}
let programArgs = Array.isArray(this.args.args) && this.args.args.length > 0 ? this.args.args : [];
return [vsDebugOptions, this.args.program].concat(programArgs);
}
}