web-dev-qa-db-ja.com

Goで関数の名前を取得する方法は?

関数が与えられた場合、その名前を取得することは可能ですか?いう:

func foo() {
}

func GetFunctionName(i interface{}) string {
    // ...
}

func main() {
    // Will print "name: foo"
    fmt.Println("name:", GetFunctionName(foo))
}

runtime.FuncForPC が役立つと言われましたが、使用方法を理解できませんでした。

87
moraes

自分の質問に答えてすみませんが、解決策を見つけました。

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))
}
147
moraes

ファイル名と行番号をログに記録するため、正確には望んでいませんが、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)
7
themue