aboutsummaryrefslogtreecommitdiff
path: root/generator/descriptor_pb.nim
blob: 923885fc2023188575f70a56230e1961ffad6ab8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
import intsets

import gen
import nimpb/nimpb

const
    FileDescriptorSetDesc = MessageDesc(
        name: "FileDescriptorSet",
        fields: @[
            FieldDesc(
                name: "files",
                number: 1,
                ftype: FieldType.Message,
                label: FieldLabel.Repeated,
                typeName: "FileDescriptorProto",
                packed: false,
                oneofIdx: -1,
            )
        ]
    )

    FileDescriptorProtoDesc = MessageDesc(
        name: "FileDescriptorProto",
        fields: @[
            FieldDesc(
                name: "name",
                number: 1,
                ftype: FieldType.String,
                label: FieldLabel.Optional,
                typeName: "",
                packed: false,
                oneofIdx: -1,
            ),
            FieldDesc(
                name: "package",
                number: 2,
                ftype: FieldType.String,
                label: FieldLabel.Optional,
                typeName: "",
                packed: false,
                oneofIdx: -1,
            ),
            FieldDesc(
                name: "dependency",
                number: 3,
                ftype: FieldType.String,
                label: FieldLabel.Repeated,
                typeName: "",
                packed: false,
                oneofIdx: -1,
            ),
            FieldDesc(
                name: "message_type",
                number: 4,
                ftype: FieldType.Message,
                label: FieldLabel.Repeated,
                typeName: "DescriptorProto",
                packed: false,
                oneofIdx: -1,
            ),
            FieldDesc(
                name: "enum_type",
                number: 5,
                ftype: FieldType.Message,
                label: FieldLabel.Repeated,
                typeName: "EnumDescriptorProto",
                packed: false,
                oneofIdx: -1,
            ),
            FieldDesc(
                name: "syntax",
                number: 12,
                ftype: FieldType.String,
                label: FieldLabel.Optional,
                typeName: "",
                packed: false,
                oneofIdx: -1,
            ),
        ]
    )

    DescriptorProtoDesc = MessageDesc(
        name: "DescriptorProto",
        fields: @[
            FieldDesc(
                name: "name",
                number: 1,
                ftype: FieldType.String,
                label: FieldLabel.Optional,
                typeName: "",
                packed: false,
                oneofIdx: -1,
            ),
            FieldDesc(
                name: "field",
                number: 2,
                ftype: FieldType.Message,
                label: FieldLabel.Repeated,
                typeName: "FieldDescriptorProto",
                packed: false,
                oneofIdx: -1,
            ),
            FieldDesc(
                name: "nested_type",
                number: 3,
                ftype: FieldType.Message,
                label: FieldLabel.Repeated,
                typeName: "DescriptorProto",
                packed: false,
                oneofIdx: -1,
            ),
            FieldDesc(
                name: "enum_type",
                number: 4,
                ftype: FieldType.Message,
                label: FieldLabel.Repeated,
                typeName: "EnumDescriptorProto",
                packed: false,
                oneofIdx: -1,
            ),
            FieldDesc(
                name: "oneof_decl",
                number: 8,
                ftype: FieldType.Message,
                label: FieldLabel.Repeated,
                typeName: "OneofDescriptorProto",
                packed: false,
                oneofIdx: -1,
            ),
            FieldDesc(
                name: "options",
                number: 7,
                ftype: FieldType.Message,
                label: FieldLabel.Optional,
                typeName: "MessageOptions",
                packed: false,
                oneofIdx: -1,
            ),
        ]
    )

    EnumDescriptorProtoDesc = MessageDesc(
        name: "EnumDescriptorProto",
        fields: @[
            FieldDesc(
                name: "name",
                number: 1,
                ftype: FieldType.String,
                label: FieldLabel.Optional,
                typeName: "",
                packed: false,
                oneofIdx: -1,
            ),
            FieldDesc(
                name: "value",
                number: 2,
                ftype: FieldType.Message,
                label: FieldLabel.Repeated,
                typeName: "EnumValueDescriptorProto",
                packed: false,
                oneofIdx: -1,
            ),
        ]
    )

    EnumValueDescriptorProtoDesc = MessageDesc(
        name: "EnumValueDescriptorProto",
        fields: @[
            FieldDesc(
                name: "name",
                number: 1,
                ftype: FieldType.String,
                label: FieldLabel.Optional,
                typeName: "",
                packed: false,
                oneofIdx: -1,
            ),
            FieldDesc(
                name: "number",
                number: 2,
                ftype: FieldType.Int32,
                label: FieldLabel.Optional,
                typeName: "",
                packed: false,
                oneofIdx: -1,
            ),
        ]
    )

    FieldDescriptorProtoDesc = MessageDesc(
        name: "FieldDescriptorProto",
        fields: @[
            FieldDesc(
                name: "name",
                number: 1,
                ftype: FieldType.String,
                label: FieldLabel.Optional,
                typeName: "",
                packed: false,
                oneofIdx: -1,
            ),
            FieldDesc(
                name: "number",
                number: 3,
                ftype: FieldType.Int32,
                label: FieldLabel.Optional,
                typeName: "",
                packed: false,
                oneofIdx: -1,
            ),
            FieldDesc(
                name: "label",
                number: 4,
                ftype: FieldType.Enum,
                label: FieldLabel.Optional,
                typeName: "FieldDescriptorProto_Label",
                packed: false,
                oneofIdx: -1,
            ),
            FieldDesc(
                name: "type",
                number: 5,
                ftype: FieldType.Enum,
                label: FieldLabel.Optional,
                typeName: "FieldDescriptorProto_Type",
                packed: false,
                oneofIdx: -1,
            ),
            FieldDesc(
                name: "type_name",
                number: 6,
                ftype: FieldType.String,
                label: FieldLabel.Optional,
                typeName: "",
                packed: false,
                oneofIdx: -1,
            ),
            FieldDesc(
                name: "options",
                number: 8,
                ftype: FieldType.Message,
                label: FieldLabel.Optional,
                typeName: "FieldOptions",
                packed: false,
                oneofIdx: -1,
            ),
            FieldDesc(
                name: "oneof_index",
                number: 9,
                ftype: FieldType.Int32,
                label: FieldLabel.Optional,
                typeName: "",
                packed: false,
                oneofIdx: -1,
            ),
        ]
    )

    FieldDescriptorProto_LabelDesc = EnumDesc(
        name: "FieldDescriptorProto_Label",
        values: @[
            EnumValueDesc(name: "LABEL_OPTIONAL", number: 1),
            EnumValueDesc(name: "LABEL_REQUIRED", number: 2),
            EnumValueDesc(name: "LABEL_REPEATED", number: 3)
        ]
    )

    FieldDescriptorProto_TypeDesc = EnumDesc(
        name: "FieldDescriptorProto_Type",
        values: @[
            EnumValueDesc(name: "TYPE_DOUBLE", number: 1),
            EnumValueDesc(name: "TYPE_FLOAT", number: 2),
            EnumValueDesc(name: "TYPE_INT64", number: 3),
            EnumValueDesc(name: "TYPE_UINT64", number: 4),
            EnumValueDesc(name: "TYPE_INT32", number: 5),
            EnumValueDesc(name: "TYPE_FIXED64", number: 6),
            EnumValueDesc(name: "TYPE_FIXED32", number: 7),
            EnumValueDesc(name: "TYPE_BOOL", number: 8),
            EnumValueDesc(name: "TYPE_STRING", number: 9),
            EnumValueDesc(name: "TYPE_GROUP", number: 10),
            EnumValueDesc(name: "TYPE_MESSAGE", number: 11),
            EnumValueDesc(name: "TYPE_BYTES", number: 12),
            EnumValueDesc(name: "TYPE_UINT32", number: 13),
            EnumValueDesc(name: "TYPE_ENUM", number: 14),
            EnumValueDesc(name: "TYPE_SFIXED32", number: 15),
            EnumValueDesc(name: "TYPE_SFIXED64", number: 16),
            EnumValueDesc(name: "TYPE_SINT32", number: 17),
            EnumValueDesc(name: "TYPE_SINT64", number: 18),
        ]
    )

    MessageOptionsDesc = MessageDesc(
        name: "MessageOptions",
        fields: @[
            FieldDesc(
                name: "map_entry",
                number: 7,
                ftype: FieldType.Bool,
                label: FieldLabel.Optional,
                typeName: "",
                packed: false,
                oneofIdx: -1,
            ),
        ]
    )

    FieldOptionsDesc = MessageDesc(
        name: "FieldOptions",
        fields: @[
            FieldDesc(
                name: "packed",
                number: 2,
                ftype: FieldType.Bool,
                label: FieldLabel.Optional,
                typeName: "",
                packed: false,
                oneofIdx: -1,
            ),
        ]
    )

    OneofDescriptorProtoDesc = MessageDesc(
        name: "OneofDescriptorProto",
        fields: @[
            FieldDesc(
                name: "name",
                number: 1,
                ftype: FieldType.String,
                label: FieldLabel.Optional,
                typeName: "",
                packed: false,
                oneofIdx: -1,
            ),
        ]
    )

generateEnumType(FieldDescriptorProto_LabelDesc)
generateEnumProcs(FieldDescriptorProto_LabelDesc)

generateEnumType(FieldDescriptorProto_TypeDesc)
generateEnumProcs(FieldDescriptorProto_TypeDesc)

generateMessageType(EnumValueDescriptorProtoDesc)
generateMessageProcs(EnumValueDescriptorProtoDesc)

generateMessageType(EnumDescriptorProtoDesc)
generateMessageProcs(EnumDescriptorProtoDesc)

generateMessageType(FieldOptionsDesc)
generateMessageProcs(FieldOptionsDesc)

generateMessageType(FieldDescriptorProtoDesc)
generateMessageProcs(FieldDescriptorProtoDesc)

generateMessageType(OneofDescriptorProtoDesc)
generateMessageProcs(OneofDescriptorProtoDesc)

generateMessageType(MessageOptionsDesc)
generateMessageProcs(MessageOptionsDesc)

generateMessageType(DescriptorProtoDesc)
generateMessageProcs(DescriptorProtoDesc)

generateMessageType(FileDescriptorProtoDesc)
generateMessageProcs(FileDescriptorProtoDesc)

generateMessageType(FileDescriptorSetDesc)
generateMessageProcs(FileDescriptorSetDesc)