Last active
November 10, 2016 01:56
-
-
Save polefishu/e3989ca029ea7fd3344761faaf17af75 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package funcmap | |
import ( | |
"errors" | |
"reflect" | |
) | |
var ( | |
ErrParamsNotAdapted = errors.New("The number of params is not adapted.") | |
) | |
type Funcs map[string]reflect.Value | |
func NewFuncs(size int) Funcs { | |
return make(Funcs, size) | |
} | |
func (f Funcs) Bind(name string, fn interface{}) (err error) { | |
defer func() { | |
if e := recover(); e != nil { | |
err = errors.New(name + " is not callable.") | |
} | |
}() | |
v := reflect.ValueOf(fn) | |
v.Type().NumIn() | |
f[name] = v | |
return | |
} | |
func (f Funcs) Call(name string, params ... interface{}) (result []reflect.Value, err error) { | |
if _, ok := f[name]; !ok { | |
err = errors.New(name + " does not exist.") | |
return | |
} | |
if len(params) != f[name].Type().NumIn() { | |
err = ErrParamsNotAdapted | |
return | |
} | |
in := make([]reflect.Value, len(params)) | |
for k, param := range params { | |
in[k] = reflect.ValueOf(param) | |
} | |
result = f[name].Call(in) | |
return | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package funcmap | |
import ( | |
"testing" | |
) | |
var ( | |
testcases = map[string]interface{}{ | |
"hello": func() {print("hello")}, | |
"foobar": func(a, b, c int) int {return a+b+c}, | |
"errstring": "Can not call this as a function", | |
"errnumeric": 123456789, | |
} | |
funcs = NewFuncs(100) | |
) | |
func TestBind(t *testing.T) { | |
for k, v := range testcases { | |
err := funcs.Bind(k, v) | |
if k[:3] == "err" { | |
if err == nil { | |
t.Error("Bind %s: %s", k, "an error should be paniced.") | |
} | |
} else { | |
if err != nil { | |
t.Error("Bind %s: %s", k, err) | |
} | |
} | |
} | |
} | |
func TestCall(t *testing.T) { | |
if _, err := funcs.Call("foobar"); err == nil { | |
t.Error("Call %s: %s", "foobar", "an error should be paniced.") | |
} | |
if _, err := funcs.Call("foobar", 0, 1, 2); err != nil { | |
t.Error("Call %s: %s", "foobar", err) | |
} | |
if _, err := funcs.Call("errstring", 0, 1, 2); err == nil { | |
t.Error("Call %s: %s", "errstring", "an error should be paniced.") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment