Created
April 1, 2016 09:14
-
-
Save tkrajina/880eb4b9a10aee28707e2aa764257503 to your computer and use it in GitHub Desktop.
Golang, call method (and fill arguments) with reflection
This file contains 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 main | |
import ( | |
"fmt" | |
"reflect" | |
) | |
type Aaa struct { | |
a string | |
} | |
type Bbb struct { | |
b int | |
} | |
type Handler struct{} | |
func (h Handler) GET(a Aaa, b Bbb, ptr *Aaa) string { | |
return "OK" + a.a + " ptr:" + ptr.a | |
} | |
func main() { | |
handler := new(Handler) | |
objects := make(map[reflect.Type]interface{}) | |
objects[reflect.TypeOf(Aaa{})] = Aaa{"jkljkL"} | |
objects[reflect.TypeOf(new(Aaa))] = &Aaa{"pointer!"} | |
objects[reflect.TypeOf(Bbb{})] = Bbb{} | |
//in := make([]reflect.Value, 0) | |
method := reflect.ValueOf(handler).MethodByName("GET") | |
fmt.Println(method) | |
in := make([]reflect.Value, method.Type().NumIn()) | |
fmt.Println("method type num in:", method.Type().NumIn()) | |
for i := 0; i < method.Type().NumIn(); i++ { | |
t := method.Type().In(i) | |
object := objects[t] | |
fmt.Println(i, "->", object) | |
in[i] = reflect.ValueOf(object) | |
} | |
fmt.Println("method type num out:", method.Type().NumOut()) | |
response := method.Call(in) | |
fmt.Println(response) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment