我的编程空间,编程开发者的网络收藏夹
学习永远不晚

golang运行时包设置构建它的系统的文件路径

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

golang运行时包设置构建它的系统的文件路径

来到编程网的大家,相信都是编程学习爱好者,希望在这里学习Golang相关编程知识。下面本篇文章就来带大家聊聊《golang运行时包设置构建它的系统的文件路径》,介绍一下,希望对大家的知识积累有所帮助,助力实战开发!

问题内容

我有一个简单的 go 代码,它使用 runtime 包,如下所示:

package main

import (
    "runtime"
    "fmt"
)

func bar() {
    pc := make([]uintptr, 1000)
    n := runtime.callers(0, pc)
    frames := runtime.callersframes(pc[:n])
    for {
        frame, more := frames.next()
        if ! more {
            break
        }
        fmt.printf("file = %s and func = %s\n", frame.file, frame.function)
    }
}

func foo() {
    bar()
}

func main() {
    foo()
}

我已将 go 二进制文件安装在 ubuntu 计算机(例如计算机 a)上的自定义位置(/home/usera/bin/go)

我在机器a上编译了它,并在同一台机器上运行可执行文件以获得输出:

file = /home/usera/bin/go/class="lazy" data-src/runtime/extern.go and func = runtime.callers
file = /home/usera/class="lazy" data-src/main.go and func = main.bar
file = /home/usera/class="lazy" data-src/main.go and func = main.foo
file = /home/usera/class="lazy" data-src/main.go and func = main.main
file = /home/usera/bin/go/class="lazy" data-src/runtime/proc.go and func = runtime.main

现在,我将编译后的可执行文件复制到另一台 ubuntu 计算机(例如计算机 b),其中 go 二进制文件安装在另一个不同的自定义位置(/home/userb/bin/去)。我从 /home/userb 运行了可执行文件。但这一次,我得到了与之前相同的输出:

file = /home/usera/bin/go/class="lazy" data-src/runtime/extern.go and func = runtime.callers
file = /home/usera/class="lazy" data-src/main.go and func = main.bar
file = /home/usera/class="lazy" data-src/main.go and func = main.foo
file = /home/usera/class="lazy" data-src/main.go and func = main.main
file = /home/usera/bin/go/class="lazy" data-src/runtime/proc.go and func = runtime.main

似乎运行时包在编译期间设置了堆栈帧。

我需要根据gopath环境变量对文件路径进行一些处理,我已将其设置为a<上的/home/usera /strong> 并作为机器 b 上的 /home/userb

我需要从每个文件路径中删除 gopath 部分。我用这个简单的函数调用来做到这一点: strings.replace(frame.file, gopath, "", 1)

但是,由于运行时包的这种行为,strings.replace 函数无法替换计算机 b 上文件路径的初始部分。

关于如何在机器b上完成此任务有什么想法吗?

更新

根据@jimb的建议,我构建了该项目

cgo_enabled=0 go build -a -ldflags="-w -s" -gcflags=-trimpath=/home/usera -asmflags=-trimpath=/home/usera

现在,在同一台计算机上运行可执行文件的输出如下:

FILE = /home/userA/bin/go/class="lazy" data-src/runtime/extern.go and FUNC = runtime.Callers
FILE = /home/userA/class="lazy" data-src/vendor/github.com/kataras/golog/golog.go and FUNC = vendor/github.com/kataras/golog.Error
FILE = /home/userA/class="lazy" data-src/test/test_logger.go and FUNC = test/test_logger.TestLogger
FILE = class="lazy" data-src/main.go and FUNC = main.bar
FILE = class="lazy" data-src/main.go and FUNC = main.foo
FILE = class="lazy" data-src/main.go and FUNC = main.main
FILE = /home/userA/bin/go/class="lazy" data-src/runtime/proc.go and FUNC = runtime.main

仅为主文件修剪路径前缀。对于任何供应商导入的包或任何本地导入的包,它仍然存在。


解决方案


你想要实现什么目标? xy 问题询问您尝试的解决方案,而不是您的实际问题:The XY Problem。

gopath 是 go 工具的一个工件。它不在 go 语言兼容性保证范围内。

如果 gopath 列表有多个元素会发生什么?

这对你有用吗?

package main

import (
    "fmt"
    "runtime"
    "strings"
)

func class="lazy" data-srcfile(path string) string {
    const class="lazy" data-src = `/class="lazy" data-src/`
    i := strings.lastindex(path, class="lazy" data-src)
    if i >= 0 {
        path = path[i+len(class="lazy" data-src):]
    }
    return path
}

func bar() {
    pc := make([]uintptr, 1000)
    n := runtime.callers(0, pc)
    frames := runtime.callersframes(pc[:n])
    for {
        frame, more := frames.next()
        if !more {
            break
        }
        fmt.printf("path = %s and func = %s\n", frame.file, frame.function)
        fmt.printf("file = %s and func = %s\n", class="lazy" data-srcfile(frame.file), frame.function)
    }
}

func foo() {
    bar()
}

func main() {
    foo()
}

输出:

PATH = /home/peter/go/class="lazy" data-src/runtime/extern.go and FUNC = runtime.Callers
FILE = runtime/extern.go and FUNC = runtime.Callers
PATH = /home/peter/gopath/class="lazy" data-src/so/gopath.go and FUNC = main.bar
FILE = so/gopath.go and FUNC = main.bar
PATH = /home/peter/gopath/class="lazy" data-src/so/gopath.go and FUNC = main.foo
FILE = so/gopath.go and FUNC = main.foo
PATH = /home/peter/gopath/class="lazy" data-src/so/gopath.go and FUNC = main.main
FILE = so/gopath.go and FUNC = main.main
PATH = /home/peter/go/class="lazy" data-src/runtime/proc.go and FUNC = runtime.main
FILE = runtime/proc.go and FUNC = runtime.main

本篇关于《golang运行时包设置构建它的系统的文件路径》的介绍就到此结束啦,但是学无止境,想要了解学习更多关于Golang的相关知识,请关注编程网公众号!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

golang运行时包设置构建它的系统的文件路径

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

golang运行时包设置构建它的系统的文件路径

来到编程网的大家,相信都是编程学习爱好者,希望在这里学习Golang相关编程知识。下面本篇文章就来带大家聊聊《golang运行时包设置构建它的系统的文件路径》,介绍一下,希望对大家的知识积累有所帮助,助力实战开发!问题内容我有一个简单的 g
golang运行时包设置构建它的系统的文件路径
2024-04-04

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录