Source file mt.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
type 'x stream = unit -> 'x option
type buffer = string * int * int
type field = Field_name.t * Unstructured.t

let iter ~f buf ~off ~len =
  for i = off to len - 1 do
    f buf.[i]
  done

let to_quoted_printable : ?length:int -> buffer stream -> buffer stream =
 fun ?length:(chunk_length = 4096) stream ->
  let chunk = Bytes.create chunk_length in
  let encoder = Pecu.encoder `Manual in
  let queue = Ke.Rke.create ~capacity:128 Bigarray.Int in

  let rec emit () =
    Ke.Rke.cons queue 256;
    let len = chunk_length - Pecu.dst_rem encoder in
    Some (Bytes.unsafe_to_string chunk, 0, len)
  and pending = function
    | `Ok -> go ()
    | `Partial ->
        let len = chunk_length - Pecu.dst_rem encoder in
        Some (Bytes.unsafe_to_string chunk, 0, len)
  and go () =
    match Ke.Rke.pop_exn queue with
    | 256 (* Await *) -> (
        Pecu.dst encoder chunk 0 chunk_length;
        match Pecu.encode encoder `Await with
        | `Ok -> (go [@tailcall]) ()
        | `Partial -> (emit [@tailcall]) ())
    (* XXX(dinosaure): [257] was an old state which is not used anymore. *)
    | 258 (* End *) ->
        Ke.Rke.cons queue 259;
        (pending [@tailcall]) (Pecu.encode encoder `End)
    | 259 ->
        assert (Pecu.encode encoder `Await = `Ok);
        Ke.Rke.cons queue 259;
        None
    | 260 -> (
        match Pecu.encode encoder `Line_break with
        | `Ok -> (go [@tailcall]) ()
        | `Partial -> (emit [@tailcall]) ())
    | chr -> (
        match Pecu.encode encoder (`Char (Char.chr chr)) with
        | `Ok -> (go [@tailcall]) ()
        | `Partial -> (emit [@tailcall]) ())
    | exception Ke.Rke.Empty -> (
        match stream () with
        | Some (buf, off, len) ->
            iter ~f:(fun chr -> Ke.Rke.push queue (Char.code chr)) buf ~off ~len;
            Ke.Rke.push queue 260;
            (go [@tailcall]) ()
        | None ->
            Ke.Rke.push queue 258;
            (go [@tailcall]) ())
  in

  Pecu.dst encoder chunk 0 chunk_length;
  go

let to_base64 : ?length:int -> buffer stream -> buffer stream =
 fun ?length:(chunk_length = 4096) stream ->
  let chunk = Bytes.create chunk_length in
  let encoder = Base64_rfc2045.encoder `Manual in
  let queue = Ke.Rke.create ~capacity:128 Bigarray.Int in

  let rec emit () =
    Ke.Rke.cons queue 256;
    let len = chunk_length - Base64_rfc2045.dst_rem encoder in
    Some (Bytes.unsafe_to_string chunk, 0, len)
  and pending = function
    | `Ok -> (go [@tailcall]) ()
    | `Partial ->
        let len = chunk_length - Base64_rfc2045.dst_rem encoder in
        Some (Bytes.unsafe_to_string chunk, 0, len)
  and go () =
    match Ke.Rke.pop_exn queue with
    | 256 (* Await *) -> (
        Base64_rfc2045.dst encoder chunk 0 chunk_length;
        match Base64_rfc2045.encode encoder `Await with
        | `Ok -> (go [@tailcall]) ()
        | `Partial -> (emit [@tailcall]) ())
    | 257 (* End *) ->
        Ke.Rke.cons queue 258;
        (pending [@tailcall]) (Base64_rfc2045.encode encoder `End)
    | 258 ->
        assert (Base64_rfc2045.encode encoder `Await = `Ok);
        Ke.Rke.cons queue 258;
        None
    | chr -> (
        match Base64_rfc2045.encode encoder (`Char (Char.chr chr)) with
        | `Ok -> (go [@tailcall]) ()
        | `Partial -> (emit [@tailcall]) ())
    | exception Ke.Rke.Empty -> (
        match stream () with
        | Some (buf, off, len) ->
            iter ~f:(fun chr -> Ke.Rke.push queue (Char.code chr)) buf ~off ~len;
            (go [@tailcall]) ()
        | None ->
            Ke.Rke.push queue 257;
            (go [@tailcall]) ())
  in

  Base64_rfc2045.dst encoder chunk 0 chunk_length;
  go

type part = { header : Header.t; body : buffer stream }
type multipart = { header : Header.t; parts : part list }

let part ?(encoding = true) ?(header = Header.empty) stream =
  let content_encoding = Header.content_encoding header in
  let stream =
    if encoding then
      match content_encoding with
      | `Quoted_printable -> to_quoted_printable stream
      | `Base64 -> to_base64 stream
      | `Bit8 | `Binary | `Bit7 -> stream
      | `Ietf_token _ | `X_token _ -> assert false
    else stream
  in
  (* XXX(dinosaure): TODO [`Bit7], IETF and extension encoding. *)
  { header; body = stream }

let multipart_content_default =
  let open Content_type in
  Content_type.make `Multipart (Subtype.v `Multipart "mixed") Parameters.empty

type 'g rng = ?g:'g -> int -> string

external random_seed : unit -> int array = "caml_sys_random_seed"

let rng ?(g = random_seed ()) n =
  Random.full_init g;
  let res = Bytes.create n in
  for i = 0 to n - 1 do
    Bytes.set res i (Random.int 256 |> Char.chr)
  done;
  Bytes.unsafe_to_string res |> Base64.encode_exn

let multipart ?g ~rng ?(header = Header.empty) ?boundary parts =
  let boundary =
    match boundary with Some boundary -> boundary | None -> rng ?g 8
  in
  let boundary = Content_type.Parameters.v boundary in
  let content_type =
    if Header.exists Field_name.content_type header then
      Header.content_type header
    else multipart_content_default
  in
  let content_type =
    match Content_type.boundary content_type with
    | None -> Content_type.with_parameter content_type ("boundary", boundary)
    | Some _ -> content_type
  in
  let header =
    Header.replace Field_name.content_type (Field.Content, content_type) header
  in
  { header; parts }

let concat s0 s1 =
  let c = ref s0 in
  let rec go () =
    match !c () with
    | Some x -> Some x
    | None ->
        if !c == s0 then (
          c := s1;
          go ())
        else None
  in
  go

let stream_of_string x =
  let once = ref false in
  let go () =
    if !once then None
    else (
      once := true;
      Some (x, 0, String.length x))
  in
  go

let stream_of_lines lines =
  let lines = ref lines in
  let go () =
    match !lines with
    | [] -> None
    | x :: r ->
        lines := r;
        Some (x ^ "\r\n", 0, String.length x + 2)
  in
  go

let crlf () = stream_of_string "\r\n"
let ( @ ) a b = concat a b

let map f stream =
  let go () = match stream () with Some v -> Some (f v) | None -> None in
  go

let stream_of_part { header; body } =
  let content_stream =
    map
      (fun s -> (s, 0, String.length s))
      (Prettym.to_stream Header.Encoder.header header)
  in
  content_stream @ crlf () @ body

(* XXX(dinosaure): hard part to compile multiple parts under one. *)
let multipart_as_part : multipart -> part =
 fun { header; parts } ->
  let boundary =
    match Content_type.boundary (Header.content_type header) with
    | Some v -> v
    | None -> failwith "Multipart MUST have a boundary"
    (* XXX(dinosaure): should never occur! *)
  in
  let beginner = Rfc2046.make_dash_boundary boundary ^ "\r\n" in
  (* XXX(dinosaure): we must respect one rule, emit line per line. *)
  let inner () = stream_of_lines [ ""; Rfc2046.make_dash_boundary boundary ] in
  let closer =
    stream_of_lines [ ""; Rfc2046.make_dash_boundary boundary ^ "--" ]
  in

  let rec go stream = function
    | [] -> assert false
    | [ x ] -> stream @ stream_of_part x @ closer
    | x :: r ->
        let stream = stream @ stream_of_part x @ inner () in
        go stream r
  in

  { header; body = go (stream_of_string beginner) parts }

type 'x body = Simple : part body | Multi : multipart body

let simple = Simple
let multi = Multi

type t = { header : Header.t; body : buffer stream }

let rec make : type a. Header.t -> a body -> a -> t =
 fun header kind v ->
  match kind with
  | Simple ->
      let ({ header = header'; body } : part) = v in
      { header = Header.concat header header'; body }
  | Multi ->
      let part = multipart_as_part v in
      make header Simple part

let to_stream t : buffer stream =
  let header_stream = Header.to_stream t.header in
  let body_stream = t.body in
  map (fun s -> (s, 0, String.length s)) header_stream @ crlf () @ body_stream