-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyprocrepl.go
259 lines (223 loc) · 8.09 KB
/
pyprocrepl.go
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
package jumpboot
import (
"bufio"
_ "embed"
"encoding/base64"
"fmt"
"io"
"os"
"path"
"runtime"
"strings"
"sync"
"time"
)
//go:embed scripts/repl.py
var replScript string
// REPLPythonProcess represents a Python process that can execute code in a REPL-like manner
type REPLPythonProcess struct {
*PythonProcess
m sync.Mutex
closed bool
combinedOutput bool
}
// NewREPLPythonProcess creates a new Python process that can execute code in a REPL-like manner
// kvpairs parameter is a map of key-value pairs to pass to the Python process that are accessible in the Python code via the jumpboot module.
// environment_vars parameter is a map of environment variables to set in the Python process.
func (env *Environment) NewREPLPythonProcess(kvpairs map[string]interface{}, environment_vars map[string]string, modules []Module, packages []Package) (*REPLPythonProcess, error) {
cwd, _ := os.Getwd()
if modules == nil {
modules = []Module{}
}
if packages == nil {
packages = []Package{}
}
program := &PythonProgram{
Name: "JumpBootREPL",
Path: cwd,
Program: Module{
Name: "__main__",
Path: path.Join(cwd, "modules", "repl.py"),
Source: base64.StdEncoding.EncodeToString([]byte(replScript)),
},
Modules: modules,
Packages: packages,
KVPairs: kvpairs,
// KVPairs: map[string]interface{}{"SHARED_MEMORY_NAME": name, "SHARED_MEMORY_SIZE": size, "SEMAPHORE_NAME": semaphore_name},
}
process, _, err := env.NewPythonProcessFromProgram(program, environment_vars, nil, false)
if err != nil {
return nil, err
}
return &REPLPythonProcess{
PythonProcess: process,
closed: false,
combinedOutput: true, // the default is to combine stdout and stderr
}, nil
}
// Define the custom delimiter with non-visible ASCII characters
const DELIMITER = "\x01\x02\x03\n"
// because of course Windows has to be different, we need a different read delimiter for Windows
// however, we can use the same write delimiter because the Python process will always use the same delimiter
const WINDELIMITER = "\x01\x02\x03\r\n"
// Execute executes the given code in the Python process and returns the output.
// code parameter is the Python code to execute within the REPLPythonProcess.
// combinedOutput parameter specifies whether to combine stdout and stderr as the result.
// Execute is a blocking function that waits for the Python process to finish executing the code.
func (rpp *REPLPythonProcess) Execute(code string, combinedOutput bool) (string, error) {
iswin := runtime.GOOS == "windows"
// we need to lock the mutex to prevent multiple goroutines from writing to the Python process at the same time
rpp.m.Lock()
defer rpp.m.Unlock()
// check if the Python process has been closed
if rpp.closed {
return "", fmt.Errorf("REPL process has been closed")
}
// if we are changing the combined output setting, update the Python process
if rpp.combinedOutput != combinedOutput {
cc := "__CAPTURE_COMBINED__ ="
if combinedOutput {
cc += " True" + DELIMITER
} else {
cc += " False" + DELIMITER
}
_, err := rpp.PythonProcess.PipeOut.WriteString(cc)
if err != nil {
return "", err
}
rpp.combinedOutput = combinedOutput
}
// remove empty lines from the code - account for \r\n line endings on Windows
code = strings.ReplaceAll(code, "\r\n", "\n")
code = strings.ReplaceAll(code, "\n\n", "\n")
// trim whitespace from the end of the code
code = strings.TrimRight(code, " \t\n\r")
// append the DELIMITER to the end of the code
code += DELIMITER
// write the code to the Python process as a single string
_, err := rpp.PythonProcess.PipeOut.WriteString(code)
if err != nil {
return "", err
}
// Read the output from Python and process it until we encounter the delimiter
reader := bufio.NewReader(rpp.PythonProcess.PipeIn)
var result strings.Builder
for {
line, err := reader.ReadString('\n')
if err != nil && err != io.EOF {
return "", err
}
result.WriteString(line)
if iswin {
// Check if we've received the complete output (marked by the WINDELIMITER)
if strings.HasSuffix(result.String(), WINDELIMITER) {
// Trim the delimiter and any trailing newline/carriage return from the output
output := strings.TrimSuffix(result.String(), WINDELIMITER)
output = strings.TrimRight(output, "\n\r")
return output, nil
}
} else {
// Check if we've received the complete output (marked by the delimiter)
if strings.HasSuffix(result.String(), DELIMITER) {
// Trim the delimiter and any trailing newline/carriage return from the output
output := strings.TrimSuffix(result.String(), DELIMITER)
output = strings.TrimRight(output, "\n\r")
return output, nil
}
}
if err == io.EOF {
return "", fmt.Errorf("unexpected EOF")
}
}
}
// ExecuteWithTimeout executes the given code in the Python process and returns the output.
// code parameter is the Python code to execute within the REPLPythonProcess.
// combinedOutput parameter specifies whether to combine stdout and stderr as the result.
// timeout parameter specifies the maximum time to wait for the Python process to finish executing the code.
// ExecuteWithTimeout is a non-blocking function that waits for the Python process to finish executing the code up to the specified timeout.
// If the timeout is reached, the Python process is terminated, REPLPythonProcess is marked as closed, and an error is returned.
func (rpp *REPLPythonProcess) ExecuteWithTimeout(code string, combinedOutput bool, timeout time.Duration) (string, error) {
// we need to lock the mutex to prevent multiple goroutines from writing to the Python process at the same time
rpp.m.Lock()
defer rpp.m.Unlock()
// check if the Python process has been closed
if rpp.closed {
return "", fmt.Errorf("REPL process has been closed")
}
// if we are changing the combined output setting, update the Python process
if rpp.combinedOutput != combinedOutput {
cc := "__CAPTURE_COMBINED__ ="
if combinedOutput {
cc += " True" + DELIMITER
} else {
cc += " False" + DELIMITER
}
_, err := rpp.PythonProcess.PipeOut.WriteString(cc)
if err != nil {
return "", err
}
rpp.combinedOutput = combinedOutput
}
// trim whitespace from the end of the code
code = strings.TrimRight(code, " \t\n\r")
// append the DELIMITER to the end of the code
code += DELIMITER
// write the code to the Python process as a single string
_, err := rpp.PythonProcess.PipeOut.WriteString(code)
if err != nil {
return "", err
}
// Create a channel to receive the result
resultCh := make(chan string, 1)
errCh := make(chan error, 1)
// Start a goroutine to read from the Python process
go func() {
reader := bufio.NewReader(rpp.PythonProcess.PipeIn)
var result strings.Builder
for {
line, err := reader.ReadString('\n')
if err != nil && err != io.EOF {
errCh <- err
return
}
result.WriteString(line)
// Check if we've received the complete output (marked by the delimiter)
if strings.HasSuffix(result.String(), DELIMITER) {
// Trim the delimiter and any trailing newline/carriage return from the output
output := strings.TrimSuffix(result.String(), DELIMITER)
output = strings.TrimRight(output, "\n\r")
resultCh <- output
return
}
if err == io.EOF {
errCh <- fmt.Errorf("unexpected EOF")
return
}
}
}()
// Use select to wait for either the result, error, or a timeout
select {
case output := <-resultCh:
return output, nil
case err := <-errCh:
return "", err
case <-time.After(timeout):
// If the timeout is reached, we can't wait for the Python process to finish
// so we need to terminate it and mark it as closed
rpp.PythonProcess.Terminate()
rpp.closed = true
return "", fmt.Errorf("execution timed out - Python process terminated")
}
}
// Close closes the Python REPL process.
func (rpp *REPLPythonProcess) Close() error {
// we need to lock the mutex to prevent multiple goroutines from writing to the Python process at the same time
rpp.m.Lock()
defer rpp.m.Unlock()
// check if the Python process has been closed
if rpp.closed {
return fmt.Errorf("REPL process has been closed")
}
rpp.closed = true
return rpp.PythonProcess.Terminate()
}