Giter VIP home page Giter VIP logo

Comments (4)

stefanvanburen avatar stefanvanburen commented on August 22, 2024

Actually, based on what Prost is doing with identifiers, maybe you could change the identifier to __ (double underscore), which would be a valid identifier, at least?: https://github.com/tokio-rs/prost/blob/e3deaa200b3a5500bf0403325d02716973b7296a/prost-build/src/ident.rs#L23. However, __ is a valid Protobuf package name too, so you'd potentially conflict with that package 😃.

from protoc-gen-prost.

stefanvanburen avatar stefanvanburen commented on August 22, 2024

Also:

// File: test1.proto
syntax = "proto3";

package _;

message Test {}
// File: test2.proto
syntax = "proto3";

message Test {}
# buf.gen.yaml
version: v1
plugins:
  - plugin: buf.build/community/neoeinstein-prost
    out: gen/src

Running buf generate . creates two files, named _ and _.rs, both containing:

// @generated
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Test {
}
// @@protoc_insertion_point(module)

Again, not sure the answer, but it doesn't seem like generating a file named _ is desirable.

from protoc-gen-prost.

neoeinstein avatar neoeinstein commented on August 22, 2024

I'll start off by noting that _ is not a valid package name in the Protobuf spec either. The package line must follow the following grammar (which I've grabbed excerpts from):

package = "package" fullIdent ";"
fullIdent = ident { "." ident }
ident = letter { letter | decimalDigit | "_" }
letter = "A" ... "Z" | "a" ... "z"
decimalDigit = "0" ... "9"

As the grammar requires that an ident start with a letter, _ alone is not a valid Protobuf identifier. We don't do any special detection around that, but since it's not considered a valid ident, I don't think it's something that I'd take special care to handle.

Let me know if you have additional information that should cause me to reconsider, but that would also likely require coordination and changes to the underlying Prost library as well. The most likely change would be to more explicitly reject a _ package name rather than work around it.

from protoc-gen-prost.

stefanvanburen avatar stefanvanburen commented on August 22, 2024

Yeah, unfortunately I think the spec linked above is slightly off. In the Buf version of the spec, _ is included in the letter character class, meaning that package _; is (unfortunately) valid. And protoc seems to agree with that:

// test-underscore.proto
syntax = "proto3";

package _;

message Test {}
$ protoc --version
libprotoc 25.0

$ protoc --descriptor_set_out=underscore.binpb test-underscore.proto # passes

versus an invalid package -;:

// test-dash.proto
syntax = "proto3";

package -;

message Test {}
$ protoc --descriptor_set_out=dash.binpb test-dash.proto
test-dash.proto:3:9: Expected identifier.

I think the upstream spec should be fixed, heh. Anyway, happy to leave this closed; it's terribly niche.

from protoc-gen-prost.

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.