GithubHelp home page GithubHelp logo

Comments (6)

dcodeIO avatar dcodeIO commented on May 22, 2024

The returned classes are actually not a result of the builder alone, but also of turning the protocol reflection inside out. You can see it here:

https://github.com/dcodeIO/ProtoBuf.js/blob/master/src/ProtoBuf/Reflect.js

Think of them as an interface between the user and the reflected state that must always be built (which is pretty fast from json as there is no parsing involved). It's not possible to split that as it directly accesses all the core functionality of the library. Upside: No compilation step required :-)

For this reason I personally am not going to change the way it is currently.

from protobuf.js.

timmutton avatar timmutton commented on May 22, 2024

Oh ok, I assumed it would be non-trivial but I also didnt realise how tied in it was to everything :)

from protobuf.js.

DimitarChristoff avatar DimitarChristoff commented on May 22, 2024

slightly off-topic but on the same subject of proto2js builds - if you wanted to pre-package your protos and use import, how would you handle this cli level? use case is say:

// Foo.proto
message Foo {
    required string fizz = 1;
}

and

// Bar.proto
import "Foo.proto";

// really extend Bar but that produces an empty constructor. 
message Bar {
    required string buzz = 2;
}

running

node bin/proto2js tests/Bar.proto -amd
define(["ProtoBuf"], function(ProtoBuf) { return ProtoBuf.newBuilder().create([
    {
        "name": "Bar",
        "fields": [
            {
                "rule": "required",
                "type": "string",
                "name": "buzz",
                "id": 2,
                "options": {}
            }
        ],
        "enums": [],
        "messages": [],
        "options": {}
    }
]).build(); });

even the imports array from the parser is being lost as the script only takes into account .messages ...

my use case is that I really need to get files that import and extend protos working w/o modding them. the parser just returns imports in an array but does not get the messages, which makes things confusing. I hope I am missing something... using tests from #10

from protobuf.js.

dcodeIO avatar dcodeIO commented on May 22, 2024

You are right, there is currently no import handling at all in proto2js. I will think about a solution and let you know!

from protobuf.js.

dcodeIO avatar dcodeIO commented on May 22, 2024

I've updated the proto2js utility to also include all imports when using the -class, -commonjs or -amd parameters. However, if this works in every single case might still need some testing :)

from protobuf.js.

DimitarChristoff avatar DimitarChristoff commented on May 22, 2024

yep. nice. I am gonna mod that to support extend now. incidentally:

$ node bin/proto2js tests/extend.proto -amd
 Error: Illegal token in message FieldDescriptorProto: ; (type or '}' expected)

though it works, or at least does not throw w/o the amd / cjs switches.

from protobuf.js.

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.