Skip to content

Commit 1cf7192

Browse files
cosmos-sdk-proto: use buf's enable_type_names feature (#490)
Automatically impl the `prost::Name` trait using `buf` rather than manually maintaining a type registry in `type_names.rs`
1 parent 363eaaf commit 1cf7192

File tree

77 files changed

+5660
-508
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+5660
-508
lines changed

cosmos-sdk-proto/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
extern crate alloc;
1616

1717
pub mod traits;
18-
mod type_names;
1918

2019
pub use prost;
2120
pub use tendermint_proto as tendermint;

cosmos-sdk-proto/src/prost/cosmos-sdk/cosmos.app.runtime.v1alpha1.rs

+14
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,13 @@ pub struct Module {
4646
#[prost(string, repeated, tag = "9")]
4747
pub prepare_check_staters: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
4848
}
49+
impl ::prost::Name for Module {
50+
const NAME: &'static str = "Module";
51+
const PACKAGE: &'static str = "cosmos.app.runtime.v1alpha1";
52+
fn full_name() -> ::prost::alloc::string::String {
53+
::prost::alloc::format!("cosmos.app.runtime.v1alpha1.{}", Self::NAME)
54+
}
55+
}
4956
/// StoreKeyConfig may be supplied to override the default module store key, which
5057
/// is the module name.
5158
#[allow(clippy::derive_partial_eq_without_eq)]
@@ -58,5 +65,12 @@ pub struct StoreKeyConfig {
5865
#[prost(string, tag = "2")]
5966
pub kv_store_key: ::prost::alloc::string::String,
6067
}
68+
impl ::prost::Name for StoreKeyConfig {
69+
const NAME: &'static str = "StoreKeyConfig";
70+
const PACKAGE: &'static str = "cosmos.app.runtime.v1alpha1";
71+
fn full_name() -> ::prost::alloc::string::String {
72+
::prost::alloc::format!("cosmos.app.runtime.v1alpha1.{}", Self::NAME)
73+
}
74+
}
6175
include!("cosmos.app.runtime.v1alpha1.serde.rs");
6276
// @@protoc_insertion_point(module)

cosmos-sdk-proto/src/prost/cosmos-sdk/cosmos.app.v1alpha1.rs

+56
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@ pub struct ModuleDescriptor {
2424
#[prost(message, repeated, tag = "3")]
2525
pub can_migrate_from: ::prost::alloc::vec::Vec<MigrateFromInfo>,
2626
}
27+
impl ::prost::Name for ModuleDescriptor {
28+
const NAME: &'static str = "ModuleDescriptor";
29+
const PACKAGE: &'static str = "cosmos.app.v1alpha1";
30+
fn full_name() -> ::prost::alloc::string::String {
31+
::prost::alloc::format!("cosmos.app.v1alpha1.{}", Self::NAME)
32+
}
33+
}
2734
/// PackageReference is a reference to a protobuf package used by a module.
2835
#[allow(clippy::derive_partial_eq_without_eq)]
2936
#[derive(Clone, PartialEq, ::prost::Message)]
@@ -69,6 +76,13 @@ pub struct PackageReference {
6976
#[prost(uint32, tag = "2")]
7077
pub revision: u32,
7178
}
79+
impl ::prost::Name for PackageReference {
80+
const NAME: &'static str = "PackageReference";
81+
const PACKAGE: &'static str = "cosmos.app.v1alpha1";
82+
fn full_name() -> ::prost::alloc::string::String {
83+
::prost::alloc::format!("cosmos.app.v1alpha1.{}", Self::NAME)
84+
}
85+
}
7286
/// MigrateFromInfo is information on a module version that a newer module
7387
/// can migrate from.
7488
#[allow(clippy::derive_partial_eq_without_eq)]
@@ -79,6 +93,13 @@ pub struct MigrateFromInfo {
7993
#[prost(string, tag = "1")]
8094
pub module: ::prost::alloc::string::String,
8195
}
96+
impl ::prost::Name for MigrateFromInfo {
97+
const NAME: &'static str = "MigrateFromInfo";
98+
const PACKAGE: &'static str = "cosmos.app.v1alpha1";
99+
fn full_name() -> ::prost::alloc::string::String {
100+
::prost::alloc::format!("cosmos.app.v1alpha1.{}", Self::NAME)
101+
}
102+
}
82103
/// Config represents the configuration for a Cosmos SDK ABCI app.
83104
/// It is intended that all state machine logic including the version of
84105
/// baseapp and tx handlers (and possibly even Tendermint) that an app needs
@@ -98,6 +119,13 @@ pub struct Config {
98119
#[prost(message, repeated, tag = "2")]
99120
pub golang_bindings: ::prost::alloc::vec::Vec<GolangBinding>,
100121
}
122+
impl ::prost::Name for Config {
123+
const NAME: &'static str = "Config";
124+
const PACKAGE: &'static str = "cosmos.app.v1alpha1";
125+
fn full_name() -> ::prost::alloc::string::String {
126+
::prost::alloc::format!("cosmos.app.v1alpha1.{}", Self::NAME)
127+
}
128+
}
101129
/// ModuleConfig is a module configuration for an app.
102130
#[allow(clippy::derive_partial_eq_without_eq)]
103131
#[derive(Clone, PartialEq, ::prost::Message)]
@@ -124,6 +152,13 @@ pub struct ModuleConfig {
124152
#[prost(message, repeated, tag = "3")]
125153
pub golang_bindings: ::prost::alloc::vec::Vec<GolangBinding>,
126154
}
155+
impl ::prost::Name for ModuleConfig {
156+
const NAME: &'static str = "ModuleConfig";
157+
const PACKAGE: &'static str = "cosmos.app.v1alpha1";
158+
fn full_name() -> ::prost::alloc::string::String {
159+
::prost::alloc::format!("cosmos.app.v1alpha1.{}", Self::NAME)
160+
}
161+
}
127162
/// GolangBinding is an explicit interface type to implementing type binding for dependency injection.
128163
#[allow(clippy::derive_partial_eq_without_eq)]
129164
#[derive(Clone, PartialEq, ::prost::Message)]
@@ -135,10 +170,24 @@ pub struct GolangBinding {
135170
#[prost(string, tag = "2")]
136171
pub implementation: ::prost::alloc::string::String,
137172
}
173+
impl ::prost::Name for GolangBinding {
174+
const NAME: &'static str = "GolangBinding";
175+
const PACKAGE: &'static str = "cosmos.app.v1alpha1";
176+
fn full_name() -> ::prost::alloc::string::String {
177+
::prost::alloc::format!("cosmos.app.v1alpha1.{}", Self::NAME)
178+
}
179+
}
138180
/// QueryConfigRequest is the Query/Config request type.
139181
#[allow(clippy::derive_partial_eq_without_eq)]
140182
#[derive(Clone, PartialEq, ::prost::Message)]
141183
pub struct QueryConfigRequest {}
184+
impl ::prost::Name for QueryConfigRequest {
185+
const NAME: &'static str = "QueryConfigRequest";
186+
const PACKAGE: &'static str = "cosmos.app.v1alpha1";
187+
fn full_name() -> ::prost::alloc::string::String {
188+
::prost::alloc::format!("cosmos.app.v1alpha1.{}", Self::NAME)
189+
}
190+
}
142191
/// QueryConfigRequest is the Query/Config response type.
143192
#[allow(clippy::derive_partial_eq_without_eq)]
144193
#[derive(Clone, PartialEq, ::prost::Message)]
@@ -147,6 +196,13 @@ pub struct QueryConfigResponse {
147196
#[prost(message, optional, tag = "1")]
148197
pub config: ::core::option::Option<Config>,
149198
}
199+
impl ::prost::Name for QueryConfigResponse {
200+
const NAME: &'static str = "QueryConfigResponse";
201+
const PACKAGE: &'static str = "cosmos.app.v1alpha1";
202+
fn full_name() -> ::prost::alloc::string::String {
203+
::prost::alloc::format!("cosmos.app.v1alpha1.{}", Self::NAME)
204+
}
205+
}
150206
include!("cosmos.app.v1alpha1.serde.rs");
151207
include!("cosmos.app.v1alpha1.tonic.rs");
152208
// @@protoc_insertion_point(module)

cosmos-sdk-proto/src/prost/cosmos-sdk/cosmos.auth.module.v1.rs

+14
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,13 @@ pub struct Module {
1313
#[prost(string, tag = "3")]
1414
pub authority: ::prost::alloc::string::String,
1515
}
16+
impl ::prost::Name for Module {
17+
const NAME: &'static str = "Module";
18+
const PACKAGE: &'static str = "cosmos.auth.module.v1";
19+
fn full_name() -> ::prost::alloc::string::String {
20+
::prost::alloc::format!("cosmos.auth.module.v1.{}", Self::NAME)
21+
}
22+
}
1623
/// ModuleAccountPermission represents permissions for a module account.
1724
#[allow(clippy::derive_partial_eq_without_eq)]
1825
#[derive(Clone, PartialEq, ::prost::Message)]
@@ -25,5 +32,12 @@ pub struct ModuleAccountPermission {
2532
#[prost(string, repeated, tag = "2")]
2633
pub permissions: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
2734
}
35+
impl ::prost::Name for ModuleAccountPermission {
36+
const NAME: &'static str = "ModuleAccountPermission";
37+
const PACKAGE: &'static str = "cosmos.auth.module.v1";
38+
fn full_name() -> ::prost::alloc::string::String {
39+
::prost::alloc::format!("cosmos.auth.module.v1.{}", Self::NAME)
40+
}
41+
}
2842
include!("cosmos.auth.module.v1.serde.rs");
2943
// @@protoc_insertion_point(module)

0 commit comments

Comments
 (0)