2022-01-04 10:21:08 +01:00
|
|
|
// Copyright (c) 2019-2022 Alexander Medvednikov. All rights reserved.
|
2019-08-18 21:50:38 +02:00
|
|
|
// Use of this source code is governed by an MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
2019-10-31 17:01:04 +01:00
|
|
|
module main
|
2019-08-18 21:50:38 +02:00
|
|
|
|
2020-04-26 08:32:05 +02:00
|
|
|
import os
|
|
|
|
import term
|
2021-02-08 08:44:04 +01:00
|
|
|
import rand
|
2020-04-26 08:32:05 +02:00
|
|
|
import readline
|
|
|
|
import os.cmdline
|
2021-07-27 11:35:54 +02:00
|
|
|
import v.util.version
|
2019-08-18 21:50:38 +02:00
|
|
|
|
|
|
|
struct Repl {
|
|
|
|
mut:
|
2021-01-26 15:43:10 +01:00
|
|
|
readline readline.Readline
|
|
|
|
indent int // indentation level
|
|
|
|
in_func bool // are we inside a new custom user function
|
|
|
|
line string // the current line entered by the user
|
2020-05-16 21:03:28 +02:00
|
|
|
//
|
2022-02-06 07:05:25 +01:00
|
|
|
modules []string // all the import modules
|
2022-02-11 14:03:14 +01:00
|
|
|
alias map[string]string // all the alias used in the import
|
2022-02-06 07:05:25 +01:00
|
|
|
includes []string // all the #include statements
|
|
|
|
functions []string // all the user function declarations
|
|
|
|
functions_name []string // all the user function names
|
|
|
|
lines []string // all the other lines/statements
|
|
|
|
temp_lines []string // all the temporary expressions/printlns
|
|
|
|
vstartup_lines []string // lines in the `VSTARTUP` file
|
|
|
|
eval_func_lines []string // same line of the `VSTARTUP` file, but used to test fn type
|
2019-08-18 21:50:38 +02:00
|
|
|
}
|
|
|
|
|
2021-04-14 07:50:50 +02:00
|
|
|
const is_stdin_a_pipe = (os.is_atty(0) == 0)
|
2021-02-08 08:44:04 +01:00
|
|
|
|
|
|
|
const vexe = os.getenv('VEXE')
|
2021-03-04 11:24:14 +01:00
|
|
|
|
2021-03-03 06:53:05 +01:00
|
|
|
const vstartup = os.getenv('VSTARTUP')
|
2020-10-11 09:16:49 +02:00
|
|
|
|
2022-02-06 07:05:25 +01:00
|
|
|
enum FnType {
|
|
|
|
@none
|
|
|
|
void
|
|
|
|
fn_type
|
|
|
|
}
|
|
|
|
|
2021-01-02 12:17:39 +01:00
|
|
|
fn new_repl() Repl {
|
|
|
|
return Repl{
|
2022-02-13 23:12:25 +01:00
|
|
|
readline: readline.Readline{
|
|
|
|
skip_empty: true
|
|
|
|
}
|
2020-10-11 09:16:49 +02:00
|
|
|
modules: ['os', 'time', 'math']
|
2021-03-03 06:53:05 +01:00
|
|
|
vstartup_lines: os.read_file(vstartup) or { '' }.trim_right('\n\r').split_into_lines()
|
2022-02-06 07:05:25 +01:00
|
|
|
// Test file used to check if a function as a void return or a
|
|
|
|
// value return.
|
|
|
|
eval_func_lines: os.read_file(vstartup) or { '' }.trim_right('\n\r').split_into_lines()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn endline_if_missed(line string) string {
|
|
|
|
if line.ends_with('\n') {
|
|
|
|
return line
|
2020-10-11 09:16:49 +02:00
|
|
|
}
|
2022-02-06 07:05:25 +01:00
|
|
|
return line + '\n'
|
|
|
|
}
|
|
|
|
|
|
|
|
fn repl_help() {
|
|
|
|
println(version.full_v_version(false))
|
|
|
|
println('
|
|
|
|
|help Displays this information.
|
|
|
|
|list Show the program so far.
|
|
|
|
|reset Clears the accumulated program, so you can start a fresh.
|
|
|
|
|Ctrl-C, Ctrl-D, exit Exits the REPL.
|
|
|
|
|clear Clears the screen.
|
|
|
|
'.strip_margin())
|
2020-10-11 09:16:49 +02:00
|
|
|
}
|
|
|
|
|
2020-05-17 13:51:18 +02:00
|
|
|
fn (mut r Repl) checks() bool {
|
2019-08-18 21:50:38 +02:00
|
|
|
mut in_string := false
|
|
|
|
was_indent := r.indent > 0
|
2019-10-06 16:21:10 +02:00
|
|
|
for i := 0; i < r.line.len; i++ {
|
2021-08-06 05:21:28 +02:00
|
|
|
if r.line[i] == `'` && (i == 0 || r.line[i - 1] != `\\`) {
|
2019-08-18 21:50:38 +02:00
|
|
|
in_string = !in_string
|
|
|
|
}
|
2019-10-06 16:21:10 +02:00
|
|
|
if r.line[i] == `{` && !in_string {
|
2019-10-27 08:03:15 +01:00
|
|
|
r.line = r.line[..i + 1] + '\n' + r.line[i + 1..]
|
2019-10-06 16:21:10 +02:00
|
|
|
i++
|
2019-08-18 21:50:38 +02:00
|
|
|
r.indent++
|
|
|
|
}
|
2019-10-06 16:21:10 +02:00
|
|
|
if r.line[i] == `}` && !in_string {
|
2019-10-27 08:03:15 +01:00
|
|
|
r.line = r.line[..i] + '\n' + r.line[i..]
|
2019-10-06 16:21:10 +02:00
|
|
|
i++
|
2019-08-18 21:50:38 +02:00
|
|
|
r.indent--
|
|
|
|
if r.indent == 0 {
|
|
|
|
r.in_func = false
|
|
|
|
}
|
|
|
|
}
|
2019-10-06 16:21:10 +02:00
|
|
|
if i + 2 < r.line.len && r.indent == 0 && r.line[i + 1] == `f` && r.line[i + 2] == `n` {
|
2019-08-18 21:50:38 +02:00
|
|
|
r.in_func = true
|
|
|
|
}
|
|
|
|
}
|
2020-05-11 06:15:08 +02:00
|
|
|
return r.in_func || (was_indent && r.indent <= 0) || r.indent > 0
|
2019-08-18 21:50:38 +02:00
|
|
|
}
|
|
|
|
|
2022-02-06 07:05:25 +01:00
|
|
|
fn (r &Repl) function_call(line string) (bool, FnType) {
|
2019-08-18 21:50:38 +02:00
|
|
|
for function in r.functions_name {
|
2020-10-11 09:16:49 +02:00
|
|
|
is_function_definition := line.replace(' ', '').starts_with('$function:=')
|
2020-08-05 16:18:28 +02:00
|
|
|
if line.starts_with(function) && !is_function_definition {
|
2022-02-06 07:05:25 +01:00
|
|
|
// TODO(vincenzopalazzo) store the type of the function here
|
|
|
|
fntype := r.check_fn_type_kind(line)
|
|
|
|
return true, fntype
|
2019-08-18 21:50:38 +02:00
|
|
|
}
|
|
|
|
}
|
2022-02-06 07:05:25 +01:00
|
|
|
|
|
|
|
if line.contains(':=') {
|
|
|
|
// an assignment to a variable:
|
|
|
|
// `z := abc()`
|
|
|
|
return false, FnType.@none
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if it is a Vlib call
|
|
|
|
// TODO(vincenzopalazzo): auto import the module?
|
|
|
|
if r.is_function_call(line) {
|
|
|
|
fntype := r.check_fn_type_kind(line)
|
|
|
|
return true, fntype
|
|
|
|
}
|
|
|
|
return false, FnType.@none
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(vincenzopalazzo) Remove this fancy check and add a regex
|
|
|
|
fn (r &Repl) is_function_call(line string) bool {
|
|
|
|
return !line.starts_with('[') && line.contains('.') && line.contains('(')
|
|
|
|
&& (line.ends_with(')') || line.ends_with('?'))
|
2019-08-18 21:50:38 +02:00
|
|
|
}
|
|
|
|
|
2022-02-11 14:03:14 +01:00
|
|
|
// Convert the list of modules that we parsed already,
|
|
|
|
// to a sequence of V source code lines
|
|
|
|
fn (r &Repl) import_to_source_code() []string {
|
|
|
|
mut imports_line := []string{}
|
2020-07-03 18:06:36 +02:00
|
|
|
for mod in r.modules {
|
2022-02-11 14:03:14 +01:00
|
|
|
mut import_str := 'import $mod'
|
|
|
|
if mod in r.alias {
|
|
|
|
import_str += ' as ${r.alias[mod]}'
|
|
|
|
}
|
|
|
|
imports_line << endline_if_missed(import_str)
|
2020-07-03 18:06:36 +02:00
|
|
|
}
|
2022-02-11 14:03:14 +01:00
|
|
|
return imports_line
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (r &Repl) current_source_code(should_add_temp_lines bool, not_add_print bool) string {
|
|
|
|
mut all_lines := []string{}
|
|
|
|
all_lines.insert(0, r.import_to_source_code())
|
|
|
|
|
2021-03-03 06:53:05 +01:00
|
|
|
if vstartup != '' {
|
|
|
|
mut lines := []string{}
|
|
|
|
if !not_add_print {
|
|
|
|
lines = r.vstartup_lines.filter(!it.starts_with('print'))
|
|
|
|
} else {
|
2021-03-04 11:24:14 +01:00
|
|
|
lines = r.vstartup_lines
|
2021-03-03 06:53:05 +01:00
|
|
|
}
|
|
|
|
all_lines << lines
|
|
|
|
}
|
2020-07-03 18:06:36 +02:00
|
|
|
all_lines << r.includes
|
2020-05-16 21:03:28 +02:00
|
|
|
all_lines << r.functions
|
|
|
|
all_lines << r.lines
|
2021-03-03 06:53:05 +01:00
|
|
|
|
2020-05-16 21:03:28 +02:00
|
|
|
if should_add_temp_lines {
|
|
|
|
all_lines << r.temp_lines
|
|
|
|
}
|
|
|
|
return all_lines.join('\n')
|
|
|
|
}
|
|
|
|
|
2022-02-06 07:05:25 +01:00
|
|
|
// the new_line is probably a function call, but some function calls
|
|
|
|
// do not return anything, while others return results.
|
|
|
|
// This function checks which one we have:
|
|
|
|
fn (r &Repl) check_fn_type_kind(new_line string) FnType {
|
|
|
|
source_code := r.current_source_code(true, false) + '\nprintln($new_line)'
|
|
|
|
check_file := os.join_path(os.temp_dir(), '${rand.ulid()}.vrepl.check.v')
|
|
|
|
os.write_file(check_file, source_code) or { panic(err) }
|
|
|
|
defer {
|
|
|
|
os.rm(check_file) or {}
|
|
|
|
}
|
|
|
|
// -w suppresses the unused import warnings
|
|
|
|
// -check just does syntax and checker analysis without generating/running code
|
|
|
|
os_response := os.execute('${os.quoted_path(vexe)} -w -check ${os.quoted_path(check_file)}')
|
|
|
|
str_response := convert_output(os_response)
|
|
|
|
if os_response.exit_code != 0 && str_response.contains('can not print void expressions') {
|
|
|
|
return FnType.void
|
|
|
|
}
|
|
|
|
return FnType.fn_type
|
2019-08-22 04:36:24 +02:00
|
|
|
}
|
|
|
|
|
2022-02-11 14:03:14 +01:00
|
|
|
// parse the import statement in `line`, updating the Repl alias maps
|
|
|
|
fn (mut r Repl) parse_import(line string) {
|
|
|
|
if !line.contains('import') {
|
|
|
|
eprintln("the line doesn't contain an `import` keyword")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
tokens := r.line.fields()
|
|
|
|
// module name
|
|
|
|
mod := tokens[1]
|
|
|
|
if mod !in r.modules {
|
|
|
|
r.modules << mod
|
|
|
|
}
|
|
|
|
// Check if the import contains an alias
|
|
|
|
// import mod_name as alias_mod
|
|
|
|
if line.contains('as ') && tokens.len >= 4 {
|
|
|
|
alias := tokens[3]
|
|
|
|
if mod !in r.alias {
|
|
|
|
r.alias[mod] = alias
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn print_welcome_screen() {
|
2022-02-13 10:41:36 +01:00
|
|
|
cmd_exit := term.highlight_command('exit')
|
|
|
|
cmd_help := term.highlight_command('v help')
|
|
|
|
file_main := term.highlight_command('main.v')
|
|
|
|
cmd_run := term.highlight_command('v run main.v')
|
|
|
|
vbar := term.bright_green('|')
|
2022-02-14 15:18:20 +01:00
|
|
|
width, _ := term.get_terminal_size() // get the size of the terminal
|
2022-02-13 10:41:36 +01:00
|
|
|
vlogo := [
|
|
|
|
term.bright_blue(r' ____ ____ '),
|
|
|
|
term.bright_blue(r' \ \ / / '),
|
|
|
|
term.bright_blue(r' \ \/ / '),
|
|
|
|
term.bright_blue(r' \ / '),
|
|
|
|
term.bright_blue(r' \ / '),
|
|
|
|
term.bright_blue(r' \__/ '),
|
|
|
|
]
|
2022-02-14 15:18:20 +01:00
|
|
|
help_text := [
|
|
|
|
'Welcome to the V REPL (for help with V itself, type $cmd_exit, then run $cmd_help).',
|
|
|
|
'NB: the REPL is highly experimental. For best V experience, use a text editor, ',
|
|
|
|
'save your code in a $file_main file and execute: $cmd_run',
|
|
|
|
version.full_v_version(false),
|
|
|
|
'Use Ctrl-C or ${term.highlight_command('exit')} to exit, or ${term.highlight_command('help')} to see other available commands',
|
|
|
|
]
|
|
|
|
if width >= 97 {
|
|
|
|
eprintln('${vlogo[0]}')
|
|
|
|
eprintln('${vlogo[1]} $vbar ${help_text[0]}')
|
|
|
|
eprintln('${vlogo[2]} $vbar ${help_text[1]}')
|
|
|
|
eprintln('${vlogo[3]} $vbar ${help_text[2]}')
|
|
|
|
eprintln('${vlogo[4]} $vbar ${help_text[3]}')
|
|
|
|
eprintln('${vlogo[5]} $vbar ${help_text[4]}')
|
|
|
|
eprintln('')
|
|
|
|
} else {
|
|
|
|
if width >= 14 {
|
|
|
|
left_margin := ' '.repeat(int(width / 2 - 7))
|
|
|
|
for l in vlogo {
|
|
|
|
println(left_margin + l)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
println(help_text.join('\n'))
|
|
|
|
}
|
2022-02-11 14:03:14 +01:00
|
|
|
}
|
|
|
|
|
2020-10-15 15:17:52 +02:00
|
|
|
fn run_repl(workdir string, vrepl_prefix string) {
|
2020-10-11 09:16:49 +02:00
|
|
|
if !is_stdin_a_pipe {
|
2022-02-11 14:03:14 +01:00
|
|
|
print_welcome_screen()
|
2020-10-11 09:16:49 +02:00
|
|
|
}
|
2021-03-03 06:53:05 +01:00
|
|
|
|
|
|
|
if vstartup != '' {
|
2021-03-04 11:24:14 +01:00
|
|
|
result := repl_run_vfile(vstartup) or {
|
|
|
|
os.Result{
|
|
|
|
output: '$vstartup file not found'
|
|
|
|
}
|
|
|
|
}
|
2021-03-03 06:53:05 +01:00
|
|
|
print('\n')
|
|
|
|
print_output(result)
|
|
|
|
}
|
2020-03-09 02:23:34 +01:00
|
|
|
file := os.join_path(workdir, '.${vrepl_prefix}vrepl.v')
|
|
|
|
temp_file := os.join_path(workdir, '.${vrepl_prefix}vrepl_temp.v')
|
2020-02-16 12:42:28 +01:00
|
|
|
mut prompt := '>>> '
|
2019-08-18 21:50:38 +02:00
|
|
|
defer {
|
2020-10-11 09:16:49 +02:00
|
|
|
if !is_stdin_a_pipe {
|
|
|
|
println('')
|
|
|
|
}
|
2021-01-26 15:43:10 +01:00
|
|
|
cleanup_files([file, temp_file])
|
2019-08-18 21:50:38 +02:00
|
|
|
}
|
2020-10-11 09:16:49 +02:00
|
|
|
mut r := new_repl()
|
2019-08-18 21:50:38 +02:00
|
|
|
for {
|
|
|
|
if r.indent == 0 {
|
2019-10-31 17:01:04 +01:00
|
|
|
prompt = '>>> '
|
2020-05-08 08:34:59 +02:00
|
|
|
} else {
|
2019-10-31 17:01:04 +01:00
|
|
|
prompt = '... '
|
2019-08-18 21:50:38 +02:00
|
|
|
}
|
2020-12-27 11:41:48 +01:00
|
|
|
oline := r.get_one_line(prompt) or { break }
|
2020-05-16 20:20:47 +02:00
|
|
|
line := oline.trim_space()
|
|
|
|
if line == '' && oline.ends_with('\n') {
|
2019-08-18 21:50:38 +02:00
|
|
|
continue
|
|
|
|
}
|
2019-10-31 17:01:04 +01:00
|
|
|
if line.len <= -1 || line == '' || line == 'exit' {
|
2019-08-18 21:50:38 +02:00
|
|
|
break
|
|
|
|
}
|
2019-10-31 17:01:04 +01:00
|
|
|
r.line = line
|
2019-10-06 16:21:10 +02:00
|
|
|
if r.line == '\n' {
|
2019-08-18 21:50:38 +02:00
|
|
|
continue
|
|
|
|
}
|
2019-10-06 16:21:10 +02:00
|
|
|
if r.line == 'clear' {
|
2020-12-27 12:43:36 +01:00
|
|
|
term.erase_clear()
|
2019-08-22 04:36:24 +02:00
|
|
|
continue
|
|
|
|
}
|
2019-10-06 16:21:10 +02:00
|
|
|
if r.line == 'help' {
|
2019-08-22 04:36:24 +02:00
|
|
|
repl_help()
|
|
|
|
continue
|
|
|
|
}
|
2020-05-19 13:15:01 +02:00
|
|
|
if r.line.contains(':=') && r.line.contains('fn(') {
|
|
|
|
r.in_func = true
|
|
|
|
r.functions_name << r.line.all_before(':= fn(').trim_space()
|
|
|
|
}
|
2019-10-06 16:21:10 +02:00
|
|
|
if r.line.starts_with('fn') {
|
2019-08-18 21:50:38 +02:00
|
|
|
r.in_func = true
|
2019-10-06 16:21:10 +02:00
|
|
|
r.functions_name << r.line.all_after('fn').all_before('(').trim_space()
|
2019-08-18 21:50:38 +02:00
|
|
|
}
|
|
|
|
was_func := r.in_func
|
2019-10-06 16:21:10 +02:00
|
|
|
if r.checks() {
|
2019-12-14 17:58:55 +01:00
|
|
|
for rline in r.line.split('\n') {
|
2019-10-06 16:21:10 +02:00
|
|
|
if r.in_func || was_func {
|
2019-12-14 17:58:55 +01:00
|
|
|
r.functions << rline
|
2020-02-22 12:41:57 +01:00
|
|
|
} else {
|
2019-12-14 17:58:55 +01:00
|
|
|
r.temp_lines << rline
|
2019-10-06 16:21:10 +02:00
|
|
|
}
|
2019-08-18 21:50:38 +02:00
|
|
|
}
|
|
|
|
if r.indent > 0 {
|
|
|
|
continue
|
|
|
|
}
|
2019-10-06 16:21:10 +02:00
|
|
|
r.line = ''
|
2019-08-18 21:50:38 +02:00
|
|
|
}
|
2020-05-16 21:03:28 +02:00
|
|
|
if r.line == 'debug_repl' {
|
|
|
|
eprintln('repl: $r')
|
|
|
|
continue
|
|
|
|
}
|
2020-05-16 20:20:47 +02:00
|
|
|
if r.line == 'reset' {
|
2020-10-11 09:16:49 +02:00
|
|
|
r = new_repl()
|
2020-05-16 20:20:47 +02:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
if r.line == 'list' {
|
2021-03-03 06:53:05 +01:00
|
|
|
source_code := r.current_source_code(true, true)
|
2022-02-14 15:18:20 +01:00
|
|
|
println('\n${source_code.replace('\n\n', '\n')}')
|
2020-05-16 20:20:47 +02:00
|
|
|
continue
|
|
|
|
}
|
2019-08-18 21:50:38 +02:00
|
|
|
// Save the source only if the user is printing something,
|
|
|
|
// but don't add this print call to the `lines` array,
|
|
|
|
// so that it doesn't get called during the next print.
|
2020-10-11 09:16:49 +02:00
|
|
|
if r.line.starts_with('=') {
|
2020-05-24 13:16:38 +02:00
|
|
|
r.line = 'println(' + r.line[1..] + ')'
|
|
|
|
}
|
2019-10-06 16:21:10 +02:00
|
|
|
if r.line.starts_with('print') {
|
2021-03-03 06:53:05 +01:00
|
|
|
source_code := r.current_source_code(false, false) + '\n$r.line\n'
|
2021-03-01 00:18:14 +01:00
|
|
|
os.write_file(file, source_code) or { panic(err) }
|
2021-02-08 08:44:04 +01:00
|
|
|
s := repl_run_vfile(file) or { return }
|
2019-11-13 18:14:30 +01:00
|
|
|
print_output(s)
|
2020-02-22 12:41:57 +01:00
|
|
|
} else {
|
2019-10-06 16:21:10 +02:00
|
|
|
mut temp_line := r.line
|
2019-08-18 21:50:38 +02:00
|
|
|
mut temp_flag := false
|
2022-02-06 07:05:25 +01:00
|
|
|
func_call, fntype := r.function_call(r.line)
|
2021-01-26 15:43:10 +01:00
|
|
|
filter_line := r.line.replace(r.line.find_between("'", "'"), '').replace(r.line.find_between('"',
|
2020-10-11 09:16:49 +02:00
|
|
|
'"'), '')
|
2020-05-16 13:40:54 +02:00
|
|
|
possible_statement_patterns := [
|
2020-10-11 09:16:49 +02:00
|
|
|
'++',
|
|
|
|
'--',
|
|
|
|
'<<',
|
|
|
|
'//',
|
|
|
|
'/*',
|
|
|
|
'fn ',
|
|
|
|
'pub ',
|
|
|
|
'mut ',
|
|
|
|
'enum ',
|
|
|
|
'const ',
|
|
|
|
'struct ',
|
|
|
|
'interface ',
|
|
|
|
'import ',
|
|
|
|
'#include ',
|
|
|
|
'for ',
|
|
|
|
'or ',
|
|
|
|
'insert',
|
|
|
|
'delete',
|
|
|
|
'prepend',
|
|
|
|
'sort',
|
|
|
|
'clear',
|
|
|
|
'trim',
|
2022-02-11 14:03:14 +01:00
|
|
|
'as',
|
2020-05-16 13:40:54 +02:00
|
|
|
]
|
|
|
|
mut is_statement := false
|
2021-03-04 11:24:14 +01:00
|
|
|
if filter_line.count('=') % 2 == 1 {
|
|
|
|
is_statement = true
|
|
|
|
} else {
|
|
|
|
for pattern in possible_statement_patterns {
|
|
|
|
if filter_line.contains(pattern) {
|
|
|
|
is_statement = true
|
|
|
|
break
|
|
|
|
}
|
2020-05-16 13:40:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// NB: starting a line with 2 spaces escapes the println heuristic
|
|
|
|
if oline.starts_with(' ') {
|
|
|
|
is_statement = true
|
|
|
|
}
|
2022-02-06 07:05:25 +01:00
|
|
|
if !is_statement && (!func_call || fntype == FnType.fn_type) && r.line != '' {
|
2019-10-06 16:21:10 +02:00
|
|
|
temp_line = 'println($r.line)'
|
2019-08-18 21:50:38 +02:00
|
|
|
temp_flag = true
|
|
|
|
}
|
2020-05-08 08:34:59 +02:00
|
|
|
mut temp_source_code := ''
|
2020-07-03 18:06:36 +02:00
|
|
|
if temp_line.starts_with('import ') {
|
|
|
|
mod := r.line.fields()[1]
|
|
|
|
if mod !in r.modules {
|
2021-03-03 06:53:05 +01:00
|
|
|
temp_source_code = '$temp_line\n' + r.current_source_code(false, true)
|
2020-07-03 18:06:36 +02:00
|
|
|
}
|
|
|
|
} else if temp_line.starts_with('#include ') {
|
2021-03-03 06:53:05 +01:00
|
|
|
temp_source_code = '$temp_line\n' + r.current_source_code(false, false)
|
2020-05-08 08:34:59 +02:00
|
|
|
} else {
|
2020-05-25 10:35:55 +02:00
|
|
|
for i, l in r.lines {
|
|
|
|
if (l.starts_with('for ') || l.starts_with('if ')) && l.contains('println') {
|
|
|
|
r.lines.delete(i)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2021-03-03 06:53:05 +01:00
|
|
|
temp_source_code = r.current_source_code(true, false) + '\n$temp_line\n'
|
2020-05-08 08:34:59 +02:00
|
|
|
}
|
2021-03-01 00:18:14 +01:00
|
|
|
os.write_file(temp_file, temp_source_code) or { panic(err) }
|
2021-02-08 08:44:04 +01:00
|
|
|
s := repl_run_vfile(temp_file) or { return }
|
2019-10-06 16:21:10 +02:00
|
|
|
if !func_call && s.exit_code == 0 && !temp_flag {
|
2019-08-18 21:50:38 +02:00
|
|
|
for r.temp_lines.len > 0 {
|
|
|
|
if !r.temp_lines[0].starts_with('print') {
|
|
|
|
r.lines << r.temp_lines[0]
|
|
|
|
}
|
|
|
|
r.temp_lines.delete(0)
|
|
|
|
}
|
2020-07-03 18:06:36 +02:00
|
|
|
if r.line.starts_with('import ') {
|
2022-02-11 14:03:14 +01:00
|
|
|
r.parse_import(r.line)
|
2020-07-03 18:06:36 +02:00
|
|
|
} else if r.line.starts_with('#include ') {
|
|
|
|
r.includes << r.line
|
2020-05-08 08:34:59 +02:00
|
|
|
} else {
|
|
|
|
r.lines << r.line
|
|
|
|
}
|
2020-02-22 12:41:57 +01:00
|
|
|
} else {
|
2019-08-18 21:50:38 +02:00
|
|
|
for r.temp_lines.len > 0 {
|
|
|
|
r.temp_lines.delete(0)
|
|
|
|
}
|
|
|
|
}
|
2019-11-13 18:14:30 +01:00
|
|
|
print_output(s)
|
2019-08-18 21:50:38 +02:00
|
|
|
}
|
|
|
|
}
|
2019-08-29 02:30:17 +02:00
|
|
|
}
|
2019-10-31 17:01:04 +01:00
|
|
|
|
2022-02-06 07:05:25 +01:00
|
|
|
fn convert_output(os_result os.Result) string {
|
|
|
|
lines := os_result.output.trim_right('\n\r').split_into_lines()
|
|
|
|
mut content := ''
|
2019-11-13 18:14:30 +01:00
|
|
|
for line in lines {
|
2020-01-20 17:06:36 +01:00
|
|
|
if line.contains('.vrepl_temp.v:') {
|
2019-11-13 18:14:30 +01:00
|
|
|
// Hide the temporary file name
|
2020-01-20 17:06:36 +01:00
|
|
|
sline := line.all_after('.vrepl_temp.v:')
|
|
|
|
idx := sline.index(' ') or {
|
2022-02-06 07:05:25 +01:00
|
|
|
content += endline_if_missed(sline)
|
|
|
|
return content
|
2019-11-30 13:27:16 +01:00
|
|
|
}
|
2022-02-06 07:05:25 +01:00
|
|
|
content += endline_if_missed(sline[idx + 1..])
|
2020-01-20 17:06:36 +01:00
|
|
|
} else if line.contains('.vrepl.v:') {
|
|
|
|
// Ensure that .vrepl.v: is at the start, ignore the path
|
|
|
|
// This is needed to have stable .repl tests.
|
2022-02-06 07:05:25 +01:00
|
|
|
idx := line.index('.vrepl.v:') or { panic(err) }
|
|
|
|
content += endline_if_missed(line[idx..])
|
2020-01-20 17:06:36 +01:00
|
|
|
} else {
|
2022-02-06 07:05:25 +01:00
|
|
|
content += endline_if_missed(line)
|
2019-11-13 18:14:30 +01:00
|
|
|
}
|
|
|
|
}
|
2022-02-06 07:05:25 +01:00
|
|
|
return content
|
|
|
|
}
|
|
|
|
|
|
|
|
fn print_output(os_result os.Result) {
|
|
|
|
content := convert_output(os_result)
|
|
|
|
print(content)
|
2019-11-13 18:14:30 +01:00
|
|
|
}
|
|
|
|
|
2019-10-31 17:01:04 +01:00
|
|
|
fn main() {
|
2020-01-20 17:06:36 +01:00
|
|
|
// Support for the parameters replfolder and replprefix is needed
|
|
|
|
// so that the repl can be launched in parallel by several different
|
|
|
|
// threads by the REPL test runner.
|
2020-02-16 12:42:28 +01:00
|
|
|
args := cmdline.options_after(os.args, ['repl'])
|
2021-02-08 08:44:04 +01:00
|
|
|
replfolder := os.real_path(cmdline.option(args, '-replfolder', os.temp_dir()))
|
|
|
|
replprefix := cmdline.option(args, '-replprefix', 'noprefix.${rand.ulid()}.')
|
2019-12-23 11:02:50 +01:00
|
|
|
if !os.exists(os.getenv('VEXE')) {
|
tools/vget => tools/v , search, install, etc
* compiler: rename vget to tools/vpm, implement draft support for v vpm search, v vpm update, v vpm install, v vpm remove, v vpm help .
* compiler: use "v pm" instead of "v vpm" to reduce the redundancy of typing, as suggested by slapden
* Use 'v install modulename', 'v search keywords', 'v update modulename', 'v remove modulename' instead of the longer 'v pm install modulename' etc.
2019-11-01 13:19:04 +01:00
|
|
|
println('Usage:')
|
2019-12-23 11:02:50 +01:00
|
|
|
println(' VEXE=vexepath vrepl\n')
|
tools/vget => tools/v , search, install, etc
* compiler: rename vget to tools/vpm, implement draft support for v vpm search, v vpm update, v vpm install, v vpm remove, v vpm help .
* compiler: use "v pm" instead of "v vpm" to reduce the redundancy of typing, as suggested by slapden
* Use 'v install modulename', 'v search keywords', 'v update modulename', 'v remove modulename' instead of the longer 'v pm install modulename' etc.
2019-11-01 13:19:04 +01:00
|
|
|
println(' ... where vexepath is the full path to the v executable file')
|
2019-10-31 17:01:04 +01:00
|
|
|
return
|
|
|
|
}
|
2020-05-08 08:34:59 +02:00
|
|
|
run_repl(replfolder, replprefix)
|
2019-10-31 17:01:04 +01:00
|
|
|
}
|
2019-11-05 13:10:15 +01:00
|
|
|
|
2020-05-08 08:34:59 +02:00
|
|
|
fn rerror(s string) {
|
2019-11-05 13:10:15 +01:00
|
|
|
println('V repl error: $s')
|
2020-03-03 00:00:30 +01:00
|
|
|
os.flush()
|
2019-11-05 13:10:15 +01:00
|
|
|
}
|
2020-10-11 09:16:49 +02:00
|
|
|
|
|
|
|
fn (mut r Repl) get_one_line(prompt string) ?string {
|
|
|
|
if is_stdin_a_pipe {
|
|
|
|
iline := os.get_raw_line()
|
|
|
|
if iline.len == 0 {
|
|
|
|
return none
|
|
|
|
}
|
|
|
|
return iline
|
|
|
|
}
|
2020-12-27 11:41:48 +01:00
|
|
|
rline := r.readline.read_line(prompt) or { return none }
|
2020-10-11 09:16:49 +02:00
|
|
|
return rline
|
|
|
|
}
|
2021-01-26 15:43:10 +01:00
|
|
|
|
|
|
|
fn cleanup_files(files []string) {
|
|
|
|
for file in files {
|
2021-03-24 22:37:10 +01:00
|
|
|
os.rm(file) or {}
|
2021-01-26 15:43:10 +01:00
|
|
|
$if windows {
|
2021-03-24 22:37:10 +01:00
|
|
|
os.rm(file[..file.len - 2] + '.exe') or {}
|
2021-01-26 15:43:10 +01:00
|
|
|
$if msvc {
|
2021-03-24 22:37:10 +01:00
|
|
|
os.rm(file[..file.len - 2] + '.ilk') or {}
|
|
|
|
os.rm(file[..file.len - 2] + '.pdb') or {}
|
2021-01-26 15:43:10 +01:00
|
|
|
}
|
|
|
|
} $else {
|
2021-03-24 22:37:10 +01:00
|
|
|
os.rm(file[..file.len - 2]) or {}
|
2021-01-26 15:43:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-02-08 08:44:04 +01:00
|
|
|
|
|
|
|
fn repl_run_vfile(file string) ?os.Result {
|
|
|
|
$if trace_repl_temp_files ? {
|
|
|
|
eprintln('>> repl_run_vfile file: $file')
|
|
|
|
}
|
2022-01-22 20:13:16 +01:00
|
|
|
s := os.execute('${os.quoted_path(vexe)} -repl run ${os.quoted_path(file)}')
|
2021-03-08 19:52:13 +01:00
|
|
|
if s.exit_code < 0 {
|
|
|
|
rerror(s.output)
|
|
|
|
return error(s.output)
|
2021-02-08 08:44:04 +01:00
|
|
|
}
|
|
|
|
return s
|
|
|
|
}
|