Golang 实现获取当前函数名称和文件行号等操作


Posted in Golang onMay 08, 2021

大家还是直接看代码吧~

// 获取正在运行的函数名
func runFuncName()string{
    pc := make([]uintptr,1)
    runtime.Callers(2,pc)
    f := runtime.FuncForPC(pc[0])
    return f.Name()
}
package main 
import(
    "fmt"
    "runtime"
)
 
// 获取正在运行的函数名
func runFuncName()string{
    pc := make([]uintptr,1)
    runtime.Callers(2,pc)
    f := runtime.FuncForPC(pc[0])
    return f.Name()
}
 
func test1(){
    i:=0
    fmt.Println("i =",i)
    fmt.Println("FuncName1 =",runFuncName())
}
 
func test2(){
    i:=1
    fmt.Println("i =",i)
    fmt.Println("FuncName2 =",runFuncName())
}
 
func main(){
    fmt.Println("打印运行中的函数名")
    test1()
    test2()
}

golang 的runtime库,提供Caller函数,可以返回运行时正在执行的文件名和行号:

func Caller(skip int) (pc uintptr, file string, line int, ok bool) {

Caller reports file and line number information about function invocations on the calling goroutine's stack. The argument skip is the number of stack frames to ascend, with 0 identifying the caller of Caller. (For historical reasons the meaning of skip differs between Caller and Callers.) The return values report the program counter, file name, and line number within the file of the corresponding call. The boolean ok is false if it was not possible to recover the information.

调用方法如下,返回的file为绝对路径,line为行号。有了这个就可以在自己的日志等函数中添加这个记录了。

_, file, line, ok := runtime.Caller(1)

补充:go 定位函数操作位置(文件名、函数名、所在行)

runtime.Caller()返回函数执行程序计数pc、执行的文件名和所在行数

runtime.FuncForPC()传入pc,得到运行的函数指针

文件结构

- runtime
- -file1.go
- -file2.go
- -main.go

main.go文件

package main
import (
	"fmt"
	"path"
	"runtime"
)
func main(){
	name, funcName, line := f2(0)
	fmt.Printf("file:%v;function:%v;line:%d",name,funcName,line)
}
func getLocation(skip int)(fileName ,funcName string ,line int){
	pc, file, line, ok := runtime.Caller(skip)
	if !ok {
		fmt.Println("get info failed")
		return
	}
	fmt.Println(pc,file)
	fileName = path.Base(file)
	funcName = runtime.FuncForPC(pc).Name()
	return
}

file1.go文件

package main
func f1(skip int)(fileName ,funcName string ,line int){
 fileName, funcName, line = getLocation(skip)
 return
}

file2.go文件

package main
func f2(skip int)(fileName ,funcName string ,line int){
 return f1(skip)
}

当在main.go文件中调用f2时

func main(){
 name, funcName, line := f2(3)
 fmt.Printf("file:%v;function:%v;line:%d",name,funcName,line)
 //output:file:main.go;function:main.main;line:10
}

f2调取f1,f1调取getLocation;f2->f1->getLocation经历了三层调用,所以在f2中传入3时,返回的当前该函数的执行位置及所在函数名、所在文件名

当传入2时,返回的是(file:file2.go;function:main.f2;line:8)f2函数所在函数名、文件位置、文件名

当传入1时,返回的是(file:file1.go;function:main.f1;line:4)f1函数所在函数名、文件位置、文件名

当传入0时,返回的是(file:main.go;function:main.getLocation;line:16)getLocation函数所在函数名、文件位置、文件名

以上为个人经验,希望能给大家一个参考,也希望大家多多支持三水点靠木。如有错误或未考虑完全的地方,望不吝赐教。

Golang 相关文章推荐
Go各时间字符串使用解析
Apr 02 Golang
Go语言操作数据库及其常规操作的示例代码
Apr 21 Golang
golang http使用踩过的坑与填坑指南
Apr 27 Golang
golang switch语句的灵活写法介绍
May 06 Golang
go语言使用Casbin实现角色的权限控制
Jun 26 Golang
Golang 语言控制并发 Goroutine的方法
Jun 30 Golang
Golang并发操作中常见的读写锁详析
Aug 30 Golang
Golang 并发下的问题定位及解决方案
Mar 16 Golang
golang操作redis的客户端包有多个比如redigo、go-redis
Apr 14 Golang
Go gRPC进阶教程gRPC转换HTTP
Jun 16 Golang
Go中使用gjson来操作JSON数据的实现
Aug 14 Golang
Golang 获取文件md5校验的方法以及效率对比
May 08 #Golang
GoLang中生成UUID唯一标识的实现
May 08 #Golang
聊聊golang中多个defer的执行顺序
May 08 #Golang
Golang全局变量加锁的问题解决
golang 实现并发求和
May 08 #Golang
golang中的并发和并行
May 08 #Golang
关于golang高并发的实现与注意事项说明
May 08 #Golang
You might like
使用php转义输出HTML到JavaScript
2015/03/27 PHP
ECSHOP在PHP5.5及高版本上报错的解决方法
2015/08/31 PHP
PHP实现微信商户支付企业付款到零钱功能
2018/09/30 PHP
php实现网页上一页下一页翻页过程详解
2019/06/28 PHP
JavaScript基础知识之数据类型
2012/08/06 Javascript
js 鼠标移动显示图片的简单实例
2013/12/25 Javascript
Javascript对象Clone实例分析
2015/06/09 Javascript
微信公众号  提示:Unauthorized API function 问题解决方法
2016/12/05 Javascript
Vuejs 用$emit与$on来进行兄弟组件之间的数据传输通信
2017/02/23 Javascript
jQuery插件HighCharts实现的2D面积图效果示例【附demo源码下载】
2017/03/15 Javascript
vue引入swiper插件的使用实例
2017/07/19 Javascript
angular.js实现购物车功能
2017/10/23 Javascript
基于jQuery实现的设置文本区域的光标位置
2018/06/15 jQuery
微信小程序实现图片上传放大预览删除代码
2020/06/28 Javascript
vuejs 动态添加input框的实例讲解
2018/08/24 Javascript
一篇文章介绍redux、react-redux、redux-saga总结
2019/05/23 Javascript
Vue.js中的extend绑定节点并显示的方法
2019/06/20 Javascript
JavaScript实现轮播图效果代码实例
2019/09/28 Javascript
Vue实现手机扫描二维码预览页面效果
2020/05/28 Javascript
Python加密方法小结【md5,base64,sha1】
2017/07/13 Python
Python神奇的内置函数locals的实例讲解
2019/02/22 Python
pandas实现to_sql将DataFrame保存到数据库中
2019/07/03 Python
tensorflow实现tensor中满足某一条件的数值取出组成新的tensor
2020/01/04 Python
Python实现像awk一样分割字符串
2020/09/15 Python
python实现登录与注册系统
2020/11/30 Python
印度服装购物网站:Limeroad
2018/09/26 全球购物
Coggles美国/加拿大:高级国际时装零售商
2018/10/23 全球购物
德国家具购物网站:Möbel Höffner
2019/08/26 全球购物
new修饰符是起什么作用
2015/06/28 面试题
搞笑创意广告语
2014/03/17 职场文书
宝宝满月酒主持词和仪式流程
2014/03/27 职场文书
工地安全质量标语
2014/06/07 职场文书
公司大门门卫岗位职责
2014/06/11 职场文书
人口与计划生育目标管理责任书
2014/07/29 职场文书
go语言map与string的相互转换的实现
2021/04/07 Golang
Django对接elasticsearch实现全文检索的示例代码
2021/08/02 Python