gpt4 book ai didi

go - 使用 dep 时如何正确包含协议(protocol)的 golang protobuf/ptypes?

转载 作者:IT王子 更新时间:2023-10-29 02:00:38 25 4
gpt4 key购买 nike

我在包含 google/protobuf/timestamp.proto 时遇到问题众所周知的类型,使用时 dep .

我得到一个错误:google/protobuf/timestamp.proto: File not found

服务.proto:

syntax = "proto3";
import "google/protobuf/timestamp.proto";

package com.rynop.platform;
option go_package = "rpc";

service PlatformService {
rpc Test(EmptyMessage) returns (EmptyMessage);
}

message EmptyMessage { }

message A {
string summary = 1;
google.protobuf.Timestamp start = 2;
}

message B {
repeated A foos = 1;
}

安装包含时间戳 .proto def 的包:

dep ensure -add github.com/golang/protobuf/ptypes/timestamp 

运行 protoc 并得到错误:

build/bin/protoc -Ivendor -I. --twirp_typescript_out=version=v6:./clients/ts-json/ rpc/service.proto
google/protobuf/timestamp.proto: File not found.

存在包含时间戳的 .proto 定义的目录:

file vendor/github.com/golang/protobuf/ptypes/timestamp/timestamp.proto
vendor/github.com/golang/protobuf/ptypes/timestamp/timestamp.proto: ASCII text

我正在本地安装 protoc,因为我不想将 protoc 版本锁定/绑定(bind)到这个项目:

# fetch the protoc compiler
OS_NAME=$(shell uname -s)
ifeq ($(OS_NAME),Darwin)
PROTOC_URL=https://github.com/google/protobuf/releases/download/v3.7.1/protoc-3.7.1-osx-x86_64.zip
endif
ifeq ($(OS_NAME),Linux)
PROTOC_URL=https://github.com/google/protobuf/releases/download/v3.7.1/protoc-3.7.1-linux-x86_64.zip
endif
build/protoc build/bin/protoc:
mkdir -p build/protoc/bin build/bin
cd build/protoc && curl -L -o protoc.zip $(PROTOC_URL) && \
unzip protoc.zip && mv bin/protoc ../bin/protoc

我做错了什么?

最佳答案

您遇到的 protoc 错误与您的 INCLUDE 路径有关。

当您安装 protoc 编译器(例如 /usr/local/bin/protoc)时,它会获取 google 的标准原型(prototype)定义,例如 timestamp .proto - 这些需要添加到您的 INCLUDE 路径中的某处(在 MacOS/Linux 上可以使用 /usr/local/include)。注意:protoc header 应该包含在 protoc 编译器中。

因此您的原型(prototype)导入文件通常位于此处:

/usr/local/include/google/protobuf/timestamp.proto

protoc 编译器看到像这样的导入时,将引用此路径:

import "google/protobuf/timestamp.proto";

因此请检查您的 INCLUDE 路径并确保正确安装了 protoc header 。

关于go - 使用 dep 时如何正确包含协议(protocol)的 golang protobuf/ptypes?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56551570/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com