package vlt

  1. Overview
  2. Docs
A variant of Bolt logging tool

Install

dune-project
 Dependency

Authors

Maintainers

Sources

v0.2.5.tar.gz
sha256=756a6cba94204cda45ee767ca5f7e52ec321873dd53de48025c32dba1e03de24
md5=c0f22efcafa1119a9c82ffd9d7422da2

doc/src/vlt/mode.ml.html

Source file mode.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
(*
 * This file is part of Bolt.
 * Copyright (C) 2009-2012 Xavier Clerc.
 *
 * Bolt is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * Bolt is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *)


type error =
  | Invalid_condition_string of string

let string_of_error = function
  | Invalid_condition_string s -> Printf.sprintf "invalid condition string %S" s

exception Exception of error

let () =
  Printexc.register_printer
    (function
      | Exception error -> Some (string_of_error error)
      | _ -> None)

let fail error =
  raise (Exception error)

type condition =
  | Events of int
  | Bytes of int
  | Seconds of int

let condition_of_string s =
  let fail () = fail (Invalid_condition_string s) in
  let len = String.length s in
  if len > 1 then begin
    let arg =
      try
        int_of_string (String.sub s 0 (pred len))
      with _ -> fail () in
    match s.[pred len] with
    | 'e' -> Events arg
    | 'b' -> Bytes arg
    | 's' -> Seconds arg
    | _ -> fail ()
  end else
    fail ()

class type t =
  object
    method deliver : Output.impl -> string -> unit
    method flush : Output.impl -> unit
  end

let direct () =
  object
    method deliver o s =
      o#write s
    method flush _ =
      ()
  end

let memory () =
  object
    val buff = Buffer.create 1024
    method deliver _ s =
      if Buffer.length buff > 0 then Buffer.add_char buff '\n';
      Buffer.add_string buff s
    method flush o =
      o#write (Buffer.contents buff);
      Buffer.clear buff
  end

class virtual buffered =
  object (self)
    val buff = Buffer.create 1024
    method virtual update_condition : string -> unit
    method virtual reset_condition : unit
    method virtual condition : bool
    method deliver (o : Output.impl) s =
      self#update_condition s;
      if Buffer.length buff > 0 then Buffer.add_char buff '\n';
      Buffer.add_string buff s;
      if self#condition then self#flush o
    method flush o =
      o#write (Buffer.contents buff);
      Buffer.clear buff;
      self#reset_condition
  end

let retained s =
  let res = match condition_of_string s with
  | Events x ->
      object
        inherit buffered  
        val mutable events = 0
        method update_condition _ = events <- events + 1
        method reset_condition = events <- 0
        method condition = events >= x
      end
  | Bytes x ->
      object
        inherit buffered  
        method update_condition _ = ()
        method reset_condition = ()
        method condition = Buffer.length buff >= x
      end
  | Seconds x ->
      let x = float_of_int x in
      object
        inherit buffered  
        val mutable last = Unix.gettimeofday ()
        method update_condition _ = ()
        method reset_condition = last <- Unix.gettimeofday ()
        method condition = let now = Unix.gettimeofday () in now -. last > x
      end in
  (res :> t)