package scid

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

Source file scid.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
(*---------------------------------------------------------------------------
   Copyright (c) 2017 Vincent Bernardoff. All rights reserved.
   Distributed under the ISC license, see terms at the end of the file.
   %%NAME%% %%VERSION%%
  ---------------------------------------------------------------------------*)

let io_buffer_size = 4096

module ISet = Set.Make(struct type t = int let compare = Pervasives.compare end)

module H = struct
  type state =
    | Checking of int
    | Valid
    | Invalid

  let size = 56

  let init = function
  | 0 -> 'S' | 1 -> 'C' | 2 -> 'I' | 3 -> 'D'
  | 4 -> '8' | 8 -> '(' | 12 -> '\001'
  | _ -> '\000'

  let valid = String.init size init

  let char_valid c = function
  | 0 -> c = 'S' | 1 -> c = 'C' | 2 -> c = 'I' | 3 -> c = 'D'
  | 4 -> c = '8' | 8 -> c = '(' | 12 -> c = '\001'
  | n when ISet.(mem n (of_list [5;6;7;9;10;11])) -> c = '\000'
  | _ -> true

  let check b pos =
    try for i = pos to pos + size - 1 do
        if not @@ char_valid (Bytes.get b i) (i-pos)
        then failwith (Printf.sprintf "Char at pos %d should not be %C" i (Bytes.get b i))
      done; (Result.Ok ())
    with Failure s -> (Result.Error s)

  let write ?(start=0) ?(len=size) b pos =
    if pos + len > Bytes.length b then invalid_arg "bounds";
    String.blit valid start b pos len
end

module R = struct
  type t = {
    datetime: float;
    o: float;
    h: float;
    l: float;
    c: float;
    num_trades: int64;
    total_volume: int64;
    bid_volume: int64;
    ask_volume: int64;
  }

  let pp fmt { datetime ; o ; h ; l ; c ; num_trades ;
               total_volume ; bid_volume ; ask_volume ; } =
    Format.fprintf fmt ".2%f %f %f %f %f %Ld %Ld %Ld %Ld"
      datetime o h l c num_trades total_volume bid_volume ask_volume

  let size = 40

  let mk_with_buf bufsize f =
    let tmpbuf = Bytes.make bufsize '\000' in
    f tmpbuf

  let read buf pos =
    let open EndianBytes.LittleEndian in
    let get_uint32 tmpbuf b p =
      Bytes.blit b p tmpbuf 0 4;
      get_int64 tmpbuf 0 in
    let get_uint32 = mk_with_buf 8 get_uint32 in
    let datetime = get_int64 buf pos |> Int64.float_of_bits in
    let o = get_int32 buf (pos+8) |> Int32.float_of_bits in
    let h = get_int32 buf (pos+12) |> Int32.float_of_bits in
    let l = get_int32 buf (pos+16) |> Int32.float_of_bits in
    let c = get_int32 buf (pos+20) |> Int32.float_of_bits in
    let num_trades = get_uint32 buf (pos+24) in
    let total_volume = get_uint32 buf (pos+28) in
    let bid_volume = get_uint32 buf (pos+32) in
    let ask_volume = get_uint32 buf (pos+36) in
    {
      datetime; o; h; l; c; num_trades; total_volume; bid_volume; ask_volume
    }

  let write r buf pos =
    let open EndianBytes.LittleEndian in
    let set_int64_uint32 tmpbuf b p i =
      set_int64 tmpbuf 0 i;
      Bytes.blit tmpbuf 0 b p 4 in
    let set_int64_uint32 = mk_with_buf 8 set_int64_uint32 in
    r.datetime |> Int64.bits_of_float |> set_int64 buf pos;
    r.o |> Int32.bits_of_float |> set_int32 buf (pos+8);
    r.h |> Int32.bits_of_float |> set_int32 buf (pos+12);
    r.l |> Int32.bits_of_float |> set_int32 buf (pos+16);
    r.c |> Int32.bits_of_float |> set_int32 buf (pos+20);
    r.num_trades |> set_int64_uint32 buf (pos+24);
    r.total_volume |> set_int64_uint32 buf (pos+28);
    r.bid_volume |> set_int64_uint32 buf (pos+32);
    r.ask_volume |> set_int64_uint32 buf (pos+36)

  let compare r r' =
    let b = Bytes.make size '\000' in
    let b' = Bytes.make size '\000' in
    write r b 0;
    write r' b' 0;
    compare b b'
end

module D = struct
  type src =
    | Channel of in_channel
    | String of string
    | Manual

  type error =
    | Header_invalid of string
    | Eof of string

  let pp_error fmt = function
  | Header_invalid msg -> Format.fprintf fmt "Header invalid: %s" msg
  | Eof msg -> Format.fprintf fmt "End of file: %s" msg

  type decode_result =
    | R of R.t
    | Await
    | End
    | Error of error

  type t = {
    src: src;
    partial: Bytes.t;
    mutable p_pos: int;
    mutable eoi: bool;
    mutable st: [ `H | `R ];
    mutable buf: Bytes.t;
    mutable pos: int;
    mutable max: int;
    mutable k: t -> decode_result;
  }

  let eoi d =
    d.buf <- Bytes.create 0; d.pos <- max_int; d.max <- 0; d.eoi <- true
  module Manual = struct
    let refill_string d b p l =
      if p < 0 || l < 0 || p + l > String.length b then invalid_arg "bounds";
      if l = 0 then eoi d else
        d.buf <- Bytes.unsafe_of_string b; d.pos <- p ; d.max <- p + l - 1
    let refill_bytes d b p l =
      if p < 0 || l < 0 || p + l > Bytes.length b then invalid_arg "bounds";
      if l = 0 then eoi d else d.buf <- b; d.pos <- p ; d.max <- p + l - 1
  end

  let refill k d =
    match d.src with
    | String _ -> eoi d; k d
    | Manual -> d.k <- k; Await
    | Channel ic ->
      let rc = input ic d.buf 0 (Bytes.length d.buf) in
      Manual.refill_bytes d d.buf 0 rc; k d

  let rec r_header k d =
    let can_read = d.max - d.pos + 1 in
    assert (d.st = `H);
    if d.p_pos = 0 && can_read >= H.size then
      let pos = d.pos in d.pos <- d.pos + H.size; d.st <- `R;
      match H.check d.buf pos with
      | Result.Ok () -> _decode k d
      | Error _ -> k d @@ Error (Header_invalid Bytes.(sub d.buf pos H.size |> unsafe_to_string))
    else
      let len = min can_read (H.size - d.p_pos) in
      Bytes.blit d.buf d.pos d.partial d.p_pos len;
      d.pos <- d.pos + len;
      d.p_pos <- (d.p_pos + len) mod H.size;
      if d.p_pos = 0 then begin d.st <- `R;
        match H.check d.partial 0 with
        | Result.Ok () -> _decode k d
        | Error _ -> k d @@ Error (Header_invalid Bytes.(sub d.partial 0 H.size |> unsafe_to_string)) end
      else _decode k d

  and r_record k d =
    let can_read = d.max - d.pos + 1 in
    if d.p_pos = 0 && can_read >= R.size then
      let pos = d.pos in d.pos <- d.pos + R.size; k d (R (R.read d.buf pos))
    else
      let len = min can_read (R.size - d.p_pos) in
      Bytes.blit d.buf d.pos d.partial d.p_pos len;
      d.pos <- d.pos + len;
      d.p_pos <- (d.p_pos + len) mod R.size;
      if d.p_pos = 0 then k d (R (R.read d.partial 0)) else _decode k d

  and _decode k d =
    if d.eoi then
      match d.st with
      | `H when d.p_pos = 0 -> End
      | `R when d.p_pos = 0 -> End
      | _ ->
        let l = d.p_pos in
        d.p_pos <- 0;
        (Error (Eof Bytes.(sub d.partial 0 l |> unsafe_to_string)))
    else if d.max - d.pos + 1 < 1 then refill (_decode k) d
    else if d.st = `H then r_header k d
    else r_record k d

  let rec ret d result = d.k <- _decode ret; result
  let make src =
    let buf, pos, max = match src with
    | Manual -> Bytes.create 0, 1, 0
    | Channel _ -> Bytes.create io_buffer_size, 1, 0
    | String s -> Bytes.unsafe_of_string s, 0, String.length s - 1
    in
    { src = src; eoi = false;
      partial = Bytes.create H.size; p_pos = 0;
      st = `H; buf; pos; max;
      k = _decode ret
    }

  let decode d = d.k d
end

(* Encode *)

module E = struct
  type dst =
    | Channel of out_channel
    | Buffer of Buffer.t
    | Manual

  type encode =
    | Await
    | End
    | R of R.t

  type t = {
    dst: dst;
    partial: Bytes.t;
    mutable p_pos: int;
    mutable st: [ `H | `R ];
    mutable buf : Bytes.t;
    mutable pos : int;
    mutable max : int;
    mutable k : t -> encode -> [ `Ok | `Partial ] }

  module Manual = struct
    let add_bytes e buf pos max =
      if pos < 0 || max < 0 || pos + max > Bytes.length buf then invalid_arg "bounds"
      else e.buf <- buf; e.pos <- pos; e.max <- pos + max - 1
    let rem e = e.max - e.pos + 1
  end

  let partial k e = function
  | Await -> k e
  | R _
  | End -> invalid_arg "cannot encode now, use Await first"

  let flush k e = match e.dst with
  | Manual -> e.k <- partial k; `Partial
  | Buffer b -> Buffer.add_subbytes b e.buf 0 e.pos; e.pos <- 0; k e
  | Channel oc -> output oc e.buf 0 e.pos; e.pos <- 0; k e

  let rec encode_h k e =
    let can_write = e.max - e.pos + 1 in
    if can_write < 1 then flush (encode_h k) e
    else begin
      assert (e.st <> `R);
      if e.p_pos = 0 && can_write >= H.size
      then (H.write e.buf e.pos; e.pos <- e.pos + H.size; e.st <- `R; k e)
      else
        let len = min can_write (H.size - e.p_pos) in
        H.write e.buf e.pos ~start:e.p_pos ~len;
        e.pos <- e.pos + len;
        e.p_pos <- (e.p_pos + len) mod H.size;
        if e.p_pos = 0 then (e.st <- `R; k e) else (encode_h k e)
    end

  let rec encode_r k r e =
    let can_write = e.max - e.pos + 1 in
    if can_write < 1 then flush (encode_r k r) e
    else begin
      assert (e.st = `R);
      if e.p_pos = 0 && can_write >= R.size
      then (R.write r e.buf e.pos; e.pos <- e.pos + R.size; k e)
      else
        let len = min can_write (R.size - e.p_pos) in
        if e.p_pos = 0 then R.write r e.partial 0;
        Bytes.blit e.partial e.p_pos e.buf e.pos len;
        e.pos <- e.pos + len;
        e.p_pos <- (e.p_pos + len) mod R.size;
        if e.p_pos = 0 then (k e) else (encode_r k r e)
    end

  let rec _encode k e v = match v with
  | End -> flush k e
  | Await -> k e
  | R r ->
    if e.st = `H then encode_h (encode_r k r) e
    else encode_r k r e

  let rec ret e = e.k <- _encode ret; `Ok
  let make dst =
    let buf, pos, max = match dst with
    | Manual -> Bytes.create 0, 1, 0
    | Channel _
    | Buffer _ -> Bytes.create io_buffer_size, 0, io_buffer_size - 1
    in
    { dst = dst; buf; pos; max; partial = Bytes.create H.size; p_pos = 0;
      st = `H; k = _encode ret }

  let encode e v = e.k e (v :> encode)
end

(*---------------------------------------------------------------------------
   Copyright (c) 2017 Vincent Bernardoff

   Permission to use, copy, modify, and/or distribute this software for any
   purpose with or without fee is hereby granted, provided that the above
   copyright notice and this permission notice appear in all copies.

   THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
   WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
   MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
   ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
   WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
   ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
   OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  ---------------------------------------------------------------------------*)