使用google/protobuf/timestamp.proto时,我遇到了麻烦,包括dep众所周知的类型。
我收到一个错误:google/protobuf/timestamp.proto: File not foundservice.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;
}
安装包含timestamp .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
我要在本地安装协议(protocol),因为我不想将协议(protocol)版本锁定/绑定(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/

10-10 04:32