Wow! finished function table, almost finished with lexing as a whole
This commit is contained in:
parent
bb070592a6
commit
8643824bb6
5 changed files with 97 additions and 116 deletions
58
pkg/shsh/func_table.go
Normal file
58
pkg/shsh/func_table.go
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
package shsh
|
||||
|
||||
import (
|
||||
"strings"
|
||||
)
|
||||
|
||||
type Operation func(*Token) *Token
|
||||
|
||||
type Function struct {
|
||||
func operation
|
||||
timesCalled int
|
||||
args int
|
||||
}
|
||||
|
||||
type FuncTable map[string]*Function
|
||||
|
||||
var (
|
||||
GlobalFuncTable *FuncTable
|
||||
)
|
||||
|
||||
// TODO: Currently only checks arg list length
|
||||
func ParseFunction(target *Function, args *Token) bool {
|
||||
// HANDLE EXEC
|
||||
if target.args < 0 {
|
||||
return true
|
||||
}
|
||||
|
||||
i := target.args
|
||||
for iter = &args; *iter; iter = &(*iter.next) {
|
||||
i -= 1
|
||||
}
|
||||
|
||||
if i != 0 {
|
||||
// log error here?
|
||||
return false
|
||||
}
|
||||
|
||||
return true
|
||||
}
|
||||
|
||||
func CallFunction(target *Function, args *Token) *Token {
|
||||
if !ParseFunction(target, args) {
|
||||
return args
|
||||
}
|
||||
|
||||
target.timesCalled += 1
|
||||
return target.operation(args)
|
||||
}
|
||||
|
||||
func GetFunction(string arg) *Function {
|
||||
target, ok := GlobalFuncTable[arg]
|
||||
if !ok {
|
||||
// TODO: hook into stdlib exec call
|
||||
;
|
||||
}
|
||||
|
||||
return target
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue