-
Notifications
You must be signed in to change notification settings - Fork 36
/
piqi-impl.piqi
247 lines (182 loc) · 5.11 KB
/
piqi-impl.piqi
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
% Copyright 2009, 2010, 2011, 2012, 2013, 2014, 2017 Anton Lavrik
%
% Licensed under the Apache License, Version 2.0 (the "License");
% you may not use this file except in compliance with the License.
% You may obtain a copy of the License at
%
% http://www.apache.org/licenses/LICENSE-2.0
%
% Unless required by applicable law or agreed to in writing, software
% distributed under the License is distributed on an "AS IS" BASIS,
% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
% See the License for the specific language governing permissions and
% limitations under the License.
.include [ .module piqi/piqi-lang ]
.include [ .module piqi.ocaml ]
.include [ .module piqi-lang.ocaml ]
.extend [
.typedef import
.with.field [
.type piqi
.optional
.internal
]
.with.field [
.name orig-modname
.type string
.optional
.internal
]
]
.variant [
.name namespace
.option [ .type piqi ]
.option [ .type import ]
]
.extend [
.typedef* [ record variant enum alias list ]
.with.field [
.name parent
.type namespace
.optional
.internal
]
]
.extend [
.typedef record
% record's fields ordered by integer wire code
.with.field [
.name wire-field
.type field
.repeated
.internal
]
]
.extend [
.typedef piqi
.with.field [ .name extended-typedef .type typedef .repeated .internal ]
.with.field [ .name func-typedef .type typedef .repeated .internal ]
.with.field [ .name extended-func-typedef .type typedef .repeated .internal ]
.with.field [ .name resolved-typedef .type typedef .repeated .internal ]
.with.field [ .name imported-typedef .type typedef .repeated .internal ]
.with.field [ .name resolved-import .type import .repeated .internal ]
.with.field [ .name extended-import .type import .repeated .internal ]
.with.field [ .name resolved-func .type function .repeated .internal ]
.with.field [ .name extended-func .type function .repeated .internal ]
.with.field [ .name included-piqi .type piqi .repeated .internal ]
.with.field [ .name original-piqi .type piqi .optional .internal ]
.with.field [ .name ast .type piq-ast .optional .internal ]
.with.field [ .name is-embedded .type bool .optional .internal ]
]
.extend [
.typedef function
.with.field [
.name resolved-input
.type typedef
.optional
.internal
]
.with.field [
.name resolved-output
.type typedef
.optional
.internal
]
.with.field [
.name resolved-error
.type typedef
.optional
.internal
]
]
.extend [
.typedef* [ alias record variant enum list ]
% if type definition is a function parameter, i.e. was defined inside
% function definition
.with.field [
.name is-func-param
.optional
.internal
]
]
.extend [
.typedef* [ alias list field option ]
.with.field [
.type piqtype
.optional
.internal
]
]
.variant [
.name piqtype
% user-defined types
.option [ .type typedef ]
% built-in types
.option [ .type piqi-type ]
]
.alias [
.name piq-ast
% type doesn't matter, because, this field is never represented in other
% formats
.type bool
% associating this type with OCaml's type
.ocaml-type "Piq_ast.ast"
]
.extend [
.typedef any
.with.field [
% this field is here to avoid serialization of Piqobj intermediate
% representation; basically it is a reference to Piqobj.any object in
% the Piqi_objstore
.name ref
.type int
.optional
]
]
.extend [
% XXX: think of generating these things implicitly by piqicc inside each
% record definition
%
% NOTE: this field is treated very specially -- see piqi_wire.ml,
% piqobj_of_piq.ml ...
.typedef* [
record field variant option enum alias list piqi import function
extend include
]
.with.field [
.name unparsed-piq-ast
.type uint
.optional
%.internal
]
]
.record [
% internally-used data structure for defining association between piqi-type
% and pib element's wire code in .pib format
%
% XXX: consder moving to piqi/piqi.pib.piqi once pib becomes less
% experimental and useful for a broader audience
.name pib-typehint
.field [
% this field should be always present in the first position and contain
% the string "piqi-type"; if it is present, but has a different value,
% it will be ignored
.name piqi-type
.type string
.code 1
]
.field [
% fully-qualified piqi type name
.type type
.code 2
]
.field [
% wire code associated with the type; this code is used for identifying
% elements in .pib stream; the range of the values is the same as the
% range of valid protobuf wire codes
.name code
.type uint
.code 3
]
]
.custom-field ocaml-type