forked from lcompilers/lpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython_kernel.cpp
More file actions
540 lines (492 loc) · 19.8 KB
/
python_kernel.cpp
File metadata and controls
540 lines (492 loc) · 19.8 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
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#ifdef _WIN32
# include <io.h>
# define fileno _fileno
# define dup _dup
# define dup2 _dup2
# define close _close
# include <fcntl.h>
#else
# include <unistd.h>
#endif
#include <xeus/xinterpreter.hpp>
#include <xeus/xkernel.hpp>
#include <xeus/xkernel_configuration.hpp>
#include <xeus-zmq/xzmq_context.hpp>
#include <xeus-zmq/xserver_zmq_split.hpp>
#include <nlohmann/json.hpp>
#include <lpython/python_kernel.h>
#include <lpython/parser/parser.h>
#include <lpython/semantics/python_ast_to_asr.h>
#include <libasr/codegen/asr_to_llvm.h>
#include <lpython/python_evaluator.h>
#include <libasr/asr_utils.h>
#include <libasr/string_utils.h>
namespace nl = nlohmann;
namespace LCompilers::LPython {
class RedirectStdout
{
public:
RedirectStdout(std::string &out) : _out{out} {
stdout_fileno = fileno(stdout);
std::cout << std::flush;
fflush(stdout);
saved_stdout = dup(stdout_fileno);
#ifdef _WIN32
if (_pipe(out_pipe, 65536, O_BINARY) != 0) {
#else
if (pipe(out_pipe) != 0) {
#endif
throw LCompilersException("pipe() failed");
}
dup2(out_pipe[1], stdout_fileno);
close(out_pipe[1]);
printf("X");
}
~RedirectStdout() {
fflush(stdout);
(void)read(out_pipe[0], buffer, MAX_LEN);
dup2(saved_stdout, stdout_fileno);
_out = std::string(&buffer[1]);
}
private:
std::string &_out;
static const size_t MAX_LEN=1024;
char buffer[MAX_LEN+1] = {0};
int out_pipe[2];
int saved_stdout;
int stdout_fileno;
};
class custom_interpreter : public xeus::xinterpreter
{
private:
PythonCompiler e;
public:
custom_interpreter() : e{CompilerOptions()} {
e.compiler_options.interactive = true;
e.compiler_options.po.disable_main = true;
e.compiler_options.emit_debug_line_column = false;
e.compiler_options.separate_compilation = false;
}
virtual ~custom_interpreter() = default;
private:
void configure_impl() override;
void execute_request_impl(send_reply_callback cb,
int execution_counter,
const std::string& code,
//bool silent,
//bool store_history,
xeus::execute_request_config config,
nl::json user_expressions) override;
nl::json complete_request_impl(const std::string& code,
int cursor_pos) override;
nl::json inspect_request_impl(const std::string& code,
int cursor_pos,
int detail_level) override;
nl::json is_complete_request_impl(const std::string& code) override;
nl::json kernel_info_request_impl() override;
void shutdown_request_impl() override;
};
void custom_interpreter::execute_request_impl(send_reply_callback cb,
int execution_counter, // Typically the cell number
const std::string& code, // Code to execute
xeus::execute_request_config, //config
nl::json /*user_expressions*/)
{
PythonCompiler::EvalResult r;
std::string std_out;
std::string code0;
CompilerOptions cu;
try {
if (startswith(code, "%%showast")) {
code0 = code.substr(code.find("\n")+1);
LocationManager lm;
{
LocationManager::FileLocations fl;
fl.in_filename = "input";
std::ofstream out("input");
out << code0;
lm.files.push_back(fl);
}
diag::Diagnostics diagnostics;
Result<std::string>
res = e.get_ast(code0, lm, diagnostics);
nl::json result;
if (res.ok) {
publish_stream("stdout", res.result);
result["status"] = "ok";
result["payload"] = nl::json::array();
result["user_expressions"] = nl::json::object();
} else {
std::string msg = diagnostics.render(lm, cu);
publish_stream("stderr", msg);
result["status"] = "error";
result["ename"] = "CompilerError";
result["evalue"] = msg;
result["traceback"] = nl::json::array();
}
cb(result);
return;
}
if (startswith(code, "%%showasr")) {
code0 = code.substr(code.find("\n")+1);
LocationManager lm;
{
LocationManager::FileLocations fl;
fl.in_filename = "input";
std::ofstream out("input");
out << code0;
lm.files.push_back(fl);
}
diag::Diagnostics diagnostics;
Result<std::string>
res = e.get_asr(code0, lm, diagnostics);
nl::json result;
if (res.ok) {
publish_stream("stdout", res.result);
result["status"] = "ok";
result["payload"] = nl::json::array();
result["user_expressions"] = nl::json::object();
} else {
std::string msg = diagnostics.render(lm, cu);
publish_stream("stderr", msg);
result["status"] = "error";
result["ename"] = "CompilerError";
result["evalue"] = msg;
result["traceback"] = nl::json::array();
}
cb(result);
return;
}
if (startswith(code, "%%showllvm")) {
code0 = code.substr(code.find("\n")+1);
LocationManager lm;
{
LCompilers::LocationManager::FileLocations fl;
fl.in_filename = "input";
std::ofstream out("input");
out << code0;
lm.files.push_back(fl);
lm.init_simple(code0);
lm.file_ends.push_back(code0.size());
}
LCompilers::PassManager lpm;
lpm.use_default_passes();
diag::Diagnostics diagnostics;
Result<std::string>
res = e.get_llvm(code0, lm, lpm, diagnostics);
nl::json result;
if (res.ok) {
publish_stream("stdout", res.result);
result["status"] = "ok";
result["payload"] = nl::json::array();
result["user_expressions"] = nl::json::object();
} else {
std::string msg = diagnostics.render(lm, cu);
publish_stream("stderr", msg);
result["status"] = "error";
result["ename"] = "CompilerError";
result["evalue"] = msg;
result["traceback"] = nl::json::array();
}
cb(result);
return;
}
if (startswith(code, "%%showasm")) {
code0 = code.substr(code.find("\n")+1);
LocationManager lm;
{
LCompilers::LocationManager::FileLocations fl;
fl.in_filename = "input";
std::ofstream out("input");
out << code0;
lm.files.push_back(fl);
lm.init_simple(code0);
lm.file_ends.push_back(code0.size());
}
LCompilers::PassManager lpm;
lpm.use_default_passes();
diag::Diagnostics diagnostics;
Result<std::string>
res = e.get_asm(code0, lm, lpm, diagnostics);
nl::json result;
if (res.ok) {
publish_stream("stdout", res.result);
result["status"] = "ok";
result["payload"] = nl::json::array();
result["user_expressions"] = nl::json::object();
} else {
std::string msg = diagnostics.render(lm, cu);
publish_stream("stderr", msg);
result["status"] = "error";
result["ename"] = "CompilerError";
result["evalue"] = msg;
result["traceback"] = nl::json::array();
}
cb(result);
return;
}
// if (startswith(code, "%%showcpp")) {
// code0 = code.substr(code.find("\n")+1);
// LocationManager lm;
// {
// LocationManager::FileLocations fl;
// fl.in_filename = "input";
// std::ofstream out("input");
// out << code0;
// lm.files.push_back(fl);
// }
// diag::Diagnostics diagnostics;
// Result<std::string>
// res = e.get_cpp(code0, lm, diagnostics, 1);
// nl::json result;
// if (res.ok) {
// publish_stream("stdout", res.result);
// result["status"] = "ok";
// result["payload"] = nl::json::array();
// result["user_expressions"] = nl::json::object();
// } else {
// std::string msg = diagnostics.render(lm, cu);
// publish_stream("stderr", msg);
// result["status"] = "error";
// result["ename"] = "CompilerError";
// result["evalue"] = msg;
// result["traceback"] = nl::json::array();
// }
// cb(result);
// return;
// }
// if (startswith(code, "%%showfmt")) {
// code0 = code.substr(code.find("\n")+1);
// LocationManager lm;
// {
// LocationManager::FileLocations fl;
// fl.in_filename = "input";
// std::ofstream out("input");
// out << code0;
// lm.files.push_back(fl);
// }
// diag::Diagnostics diagnostics;
// Result<std::string>
// res = e.get_fmt(code0, lm, diagnostics);
// nl::json result;
// if (res.ok) {
// publish_stream("stdout", res.result);
// result["status"] = "ok";
// result["payload"] = nl::json::array();
// result["user_expressions"] = nl::json::object();
// } else {
// std::string msg = diagnostics.render(lm, cu);
// publish_stream("stderr", msg);
// result["status"] = "error";
// result["ename"] = "CompilerError";
// result["evalue"] = msg;
// result["traceback"] = nl::json::array();
// }
// cb(result);
// return;
// }
RedirectStdout s(std_out);
code0 = code;
LocationManager lm;
{
LCompilers::LocationManager::FileLocations fl;
fl.in_filename = "input";
std::ofstream out("input");
out << code0;
lm.files.push_back(fl);
lm.init_simple(code0);
lm.file_ends.push_back(code0.size());
}
LCompilers::PassManager lpm;
lpm.use_default_passes();
diag::Diagnostics diagnostics;
Result<PythonCompiler::EvalResult>
res = e.evaluate(code0, false, lm, lpm, diagnostics);
if (res.ok) {
r = res.result;
} else {
std::string msg = diagnostics.render(lm, cu);
publish_stream("stderr", msg);
nl::json result;
result["status"] = "error";
result["ename"] = "CompilerError";
result["evalue"] = msg;
result["traceback"] = nl::json::array();
cb(result);
return;
}
} catch (const LCompilersException &e) {
publish_stream("stderr", "LFortran Exception: " + e.msg());
nl::json result;
result["status"] = "error";
result["ename"] = "LCompilersException";
result["evalue"] = e.msg();
result["traceback"] = nl::json::array();
cb(result);
return;
}
if (std_out.size() > 0) {
publish_stream("stdout", std_out);
}
switch (r.type) {
case (LCompilers::PythonCompiler::EvalResult::integer4) : {
nl::json pub_data;
pub_data["text/plain"] = std::to_string(r.i32);
publish_execution_result(execution_counter, std::move(pub_data), nl::json::object());
break;
}
case (LCompilers::PythonCompiler::EvalResult::integer8) : {
nl::json pub_data;
pub_data["text/plain"] = std::to_string(r.i64);
publish_execution_result(execution_counter, std::move(pub_data), nl::json::object());
break;
}
case (LCompilers::PythonCompiler::EvalResult::real4) : {
nl::json pub_data;
pub_data["text/plain"] = std::to_string(r.f32);
publish_execution_result(execution_counter, std::move(pub_data), nl::json::object());
break;
}
case (LCompilers::PythonCompiler::EvalResult::real8) : {
nl::json pub_data;
pub_data["text/plain"] = std::to_string(r.f64);
publish_execution_result(execution_counter, std::move(pub_data), nl::json::object());
break;
}
case (LCompilers::PythonCompiler::EvalResult::complex4) : {
nl::json pub_data;
pub_data["text/plain"] = "(" + std::to_string(r.c32.re) + ", " + std::to_string(r.c32.im) + ")";
publish_execution_result(execution_counter, std::move(pub_data), nl::json::object());
break;
}
case (LCompilers::PythonCompiler::EvalResult::complex8) : {
nl::json pub_data;
pub_data["text/plain"] = "(" + std::to_string(r.c64.re) + ", " + std::to_string(r.c64.im) + ")";
publish_execution_result(execution_counter, std::move(pub_data), nl::json::object());
break;
}
case (LCompilers::PythonCompiler::EvalResult::statement) : {
break;
}
case (LCompilers::PythonCompiler::EvalResult::none) : {
break;
}
default : throw LCompilersException("Return type not supported");
}
nl::json result;
result["status"] = "ok";
result["payload"] = nl::json::array();
result["user_expressions"] = nl::json::object();
cb(result);
return;
}
void custom_interpreter::configure_impl()
{
// Perform some operations
}
nl::json custom_interpreter::complete_request_impl(const std::string& code,
int cursor_pos)
{
nl::json result;
// Code starts with 'H', it could be the following completion
if (code[0] == 'H')
{
result["status"] = "ok";
result["matches"] = {"Hello", "Hey", "Howdy"};
result["cursor_start"] = 5;
result["cursor_end"] = cursor_pos;
}
// No completion result
else
{
result["status"] = "ok";
result["matches"] = nl::json::array();
result["cursor_start"] = cursor_pos;
result["cursor_end"] = cursor_pos;
}
return result;
}
nl::json custom_interpreter::inspect_request_impl(const std::string& code,
int /*cursor_pos*/,
int /*detail_level*/)
{
nl::json result;
if (code.compare("print") == 0)
{
result["found"] = true;
result["text/plain"] = "Print objects to the text stream file, [...]";
}
else
{
result["found"] = false;
}
result["status"] = "ok";
return result;
}
nl::json custom_interpreter::is_complete_request_impl(const std::string& /*code*/)
{
nl::json result;
// if (is_complete(code))
// {
result["status"] = "complete";
// }
// else
// {
// result["status"] = "incomplete";
// result["indent"] = 4;
//}
return result;
}
nl::json custom_interpreter::kernel_info_request_impl()
{
nl::json result;
std::string version = LFORTRAN_VERSION;
std::string banner = ""
"LFortran " + version + "\n"
"Jupyter kernel for Fortran";
result["banner"] = banner;
result["implementation"] = "LFortran";
result["implementation_version"] = version;
result["language_info"]["name"] = "python";
result["language_info"]["version"] = "2018";
result["language_info"]["mimetype"] = "text/x-python";
result["language_info"]["file_extension"] = ".f90";
return result;
}
void custom_interpreter::shutdown_request_impl() {
std::cout << "Bye!!" << std::endl;
}
int run_kernel(const std::string &connection_filename)
{
std::unique_ptr<xeus::xcontext> context = xeus::make_zmq_context();
// Create interpreter instance
using interpreter_ptr = std::unique_ptr<custom_interpreter>;
interpreter_ptr interpreter = interpreter_ptr(new custom_interpreter());
using history_manager_ptr = std::unique_ptr<xeus::xhistory_manager>;
history_manager_ptr hist = xeus::make_in_memory_history_manager();
nl::json debugger_config;
// Load configuration file
xeus::xconfiguration config = xeus::load_configuration(connection_filename);
// Create kernel instance and start it
xeus::xkernel kernel(config,
xeus::get_user_name(),
std::move(context),
std::move(interpreter),
xeus::make_xserver_shell_main,
std::move(hist),
xeus::make_console_logger(xeus::xlogger::msg_type,
xeus::make_file_logger(xeus::xlogger::content, "xeus.log")),
xeus::make_null_debugger,
debugger_config);
std::cout <<
"Starting xeus-lpython kernel...\n\n"
"If you want to connect to this kernel from an other client, you can use"
" the " + connection_filename + " file."
<< std::endl;
kernel.start();
return 0;
}
} // namespace LCompilers::LFortran