package ocaml-protoc

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file pb_typing_resolution.ml

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
369
370
(*
  The MIT License (MIT)

  Copyright (c) 2016 Maxime Ransan <maxime.ransan@gmail.com>

  Permission is hereby granted, free of charge, to any person obtaining a copy
  of this software and associated documentation files (the "Software"), to deal
  in the Software without restriction, including without limitation the rights
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  copies of the Software, and to permit persons to whom the Software is
  furnished to do so, subject to the following conditions:

  The above copyright notice and this permission notice shall be included in all
  copies or substantial portions of the Software.

  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  SOFTWARE.

*)

module E = Pb_exception
module Pt = Pb_parsing_parse_tree
module Tt = Pb_typing_type_tree
module String_map = Pb_util.Str_map

module Types_by_scope = struct
  type type_ = Pb_field_type.unresolved Tt.proto_type

  let name_of_type { Tt.spec; _ } =
    match spec with
    | Tt.Enum { Tt.enum_name; _ } -> enum_name
    | Tt.Message { Tt.message_name; _ } -> message_name

  type t = {
    name: string;
    types: type_ String_map.t;
    subs: t String_map.t;
  }

  let empty ?(name = "") () =
    { name; types = String_map.empty; subs = String_map.empty }

  let add t type_ =
    let rec aux t packages message_names =
      let { types; subs; _ } = t in
      match packages, message_names with
      | [], [] ->
        { t with types = String_map.add (name_of_type type_) type_ types }
      | name :: packages, message_names
      | ([] as packages), name :: message_names ->
        let sub =
          match String_map.find name subs with
          | sub -> aux sub packages message_names
          | exception Not_found -> aux (empty ~name ()) packages message_names
        in
        let subs = subs |> String_map.remove name |> String_map.add name sub in
        (* remove + add = replace *)
        { t with subs }
    in

    let { Tt.scope = { Tt.packages; message_names }; _ } = type_ in
    aux t packages message_names

  let find t path type_name =
    let rec aux t = function
      | [] -> String_map.find type_name t.types
      | name :: path -> aux (String_map.find name t.subs) path
    in
    aux t path

  let fpf = Printf.fprintf

  let rec print ?(level = 0) oc { types; subs; name } : unit =
    fpf oc "%s %s\n" (Pb_util.indentation_prefix level) name;
    String_map.iter
      (fun _ t ->
        fpf oc "%s +-%s \n" (Pb_util.indentation_prefix level) (name_of_type t))
      types;
    String_map.iter (fun _ sub -> print oc ~level:(level + 1) sub) subs

  let print oc t = print oc t
  let empty = empty ()
end
(* Types_by_scope *)

(* this function returns the type path of a message which is the
   packages followed by the enclosing message names and eventually
   the message name of the given type.

   If the type is an enum then [Failure] is raised.
   TODO: change [Failure] to a [Pb_exception.Compilation_error] *)
let type_path_of_type { Tt.scope; spec; _ } =
  match spec with
  | Tt.Enum _ -> assert false
  | Tt.Message { Tt.message_name; _ } ->
    let { Tt.packages; message_names } = scope in
    packages @ message_names @ [ message_name ]

(* this function returns all the scope to search for a type starting
   by the most innner one first.

   If [message_scope] = ['Msg1'; 'Msg2'] and [field_scope] = ['Msg3'] then
   the following scopes will be returned:
   [
     ['Msg1'; 'Msg2'; 'Msg3'];  // This would be the scope of the current msg
     ['Msg1'; 'Msg3'; ];        // Outer message scope
     ['Msg3'; ]                 // Top level scope
   ] *)
let compute_search_type_paths unresolved_field_type message_type_path =
  let { Pb_field_type.type_path; type_name = _; from_root } =
    unresolved_field_type
  in

  if from_root then
    [ type_path ]
  else (
    let rec loop type_paths = function
      | [] -> type_path :: type_paths
      | l -> loop ((l @ type_path) :: type_paths) (Pb_util.List.pop_last l)
    in
    List.rev @@ loop [] message_type_path
  )

(** this function ensure that the default value of the field is correct
   with respect to its type when this latter is a builtin one.

   in case the default value is invalid then an
   [Pb_exception.Compilation_error] is raised.

   Note that this function also does type coersion when the default value
   is an int and the builtin type is a float or double. *)
let resolve_builtin_type_field_default field_name builtin_type field_default =
  match field_default with
  | None -> None
  | Some constant ->
    (match builtin_type with
    | #Pb_field_type.builtin_type_floating_point ->
      (match constant with
      | Pb_option.Constant_int i ->
        Some (Pb_option.Constant_float (float_of_int i))
      | Pb_option.Constant_float _ -> Some constant
      | _ ->
        E.invalid_default_value ~field_name
          ~info:"invalid default type (float/int expected)" ())
    | #Pb_field_type.builtin_type_signed_int ->
      (match constant with
      | Pb_option.Constant_int _ -> Some constant
      | _ ->
        let info = "invalid default type (int expected)" in
        E.invalid_default_value ~field_name ~info ())
    | #Pb_field_type.builtin_type_unsigned_int ->
      (match constant with
      | Pb_option.Constant_int i ->
        if i >= 0 then
          Some constant
        else
          E.invalid_default_value ~field_name
            ~info:"negative default value for unsigned int" ()
      | _ ->
        E.invalid_default_value ~field_name
          ~info:"invalid default type (int expected)" ())
    | `Bool ->
      (match constant with
      | Pb_option.Constant_bool _ -> Some constant
      | _ ->
        let info = "invalid default type (bool expected)" in
        E.invalid_default_value ~field_name ~info ())
    | `String ->
      (match constant with
      | Pb_option.Constant_string _ -> Some constant
      | _ ->
        let info = "invalid default type (string expected)" in
        E.invalid_default_value ~field_name ~info ())
    | `Bytes ->
      E.invalid_default_value ~field_name
        ~info:"default value not supported for bytes" ())

(** This function verifies that the default value for a used defined
   field is correct.

   In protobuf, only field which type is [enum] can have a default
   value. Field of type [message] can't.

   In the case the field is an enum then the default value must be
   a litteral value which is one of the enum value.

   If the validation fails then [Pb_exception.Compilation_error] is raised *)
let resolve_enum_field_default field_name type_ field_default =
  match field_default with
  | None -> None
  | Some (Pb_option.Constant_literal default_enum_value as constant) ->
    let { Tt.spec; _ } = type_ in
    (match spec with
    | Tt.Message _ ->
      let info =
        "field of type message cannot have a " ^ "default litteral value"
      in
      E.invalid_default_value ~field_name ~info ()
    | Tt.Enum { Tt.enum_values; _ } ->
      let default_enum_value =
        Pb_util.List.apply_until
          (fun enum ->
            let { Tt.enum_value_name; _ } = enum in
            if enum_value_name = default_enum_value then
              Some enum_value_name
            else
              None)
          enum_values
      in
      (match default_enum_value with
      | Some _ -> Some constant
      | None ->
        E.invalid_default_value ~field_name ~info:"Invalid default enum value"
          ()))
  | _ ->
    E.invalid_default_value ~field_name
      ~info:"default value not supported for message" ()

let resolve_user_defined_type t field_name
    (unresolved_field_type : Pb_field_type.unresolved) field_default
    message_type_path : int * _ =
  let { Pb_field_type.type_name; _ } = unresolved_field_type in
  let rec aux = function
    | [] -> raise Not_found
    | type_path :: tl ->
      (match Types_by_scope.find t type_path type_name with
      | type_ ->
        let id = type_.Tt.id in
        let field_default =
          resolve_enum_field_default field_name type_ field_default
        in
        id, field_default
      | exception Not_found -> aux tl)
  in
  aux (compute_search_type_paths unresolved_field_type message_type_path)

(** this function resolves both the type and the defaut value of a field
   type. Note that it is necessary to verify both at the same time since
   the default value must be of the same type as the field type in order
   to be valid.

   For builtin the type the validation is trivial while for user defined
   type a search must be done for all the possible scopes the type
   might be in. *)
let resolve_field_type_and_default t field_name field_type field_default
    message_type_path =
  match field_type with
  | #Pb_field_type.builtin_type as builtin_type ->
    let field_default =
      resolve_builtin_type_field_default field_name builtin_type field_default
    in
    builtin_type, field_default
  | `User_defined unresolved_field_type ->
    let id, default =
      resolve_user_defined_type t field_name unresolved_field_type field_default
        message_type_path
    in
    `User_defined id, default

(** this function resolves all the field type of the given type *)
let resolve_type t type_ : int Tt.proto_type =
  let { Tt.scope; id; file_name; file_options; spec } = type_ in

  match spec with
  | Tt.Enum e -> { Tt.scope; id; file_name; file_options; spec = Tt.Enum e }
  | Tt.Message message ->
    let { Tt.extensions; message_options; message_name; message_body } =
      message
    in

    let message_type_path = type_path_of_type type_ in

    let resolve_field field =
      let { Tt.field_parsed; field_type; field_default; field_options } =
        field
      in
      let field_name = field_parsed.Pt.field_name in
      let field_type, field_default =
        let do_resolve () =
          resolve_field_type_and_default t field_name field_type field_default
            message_type_path
        in
        match do_resolve () with
        | ret -> ret
        | exception Not_found ->
          E.unresolved_type ~field_name ~type_:"" ~message_name ()
      in
      { Tt.field_parsed; field_type; field_default; field_options }
    in

    let message_body =
      List.map
        (function
          | Tt.Message_field field -> Tt.Message_field (resolve_field field)
          | Tt.Message_oneof_field oneof ->
            let { Tt.oneof_name; oneof_fields; oneof_options } = oneof in
            let oneof_fields = List.map resolve_field oneof_fields in
            Tt.Message_oneof_field
              { Tt.oneof_name; oneof_fields; oneof_options }
          | Tt.Message_map_field map ->
            let {
              Tt.map_name;
              map_number;
              map_key_type;
              map_value_type;
              map_options;
            } =
              map
            in

            let field_default = None in

            let map_value_type, _ =
              resolve_field_type_and_default t map_name map_value_type
                field_default message_type_path
            in

            Tt.Message_map_field
              {
                Tt.map_name;
                map_number;
                map_options;
                map_key_type;
                map_value_type;
              })
        message_body
    in

    let spec =
      Tt.Message { Tt.extensions; message_options; message_name; message_body }
    in
    { Tt.scope; id; file_name; file_options; spec }

let resolve_types types : Types_by_scope.t * _ list =
  let t = List.fold_left Types_by_scope.add Types_by_scope.empty types in
  t, List.map (resolve_type t) types

let resolve_service t (service : _ Tt.service) : _ Tt.service =
  let resolve_ty ~rpc_name ~name ty : Pb_field_type.resolved =
    let rpc_type, _field_default =
      let do_resolve () =
        resolve_user_defined_type t name ty None service.service_packages
      in
      match do_resolve () with
      | ret -> ret
      | exception Not_found ->
        E.unresolved_type ~field_name:name ~type_:"" ~message_name:rpc_name ()
    in
    rpc_type
  in

  let resolve_rpc (rpc : _ Tt.rpc) : _ Tt.rpc =
    let rpc_name = rpc.rpc_name in
    {
      rpc with
      Tt.rpc_req = resolve_ty ~rpc_name ~name:"req" rpc.rpc_req;
      rpc_res = resolve_ty ~rpc_name ~name:"res" rpc.rpc_res;
    }
  in

  { service with Tt.service_body = List.map resolve_rpc service.service_body }

let resolve_services (t : Types_by_scope.t) (services : _ Tt.service list) :
    _ Tt.service list =
  List.map (resolve_service t) services
OCaml

Innovation. Community. Security.