Git Product home page Git Product logo

Comments (9)

kjvalencik avatar kjvalencik commented on August 23, 2024 1

You may need to manually import the type.

https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/any.proto

from pbf.

anri-asaturov avatar anri-asaturov commented on August 23, 2024

@kjvalencik do you mean like copy and paste the any.proto content to my proto?
because the file exists in ./google/protobuf folder relative to my proto

from pbf.

kjvalencik avatar kjvalencik commented on August 23, 2024

You shouldn't need to copy if it's already there. Do you have an import line for it? Only paths are supported when importing in pbf.

from pbf.

anri-asaturov avatar anri-asaturov commented on August 23, 2024

@kjvalencik

option go_package = "go";

package wire;

import "google/protobuf/any.proto";

message RequestEnvelope {
    string correlationId = 1;
    string callPath = 2;
    google.protobuf.Any payload = 3;
}

this is the full file. The ./google/protobuf/any.proto file exists (otherwise I get ENOENT)

from pbf.

anri-asaturov avatar anri-asaturov commented on August 23, 2024

Could you check out this sandbox please?
https://repl.it/repls/GleamingWhimsicalInformationtechnology

from pbf.

anri-asaturov avatar anri-asaturov commented on August 23, 2024

Ok so what i managed to figure out is that when proto is parsed, it looks like this

  syntax: 3,
  package: 'wire',
  imports: [ 'google/protobuf/any.proto' ],
  enums: [ { name: 'EnvelopeType', values: [Object], options: {} } ],
  messages: [
    {
      name: 'RequestEnvelope',
      enums: [],
      extends: [],
      messages: [],
      fields: [Array],
      extensions: null
    },
    {
      name: 'ResponseEnvelope',
      enums: [],
      extends: [],
      messages: [],
      fields: [Array],
      extensions: null
    },
    {
      name: 'Any',
      enums: [],
      extends: [],
      messages: [],
      fields: [Array],
      extensions: null
    }
  ],
  options: { go_package: 'go' },
  extends: []
}

Note the Any - it's in the root, like I defined it myself.
But getType function expects Any descriptor to be nested in google:{ protobuf: {Any: ...}}

const path = field.type.split('.');
const ret = path.reduce(function(ctx, name) {
  return ctx && ctx[name];
}, ctx);

from pbf.

janch11 avatar janch11 commented on August 23, 2024

Did (@anri-asaturov) you find solution? I have same problem, but with google.protobuf.BytesValue (in wrapper.proto)?

from pbf.

anri-asaturov avatar anri-asaturov commented on August 23, 2024

@janch11 no, I had to fork/rewrite pbf to my needs since there was even more issues not aligning with my use case

from pbf.

kenjichanhkg avatar kenjichanhkg commented on August 23, 2024

I have the same problem with Any too. How exactly can I fix it?

from pbf.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.