Documentation ¶
Index ¶
- func BinVersion() string
- func BinVersionMd5() string
- func Caller(skip ...int) (function string, path string, line int)
- func CallerDirectory() string
- func CallerFileLine() string
- func CallerFileLineShort() string
- func CallerFilePath() string
- func CallerFunction() string
- func CallerPackage() string
- func CallerWithFilter(filter string, skip ...int) (function string, path string, line int)
- func FuncName(f interface{}) string
- func FuncPath(f interface{}) string
- func GoroutineId() int
- func PrintStack(skip ...int)
- func Stack(skip ...int) string
- func StackWithFilter(filter string, skip ...int) string
- func StackWithFilters(filters []string, skip ...int) string
- func TestDataPath(names ...string) string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func BinVersion ¶ added in v0.1.9
func BinVersion() string
BinVersion returns the version of current running binary. It uses ghash.BKDRHash+BASE36 algorithm to calculate the unique version of the binary.
func BinVersionMd5 ¶ added in v0.1.9
func BinVersionMd5() string
BinVersionMd5 returns the version of current running binary. It uses MD5 algorithm to calculate the unique version of the binary.
func Caller ¶ added in v0.1.9
Caller returns the function name and the absolute file path along with its line number of the caller.
func CallerDirectory ¶ added in v0.1.9
func CallerDirectory() string
CallerDirectory returns the directory of the caller.
func CallerFileLine ¶ added in v0.1.9
func CallerFileLine() string
CallerFileLine returns the file path along with the line number of the caller.
func CallerFileLineShort ¶ added in v0.1.9
func CallerFileLineShort() string
CallerFileLineShort returns the file name along with the line number of the caller.
func CallerFilePath ¶ added in v0.1.9
func CallerFilePath() string
CallerFilePath returns the file path of the caller.
func CallerFunction ¶ added in v0.1.9
func CallerFunction() string
CallerFunction returns the function name of the caller.
func CallerPackage ¶ added in v0.1.9
func CallerPackage() string
CallerPackage returns the package name of the caller.
func CallerWithFilter ¶
CallerWithFilter returns the function name and the absolute file path along with its line number of the caller.
The parameter <filter> is used to filter the path of the caller.
func FuncName ¶ added in v0.1.9
func FuncName(f interface{}) string
FuncName returns the function name of given <f>.
func FuncPath ¶ added in v0.1.9
func FuncPath(f interface{}) string
FuncPath returns the complete function path of given <f>.
func GoroutineId ¶ added in v0.1.9
func GoroutineId() int
GoroutineId retrieves and returns the current goroutine id from stack information. Be very aware that, it is with low performance as it uses runtime.Stack function. It is commonly used for debugging purpose.
func PrintStack ¶
func PrintStack(skip ...int)
PrintStack prints to standard error the stack trace returned by runtime.Stack.
func Stack ¶
Stack returns a formatted stack trace of the goroutine that calls it. It calls runtime.Stack with a large enough buffer to capture the entire trace.
func StackWithFilter ¶
StackWithFilter returns a formatted stack trace of the goroutine that calls it. It calls runtime.Stack with a large enough buffer to capture the entire trace.
The parameter <filter> is used to filter the path of the caller.
func StackWithFilters ¶
StackWithFilters returns a formatted stack trace of the goroutine that calls it. It calls runtime.Stack with a large enough buffer to capture the entire trace.
The parameter <filters> is a slice of strings, which are used to filter the path of the caller.
TODO Improve the performance using debug.Stack.
func TestDataPath ¶ added in v0.1.9
TestDataPath retrieves and returns the testdata path of current package, which is used for unit testing cases only. The optional parameter <names> specifies the its sub-folders/sub-files, which will be joined with current system separator and returned with the path.
Types ¶
This section is empty.