无法使用@ grpc / proto-loader导入Google的原型

时间:2018-10-12 21:01:36

标签: node.js protocol-buffers grpc google-protocol-buffer grpc-node

我有以下原型:

syntax = "proto3";

import "google/rpc/status.proto";

message Response {   
    google.rpc.Status status = 1;
}

message Request {   
    Type name = 1;
}

service Service {
    rpc SomeMethod (Request) returns (Response);
}

我正在节点中编写一个客户端:

    const path = require('path');
    const grpc = require('grpc');
    const protoLoader = require('@grpc/proto-loader');
    const protoFiles = require('google-proto-files');

    const PROTO_PATH = path.join(__dirname, '/proto/myproto.proto');

    const packageDefinition = protoLoader.loadSync(
      PROTO_PATH,
      {
        keepCase: true,
        longs: String,
        enums: String,
        defaults: true,
        oneofs: true,
        includeDirs: [protoFiles('rpc')],
      },
    );

    const proto = grpc.loadPackageDefinition(packageDefinition);
    const client = new proto.Service('localhost:1111', grpc.credentials.createInsecure());

运行客户端时,出现以下错误:TypeError:proto.Service不是构造函数。我发现它与status.proto的导入有关。使用proto-loader导入google proto的正确方法是什么?该服务器使用Java。

2 个答案:

答案 0 :(得分:4)

奥尔加,如果使用includeDirs,则不能在PROTO_PATH中使用绝对路径。显然,您需要将两个路径(即myproto.proto的路径和google-proto-files的路径)放入includeDirs中,并仅使用文件名作为PROTO_PATH,然后它就可以正常工作。看到这里:

https://github.com/grpc/grpc-node/issues/470

这里是修改后的代码,可以正常工作。请注意,我还必须在myproto.proto中将“ Type”替换为“ int32”。

const path = require('path');
const grpc = require('grpc');
const protoLoader = require('@grpc/proto-loader');
const protoFiles = require('google-proto-files');

const PROTO_PATH = 'myproto.proto';

const packageDefinition = protoLoader.loadSync(
  PROTO_PATH,
  {
    keepCase: true,
    longs: String,
    enums: String,
    defaults: true,
    oneofs: true,
    includeDirs: ['node_modules/google-proto-files', 'proto']
    },
  );

const protoDescriptor = grpc.loadPackageDefinition(packageDefinition);
const client = new protoDescriptor.Service('localhost:1111',  grpc.credentials.createInsecure());

希望有帮助。 :)

答案 1 :(得分:0)

这里的问题是merge返回的路径不适用于protoFiles('rpc')文件中的import行。该导入行意味着.proto正在寻找包含@grpc/proto-loader的包含目录,但是google/rpc/status.proto返回一个直接包含protoFiles('rpc')的目录。因此,您必须更改其中一项或两项,以使相对目录正确匹配。