dongshun1884 2017-12-13 11:57
浏览 163
已采纳

Protobuf无法识别相同的软件包

I have some code that uses google protobuf. These are the source files:

Proto file:

syntax = "proto3";

package my_package.protocol;
option go_package = "protocol";

import "github.com/golang/protobuf/ptypes/empty/empty.proto";

...

service MyService {
    rpc Flush        (google.protobuf.Empty) returns (google.protobuf.Empty);
}

Compiled go file:

package protocol

import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
import google_protobuf "github.com/golang/protobuf/ptypes/empty"

import (
    context "golang.org/x/net/context"
    grpc "google.golang.org/grpc"
)

...

type MyServiceClient interface {
    Flush(ctx context.Context, in *google_protobuf.Empty, opts ...grpc.CallOption) (*google_protobuf.Empty, error)
}

And when I finally try to use the compiled service like this:

import (
    "golang.org/x/net/context"

    pb "myproject/protocol"

    google_protobuf "github.com/golang/protobuf/ptypes/empty"
)
...
func Flush(sink pb.MyServiceClient) {
    _, err = sink.Flush(context.Background(), *google_protobuf.Empty{})
    ...
}

I get the following error:

Cannot use '*google_protobuf.Empty{}' (type "myproject/vendor/github.com/golang/protobuf/ptypes/empty".Empty) as type "myproject/vendor/github.com/golang/protobuf/ptypes/empty".*google_protobuf.Empty

Which are the same thing (they even resolve to the same file). What am I missing here?

  • 写回答

1条回答 默认 最新

  • douzhunlan5930 2017-12-13 12:05
    关注

    Your error is on this line:

     _, err = sink.Flush(context.Background(), *google_protobuf.Empty{})
    

    *google_protobuf.Empty{} is attempting to dereference the struct, but your function prototype expects a pointer to a google_protobuf.Empty. Use &google_protobuf.Empty{} instead. And when you end up with a real data structure rather than empty, you will probably do something along the lines of:

      req := google_protobuf.MyRequestStruct{}
      _, err = service.Method(context.Background(), &req)
    

    For an overview of pointer syntax in go, please take the tour

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 keil的map文件中Image component sizes各项意思
  • ¥30 BC260Y用MQTT向阿里云发布主题消息一直错误
  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据
  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 Centos / PETGEM
  • ¥15 划分vlan后不通了
  • ¥20 用雷电模拟器安装百达屋apk一直闪退
  • ¥15 算能科技20240506咨询(拒绝大模型回答)