Skip to content
This repository was archived by the owner on Apr 8, 2024. It is now read-only.
This repository was archived by the owner on Apr 8, 2024. It is now read-only.

Generate module definitions #180

@DazWilkin

Description

@DazWilkin

I may be missing this but, protoc_rust_grpc (and the other crates) does not generate rust module definitions.

Other languages are configurable through protobuf Options and permit a language namespace to be specified (e.g. Java's "com.something" or Golang's "package").

This would be a useful feature for rust too and IIUC should also permit the generation of module defs

E.g.

protoc_rust_grpc::run(protoc_rust_grpc::Args {
    out_dir: "src/google/api",
    includes: &["googleapis"],
    input: &[
        "googleapis/google/api/annotations.proto",
        ...,
    ],
    rust_protobuf: true,
    ..Default::default()
})

Needs something of the form:

mod.rs:

pub mod google {
    pub mod api {
        pub mod annotations;
    }
}

As a noob, I'm having to manually enumerate the proto files in protoc_rust_grpc and then repeat this process for a hierarchy of mod.rs files that reflect the generated sources.

Perhaps there's a better way?

The code has sufficient information already:

  • Either: use the existing outdir, includes and input to determine the module hierarchy
  • Or: enable protobuf option rust_module = "google::api" to define the hierarchy

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions