2019-11-29 12:57:03 -08:00
|
|
|
/* SHS: Syntactically Homogeneous Shell
|
|
|
|
|
* Copyright (C) 2019 Aidan Hahn
|
|
|
|
|
*
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
2020-06-20 21:38:46 -07:00
|
|
|
package ast
|
2020-06-17 00:28:16 -07:00
|
|
|
|
2020-06-21 11:11:57 -07:00
|
|
|
import "git.callpipe.com/aidan/shs/log"
|
|
|
|
|
|
|
|
|
|
type Operation func(*Token, VarTable, FuncTable) *Token
|
2019-11-28 00:39:08 -08:00
|
|
|
|
|
|
|
|
type Function struct {
|
2020-06-20 20:59:52 -07:00
|
|
|
function Operation
|
2020-06-21 01:30:54 -07:00
|
|
|
name string
|
2019-11-28 00:39:08 -08:00
|
|
|
timesCalled int
|
2020-06-20 20:59:52 -07:00
|
|
|
args int // TODO: Make this a list of expected types (TAGs)
|
2019-11-28 00:39:08 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type FuncTable map[string]*Function
|
|
|
|
|
|
|
|
|
|
// TODO: Currently only checks arg list length
|
2020-06-20 22:56:22 -07:00
|
|
|
func (f Function) ParseFunction(args *Token) bool {
|
2019-11-28 00:39:08 -08:00
|
|
|
// HANDLE EXEC
|
2020-06-20 22:56:22 -07:00
|
|
|
if f.args < 0 {
|
2019-11-28 00:39:08 -08:00
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-20 22:56:22 -07:00
|
|
|
i := f.args
|
|
|
|
|
for iter := args; iter != nil; iter = iter.Next {
|
2019-11-28 00:39:08 -08:00
|
|
|
i -= 1
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if i != 0 {
|
2020-06-21 01:30:54 -07:00
|
|
|
log.Log(log.ERR,
|
|
|
|
|
"Incorrect number of arguments",
|
|
|
|
|
"eval")
|
2019-11-28 00:39:08 -08:00
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-21 11:11:57 -07:00
|
|
|
func (f Function) CallFunction(args *Token, vt VarTable, ft FuncTable) *Token {
|
2020-06-20 22:56:22 -07:00
|
|
|
if !f.ParseFunction(args) {
|
2020-06-21 11:11:57 -07:00
|
|
|
log.Log(log.ERR,
|
2020-06-21 01:30:54 -07:00
|
|
|
"Couldnt call " + f.name,
|
|
|
|
|
"eval")
|
2020-06-20 20:59:52 -07:00
|
|
|
return nil
|
2019-11-28 00:39:08 -08:00
|
|
|
}
|
|
|
|
|
|
2020-06-20 20:59:52 -07:00
|
|
|
f.timesCalled += 1
|
2020-06-21 11:11:57 -07:00
|
|
|
return f.function(args, vt, ft)
|
2019-11-28 00:39:08 -08:00
|
|
|
}
|
|
|
|
|
|
2020-06-20 22:56:22 -07:00
|
|
|
func (table FuncTable) GetFunction(arg string) *Function {
|
2020-06-20 20:59:52 -07:00
|
|
|
target, ok := table[arg]
|
2019-11-28 00:39:08 -08:00
|
|
|
if !ok {
|
2020-06-21 01:30:54 -07:00
|
|
|
log.Log(log.DEBUG,
|
|
|
|
|
"function " + arg + " not found",
|
|
|
|
|
"eval")
|
2020-06-20 20:59:52 -07:00
|
|
|
return nil
|
2019-11-28 00:39:08 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return target
|
|
|
|
|
}
|