2020-02-03 05:00:36 +01:00
|
|
|
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
|
2019-12-22 02:34:37 +01:00
|
|
|
// Use of this source code is governed by an MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
module fmt
|
|
|
|
|
2020-04-14 19:32:23 +02:00
|
|
|
import v.ast
|
|
|
|
import v.table
|
|
|
|
import strings
|
2020-02-17 22:50:04 +01:00
|
|
|
|
|
|
|
const (
|
2020-05-28 05:50:57 +02:00
|
|
|
tabs = ['', '\t', '\t\t', '\t\t\t', '\t\t\t\t', '\t\t\t\t\t', '\t\t\t\t\t\t', '\t\t\t\t\t\t\t',
|
|
|
|
'\t\t\t\t\t\t\t\t'
|
|
|
|
]
|
2020-04-07 18:51:39 +02:00
|
|
|
max_len = 90
|
2020-02-17 22:50:04 +01:00
|
|
|
)
|
|
|
|
|
2020-05-19 13:19:37 +02:00
|
|
|
pub struct Fmt {
|
|
|
|
pub:
|
2020-05-24 04:43:00 +02:00
|
|
|
table &table.Table
|
2020-05-19 13:19:37 +02:00
|
|
|
pub mut:
|
2020-06-01 17:24:38 +02:00
|
|
|
out_imports strings.Builder
|
|
|
|
out strings.Builder
|
2020-05-24 04:43:00 +02:00
|
|
|
indent int
|
|
|
|
empty_line bool
|
|
|
|
line_len int
|
|
|
|
single_line_if bool
|
|
|
|
cur_mod string
|
|
|
|
file ast.File
|
|
|
|
did_imports bool
|
|
|
|
is_assign bool
|
|
|
|
auto_imports []string // automatically inserted imports that the user forgot to specify
|
|
|
|
import_pos int // position of the imports in the resulting string for later autoimports insertion
|
|
|
|
used_imports []string // to remove unused imports
|
|
|
|
is_debug bool
|
|
|
|
mod2alias map[string]string // for `import time as t`, will contain: 'time'=>'t'
|
|
|
|
use_short_fn_args bool
|
2020-02-17 22:50:04 +01:00
|
|
|
}
|
|
|
|
|
2020-05-04 16:22:41 +02:00
|
|
|
pub fn fmt(file ast.File, table &table.Table, is_debug bool) string {
|
2020-04-21 05:11:50 +02:00
|
|
|
mut f := Fmt{
|
2020-02-17 22:50:04 +01:00
|
|
|
out: strings.new_builder(1000)
|
2020-04-12 17:45:04 +02:00
|
|
|
out_imports: strings.new_builder(200)
|
2020-02-17 22:50:04 +01:00
|
|
|
table: table
|
2020-02-18 22:35:14 +01:00
|
|
|
indent: 0
|
2020-04-05 02:08:10 +02:00
|
|
|
file: file
|
2020-05-04 16:22:41 +02:00
|
|
|
is_debug: is_debug
|
2020-02-17 22:50:04 +01:00
|
|
|
}
|
2020-05-22 21:18:56 +02:00
|
|
|
for imp in file.imports {
|
|
|
|
f.mod2alias[imp.mod.all_after_last('.')] = imp.alias
|
2020-05-24 04:43:00 +02:00
|
|
|
}
|
2020-04-05 21:53:00 +02:00
|
|
|
f.cur_mod = 'main'
|
2020-04-28 15:04:37 +02:00
|
|
|
for stmt in file.stmts {
|
2020-04-30 09:33:43 +02:00
|
|
|
if stmt is ast.Import {
|
|
|
|
// Just remember the position of the imports for now
|
|
|
|
f.import_pos = f.out.len
|
|
|
|
// f.imports(f.file.imports)
|
2020-04-12 17:45:04 +02:00
|
|
|
}
|
2020-02-19 16:12:39 +01:00
|
|
|
f.stmt(stmt)
|
|
|
|
}
|
2020-04-05 18:15:12 +02:00
|
|
|
// for comment in file.comments { println('$comment.line_nr $comment.text') }
|
2020-04-17 20:53:39 +02:00
|
|
|
f.imports(f.file.imports) // now that we have all autoimports, handle them
|
2020-04-12 17:45:04 +02:00
|
|
|
res := f.out.str().trim_space() + '\n'
|
2020-04-20 09:04:17 +02:00
|
|
|
return res[..f.import_pos] + f.out_imports.str() + res[f.import_pos..] // + '\n'
|
2020-02-17 22:50:04 +01:00
|
|
|
}
|
|
|
|
|
2020-04-05 02:08:10 +02:00
|
|
|
/*
|
2020-06-04 10:35:40 +02:00
|
|
|
fn (mut f Fmt) find_comment(line_nr int) {
|
2020-04-05 02:08:10 +02:00
|
|
|
for comment in f.file.comments {
|
|
|
|
if comment.line_nr == line_nr {
|
|
|
|
f.writeln('// FFF $comment.line_nr $comment.text')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
2020-04-21 05:11:50 +02:00
|
|
|
pub fn (mut f Fmt) write(s string) {
|
2020-02-17 22:50:04 +01:00
|
|
|
if f.indent > 0 && f.empty_line {
|
2020-04-28 15:04:37 +02:00
|
|
|
if f.indent < tabs.len {
|
|
|
|
f.out.write(tabs[f.indent])
|
|
|
|
} else {
|
|
|
|
// too many indents, do it the slow way:
|
2020-04-29 10:50:33 +02:00
|
|
|
for _ in 0 .. f.indent {
|
2020-04-28 15:04:37 +02:00
|
|
|
f.out.write('\t')
|
|
|
|
}
|
|
|
|
}
|
2020-02-22 16:59:50 +01:00
|
|
|
f.line_len += f.indent * 4
|
2020-02-17 22:50:04 +01:00
|
|
|
}
|
|
|
|
f.out.write(s)
|
2020-02-21 15:32:48 +01:00
|
|
|
f.line_len += s.len
|
2020-02-18 03:28:39 +01:00
|
|
|
f.empty_line = false
|
2020-02-17 22:50:04 +01:00
|
|
|
}
|
|
|
|
|
2020-04-21 05:11:50 +02:00
|
|
|
pub fn (mut f Fmt) writeln(s string) {
|
2020-02-18 03:28:39 +01:00
|
|
|
if f.indent > 0 && f.empty_line {
|
|
|
|
// println(f.indent.str() + s)
|
2020-02-17 22:50:04 +01:00
|
|
|
f.out.write(tabs[f.indent])
|
|
|
|
}
|
|
|
|
f.out.writeln(s)
|
|
|
|
f.empty_line = true
|
2020-02-21 15:32:48 +01:00
|
|
|
f.line_len = 0
|
2020-02-17 22:50:04 +01:00
|
|
|
}
|
|
|
|
|
2020-05-19 13:19:37 +02:00
|
|
|
pub fn (mut f Fmt) mod(mod ast.Module) {
|
2020-02-21 19:56:37 +01:00
|
|
|
f.cur_mod = mod.name
|
2020-04-10 22:32:52 +02:00
|
|
|
if mod.is_skipped {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
f.writeln('module $mod.name\n')
|
2020-02-18 22:35:14 +01:00
|
|
|
}
|
|
|
|
|
2020-05-19 13:19:37 +02:00
|
|
|
pub fn (mut f Fmt) imports(imports []ast.Import) {
|
2020-04-14 18:24:19 +02:00
|
|
|
if f.did_imports || imports.len == 0 {
|
2020-04-05 21:53:00 +02:00
|
|
|
return
|
|
|
|
}
|
2020-04-12 17:45:04 +02:00
|
|
|
// f.import_pos = f.out.len
|
2020-04-14 18:24:19 +02:00
|
|
|
f.did_imports = true
|
|
|
|
/*
|
2020-02-18 22:35:14 +01:00
|
|
|
if imports.len == 1 {
|
|
|
|
imp_stmt_str := f.imp_stmt_str(imports[0])
|
2020-04-12 17:45:04 +02:00
|
|
|
f.out_imports.writeln('import ${imp_stmt_str}\n')
|
2020-04-07 15:15:45 +02:00
|
|
|
} else if imports.len > 1 {
|
2020-04-25 17:49:16 +02:00
|
|
|
*/
|
2020-04-14 19:32:23 +02:00
|
|
|
// f.out_imports.writeln('import (')
|
2020-04-14 18:24:19 +02:00
|
|
|
for imp in imports {
|
2020-04-26 06:39:23 +02:00
|
|
|
if imp.mod !in f.used_imports {
|
2020-04-14 18:24:19 +02:00
|
|
|
// TODO bring back once only unused imports are removed
|
|
|
|
// continue
|
|
|
|
}
|
2020-04-14 19:32:23 +02:00
|
|
|
// f.out_imports.write('\t')
|
|
|
|
// f.out_imports.writeln(f.imp_stmt_str(imp))
|
|
|
|
f.out_imports.write('import ')
|
2020-04-14 18:24:19 +02:00
|
|
|
f.out_imports.writeln(f.imp_stmt_str(imp))
|
2020-02-18 22:35:14 +01:00
|
|
|
}
|
2020-04-14 19:32:23 +02:00
|
|
|
f.out_imports.writeln('')
|
|
|
|
// f.out_imports.writeln(')\n')
|
2020-04-14 18:24:19 +02:00
|
|
|
// }
|
2020-02-18 22:35:14 +01:00
|
|
|
}
|
|
|
|
|
2020-05-19 13:19:37 +02:00
|
|
|
pub fn (f Fmt) imp_stmt_str(imp ast.Import) string {
|
2020-02-21 20:12:55 +01:00
|
|
|
is_diff := imp.alias != imp.mod && !imp.mod.ends_with('.' + imp.alias)
|
2020-04-07 15:15:45 +02:00
|
|
|
imp_alias_suffix := if is_diff { ' as ${imp.alias}' } else { '' }
|
2020-02-18 22:35:14 +01:00
|
|
|
return '${imp.mod}${imp_alias_suffix}'
|
|
|
|
}
|
|
|
|
|
2020-05-19 13:19:37 +02:00
|
|
|
pub fn (mut f Fmt) stmts(stmts []ast.Stmt) {
|
2020-02-17 22:50:04 +01:00
|
|
|
f.indent++
|
|
|
|
for stmt in stmts {
|
|
|
|
f.stmt(stmt)
|
|
|
|
}
|
|
|
|
f.indent--
|
|
|
|
}
|
|
|
|
|
2020-05-19 13:19:37 +02:00
|
|
|
pub fn (mut f Fmt) stmt(node ast.Stmt) {
|
2020-05-04 16:22:41 +02:00
|
|
|
if f.is_debug {
|
|
|
|
eprintln('stmt: ${node.position():-42} | node: ${typeof(node):-20}')
|
|
|
|
}
|
2020-02-17 22:50:04 +01:00
|
|
|
match node {
|
|
|
|
ast.AssignStmt {
|
2020-03-22 10:12:43 +01:00
|
|
|
for i, ident in it.left {
|
2020-03-10 12:01:37 +01:00
|
|
|
var_info := ident.var_info()
|
|
|
|
if var_info.is_mut {
|
2020-04-21 05:11:50 +02:00
|
|
|
f.write('mut ')
|
2020-02-28 14:41:19 +01:00
|
|
|
}
|
2020-03-10 13:35:25 +01:00
|
|
|
f.expr(ident)
|
2020-03-22 10:12:43 +01:00
|
|
|
if i < it.left.len - 1 {
|
2020-02-17 22:50:04 +01:00
|
|
|
f.write(', ')
|
|
|
|
}
|
|
|
|
}
|
2020-04-05 23:00:17 +02:00
|
|
|
f.is_assign = true
|
2020-02-23 11:22:07 +01:00
|
|
|
f.write(' $it.op.str() ')
|
2020-03-22 10:12:43 +01:00
|
|
|
for i, val in it.right {
|
2020-03-10 12:01:37 +01:00
|
|
|
f.expr(val)
|
2020-03-22 10:12:43 +01:00
|
|
|
if i < it.right.len - 1 {
|
2020-03-10 12:01:37 +01:00
|
|
|
f.write(', ')
|
|
|
|
}
|
2020-02-17 22:50:04 +01:00
|
|
|
}
|
2020-04-07 15:48:13 +02:00
|
|
|
if !f.single_line_if {
|
|
|
|
f.writeln('')
|
|
|
|
}
|
2020-04-05 23:00:17 +02:00
|
|
|
f.is_assign = false
|
2020-02-17 22:50:04 +01:00
|
|
|
}
|
2020-04-07 18:51:39 +02:00
|
|
|
ast.AssertStmt {
|
|
|
|
f.write('assert ')
|
|
|
|
f.expr(it.expr)
|
|
|
|
f.writeln('')
|
|
|
|
}
|
2020-02-24 17:18:14 +01:00
|
|
|
ast.Attr {
|
|
|
|
f.writeln('[$it.name]')
|
|
|
|
}
|
2020-04-05 23:00:17 +02:00
|
|
|
ast.Block {
|
|
|
|
f.writeln('{')
|
|
|
|
f.stmts(it.stmts)
|
|
|
|
f.writeln('}')
|
|
|
|
}
|
2020-02-18 03:28:39 +01:00
|
|
|
ast.BranchStmt {
|
|
|
|
match it.tok.kind {
|
2020-04-17 20:51:16 +02:00
|
|
|
.key_break { f.writeln('break') }
|
|
|
|
.key_continue { f.writeln('continue') }
|
2020-02-18 03:28:39 +01:00
|
|
|
else {}
|
2020-04-05 18:03:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ast.Comment {
|
|
|
|
f.comment(it)
|
2020-02-18 03:28:39 +01:00
|
|
|
}
|
2020-04-07 18:51:39 +02:00
|
|
|
ast.CompIf {
|
|
|
|
inversion := if it.is_not { '!' } else { '' }
|
2020-05-01 11:25:18 +02:00
|
|
|
is_opt := if it.is_opt { ' ?' } else { '' }
|
|
|
|
f.writeln('\$if ${inversion}${it.val}${is_opt} {')
|
2020-04-07 18:51:39 +02:00
|
|
|
f.stmts(it.stmts)
|
|
|
|
if it.has_else {
|
|
|
|
f.writeln('} \$else {')
|
|
|
|
f.stmts(it.else_stmts)
|
|
|
|
}
|
|
|
|
f.writeln('}')
|
|
|
|
}
|
2020-02-17 22:50:04 +01:00
|
|
|
ast.ConstDecl {
|
2020-05-12 00:09:59 +02:00
|
|
|
f.const_decl(it)
|
2020-02-17 22:50:04 +01:00
|
|
|
}
|
2020-02-26 20:44:42 +01:00
|
|
|
ast.DeferStmt {
|
|
|
|
f.writeln('defer {')
|
|
|
|
f.stmts(it.stmts)
|
|
|
|
f.writeln('}')
|
|
|
|
}
|
2020-02-28 17:21:20 +01:00
|
|
|
ast.EnumDecl {
|
2020-02-29 14:38:23 +01:00
|
|
|
if it.is_pub {
|
|
|
|
f.write('pub ')
|
|
|
|
}
|
2020-04-09 15:33:46 +02:00
|
|
|
name := it.name.after('.')
|
|
|
|
f.writeln('enum $name {')
|
2020-04-09 19:23:49 +02:00
|
|
|
for field in it.fields {
|
|
|
|
f.write('\t$field.name')
|
2020-04-10 14:44:01 +02:00
|
|
|
if field.has_expr {
|
2020-04-09 19:23:49 +02:00
|
|
|
f.write(' = ')
|
2020-04-10 14:44:01 +02:00
|
|
|
f.expr(field.expr)
|
2020-04-09 19:23:49 +02:00
|
|
|
}
|
2020-04-12 12:35:54 +02:00
|
|
|
f.writeln('')
|
2020-02-28 17:21:20 +01:00
|
|
|
}
|
|
|
|
f.writeln('}\n')
|
|
|
|
}
|
2020-02-17 22:50:04 +01:00
|
|
|
ast.ExprStmt {
|
|
|
|
f.expr(it.expr)
|
2020-02-21 16:48:37 +01:00
|
|
|
if !f.single_line_if {
|
|
|
|
f.writeln('')
|
|
|
|
}
|
2020-02-17 22:50:04 +01:00
|
|
|
}
|
|
|
|
ast.FnDecl {
|
2020-04-25 17:49:16 +02:00
|
|
|
f.fn_decl(it)
|
2020-02-17 22:50:04 +01:00
|
|
|
}
|
2020-04-07 15:48:13 +02:00
|
|
|
ast.ForCStmt {
|
|
|
|
f.write('for ')
|
|
|
|
if it.has_init {
|
2020-04-17 20:53:39 +02:00
|
|
|
f.single_line_if = true // to keep all for ;; exprs on the same line
|
2020-04-07 15:48:13 +02:00
|
|
|
f.stmt(it.init)
|
|
|
|
f.single_line_if = false
|
|
|
|
}
|
|
|
|
f.write('; ')
|
|
|
|
f.expr(it.cond)
|
|
|
|
f.write('; ')
|
|
|
|
f.expr(it.inc)
|
2020-04-08 00:59:28 +02:00
|
|
|
f.writeln(' {')
|
2020-04-07 15:48:13 +02:00
|
|
|
f.stmts(it.stmts)
|
|
|
|
f.writeln('}')
|
|
|
|
}
|
2020-02-22 14:39:25 +01:00
|
|
|
ast.ForInStmt {
|
2020-03-20 20:19:43 +01:00
|
|
|
f.write('for ')
|
|
|
|
if it.key_var != '' {
|
|
|
|
f.write(it.key_var)
|
|
|
|
}
|
2020-02-27 18:02:40 +01:00
|
|
|
if it.val_var != '' {
|
2020-03-20 20:19:43 +01:00
|
|
|
if it.key_var != '' {
|
|
|
|
f.write(', ')
|
|
|
|
}
|
|
|
|
f.write(it.val_var)
|
2020-02-27 18:02:40 +01:00
|
|
|
}
|
|
|
|
f.write(' in ')
|
2020-02-22 16:59:50 +01:00
|
|
|
f.expr(it.cond)
|
2020-02-28 15:36:41 +01:00
|
|
|
if it.is_range {
|
|
|
|
f.write(' .. ')
|
|
|
|
f.expr(it.high)
|
|
|
|
}
|
2020-02-22 16:59:50 +01:00
|
|
|
f.writeln(' {')
|
2020-02-22 14:39:25 +01:00
|
|
|
f.stmts(it.stmts)
|
|
|
|
f.writeln('}')
|
|
|
|
}
|
2020-02-18 03:28:39 +01:00
|
|
|
ast.ForStmt {
|
|
|
|
f.write('for ')
|
|
|
|
f.expr(it.cond)
|
2020-04-10 22:27:51 +02:00
|
|
|
if it.is_inf {
|
|
|
|
f.writeln('{')
|
|
|
|
} else {
|
|
|
|
f.writeln(' {')
|
|
|
|
}
|
2020-02-18 03:28:39 +01:00
|
|
|
f.stmts(it.stmts)
|
|
|
|
f.writeln('}')
|
|
|
|
}
|
2020-04-07 18:51:39 +02:00
|
|
|
ast.GlobalDecl {
|
|
|
|
f.write('__global $it.name ')
|
2020-04-09 15:33:46 +02:00
|
|
|
f.write(f.type_to_str(it.typ))
|
2020-04-07 18:51:39 +02:00
|
|
|
if it.has_expr {
|
|
|
|
f.write(' = ')
|
|
|
|
f.expr(it.expr)
|
|
|
|
}
|
2020-05-01 11:25:18 +02:00
|
|
|
f.writeln('')
|
2020-04-07 18:51:39 +02:00
|
|
|
}
|
2020-04-25 17:49:16 +02:00
|
|
|
ast.GoStmt {
|
|
|
|
f.write('go ')
|
|
|
|
f.expr(it.call_expr)
|
|
|
|
f.writeln('')
|
|
|
|
}
|
2020-03-02 17:41:32 +01:00
|
|
|
ast.GotoLabel {
|
|
|
|
f.writeln('$it.name:')
|
|
|
|
}
|
|
|
|
ast.GotoStmt {
|
|
|
|
f.writeln('goto $it.name')
|
|
|
|
}
|
2020-04-08 21:21:58 +02:00
|
|
|
ast.HashStmt {
|
|
|
|
f.writeln('#$it.val')
|
|
|
|
}
|
2020-04-05 18:03:36 +02:00
|
|
|
ast.Import {
|
2020-04-12 17:45:04 +02:00
|
|
|
// Imports are handled after the file is formatted, to automatically add necessary modules
|
|
|
|
// f.imports(f.file.imports)
|
2020-04-05 18:03:36 +02:00
|
|
|
}
|
2020-04-22 20:20:49 +02:00
|
|
|
ast.InterfaceDecl {
|
|
|
|
f.writeln('interface $it.name {')
|
|
|
|
for method in it.methods {
|
|
|
|
f.write('\t')
|
|
|
|
f.writeln(method.str(f.table).after('fn '))
|
|
|
|
}
|
|
|
|
f.writeln('}\n')
|
|
|
|
}
|
2020-04-05 18:03:36 +02:00
|
|
|
ast.Module {
|
|
|
|
f.mod(it)
|
2020-03-24 22:18:58 +01:00
|
|
|
}
|
2020-02-17 22:50:04 +01:00
|
|
|
ast.Return {
|
|
|
|
f.write('return')
|
|
|
|
if it.exprs.len > 1 {
|
2020-04-05 18:03:36 +02:00
|
|
|
// multiple returns
|
2020-02-18 03:28:39 +01:00
|
|
|
f.write(' ')
|
2020-02-17 22:50:04 +01:00
|
|
|
for i, expr in it.exprs {
|
|
|
|
f.expr(expr)
|
|
|
|
if i < it.exprs.len - 1 {
|
|
|
|
f.write(', ')
|
|
|
|
}
|
|
|
|
}
|
2020-04-05 18:03:36 +02:00
|
|
|
} else if it.exprs.len == 1 {
|
|
|
|
// normal return
|
2020-02-17 22:50:04 +01:00
|
|
|
f.write(' ')
|
|
|
|
f.expr(it.exprs[0])
|
|
|
|
}
|
|
|
|
f.writeln('')
|
|
|
|
}
|
|
|
|
ast.StructDecl {
|
|
|
|
f.struct_decl(it)
|
|
|
|
}
|
2020-03-07 17:37:55 +01:00
|
|
|
ast.TypeDecl {
|
2020-04-05 02:08:10 +02:00
|
|
|
// already handled in f.imports
|
2020-03-22 10:12:43 +01:00
|
|
|
f.type_decl(it)
|
2020-03-07 17:37:55 +01:00
|
|
|
}
|
2020-04-07 18:51:39 +02:00
|
|
|
ast.UnsafeStmt {
|
|
|
|
f.writeln('unsafe {')
|
2020-03-24 22:18:58 +01:00
|
|
|
f.stmts(it.stmts)
|
|
|
|
f.writeln('}')
|
|
|
|
}
|
2020-02-17 22:50:04 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-19 13:19:37 +02:00
|
|
|
pub fn (mut f Fmt) type_decl(node ast.TypeDecl) {
|
2020-03-07 17:37:55 +01:00
|
|
|
match node {
|
|
|
|
ast.AliasTypeDecl {
|
|
|
|
if it.is_pub {
|
|
|
|
f.write('pub ')
|
|
|
|
}
|
2020-04-09 15:33:46 +02:00
|
|
|
ptype := f.type_to_str(it.parent_type)
|
2020-03-07 17:37:55 +01:00
|
|
|
f.write('type $it.name $ptype')
|
|
|
|
}
|
2020-04-25 20:58:00 +02:00
|
|
|
ast.FnTypeDecl {
|
|
|
|
if it.is_pub {
|
|
|
|
f.write('pub ')
|
|
|
|
}
|
|
|
|
typ_sym := f.table.get_type_symbol(it.typ)
|
|
|
|
fn_typ_info := typ_sym.info as table.FnType
|
|
|
|
fn_info := fn_typ_info.func
|
|
|
|
fn_name := it.name.replace(f.cur_mod + '.', '')
|
|
|
|
f.write('type $fn_name = fn (')
|
|
|
|
for i, arg in fn_info.args {
|
|
|
|
f.write(arg.name)
|
2020-05-28 01:19:24 +02:00
|
|
|
mut s := f.table.type_to_str(arg.typ).replace(f.cur_mod + '.', '')
|
2020-04-25 20:58:00 +02:00
|
|
|
if arg.is_mut {
|
|
|
|
f.write('mut ')
|
|
|
|
if s.starts_with('&') {
|
|
|
|
s = s[1..]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
is_last_arg := i == fn_info.args.len - 1
|
|
|
|
should_add_type := is_last_arg || fn_info.args[i + 1].typ != arg.typ || (fn_info.is_variadic &&
|
|
|
|
i == fn_info.args.len - 2)
|
|
|
|
if should_add_type {
|
|
|
|
if fn_info.is_variadic && is_last_arg {
|
|
|
|
f.write(' ...' + s)
|
|
|
|
} else {
|
|
|
|
f.write(' ' + s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !is_last_arg {
|
|
|
|
f.write(', ')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
f.write(')')
|
|
|
|
if fn_info.return_type.idx() != table.void_type_idx {
|
2020-05-28 05:50:57 +02:00
|
|
|
ret_str := f.table.type_to_str(fn_info.return_type).replace(f.cur_mod + '.',
|
|
|
|
'')
|
2020-04-25 20:58:00 +02:00
|
|
|
f.write(' ' + ret_str)
|
|
|
|
}
|
|
|
|
}
|
2020-03-07 17:37:55 +01:00
|
|
|
ast.SumTypeDecl {
|
|
|
|
if it.is_pub {
|
|
|
|
f.write('pub ')
|
|
|
|
}
|
|
|
|
f.write('type $it.name = ')
|
2020-04-26 09:17:13 +02:00
|
|
|
mut sum_type_names := []string{}
|
2020-03-07 17:37:55 +01:00
|
|
|
for t in it.sub_types {
|
2020-04-09 15:33:46 +02:00
|
|
|
sum_type_names << f.type_to_str(t)
|
2020-03-07 17:37:55 +01:00
|
|
|
}
|
2020-04-25 20:58:00 +02:00
|
|
|
sum_type_names.sort()
|
2020-05-18 18:08:28 +02:00
|
|
|
for i, name in sum_type_names {
|
|
|
|
f.write(name)
|
|
|
|
if i < sum_type_names.len - 1 {
|
|
|
|
f.write(' | ')
|
|
|
|
}
|
|
|
|
f.wrap_long_line()
|
|
|
|
}
|
|
|
|
// f.write(sum_type_names.join(' | '))
|
2020-03-07 17:37:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
f.writeln('\n')
|
|
|
|
}
|
|
|
|
|
2020-05-19 13:19:37 +02:00
|
|
|
pub fn (mut f Fmt) struct_decl(node ast.StructDecl) {
|
2020-02-29 17:51:35 +01:00
|
|
|
if node.is_pub {
|
|
|
|
f.write('pub ')
|
|
|
|
}
|
2020-06-02 07:41:02 +02:00
|
|
|
f.write('struct ')
|
|
|
|
f.write_language_prefix(node.language)
|
2020-04-05 02:08:10 +02:00
|
|
|
name := node.name.after('.')
|
2020-06-02 07:41:02 +02:00
|
|
|
f.writeln('$name {')
|
2020-04-21 05:11:50 +02:00
|
|
|
mut max := 0
|
2020-02-17 22:50:04 +01:00
|
|
|
for field in node.fields {
|
|
|
|
if field.name.len > max {
|
|
|
|
max = field.name.len
|
|
|
|
}
|
|
|
|
}
|
2020-02-22 14:13:19 +01:00
|
|
|
for i, field in node.fields {
|
|
|
|
if i == node.mut_pos {
|
|
|
|
f.writeln('mut:')
|
2020-04-05 18:03:36 +02:00
|
|
|
} else if i == node.pub_pos {
|
2020-02-22 14:13:19 +01:00
|
|
|
f.writeln('pub:')
|
2020-04-05 18:03:36 +02:00
|
|
|
} else if i == node.pub_mut_pos {
|
2020-02-22 14:13:19 +01:00
|
|
|
f.writeln('pub mut:')
|
|
|
|
}
|
2020-04-05 12:25:33 +02:00
|
|
|
if field.comment.text != '' && field.comment.pos.line_nr < field.pos.line_nr {
|
|
|
|
// Comment on the previous line
|
2020-04-05 02:08:10 +02:00
|
|
|
f.write('\t')
|
|
|
|
f.comment(field.comment)
|
|
|
|
}
|
2020-02-17 22:50:04 +01:00
|
|
|
f.write('\t$field.name ')
|
|
|
|
f.write(strings.repeat(` `, max - field.name.len))
|
2020-04-05 12:25:33 +02:00
|
|
|
f.write(f.type_to_str(field.typ))
|
2020-05-29 20:22:27 +02:00
|
|
|
if field.attrs.len > 0 {
|
|
|
|
f.write(' [' + field.attrs.join(';') + ']')
|
|
|
|
}
|
2020-04-12 12:35:54 +02:00
|
|
|
if field.has_default_expr {
|
2020-05-18 15:37:06 +02:00
|
|
|
f.write(' = ')
|
2020-06-06 12:43:35 +02:00
|
|
|
f.struct_field_expr(field.default_expr)
|
2020-04-10 00:30:43 +02:00
|
|
|
}
|
2020-04-05 18:03:36 +02:00
|
|
|
// f.write('// $field.pos.line_nr')
|
2020-04-05 12:25:33 +02:00
|
|
|
if field.comment.text != '' && field.comment.pos.line_nr == field.pos.line_nr {
|
|
|
|
// Same line comment
|
2020-04-05 18:03:36 +02:00
|
|
|
f.write(' ')
|
2020-04-05 12:25:33 +02:00
|
|
|
f.comment(field.comment)
|
|
|
|
} else {
|
2020-04-05 18:03:36 +02:00
|
|
|
// if field.comment.text != '' {
|
|
|
|
// f.write (' // com linenr=$field.comment.pos.line_nr')
|
|
|
|
// }
|
2020-04-05 12:25:33 +02:00
|
|
|
f.writeln('')
|
|
|
|
}
|
2020-02-17 22:50:04 +01:00
|
|
|
}
|
|
|
|
f.writeln('}\n')
|
|
|
|
}
|
|
|
|
|
2020-05-30 21:29:59 +02:00
|
|
|
pub fn (mut f Fmt) struct_field_expr(fexpr ast.Expr) {
|
|
|
|
mut is_pe_amp_ce := false
|
|
|
|
mut ce := ast.CastExpr{}
|
|
|
|
if fexpr is ast.PrefixExpr {
|
|
|
|
pe := fexpr as ast.PrefixExpr
|
|
|
|
if pe.right is ast.CastExpr && pe.op == .amp {
|
|
|
|
ce = pe.right as ast.CastExpr
|
|
|
|
is_pe_amp_ce = true
|
|
|
|
f.expr(ce)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !is_pe_amp_ce {
|
|
|
|
f.expr(fexpr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-09 15:33:46 +02:00
|
|
|
fn (f &Fmt) type_to_str(t table.Type) string {
|
2020-04-21 05:11:50 +02:00
|
|
|
mut res := f.table.type_to_str(t)
|
2020-04-16 07:28:41 +02:00
|
|
|
if res.ends_with('_ptr') {
|
2020-05-20 21:39:59 +02:00
|
|
|
// type_ptr => &type
|
2020-04-25 17:49:16 +02:00
|
|
|
res = res[0..res.len - 4]
|
2020-04-16 07:28:41 +02:00
|
|
|
start_pos := 2 * res.count('[]')
|
2020-04-25 17:49:16 +02:00
|
|
|
res = res[0..start_pos] + '&' + res[start_pos..res.len]
|
2020-04-16 07:28:41 +02:00
|
|
|
}
|
2020-05-28 08:06:20 +02:00
|
|
|
if res.starts_with('[]fixed_') {
|
|
|
|
prefix := '[]fixed_'
|
|
|
|
res = res[prefix.len..]
|
|
|
|
last_underscore_idx := res.last_index('_') or {
|
|
|
|
return '[]' + res.replace(f.cur_mod + '.', '')
|
|
|
|
}
|
|
|
|
limit := res[last_underscore_idx + 1..]
|
|
|
|
res = '[' + limit + ']' + res[..last_underscore_idx]
|
|
|
|
}
|
2020-02-21 19:56:37 +01:00
|
|
|
return res.replace(f.cur_mod + '.', '')
|
|
|
|
}
|
|
|
|
|
2020-05-19 13:19:37 +02:00
|
|
|
pub fn (mut f Fmt) expr(node ast.Expr) {
|
2020-05-04 16:22:41 +02:00
|
|
|
if f.is_debug {
|
|
|
|
eprintln('expr: ${node.position():-42} | node: ${typeof(node):-20} | ${node.str()}')
|
|
|
|
}
|
2020-02-17 22:50:04 +01:00
|
|
|
match node {
|
2020-04-25 17:49:16 +02:00
|
|
|
ast.AnonFn {
|
|
|
|
f.fn_decl(it.decl)
|
|
|
|
}
|
2020-02-17 22:50:04 +01:00
|
|
|
ast.ArrayInit {
|
2020-04-26 07:16:58 +02:00
|
|
|
f.array_init(it)
|
2020-02-17 22:50:04 +01:00
|
|
|
}
|
2020-03-06 22:12:15 +01:00
|
|
|
ast.AsCast {
|
2020-04-09 15:33:46 +02:00
|
|
|
type_str := f.type_to_str(it.typ)
|
2020-03-06 22:12:15 +01:00
|
|
|
f.expr(it.expr)
|
|
|
|
f.write(' as $type_str')
|
|
|
|
}
|
2020-02-17 22:50:04 +01:00
|
|
|
ast.AssignExpr {
|
|
|
|
f.expr(it.left)
|
|
|
|
f.write(' $it.op.str() ')
|
|
|
|
f.expr(it.val)
|
|
|
|
}
|
2020-02-22 14:39:25 +01:00
|
|
|
ast.Assoc {
|
|
|
|
f.writeln('{')
|
|
|
|
// f.indent++
|
2020-02-29 18:07:29 +01:00
|
|
|
f.writeln('\t$it.var_name |')
|
2020-02-22 14:39:25 +01:00
|
|
|
// TODO StructInit copy pasta
|
|
|
|
for i, field in it.fields {
|
2020-04-09 15:59:19 +02:00
|
|
|
f.write('\t$field: ')
|
2020-02-22 14:39:25 +01:00
|
|
|
f.expr(it.exprs[i])
|
|
|
|
f.writeln('')
|
|
|
|
}
|
|
|
|
// f.indent--
|
|
|
|
f.write('}')
|
|
|
|
}
|
2020-02-17 22:50:04 +01:00
|
|
|
ast.BoolLiteral {
|
|
|
|
f.write(it.val.str())
|
|
|
|
}
|
2020-02-27 18:02:40 +01:00
|
|
|
ast.CastExpr {
|
2020-04-09 15:33:46 +02:00
|
|
|
f.write(f.type_to_str(it.typ) + '(')
|
2020-02-27 18:02:40 +01:00
|
|
|
f.expr(it.expr)
|
|
|
|
f.write(')')
|
|
|
|
}
|
2020-02-17 22:50:04 +01:00
|
|
|
ast.CallExpr {
|
2020-04-12 17:45:04 +02:00
|
|
|
f.call_expr(it)
|
2020-02-17 22:50:04 +01:00
|
|
|
}
|
2020-02-27 21:51:40 +01:00
|
|
|
ast.CharLiteral {
|
|
|
|
f.write('`$it.val`')
|
|
|
|
}
|
2020-05-27 03:33:37 +02:00
|
|
|
ast.ComptimeCall {}
|
2020-04-25 17:49:16 +02:00
|
|
|
ast.ConcatExpr {
|
|
|
|
for i, val in it.vals {
|
|
|
|
if i != 0 {
|
|
|
|
f.write(' + ')
|
|
|
|
}
|
|
|
|
f.expr(val)
|
|
|
|
}
|
|
|
|
}
|
2020-02-18 03:28:39 +01:00
|
|
|
ast.EnumVal {
|
2020-05-22 21:18:56 +02:00
|
|
|
name := f.short_module(it.enum_name)
|
2020-04-08 18:55:50 +02:00
|
|
|
f.write(name + '.' + it.val)
|
2020-02-18 03:28:39 +01:00
|
|
|
}
|
2020-02-17 22:50:04 +01:00
|
|
|
ast.FloatLiteral {
|
|
|
|
f.write(it.val)
|
|
|
|
}
|
|
|
|
ast.IfExpr {
|
2020-04-05 18:03:36 +02:00
|
|
|
f.if_expr(it)
|
2020-02-17 22:50:04 +01:00
|
|
|
}
|
|
|
|
ast.Ident {
|
2020-05-28 08:06:20 +02:00
|
|
|
f.write_language_prefix(it.language)
|
2020-02-27 21:51:40 +01:00
|
|
|
if it.kind == .blank_ident {
|
|
|
|
f.write('_')
|
2020-04-05 18:03:36 +02:00
|
|
|
} else {
|
2020-05-22 21:18:56 +02:00
|
|
|
name := f.short_module(it.name)
|
2020-04-13 19:59:57 +02:00
|
|
|
// f.write('<$it.name => $name>')
|
2020-04-05 03:37:38 +02:00
|
|
|
f.write(name)
|
2020-04-13 16:36:32 +02:00
|
|
|
if name.contains('.') {
|
|
|
|
f.mark_module_as_used(name)
|
|
|
|
}
|
2020-02-27 21:51:40 +01:00
|
|
|
}
|
2020-02-17 22:50:04 +01:00
|
|
|
}
|
2020-04-25 17:49:16 +02:00
|
|
|
ast.IfGuardExpr {
|
|
|
|
f.write(it.var_name + ' := ')
|
|
|
|
f.expr(it.expr)
|
|
|
|
}
|
2020-02-17 22:50:04 +01:00
|
|
|
ast.InfixExpr {
|
|
|
|
f.expr(it.left)
|
|
|
|
f.write(' $it.op.str() ')
|
2020-02-21 16:14:15 +01:00
|
|
|
f.wrap_long_line()
|
2020-02-17 22:50:04 +01:00
|
|
|
f.expr(it.right)
|
|
|
|
}
|
|
|
|
ast.IndexExpr {
|
2020-02-29 17:45:08 +01:00
|
|
|
f.expr(it.left)
|
|
|
|
f.write('[')
|
|
|
|
f.expr(it.index)
|
|
|
|
f.write(']')
|
2020-02-17 22:50:04 +01:00
|
|
|
}
|
|
|
|
ast.IntegerLiteral {
|
2020-03-17 02:49:15 +01:00
|
|
|
f.write(it.val)
|
2020-02-17 22:50:04 +01:00
|
|
|
}
|
2020-02-22 14:13:19 +01:00
|
|
|
ast.MapInit {
|
2020-04-14 18:09:59 +02:00
|
|
|
if it.keys.len == 0 {
|
2020-05-27 15:26:45 +02:00
|
|
|
mut ktyp := it.key_type
|
2020-05-28 01:19:24 +02:00
|
|
|
mut vtyp := it.value_type
|
2020-05-27 15:26:45 +02:00
|
|
|
if vtyp == 0 {
|
2020-05-04 17:26:28 +02:00
|
|
|
typ_sym := f.table.get_type_symbol(it.typ)
|
|
|
|
minfo := typ_sym.info as table.Map
|
2020-05-27 15:26:45 +02:00
|
|
|
ktyp = minfo.key_type
|
|
|
|
vtyp = minfo.value_type
|
2020-04-14 18:09:59 +02:00
|
|
|
}
|
2020-05-04 17:26:28 +02:00
|
|
|
f.write('map[')
|
2020-05-27 15:26:45 +02:00
|
|
|
f.write(f.type_to_str(ktyp))
|
2020-05-04 17:26:28 +02:00
|
|
|
f.write(']')
|
2020-05-27 15:26:45 +02:00
|
|
|
f.write(f.type_to_str(vtyp))
|
|
|
|
f.write('{}')
|
2020-04-14 18:09:59 +02:00
|
|
|
return
|
|
|
|
}
|
2020-02-22 14:13:19 +01:00
|
|
|
f.writeln('{')
|
|
|
|
f.indent++
|
|
|
|
for i, key in it.keys {
|
|
|
|
f.expr(key)
|
|
|
|
// f.write(strings.repeat(` `, max - field.name.len))
|
|
|
|
f.write(': ')
|
|
|
|
f.expr(it.vals[i])
|
|
|
|
f.writeln('')
|
|
|
|
}
|
|
|
|
f.indent--
|
|
|
|
f.write('}')
|
|
|
|
}
|
2020-02-29 20:43:15 +01:00
|
|
|
ast.MatchExpr {
|
2020-04-17 20:51:16 +02:00
|
|
|
f.match_expr(it)
|
2020-02-29 20:43:15 +01:00
|
|
|
}
|
2020-02-21 17:52:20 +01:00
|
|
|
ast.None {
|
|
|
|
f.write('none')
|
|
|
|
}
|
2020-04-25 17:49:16 +02:00
|
|
|
ast.OrExpr {
|
|
|
|
// shouldn't happen, an or expression
|
|
|
|
// is always linked to a call expr
|
|
|
|
panic('fmt: OrExpr should to linked to CallExpr')
|
2020-02-27 18:02:40 +01:00
|
|
|
}
|
2020-02-28 15:36:41 +01:00
|
|
|
ast.ParExpr {
|
2020-02-28 14:41:19 +01:00
|
|
|
f.write('(')
|
|
|
|
f.expr(it.expr)
|
|
|
|
f.write(')')
|
2020-02-28 15:36:41 +01:00
|
|
|
}
|
2020-02-17 22:50:04 +01:00
|
|
|
ast.PostfixExpr {
|
|
|
|
f.expr(it.expr)
|
|
|
|
f.write(it.op.str())
|
|
|
|
}
|
|
|
|
ast.PrefixExpr {
|
|
|
|
f.write(it.op.str())
|
|
|
|
f.expr(it.right)
|
|
|
|
}
|
2020-02-29 17:45:08 +01:00
|
|
|
ast.RangeExpr {
|
|
|
|
f.expr(it.low)
|
|
|
|
f.write('..')
|
|
|
|
f.expr(it.high)
|
|
|
|
}
|
2020-02-17 22:50:04 +01:00
|
|
|
ast.SelectorExpr {
|
|
|
|
f.expr(it.expr)
|
|
|
|
f.write('.')
|
2020-05-09 15:16:48 +02:00
|
|
|
f.write(it.field_name)
|
2020-02-17 22:50:04 +01:00
|
|
|
}
|
2020-04-07 18:51:39 +02:00
|
|
|
ast.SizeOf {
|
2020-04-10 00:30:43 +02:00
|
|
|
f.write('sizeof(')
|
2020-04-07 18:51:39 +02:00
|
|
|
if it.type_name != '' {
|
2020-04-10 00:30:43 +02:00
|
|
|
f.write(it.type_name)
|
2020-04-07 18:51:39 +02:00
|
|
|
} else {
|
2020-04-10 00:30:43 +02:00
|
|
|
f.write(f.type_to_str(it.typ))
|
2020-04-07 18:51:39 +02:00
|
|
|
}
|
2020-04-10 00:30:43 +02:00
|
|
|
f.write(')')
|
2020-04-07 18:51:39 +02:00
|
|
|
}
|
2020-02-17 22:50:04 +01:00
|
|
|
ast.StringLiteral {
|
2020-05-27 03:10:47 +02:00
|
|
|
if it.is_raw {
|
|
|
|
f.write('r')
|
|
|
|
}
|
2020-04-25 17:49:16 +02:00
|
|
|
if it.val.contains("'") && !it.val.contains('"') {
|
2020-04-05 19:35:10 +02:00
|
|
|
f.write('"$it.val"')
|
|
|
|
} else {
|
|
|
|
f.write("'$it.val'")
|
|
|
|
}
|
2020-02-17 22:50:04 +01:00
|
|
|
}
|
2020-03-24 22:18:58 +01:00
|
|
|
ast.StringInterLiteral {
|
|
|
|
f.write("'")
|
|
|
|
for i, val in it.vals {
|
|
|
|
f.write(val)
|
2020-04-05 18:03:36 +02:00
|
|
|
if i >= it.exprs.len {
|
2020-03-24 22:18:58 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
f.write('$')
|
|
|
|
if it.expr_fmts[i].len > 0 {
|
|
|
|
f.write('{')
|
|
|
|
f.expr(it.exprs[i])
|
|
|
|
f.write(it.expr_fmts[i])
|
|
|
|
f.write('}')
|
2020-04-05 18:03:36 +02:00
|
|
|
} else {
|
2020-03-24 22:18:58 +01:00
|
|
|
f.expr(it.exprs[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
f.write("'")
|
|
|
|
}
|
2020-02-17 22:50:04 +01:00
|
|
|
ast.StructInit {
|
2020-05-05 15:06:51 +02:00
|
|
|
f.struct_init(it)
|
2020-02-17 22:50:04 +01:00
|
|
|
}
|
2020-04-05 02:08:10 +02:00
|
|
|
ast.Type {
|
2020-04-05 18:03:36 +02:00
|
|
|
f.write(f.type_to_str(it.typ))
|
2020-04-05 02:08:10 +02:00
|
|
|
}
|
2020-04-03 11:59:53 +02:00
|
|
|
ast.TypeOf {
|
|
|
|
f.write('typeof(')
|
|
|
|
f.expr(it.expr)
|
|
|
|
f.write(')')
|
|
|
|
}
|
2020-06-09 16:36:18 +02:00
|
|
|
ast.Likely {
|
|
|
|
f.write('_likely_(')
|
|
|
|
f.expr(it.expr)
|
|
|
|
f.write(')')
|
|
|
|
}
|
2020-02-17 22:50:04 +01:00
|
|
|
}
|
|
|
|
}
|
2019-12-22 02:34:37 +01:00
|
|
|
|
2020-05-19 13:19:37 +02:00
|
|
|
pub fn (mut f Fmt) wrap_long_line() bool {
|
2020-04-25 17:49:16 +02:00
|
|
|
if f.line_len <= max_len {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if f.out.buf[f.out.buf.len - 1] == ` ` {
|
|
|
|
f.out.go_back(1)
|
2020-02-21 16:14:15 +01:00
|
|
|
}
|
2020-04-25 17:49:16 +02:00
|
|
|
f.write('\n' + tabs[f.indent + 1])
|
|
|
|
f.line_len = 0
|
|
|
|
return true
|
2020-02-21 16:14:15 +01:00
|
|
|
}
|
2020-03-02 17:09:45 +01:00
|
|
|
|
2020-05-19 13:19:37 +02:00
|
|
|
pub fn (mut f Fmt) call_args(args []ast.CallArg) {
|
2020-03-02 17:09:45 +01:00
|
|
|
for i, arg in args {
|
2020-03-14 11:11:43 +01:00
|
|
|
if arg.is_mut {
|
2020-03-02 17:09:45 +01:00
|
|
|
f.write('mut ')
|
|
|
|
}
|
|
|
|
if i > 0 {
|
|
|
|
f.wrap_long_line()
|
|
|
|
}
|
2020-03-14 11:11:43 +01:00
|
|
|
f.expr(arg.expr)
|
2020-03-02 17:09:45 +01:00
|
|
|
if i < args.len - 1 {
|
|
|
|
f.write(', ')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-19 13:19:37 +02:00
|
|
|
pub fn (mut f Fmt) or_expr(or_block ast.OrExpr) {
|
2020-05-23 08:51:15 +02:00
|
|
|
match or_block.kind {
|
|
|
|
.absent {}
|
|
|
|
.block {
|
|
|
|
f.writeln(' or {')
|
|
|
|
f.stmts(or_block.stmts)
|
|
|
|
f.write('}')
|
|
|
|
}
|
|
|
|
.propagate {
|
|
|
|
f.write('?')
|
|
|
|
}
|
2020-03-02 17:09:45 +01:00
|
|
|
}
|
|
|
|
}
|
2020-04-05 02:08:10 +02:00
|
|
|
|
2020-05-19 13:19:37 +02:00
|
|
|
pub fn (mut f Fmt) comment(node ast.Comment) {
|
2020-04-05 02:08:10 +02:00
|
|
|
if !node.text.contains('\n') {
|
2020-04-05 16:38:29 +02:00
|
|
|
is_separate_line := node.text.starts_with('|')
|
2020-04-21 05:11:50 +02:00
|
|
|
mut s := if is_separate_line { node.text[1..] } else { node.text }
|
2020-04-08 14:19:13 +02:00
|
|
|
if s == '' {
|
|
|
|
s = '//'
|
2020-04-05 16:38:29 +02:00
|
|
|
} else {
|
2020-04-08 14:19:13 +02:00
|
|
|
s = '// ' + s
|
|
|
|
}
|
|
|
|
if !is_separate_line {
|
2020-04-17 20:53:39 +02:00
|
|
|
f.remove_new_line() // delete the generated \n
|
|
|
|
f.write(' ')
|
2020-04-05 16:38:29 +02:00
|
|
|
}
|
2020-04-08 14:19:13 +02:00
|
|
|
f.writeln(s)
|
2020-04-05 02:08:10 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
lines := node.text.split_into_lines()
|
|
|
|
f.writeln('/*')
|
|
|
|
for line in lines {
|
|
|
|
f.writeln(line)
|
2020-04-05 19:35:10 +02:00
|
|
|
f.empty_line = false
|
2020-04-05 02:08:10 +02:00
|
|
|
}
|
2020-04-25 17:49:16 +02:00
|
|
|
f.empty_line = true
|
2020-04-05 02:08:10 +02:00
|
|
|
f.writeln('*/')
|
|
|
|
}
|
2020-04-05 03:37:38 +02:00
|
|
|
|
2020-05-19 13:19:37 +02:00
|
|
|
pub fn (mut f Fmt) fn_decl(node ast.FnDecl) {
|
2020-04-25 17:49:16 +02:00
|
|
|
// println('$it.name find_comment($it.pos.line_nr)')
|
|
|
|
// f.find_comment(it.pos.line_nr)
|
|
|
|
s := node.str(f.table)
|
|
|
|
f.write(s.replace(f.cur_mod + '.', '')) // `Expr` instead of `ast.Expr` in mod ast
|
2020-05-19 17:12:47 +02:00
|
|
|
if node.language == .v {
|
2020-04-25 17:49:16 +02:00
|
|
|
f.writeln(' {')
|
|
|
|
f.stmts(node.stmts)
|
|
|
|
f.write('}')
|
|
|
|
if !node.is_anon {
|
|
|
|
f.writeln('\n')
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
f.writeln('\n')
|
|
|
|
}
|
|
|
|
// Mark all function's used type so that they are not removed from imports
|
|
|
|
for arg in node.args {
|
|
|
|
f.mark_types_module_as_used(arg.typ)
|
|
|
|
}
|
|
|
|
f.mark_types_module_as_used(node.return_type)
|
|
|
|
}
|
|
|
|
|
2020-04-05 03:37:38 +02:00
|
|
|
// foo.bar.fn() => bar.fn()
|
2020-05-22 21:18:56 +02:00
|
|
|
pub fn (mut f Fmt) short_module(name string) string {
|
2020-04-05 03:37:38 +02:00
|
|
|
if !name.contains('.') {
|
|
|
|
return name
|
|
|
|
}
|
|
|
|
vals := name.split('.')
|
|
|
|
if vals.len < 2 {
|
|
|
|
return name
|
|
|
|
}
|
2020-05-22 21:18:56 +02:00
|
|
|
mname := vals[vals.len - 2]
|
|
|
|
symname := vals[vals.len - 1]
|
|
|
|
aname := f.mod2alias[mname]
|
2020-05-23 10:56:06 +02:00
|
|
|
if aname == '' {
|
|
|
|
return symname
|
|
|
|
}
|
2020-05-22 21:18:56 +02:00
|
|
|
return '${aname}.${symname}'
|
2020-04-05 18:03:36 +02:00
|
|
|
}
|
|
|
|
|
2020-05-19 13:19:37 +02:00
|
|
|
pub fn (mut f Fmt) if_expr(it ast.IfExpr) {
|
2020-04-08 00:59:28 +02:00
|
|
|
single_line := it.branches.len == 2 && it.has_else && it.branches[0].stmts.len == 1 &&
|
|
|
|
it.branches[1].stmts.len == 1 && (it.is_expr || f.is_assign)
|
2020-04-05 18:03:36 +02:00
|
|
|
f.single_line_if = single_line
|
|
|
|
for i, branch in it.branches {
|
2020-04-07 15:15:45 +02:00
|
|
|
if branch.comment.text != '' {
|
|
|
|
f.comment(branch.comment)
|
|
|
|
}
|
2020-04-05 18:03:36 +02:00
|
|
|
if i == 0 {
|
|
|
|
f.write('if ')
|
|
|
|
f.expr(branch.cond)
|
|
|
|
f.write(' {')
|
|
|
|
} else if i < it.branches.len - 1 || !it.has_else {
|
|
|
|
f.write('} else if ')
|
|
|
|
f.expr(branch.cond)
|
|
|
|
f.write(' {')
|
|
|
|
} else if i == it.branches.len - 1 && it.has_else {
|
|
|
|
f.write('} else {')
|
|
|
|
}
|
2020-04-05 19:35:10 +02:00
|
|
|
if single_line {
|
|
|
|
f.write(' ')
|
|
|
|
} else {
|
|
|
|
f.writeln('')
|
|
|
|
}
|
2020-04-05 18:03:36 +02:00
|
|
|
f.stmts(branch.stmts)
|
|
|
|
if single_line {
|
|
|
|
f.write(' ')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
f.write('}')
|
|
|
|
f.single_line_if = false
|
2020-04-05 03:37:38 +02:00
|
|
|
}
|
2020-04-12 17:45:04 +02:00
|
|
|
|
2020-05-19 13:19:37 +02:00
|
|
|
pub fn (mut f Fmt) call_expr(node ast.CallExpr) {
|
2020-05-24 04:43:00 +02:00
|
|
|
/*
|
|
|
|
if node.args.len == 1 && node.expected_arg_types.len == 1 && node.args[0].expr is ast.StructInit &&
|
|
|
|
node.args[0].typ == node.expected_arg_types[0] {
|
|
|
|
// struct_init := node.args[0].expr as ast.StructInit
|
|
|
|
// if struct_init.typ == node.args[0].typ {
|
|
|
|
f.use_short_fn_args = true
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
*/
|
2020-04-12 17:45:04 +02:00
|
|
|
if node.is_method {
|
2020-06-06 16:05:16 +02:00
|
|
|
/*
|
|
|
|
// x.foo!() experiment
|
|
|
|
mut is_mut := false
|
|
|
|
if node.left is ast.Ident {
|
|
|
|
scope := f.file.scope.innermost(node.pos.pos)
|
|
|
|
x := node.left as ast.Ident
|
|
|
|
var := scope.find_var(x.name) or {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
println(var.typ)
|
|
|
|
if var.typ != 0 {
|
|
|
|
sym := f.table.get_type_symbol(var.typ)
|
|
|
|
if method := f.table.type_find_method(sym, node.name) {
|
|
|
|
is_mut = method.args[0].is_mut
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
2020-04-25 17:49:16 +02:00
|
|
|
if node.left is ast.Ident {
|
|
|
|
it := node.left as ast.Ident
|
|
|
|
// `time.now()` without `time imported` is processed as a method call with `time` being
|
|
|
|
// a `node.left` expression. Import `time` automatically.
|
|
|
|
// TODO fetch all available modules
|
|
|
|
if it.name in ['time', 'os', 'strings', 'math', 'json', 'base64'] {
|
2020-04-26 06:39:23 +02:00
|
|
|
if it.name !in f.auto_imports {
|
2020-04-25 17:49:16 +02:00
|
|
|
f.auto_imports << it.name
|
|
|
|
f.file.imports << ast.Import{
|
|
|
|
mod: it.name
|
|
|
|
alias: it.name
|
2020-04-12 17:45:04 +02:00
|
|
|
}
|
|
|
|
}
|
2020-04-25 17:49:16 +02:00
|
|
|
// for imp in f.file.imports {
|
|
|
|
// println(imp.mod)
|
|
|
|
// }
|
2020-04-12 17:45:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
f.expr(node.left)
|
|
|
|
f.write('.' + node.name + '(')
|
|
|
|
f.call_args(node.args)
|
|
|
|
f.write(')')
|
2020-06-06 16:52:41 +02:00
|
|
|
// if is_mut {
|
|
|
|
// f.write('!')
|
|
|
|
// }
|
2020-04-12 17:45:04 +02:00
|
|
|
f.or_expr(node.or_block)
|
|
|
|
} else {
|
2020-05-28 08:06:20 +02:00
|
|
|
f.write_language_prefix(node.language)
|
2020-05-22 21:18:56 +02:00
|
|
|
name := f.short_module(node.name)
|
2020-04-13 15:05:51 +02:00
|
|
|
f.mark_module_as_used(name)
|
2020-05-21 18:36:25 +02:00
|
|
|
f.write('${name}')
|
|
|
|
if node.generic_type != 0 && node.generic_type != table.void_type {
|
|
|
|
f.write('<')
|
|
|
|
f.write(f.type_to_str(node.generic_type))
|
|
|
|
f.write('>')
|
|
|
|
}
|
|
|
|
f.write('(')
|
2020-04-12 17:45:04 +02:00
|
|
|
f.call_args(node.args)
|
|
|
|
f.write(')')
|
|
|
|
f.or_expr(node.or_block)
|
|
|
|
}
|
2020-05-24 04:43:00 +02:00
|
|
|
f.use_short_fn_args = false
|
2020-04-12 17:45:04 +02:00
|
|
|
}
|
2020-04-13 15:05:51 +02:00
|
|
|
|
2020-05-19 13:19:37 +02:00
|
|
|
pub fn (mut f Fmt) match_expr(it ast.MatchExpr) {
|
2020-04-17 20:51:16 +02:00
|
|
|
f.write('match ')
|
|
|
|
if it.is_mut {
|
2020-04-21 05:11:50 +02:00
|
|
|
f.write('mut ')
|
2020-04-17 20:51:16 +02:00
|
|
|
}
|
|
|
|
f.expr(it.cond)
|
|
|
|
f.writeln(' {')
|
|
|
|
f.indent++
|
2020-04-21 05:11:50 +02:00
|
|
|
mut single_line := true
|
2020-04-28 15:04:37 +02:00
|
|
|
for branch in it.branches {
|
2020-04-17 20:51:16 +02:00
|
|
|
if branch.stmts.len > 1 {
|
|
|
|
single_line = false
|
|
|
|
break
|
|
|
|
}
|
2020-04-21 04:51:50 +02:00
|
|
|
if branch.stmts.len == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
stmt := branch.stmts[0]
|
|
|
|
if stmt is ast.ExprStmt {
|
|
|
|
// If expressions inside match branches can't be one a single line
|
|
|
|
expr_stmt := stmt as ast.ExprStmt
|
|
|
|
if !expr_is_single_line(expr_stmt.expr) {
|
|
|
|
single_line = false
|
|
|
|
break
|
|
|
|
}
|
2020-04-25 17:49:16 +02:00
|
|
|
} else if stmt is ast.Comment {
|
|
|
|
single_line = false
|
|
|
|
break
|
2020-04-21 04:51:50 +02:00
|
|
|
}
|
2020-04-17 20:51:16 +02:00
|
|
|
}
|
2020-04-28 15:04:37 +02:00
|
|
|
for branch in it.branches {
|
2020-04-17 20:51:16 +02:00
|
|
|
if branch.comment.text != '' {
|
|
|
|
f.comment(branch.comment)
|
|
|
|
}
|
|
|
|
if !branch.is_else {
|
|
|
|
// normal branch
|
|
|
|
for j, expr in branch.exprs {
|
|
|
|
f.expr(expr)
|
|
|
|
if j < branch.exprs.len - 1 {
|
|
|
|
f.write(', ')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// else branch
|
|
|
|
f.write('else')
|
|
|
|
}
|
|
|
|
if branch.stmts.len == 0 {
|
|
|
|
f.writeln(' {}')
|
|
|
|
} else {
|
|
|
|
if single_line {
|
|
|
|
f.write(' { ')
|
|
|
|
} else {
|
|
|
|
f.writeln(' {')
|
|
|
|
}
|
|
|
|
f.stmts(branch.stmts)
|
|
|
|
if single_line {
|
|
|
|
f.remove_new_line()
|
|
|
|
f.writeln(' }')
|
|
|
|
} else {
|
|
|
|
f.writeln('}')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
f.indent--
|
|
|
|
f.write('}')
|
|
|
|
}
|
|
|
|
|
2020-05-19 13:19:37 +02:00
|
|
|
pub fn (mut f Fmt) remove_new_line() {
|
2020-04-21 05:11:50 +02:00
|
|
|
mut i := 0
|
2020-04-17 20:51:16 +02:00
|
|
|
for i = f.out.len - 1; i >= 0; i-- {
|
2020-04-17 20:53:39 +02:00
|
|
|
if !f.out.buf[i].is_space() { // != `\n` {
|
2020-04-17 20:51:16 +02:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
f.out.go_back(f.out.len - i - 1)
|
|
|
|
f.empty_line = false
|
|
|
|
// f.writeln('sdf')
|
|
|
|
}
|
|
|
|
|
2020-05-19 13:19:37 +02:00
|
|
|
pub fn (mut f Fmt) mark_types_module_as_used(typ table.Type) {
|
2020-04-13 15:05:51 +02:00
|
|
|
sym := f.table.get_type_symbol(typ)
|
|
|
|
f.mark_module_as_used(sym.name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// `name` is a function (`foo.bar()`) or type (`foo.Bar{}`)
|
2020-05-19 13:19:37 +02:00
|
|
|
pub fn (mut f Fmt) mark_module_as_used(name string) {
|
2020-04-13 15:05:51 +02:00
|
|
|
if !name.contains('.') {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
pos := name.last_index('.') or {
|
|
|
|
0
|
|
|
|
}
|
|
|
|
mod := name[..pos]
|
|
|
|
if mod in f.used_imports {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
f.used_imports << mod
|
|
|
|
// println('marking module $mod as used')
|
|
|
|
}
|
2020-04-21 04:51:50 +02:00
|
|
|
|
2020-05-28 08:06:20 +02:00
|
|
|
fn (mut f Fmt) write_language_prefix(lang table.Language) {
|
|
|
|
match lang {
|
2020-06-06 12:43:35 +02:00
|
|
|
.c { f.write('C.') }
|
|
|
|
.js { f.write('JS.') }
|
2020-05-28 08:06:20 +02:00
|
|
|
else {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-21 04:51:50 +02:00
|
|
|
fn expr_is_single_line(expr ast.Expr) bool {
|
|
|
|
match expr {
|
|
|
|
ast.IfExpr { return false }
|
|
|
|
else {}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
2020-04-26 07:16:58 +02:00
|
|
|
|
2020-05-19 13:19:37 +02:00
|
|
|
pub fn (mut f Fmt) array_init(it ast.ArrayInit) {
|
2020-04-26 07:16:58 +02:00
|
|
|
if it.exprs.len == 0 && it.typ != 0 && it.typ != table.void_type {
|
|
|
|
// `x := []string`
|
2020-05-04 17:26:28 +02:00
|
|
|
typ_sym := f.table.get_type_symbol(it.typ)
|
|
|
|
if typ_sym.kind == .array && typ_sym.name.starts_with('array_map') {
|
|
|
|
ainfo := typ_sym.info as table.Array
|
2020-05-05 15:06:51 +02:00
|
|
|
map_typ_sym := f.table.get_type_symbol(ainfo.elem_type)
|
2020-05-04 17:26:28 +02:00
|
|
|
minfo := map_typ_sym.info as table.Map
|
|
|
|
mk := f.table.get_type_symbol(minfo.key_type).name
|
|
|
|
mv := f.table.get_type_symbol(minfo.value_type).name
|
2020-05-05 15:06:51 +02:00
|
|
|
for _ in 0 .. ainfo.nr_dims {
|
2020-05-04 17:26:28 +02:00
|
|
|
f.write('[]')
|
|
|
|
}
|
|
|
|
f.write('map[${mk}]${mv}')
|
|
|
|
f.write('{')
|
2020-05-13 16:11:52 +02:00
|
|
|
if it.has_len {
|
|
|
|
f.write('len: ')
|
|
|
|
f.expr(it.len_expr)
|
|
|
|
}
|
2020-05-04 17:26:28 +02:00
|
|
|
if it.has_cap {
|
|
|
|
f.write('cap: ')
|
|
|
|
f.expr(it.cap_expr)
|
|
|
|
}
|
2020-05-13 16:11:52 +02:00
|
|
|
if it.has_default {
|
2020-05-13 22:00:24 +02:00
|
|
|
f.write('init: ')
|
2020-05-13 16:11:52 +02:00
|
|
|
f.expr(it.default_expr)
|
|
|
|
}
|
2020-05-04 17:26:28 +02:00
|
|
|
f.write('}')
|
|
|
|
return
|
|
|
|
}
|
2020-04-26 07:16:58 +02:00
|
|
|
f.write(f.type_to_str(it.typ))
|
2020-04-29 12:20:22 +02:00
|
|
|
f.write('{')
|
2020-05-13 16:11:52 +02:00
|
|
|
// TODO copypasta
|
|
|
|
if it.has_len {
|
|
|
|
f.write('len: ')
|
|
|
|
f.expr(it.len_expr)
|
|
|
|
if it.has_cap || it.has_default {
|
|
|
|
f.write(', ')
|
|
|
|
}
|
|
|
|
}
|
2020-04-29 12:20:22 +02:00
|
|
|
if it.has_cap {
|
|
|
|
f.write('cap: ')
|
|
|
|
f.expr(it.cap_expr)
|
2020-05-13 16:11:52 +02:00
|
|
|
if it.has_default {
|
|
|
|
f.write(', ')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if it.has_default {
|
2020-05-13 22:00:24 +02:00
|
|
|
f.write('init: ')
|
2020-05-13 16:11:52 +02:00
|
|
|
f.expr(it.default_expr)
|
2020-04-29 12:20:22 +02:00
|
|
|
}
|
|
|
|
f.write('}')
|
2020-04-26 07:16:58 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
// `[1,2,3]`
|
|
|
|
// type_sym := f.table.get_type_symbol(it.typ)
|
|
|
|
f.write('[')
|
|
|
|
mut inc_indent := false
|
|
|
|
mut last_line_nr := it.pos.line_nr // to have the same newlines between array elements
|
|
|
|
for i, expr in it.exprs {
|
|
|
|
line_nr := expr.position().line_nr
|
|
|
|
if last_line_nr < line_nr {
|
|
|
|
if !inc_indent {
|
|
|
|
f.indent++
|
|
|
|
inc_indent = true
|
|
|
|
}
|
|
|
|
f.writeln('')
|
|
|
|
}
|
|
|
|
is_new_line := last_line_nr < line_nr || f.wrap_long_line()
|
|
|
|
if !is_new_line && i > 0 {
|
|
|
|
f.write(' ')
|
|
|
|
}
|
|
|
|
f.expr(expr)
|
|
|
|
if i == it.exprs.len - 1 {
|
|
|
|
if is_new_line {
|
|
|
|
f.writeln('')
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
f.write(',')
|
|
|
|
}
|
|
|
|
last_line_nr = line_nr
|
|
|
|
}
|
|
|
|
if inc_indent {
|
|
|
|
f.indent--
|
|
|
|
}
|
|
|
|
f.write(']')
|
2020-05-18 16:52:09 +02:00
|
|
|
// `[100]byte`
|
|
|
|
if it.is_fixed {
|
|
|
|
f.write(f.type_to_str(it.elem_type))
|
|
|
|
}
|
2020-04-26 07:16:58 +02:00
|
|
|
}
|
2020-05-05 15:06:51 +02:00
|
|
|
|
2020-05-19 13:19:37 +02:00
|
|
|
pub fn (mut f Fmt) struct_init(it ast.StructInit) {
|
2020-05-05 15:06:51 +02:00
|
|
|
type_sym := f.table.get_type_symbol(it.typ)
|
|
|
|
// f.write('<old name: $type_sym.name>')
|
2020-05-22 21:18:56 +02:00
|
|
|
mut name := f.short_module(type_sym.name).replace(f.cur_mod + '.', '') // TODO f.type_to_str?
|
2020-05-05 15:06:51 +02:00
|
|
|
if name == 'void' {
|
|
|
|
name = ''
|
|
|
|
}
|
|
|
|
if it.fields.len == 0 {
|
|
|
|
// `Foo{}` on one line if there are no fields
|
|
|
|
f.write('$name{}')
|
2020-05-18 15:37:06 +02:00
|
|
|
} else if it.is_short {
|
2020-05-05 15:06:51 +02:00
|
|
|
// `Foo{1,2,3}` (short syntax )
|
|
|
|
// if name != '' {
|
|
|
|
f.write('$name{')
|
|
|
|
// }
|
|
|
|
for i, field in it.fields {
|
2020-05-30 21:29:59 +02:00
|
|
|
f.struct_field_expr(field.expr)
|
2020-05-05 15:06:51 +02:00
|
|
|
if i < it.fields.len - 1 {
|
|
|
|
f.write(', ')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
f.write('}')
|
|
|
|
} else {
|
2020-05-24 04:43:00 +02:00
|
|
|
if f.use_short_fn_args {
|
|
|
|
f.writeln('')
|
|
|
|
} else {
|
|
|
|
f.writeln('$name{')
|
|
|
|
}
|
2020-05-05 15:06:51 +02:00
|
|
|
f.indent++
|
|
|
|
for field in it.fields {
|
|
|
|
f.write('$field.name: ')
|
2020-05-30 21:29:59 +02:00
|
|
|
f.struct_field_expr(field.expr)
|
2020-05-05 15:06:51 +02:00
|
|
|
f.writeln('')
|
|
|
|
}
|
|
|
|
f.indent--
|
2020-05-24 04:43:00 +02:00
|
|
|
if !f.use_short_fn_args {
|
|
|
|
f.write('}')
|
|
|
|
}
|
2020-05-05 15:06:51 +02:00
|
|
|
}
|
|
|
|
}
|
2020-05-12 00:09:59 +02:00
|
|
|
|
2020-05-19 13:19:37 +02:00
|
|
|
pub fn (mut f Fmt) const_decl(it ast.ConstDecl) {
|
2020-05-12 00:09:59 +02:00
|
|
|
if it.is_pub {
|
|
|
|
f.write('pub ')
|
|
|
|
}
|
|
|
|
f.writeln('const (')
|
|
|
|
mut max := 0
|
|
|
|
for field in it.fields {
|
|
|
|
if field.name.len > max {
|
|
|
|
max = field.name.len
|
|
|
|
}
|
|
|
|
}
|
|
|
|
f.indent++
|
|
|
|
for field in it.fields {
|
|
|
|
if field.comment.text != '' {
|
|
|
|
f.comment(field.comment)
|
|
|
|
// f.writeln('// ' + field.comment.text)
|
|
|
|
}
|
|
|
|
name := field.name.after('.')
|
|
|
|
f.write('$name ')
|
|
|
|
f.write(strings.repeat(` `, max - field.name.len))
|
|
|
|
f.write('= ')
|
|
|
|
f.expr(field.expr)
|
|
|
|
f.writeln('')
|
|
|
|
}
|
|
|
|
f.indent--
|
|
|
|
f.writeln(')\n')
|
|
|
|
}
|