関数が与えられた場合、その名前を取得することは可能ですか?いう:
func foo() {
}
func GetFunctionName(i interface{}) string {
// ...
}
func main() {
// Will print "name: foo"
fmt.Println("name:", GetFunctionName(foo))
}
runtime.FuncForPC が役立つと言われましたが、使用方法を理解できませんでした。
自分の質問に答えてすみませんが、解決策を見つけました。
package main
import (
"fmt"
"reflect"
"runtime"
)
func foo() {
}
func GetFunctionName(i interface{}) string {
return runtime.FuncForPC(reflect.ValueOf(i).Pointer()).Name()
}
func main() {
// This will print "name: main.foo"
fmt.Println("name:", GetFunctionName(foo))
}
ファイル名と行番号をログに記録するため、正確には望んでいませんが、Tideland Common Go Libraryでこれを行う方法は次のとおりです( http://tideland-cgl.googlecode.com/ ) 「ランタイム」パッケージの使用:
// Debug prints a debug information to the log with file and line.
func Debug(format string, a ...interface{}) {
_, file, line, _ := runtime.Caller(1)
info := fmt.Sprintf(format, a...)
log.Printf("[cgl] debug %s:%d %v", file, line, info)