v/vlib/v/parser/parse_type.v

268 lines
5.6 KiB
V
Raw Normal View History

2020-01-06 16:13:12 +01:00
module parser
2020-04-16 15:40:21 +02:00
2020-01-23 21:04:46 +01:00
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
2020-01-06 16:13:12 +01:00
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
2020-04-16 15:40:21 +02:00
import v.table
2020-04-23 01:16:58 +02:00
pub fn (mut p Parser) parse_array_type() table.Type {
2020-01-06 16:13:12 +01:00
p.check(.lsbr)
// fixed array
if p.tok.kind == .number {
size := p.tok.lit.int()
2020-02-11 04:45:33 +01:00
p.next()
2020-02-04 12:50:58 +01:00
p.check(.rsbr)
2020-02-11 04:45:33 +01:00
elem_type := p.parse_type()
//sym := p.table.get_type_symbol(elem_type)
idx := p.table.find_or_register_array_fixed(elem_type, size, 1)
2020-02-21 22:50:21 +01:00
return table.new_type(idx)
2020-01-06 16:13:12 +01:00
}
// array
2020-01-07 13:10:05 +01:00
p.check(.rsbr)
elem_type := p.parse_type()
2020-04-23 01:16:58 +02:00
mut nr_dims := 1
// detect attr
not_attr := p.peek_tok.kind != .name && p.peek_tok2.kind !in [.semicolon, .rsbr]
2020-05-14 17:14:24 +02:00
for p.tok.kind == .lsbr && not_attr {
p.next()
2020-01-07 13:10:05 +01:00
p.check(.rsbr)
2020-01-06 16:13:12 +01:00
nr_dims++
}
sym := p.table.get_type_symbol(elem_type)
idx := p.table.find_or_register_array(elem_type, nr_dims, sym.mod)
2020-02-21 22:50:21 +01:00
return table.new_type(idx)
2020-01-06 16:13:12 +01:00
}
2020-04-23 01:16:58 +02:00
pub fn (mut p Parser) parse_map_type() table.Type {
2020-02-08 16:59:57 +01:00
p.next()
2020-02-04 12:50:58 +01:00
if p.tok.kind != .lsbr {
2020-02-21 22:50:21 +01:00
return table.map_type
2020-02-04 12:50:58 +01:00
}
2020-01-06 16:13:12 +01:00
p.check(.lsbr)
2020-02-08 16:59:57 +01:00
key_type := p.parse_type()
// key_type_sym := p.get_type_symbol(key_type)
// if key_type_sym.kind != .string {
2020-04-25 09:08:53 +02:00
if key_type.idx() != table.string_type_idx {
2020-02-08 16:59:57 +01:00
p.error('maps can only have string keys for now')
}
2020-01-06 16:13:12 +01:00
p.check(.rsbr)
2020-02-08 16:59:57 +01:00
value_type := p.parse_type()
idx := p.table.find_or_register_map(key_type, value_type)
2020-02-21 22:50:21 +01:00
return table.new_type(idx)
2020-01-06 16:13:12 +01:00
}
2020-04-23 01:16:58 +02:00
pub fn (mut p Parser) parse_multi_return_type() table.Type {
2020-01-06 16:13:12 +01:00
p.check(.lpar)
mut mr_types := []table.Type{}
2020-01-06 16:13:12 +01:00
for {
mr_type := p.parse_type()
mr_types << mr_type
2020-01-06 16:13:12 +01:00
if p.tok.kind == .comma {
p.next()
2020-04-16 15:40:21 +02:00
} else {
2020-01-06 16:13:12 +01:00
break
}
}
p.check(.rpar)
idx := p.table.find_or_register_multi_return(mr_types)
return table.new_type(idx)
2020-01-06 16:13:12 +01:00
}
// given anon name based off signature when `name` is blank
2020-04-23 01:16:58 +02:00
pub fn (mut p Parser) parse_fn_type(name string) table.Type {
// p.warn('parse fn')
2020-02-11 13:21:41 +01:00
p.check(.key_fn)
line_nr := p.tok.line_nr
2020-04-16 15:40:21 +02:00
args, is_variadic := p.fn_args()
2020-04-23 01:16:58 +02:00
mut return_type := table.void_type
if p.tok.line_nr == line_nr && p.tok.kind.is_start_of_type() {
return_type = p.parse_type()
2020-02-11 13:21:41 +01:00
}
func := table.Fn{
name: name
args: args
is_variadic: is_variadic
return_type: return_type
}
idx := p.table.find_or_register_fn_type(p.mod, func, false, false)
return table.new_type(idx)
}
2020-04-23 01:16:58 +02:00
pub fn (mut p Parser) parse_type_with_mut(is_mut bool) table.Type {
2020-04-16 15:40:21 +02:00
typ := p.parse_type()
if is_mut {
2020-04-25 09:54:32 +02:00
return typ.set_nr_muls(1)
2020-04-16 15:40:21 +02:00
}
return typ
}
2020-04-23 01:16:58 +02:00
pub fn (mut p Parser) parse_type() table.Type {
// optional
2020-04-23 01:16:58 +02:00
mut is_optional := false
if p.tok.kind == .question {
p.next()
is_optional = true
}
2020-04-23 01:16:58 +02:00
mut nr_muls := 0
2020-04-01 23:56:55 +02:00
if p.tok.kind == .key_mut {
nr_muls++
p.next()
}
// &Type
2020-03-28 15:15:10 +01:00
for p.tok.kind in [.and, .amp] {
if p.tok.kind == .and {
nr_muls += 2
2020-04-16 15:40:21 +02:00
} else {
2020-03-28 15:15:10 +01:00
nr_muls++
}
p.next()
2020-01-06 16:13:12 +01:00
}
language := if p.tok.lit == 'C' {
table.Language.c
} else if p.tok.lit == 'JS' {
table.Language.js
} else {
table.Language.v
}
if language != .v {
2020-02-04 09:54:15 +01:00
p.next()
p.check(.dot)
}
mut typ := table.void_type
if p.tok.kind != .lcbr {
pos := p.tok.position()
typ = p.parse_any_type(language, nr_muls > 0)
if typ == table.void_type {
p.error_with_pos('use `?` instead of `?void`', pos)
}
}
if is_optional {
2020-04-25 09:08:53 +02:00
typ = typ.set_flag(.optional)
2020-02-16 11:48:29 +01:00
}
if nr_muls > 0 {
2020-04-25 09:54:32 +02:00
typ = typ.set_nr_muls(nr_muls)
}
return typ
}
pub fn (mut p Parser) parse_any_type(language table.Language, is_ptr bool) table.Type {
2020-04-23 01:16:58 +02:00
mut name := p.tok.lit
if language == .c {
2020-02-29 11:47:47 +01:00
name = 'C.$name'
} else if language == .js {
2020-04-15 23:16:49 +02:00
name = 'JS.$name'
2020-04-16 15:40:21 +02:00
} else if p.peek_tok.kind == .dot {
// `module.Type`
// /if !(p.tok.lit in p.table.imports) {
if !p.known_import(name) {
2020-02-12 01:16:38 +01:00
println(p.table.imports)
p.error('unknown module `$p.tok.lit`')
}
2020-05-14 17:14:24 +02:00
if p.tok.lit in p.imports {
p.register_used_import(p.tok.lit)
}
2020-02-12 01:16:38 +01:00
p.next()
p.check(.dot)
// prefix with full module
name = '${p.imports[name]}.$p.tok.lit'
2020-04-16 15:40:21 +02:00
} else if p.expr_mod != '' {
2020-02-27 00:12:37 +01:00
name = p.expr_mod + '.' + name
2020-05-27 15:56:21 +02:00
} else if p.mod !in ['builtin', 'main'] && name !in table.builtin_type_names && name.len > 1 {
2020-04-16 15:40:21 +02:00
// `Foo` in module `mod` means `mod.Foo`
2020-02-16 11:48:29 +01:00
name = p.mod + '.' + name
2020-02-12 01:16:38 +01:00
}
2020-02-16 11:48:29 +01:00
// p.warn('get type $name')
2020-01-06 16:13:12 +01:00
match p.tok.kind {
.key_fn {
2020-04-16 15:40:21 +02:00
// func
return p.parse_fn_type('')
}
2020-01-06 16:13:12 +01:00
.lsbr {
2020-04-16 15:40:21 +02:00
// array
2020-02-21 22:50:21 +01:00
return p.parse_array_type()
2020-01-06 16:13:12 +01:00
}
.lpar {
2020-04-16 15:40:21 +02:00
// multiple return
2020-02-21 22:50:21 +01:00
if is_ptr {
p.error('parse_type: unexpected `&` before multiple returns')
2020-01-06 16:13:12 +01:00
}
return p.parse_multi_return_type()
2020-01-06 16:13:12 +01:00
}
else {
2020-02-08 16:59:57 +01:00
// no defer
if name == 'map' {
2020-02-21 22:50:21 +01:00
return p.parse_map_type()
2020-02-08 16:59:57 +01:00
}
2020-01-06 16:13:12 +01:00
defer {
p.next()
}
match name {
'voidptr' {
2020-02-21 22:50:21 +01:00
return table.voidptr_type
2020-01-06 16:13:12 +01:00
}
'byteptr' {
2020-02-21 22:50:21 +01:00
return table.byteptr_type
2020-01-06 16:13:12 +01:00
}
'charptr' {
2020-02-21 22:50:21 +01:00
return table.charptr_type
2020-01-06 16:13:12 +01:00
}
'i8' {
2020-02-21 22:50:21 +01:00
return table.i8_type
2020-01-06 16:13:12 +01:00
}
'i16' {
2020-02-21 22:50:21 +01:00
return table.i16_type
2020-01-06 16:13:12 +01:00
}
'int' {
2020-02-21 22:50:21 +01:00
return table.int_type
2020-01-06 16:13:12 +01:00
}
'i64' {
2020-02-21 22:50:21 +01:00
return table.i64_type
2020-01-06 16:13:12 +01:00
}
'byte' {
2020-02-21 22:50:21 +01:00
return table.byte_type
2020-01-06 16:13:12 +01:00
}
'u16' {
2020-02-21 22:50:21 +01:00
return table.u16_type
2020-01-06 16:13:12 +01:00
}
'u32' {
2020-02-21 22:50:21 +01:00
return table.u32_type
2020-01-06 16:13:12 +01:00
}
'u64' {
2020-02-21 22:50:21 +01:00
return table.u64_type
2020-01-06 16:13:12 +01:00
}
'f32' {
2020-02-21 22:50:21 +01:00
return table.f32_type
2020-01-06 16:13:12 +01:00
}
'f64' {
2020-02-21 22:50:21 +01:00
return table.f64_type
2020-01-06 16:13:12 +01:00
}
'string' {
2020-02-21 22:50:21 +01:00
return table.string_type
2020-01-06 16:13:12 +01:00
}
'char' {
2020-02-21 22:50:21 +01:00
return table.char_type
2020-01-06 16:13:12 +01:00
}
'bool' {
2020-02-21 22:50:21 +01:00
return table.bool_type
2020-01-06 16:13:12 +01:00
}
else {
2020-04-16 15:40:21 +02:00
// struct / enum / placeholder
2020-01-06 16:13:12 +01:00
// struct / enum
2020-04-23 01:16:58 +02:00
mut idx := p.table.find_type_idx(name)
if idx > 0 {
2020-02-21 22:50:21 +01:00
return table.new_type(idx)
2020-01-06 16:13:12 +01:00
}
// not found - add placeholder
idx = p.table.add_placeholder_type(name)
2020-02-19 16:12:39 +01:00
// println('NOT FOUND: $name - adding placeholder - $idx')
2020-02-21 22:50:21 +01:00
return table.new_type(idx)
2020-01-06 16:13:12 +01:00
}
2020-04-16 15:40:21 +02:00
}
2020-01-06 16:13:12 +01:00
}
}
}