package ocaml-protoc

  1. Overview
  2. Docs
Pure OCaml compiler for .proto files

Install

Dune Dependency

Authors

Maintainers

Sources

ocaml-protoc-3.1.1.tbz
sha256=c5657fcbfcbaea361beb847f72b8a6a6f36ce9e773bf285b278a0da75f988fbc
sha512=ea86d04b6293eba48360409049f907fc3e73138ec434b5d1894a2dcdaa0478f6f5a1d13f1ba87c553ddf6806a618525f621d2af862b495ce3426242a3a42e339

doc/src/ocaml-protoc.compiler-lib/pb_field_type.ml.html

Source file pb_field_type.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
(*
  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.

*)

type type_path = string list

type unresolved = {
  type_path: type_path;
  type_name: string;
  from_root: bool;
      (** from_root indicates that the scope for the type is
                         from the root of the type system. (ie starts with '.')
                      *)
}

type resolved = int

type builtin_type_floating_point =
  [ `Double
  | `Float
  ]

type builtin_type_unsigned_int =
  [ `Uint32
  | `Uint64
  ]

type builtin_type_signed_int =
  [ `Int32
  | `Int64
  | `Sint32
  | `Sint64
  | `Fixed32
  | `Fixed64
  | `Sfixed32
  | `Sfixed64
  ]

type builtin_type_int =
  [ builtin_type_unsigned_int
  | builtin_type_signed_int
  ]

type map_key_type =
  [ builtin_type_int
  | `Bool
  | `String
  ]

type builtin_type =
  [ builtin_type_floating_point
  | builtin_type_int
  | `Bool
  | `String
  | `Bytes
  ]

type 'a t =
  [ builtin_type
  | `User_defined of 'a (* Message or Enum type *)
  ]

type unresolved_t = unresolved t
type resolved_t = resolved t

let unresolved_of_string s =
  match Pb_util.rev_split_by_char '.' s with
  | [] -> Pb_exception.programmatic_error Pb_exception.Invalid_string_split
  | hd :: tl ->
    {
      type_path = List.rev tl;
      type_name = hd;
      from_root = String.get s 0 = '.';
    }

let parse = function
  | "double" -> `Double
  | "float" -> `Float
  | "int32" -> `Int32
  | "int64" -> `Int64
  | "uint32" -> `Uint32
  | "uint64" -> `Uint64
  | "sint32" -> `Sint32
  | "sint64" -> `Sint64
  | "fixed32" -> `Fixed32
  | "fixed64" -> `Fixed64
  | "sfixed32" -> `Sfixed32
  | "sfixed64" -> `Sfixed64
  | "bool" -> `Bool
  | "string" -> `String
  | "bytes" -> `Bytes
  | s -> `User_defined (unresolved_of_string s)

open Format

let rec pp_type_path ppf path =
  match path with
  | [] -> fprintf ppf "(empty)"
  | [ name ] -> fprintf ppf "%S" name
  | name :: rest ->
    fprintf ppf "%S." name;
    pp_type_path ppf rest

let pp_builtin_type_floating_point ppf t =
  match t with
  | `Double -> fprintf ppf "Double"
  | `Float -> fprintf ppf "Float"

let pp_builtin_type_unsigned_int ppf t =
  match t with
  | `Uint32 -> fprintf ppf "Uint32"
  | `Uint64 -> fprintf ppf "Uint64"

let pp_builtin_type_signed_int ppf t =
  match t with
  | `Int32 -> fprintf ppf "Int32"
  | `Int64 -> fprintf ppf "Int64"
  | `Sint32 -> fprintf ppf "Sint32"
  | `Sint64 -> fprintf ppf "Sint64"
  | `Fixed32 -> fprintf ppf "Fixed32"
  | `Fixed64 -> fprintf ppf "Fixed64"
  | `Sfixed32 -> fprintf ppf "Sfixed32"
  | `Sfixed64 -> fprintf ppf "Sfixed64"

let pp_builtin_type_int ppf t =
  match t with
  | #builtin_type_unsigned_int as unsigned_int ->
    pp_builtin_type_unsigned_int ppf unsigned_int
  | #builtin_type_signed_int as signed_int ->
    pp_builtin_type_signed_int ppf signed_int

let pp_map_key_type ppf t =
  match t with
  | #builtin_type_int as int_type -> pp_builtin_type_int ppf int_type
  | `Bool -> fprintf ppf "Bool"
  | `String -> fprintf ppf "String"

let pp_builtin_type ppf t =
  match t with
  | #builtin_type_floating_point as float_type ->
    pp_builtin_type_floating_point ppf float_type
  | #builtin_type_int as int_type -> pp_builtin_type_int ppf int_type
  | `Bool -> fprintf ppf "Bool"
  | `String -> fprintf ppf "String"
  | `Bytes -> fprintf ppf "Bytes"

let pp_unresolved ppf unresolved =
  fprintf ppf "{@[<v 2>@,type_path: %a;@,type_name: %S;@,from_root: %b@,@]}"
    pp_type_path unresolved.type_path unresolved.type_name unresolved.from_root

let pp_resolved ppf resolved = fprintf ppf "%d" resolved

let pp_type pp_user_defined ppf t =
  match t with
  | #builtin_type as built_in_type -> pp_builtin_type ppf built_in_type
  | `User_defined user_defined -> pp_user_defined ppf user_defined

let pp_unresolved_t ppf t = pp_type pp_unresolved ppf t
let pp_resolved_t ppf t = pp_type pp_resolved ppf t
OCaml

Innovation. Community. Security.