Skip to content

Commit 9aed032

Browse files
authored
optimize: add service extends lookup for descriptor (#196)
1 parent 65c93f8 commit 9aed032

24 files changed

+3050
-1698
lines changed

descriptor.thrift

+2-1
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,9 @@ struct ServiceDescriptor{
119119
2:required string name
120120
3:required list<MethodDescriptor> methods
121121
4:required map<string,list<string>> annotations
122-
5:required string comments
122+
5:required string comments
123123
6:optional map<string,string> extra // extra info
124+
7:optional string base = ""
124125
}
125126

126127
struct FileDescriptor{

descriptor_code_gen.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
go run . -g go:gen_type_meta -o . descriptor.thrift
15+
go run . -g go:gen_type_meta,no_processor -o . descriptor.thrift

extension/thrift_option/option_idl/test.thrift

+1-3
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,8 @@ struct PersonC{
103103
entity.person_basic_info.valuei8 = '8'
104104
entity.person_basic_info.valuei16 = '16'
105105
entity.person_struct_info.valuestruct = '{email:"empty email"}'
106-
// 简写不建议这样写,而且这行会被下面那行覆盖掉
107-
entity.person_struct_info.valueteststruct.innerStruct = "{name: '123'},innerStruct:{email:'456'}"
108-
entity.person_struct_info.valueteststruct.innerStruct.email = "no email"
109106
entity.person_struct_info.valueteststruct.name = "lee"
107+
entity.person_struct_info.valueteststruct.innerStruct.email = "no email"
110108
)
111109

112110
enum MyEnum{

extension/thrift_option/runtime_test/option_gen/annotation/entity/entity-reflection.go

+50-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)