2022-08-14 20:38:57 -06:00
|
|
|
package parser
|
|
|
|
|
2022-08-16 08:44:02 -06:00
|
|
|
import "git.tebibyte.media/sashakoshka/arf/file"
|
|
|
|
import "git.tebibyte.media/sashakoshka/arf/types"
|
|
|
|
import "git.tebibyte.media/sashakoshka/arf/lexer"
|
|
|
|
|
|
|
|
// parseData parses a data section.
|
2022-08-15 13:09:07 -06:00
|
|
|
func (parser *ParsingOperation) parseDataSection () (
|
|
|
|
section *DataSection,
|
|
|
|
err error,
|
|
|
|
) {
|
2022-08-16 08:44:02 -06:00
|
|
|
err = parser.expect(lexer.TokenKindName)
|
|
|
|
if err != nil { return }
|
|
|
|
|
|
|
|
section = &DataSection { location: parser.token.Location() }
|
|
|
|
|
|
|
|
err = parser.nextToken(lexer.TokenKindPermission)
|
|
|
|
if err != nil { return }
|
|
|
|
section.permission = parser.token.Value().(types.Permission)
|
|
|
|
|
|
|
|
err = parser.nextToken(lexer.TokenKindName)
|
|
|
|
if err != nil { return }
|
|
|
|
section.name = parser.token.Value().(string)
|
|
|
|
|
|
|
|
err = parser.nextToken(lexer.TokenKindColon)
|
|
|
|
if err != nil { return }
|
2022-08-16 15:21:10 -06:00
|
|
|
err = parser.nextToken()
|
|
|
|
if err != nil { return }
|
2022-08-16 08:44:02 -06:00
|
|
|
section.what, err = parser.parseType()
|
|
|
|
if err != nil { return }
|
|
|
|
|
2022-08-16 15:21:10 -06:00
|
|
|
if parser.token.Is(lexer.TokenKindNewline) {
|
2022-08-16 18:10:47 -06:00
|
|
|
err = parser.nextToken()
|
|
|
|
if err != nil { return }
|
|
|
|
|
|
|
|
section.value, err = parser.parseInitializationValues(0)
|
|
|
|
if err != nil { return }
|
2022-08-16 15:21:10 -06:00
|
|
|
} else {
|
2022-08-16 22:49:49 -06:00
|
|
|
section.value, err = parser.parseArgument()
|
|
|
|
if err != nil { return }
|
2022-08-16 15:21:10 -06:00
|
|
|
|
|
|
|
err = parser.expect(lexer.TokenKindNewline)
|
|
|
|
if err != nil { return }
|
|
|
|
err = parser.nextToken()
|
|
|
|
if err != nil { return }
|
|
|
|
}
|
2022-08-16 08:44:02 -06:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-08-16 18:10:47 -06:00
|
|
|
// parseInitializationValues starts on the line after a data section, or a set
|
|
|
|
// phrase. It checks for an indent greater than the indent of the aforementioned
|
|
|
|
// data section or set phrase (passed through baseIndent), and if there is,
|
|
|
|
// it parses initialization values.
|
|
|
|
func (parser *ParsingOperation) parseInitializationValues (
|
|
|
|
baseIndent int,
|
|
|
|
) (
|
2022-08-16 22:55:53 -06:00
|
|
|
initializationArgument Argument,
|
|
|
|
err error,
|
2022-08-16 18:10:47 -06:00
|
|
|
) {
|
|
|
|
// check if line is indented one more than baseIndent
|
|
|
|
if !parser.token.Is(lexer.TokenKindIndent) { return }
|
|
|
|
if parser.token.Value().(int) != baseIndent + 1 { return }
|
|
|
|
|
2022-08-16 22:55:53 -06:00
|
|
|
initializationArgument.location = parser.token.Location()
|
2022-08-16 22:49:49 -06:00
|
|
|
|
2022-08-16 18:10:47 -06:00
|
|
|
if parser.token.Is(lexer.TokenKindDot) {
|
2022-08-17 09:30:17 -06:00
|
|
|
|
2022-08-16 22:55:53 -06:00
|
|
|
var initializationValues ObjectInitializationValues
|
2022-08-17 09:30:17 -06:00
|
|
|
initializationValues, err = parser.parseObjectInitializationValues()
|
|
|
|
initializationArgument.kind = ArgumentKindObjectInitializationValues
|
2022-08-16 22:55:53 -06:00
|
|
|
initializationArgument.value = &initializationValues
|
2022-08-17 09:30:17 -06:00
|
|
|
|
2022-08-16 18:10:47 -06:00
|
|
|
} else {
|
2022-08-17 09:30:17 -06:00
|
|
|
|
2022-08-16 22:55:53 -06:00
|
|
|
var initializationValues ArrayInitializationValues
|
2022-08-17 09:30:17 -06:00
|
|
|
initializationValues, err = parser.parseArrayInitializationValues()
|
|
|
|
initializationArgument.kind = ArgumentKindArrayInitializationValues
|
2022-08-16 22:55:53 -06:00
|
|
|
initializationArgument.value = &initializationValues
|
2022-08-17 09:30:17 -06:00
|
|
|
|
2022-08-16 18:10:47 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-08-16 22:14:55 -06:00
|
|
|
// parseObjectInitializationValues parses a list of object initialization
|
2022-08-17 09:30:17 -06:00
|
|
|
// values until the indentation level drops.
|
|
|
|
func (parser *ParsingOperation) parseObjectInitializationValues () (
|
2022-08-16 22:49:49 -06:00
|
|
|
values ObjectInitializationValues,
|
2022-08-16 22:14:55 -06:00
|
|
|
err error,
|
|
|
|
) {
|
2022-08-17 09:30:17 -06:00
|
|
|
// println("PARSING")
|
|
|
|
// defer println("DONE\n")
|
|
|
|
// values.attributes = make(map[string] Argument)
|
|
|
|
// values.location = parser.token.Location()
|
|
|
|
//
|
|
|
|
// for {
|
|
|
|
// // get attribute name and value
|
|
|
|
// err = parser.nextToken(lexer.TokenKindName)
|
|
|
|
// if err != nil { return }
|
|
|
|
// name := parser.token.Value().(string)
|
|
|
|
// println(" name:", name)
|
|
|
|
//
|
|
|
|
// _, exists := values.attributes[name]
|
|
|
|
// if exists {
|
|
|
|
// err = parser.token.NewError (
|
|
|
|
// "duplicate member \"" + name + "\" in object " +
|
|
|
|
// "member initialization",
|
|
|
|
// file.ErrorKindError)
|
|
|
|
// return
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// err = parser.nextToken()
|
|
|
|
// if err != nil { return }
|
|
|
|
//
|
|
|
|
// println(" parsing value argument")
|
|
|
|
// // parse value argument
|
|
|
|
// var value Argument
|
|
|
|
// if parser.token.Is(lexer.TokenKindNewline) {
|
|
|
|
// println(" is newline")
|
|
|
|
// // if there is none on this line, expect complex
|
|
|
|
// // initialization below
|
|
|
|
//
|
|
|
|
// possibleErrorLocation := parser.token.Location()
|
|
|
|
// err = parser.nextToken(lexer.TokenKindIndent)
|
|
|
|
// if err != nil { return }
|
|
|
|
//
|
|
|
|
// value, err = parser.parseInitializationValues(indent)
|
|
|
|
// if err != nil { return }
|
|
|
|
//
|
|
|
|
// // TODO: this doesn't seem to produce an error at the
|
|
|
|
// // correct location.
|
|
|
|
// if value.value == nil {
|
|
|
|
// err = possibleErrorLocation.NewError (
|
|
|
|
// "empty initialization value",
|
|
|
|
// file.ErrorKindError)
|
|
|
|
// return
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// } else {
|
|
|
|
// println(" is not newline")
|
|
|
|
// value, err = parser.parseArgument()
|
|
|
|
// if err != nil { return }
|
|
|
|
// err = parser.expect(lexer.TokenKindNewline)
|
|
|
|
// if err != nil { return }
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// // store in object
|
|
|
|
// values.attributes[name] = value
|
|
|
|
//
|
|
|
|
// // if indent drops, or does something strange, stop parsing
|
|
|
|
// err = parser.nextToken()
|
|
|
|
// if err != nil { return }
|
|
|
|
// if !parser.token.Is(lexer.TokenKindIndent) { break }
|
|
|
|
// if parser.token.Value().(int) != indent { break }
|
|
|
|
//
|
|
|
|
// // the next line must start with a dot
|
|
|
|
// err = parser.nextToken(lexer.TokenKindDot)
|
|
|
|
// if err != nil { return }
|
|
|
|
// }
|
2022-08-16 22:14:55 -06:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-08-16 19:31:23 -06:00
|
|
|
// parseArrayInitializationValues parses a list of array initialization values
|
2022-08-17 09:30:17 -06:00
|
|
|
// until the indentation lexel drops.
|
|
|
|
func (parser *ParsingOperation) parseArrayInitializationValues () (
|
2022-08-16 22:49:49 -06:00
|
|
|
values ArrayInitializationValues,
|
2022-08-16 19:31:23 -06:00
|
|
|
err error,
|
|
|
|
) {
|
2022-08-17 09:30:17 -06:00
|
|
|
baseIndent := 0
|
|
|
|
begin := true
|
2022-08-16 22:49:49 -06:00
|
|
|
|
2022-08-16 19:31:23 -06:00
|
|
|
for {
|
2022-08-17 09:30:17 -06:00
|
|
|
// if there is no indent we can just stop parsing
|
|
|
|
if !parser.token.Is(lexer.TokenKindIndent) { break}
|
|
|
|
indent := parser.token.Value().(int)
|
2022-08-16 22:14:55 -06:00
|
|
|
|
2022-08-17 09:30:17 -06:00
|
|
|
if begin == true {
|
|
|
|
values.location = parser.token.Location()
|
|
|
|
baseIndent = indent
|
|
|
|
begin = false
|
|
|
|
}
|
|
|
|
|
|
|
|
// do not parse any further if the indent has changed
|
|
|
|
if indent != baseIndent { break }
|
|
|
|
|
|
|
|
// move on to the beginning of the line, which must contain
|
|
|
|
// arguments
|
|
|
|
err = parser.nextToken(validArgumentStartTokens...)
|
2022-08-16 19:31:23 -06:00
|
|
|
if err != nil { return }
|
2022-08-17 09:30:17 -06:00
|
|
|
|
|
|
|
for {
|
|
|
|
// stop parsing this line and go on to the next if a
|
|
|
|
// newline token is encountered
|
|
|
|
if parser.token.Is(lexer.TokenKindNewline) {
|
|
|
|
err = parser.nextToken()
|
|
|
|
if err != nil { return }
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
// otherwise, parse the argument
|
|
|
|
var argument Argument
|
|
|
|
argument, err = parser.parseArgument()
|
|
|
|
if err != nil { return }
|
|
|
|
values.values = append(values.values, argument)
|
|
|
|
}
|
2022-08-16 19:31:23 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-08-16 08:44:02 -06:00
|
|
|
// parseType parses a type notation of the form Name, {Name}, etc.
|
|
|
|
func (parser *ParsingOperation) parseType () (what Type, err error) {
|
2022-08-16 15:21:10 -06:00
|
|
|
err = parser.expect(lexer.TokenKindName, lexer.TokenKindLBrace)
|
2022-08-16 08:44:02 -06:00
|
|
|
if err != nil { return }
|
|
|
|
what.location = parser.token.Location()
|
|
|
|
|
|
|
|
if parser.token.Is(lexer.TokenKindLBrace) {
|
|
|
|
what.kind = TypeKindPointer
|
2022-08-16 15:21:10 -06:00
|
|
|
|
|
|
|
err = parser.nextToken()
|
|
|
|
if err != nil { return }
|
2022-08-16 08:44:02 -06:00
|
|
|
|
|
|
|
var points Type
|
|
|
|
points, err = parser.parseType()
|
|
|
|
if err != nil { return }
|
|
|
|
what.points = &points
|
|
|
|
|
2022-08-16 15:21:10 -06:00
|
|
|
err = parser.expect (
|
2022-08-16 08:44:02 -06:00
|
|
|
lexer.TokenKindUInt,
|
2022-08-16 18:55:43 -06:00
|
|
|
lexer.TokenKindRBrace,
|
|
|
|
lexer.TokenKindElipsis)
|
2022-08-16 08:44:02 -06:00
|
|
|
if err != nil { return }
|
|
|
|
|
|
|
|
if parser.token.Is(lexer.TokenKindUInt) {
|
|
|
|
what.kind = TypeKindArray
|
|
|
|
|
|
|
|
what.length = parser.token.Value().(uint64)
|
|
|
|
|
2022-08-16 18:55:43 -06:00
|
|
|
err = parser.nextToken(lexer.TokenKindRBrace)
|
|
|
|
if err != nil { return }
|
|
|
|
} else if parser.token.Is(lexer.TokenKindElipsis) {
|
|
|
|
what.kind = TypeKindArray
|
|
|
|
|
2022-08-16 15:21:10 -06:00
|
|
|
err = parser.nextToken(lexer.TokenKindRBrace)
|
2022-08-16 08:44:02 -06:00
|
|
|
if err != nil { return }
|
|
|
|
}
|
2022-08-16 15:21:10 -06:00
|
|
|
|
|
|
|
err = parser.nextToken()
|
|
|
|
if err != nil { return }
|
2022-08-16 08:44:02 -06:00
|
|
|
} else {
|
|
|
|
what.name, err = parser.parseIdentifier()
|
|
|
|
if err != nil { return }
|
|
|
|
}
|
|
|
|
|
|
|
|
if parser.token.Is(lexer.TokenKindColon) {
|
|
|
|
err = parser.nextToken(lexer.TokenKindName)
|
|
|
|
if err != nil { return }
|
|
|
|
|
|
|
|
qualifier := parser.token.Value().(string)
|
|
|
|
switch qualifier {
|
|
|
|
case "mut":
|
|
|
|
what.mutable = true
|
|
|
|
default:
|
|
|
|
err = parser.token.NewError (
|
|
|
|
"unknown type qualifier \"" + qualifier + "\"",
|
|
|
|
file.ErrorKindError)
|
|
|
|
return
|
|
|
|
}
|
2022-08-16 15:21:10 -06:00
|
|
|
|
|
|
|
err = parser.nextToken()
|
|
|
|
if err != nil { return }
|
2022-08-16 08:44:02 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// parseIdentifier parses an identifier made out of dot separated names.
|
|
|
|
func (parser *ParsingOperation) parseIdentifier () (
|
|
|
|
identifier Identifier,
|
|
|
|
err error,
|
|
|
|
) {
|
|
|
|
err = parser.expect(lexer.TokenKindName)
|
|
|
|
if err != nil { return }
|
|
|
|
identifier.location = parser.token.Location()
|
|
|
|
|
|
|
|
for {
|
2022-08-16 18:10:47 -06:00
|
|
|
// TODO: eat up newlines and tabs after the dot, but not before
|
|
|
|
// it.
|
2022-08-16 08:44:02 -06:00
|
|
|
if !parser.token.Is(lexer.TokenKindName) { break }
|
|
|
|
|
|
|
|
identifier.trail = append (
|
|
|
|
identifier.trail,
|
|
|
|
parser.token.Value().(string))
|
|
|
|
|
|
|
|
err = parser.nextToken()
|
|
|
|
if err != nil { return }
|
|
|
|
|
|
|
|
if !parser.token.Is(lexer.TokenKindDot) { break }
|
|
|
|
}
|
|
|
|
|
2022-08-15 12:04:57 -06:00
|
|
|
return
|
2022-08-14 20:38:57 -06:00
|
|
|
}
|