Source file b00.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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
(*---------------------------------------------------------------------------
   Copyright (c) 2018 The b0 programmers. All rights reserved.
   Distributed under the ISC license, see terms at the end of the file.
  ---------------------------------------------------------------------------*)

open B0_std
open Result.Syntax
open B000

module Tool = struct
  type env_vars = string list
  let tmp_vars = ["TMPDIR"; "TEMP"; "TMP"]

  type response_file =
    { to_file : Cmd.t -> string;
      cli : Fpath.t -> Cmd.t; }

  let response_file_of to_file cli = { to_file; cli }
  let args0 =
    let to_file cmd = String.concat "\x00" (Cmd.to_list cmd) ^ "\x00" in
    let cli f = Cmd.(atom "-args0" %% path f) in
    { to_file; cli }

  type t =
    { name : Fpath.t;
      vars : env_vars;
      unstamped_vars : env_vars;
      response_file : response_file option; }

  let v ?response_file ?(unstamped_vars = tmp_vars) ?(vars = []) name =
    { name; vars; unstamped_vars; response_file }

  let by_name ?response_file ?unstamped_vars ?vars name =
    match Fpath.is_seg name with
    | false -> Fmt.invalid_arg "%S: tool is not a path segment" name
    | true -> v ?unstamped_vars ?vars (Fpath.v name)

  let name t = t.name
  let vars t = t.vars
  let unstamped_vars t = t.unstamped_vars
  let response_file t = t.response_file
  let read_env t env =
    let add_var acc var = match String.Map.find var env with
    | v -> String.Map.add var v acc
    | exception Not_found -> acc
    in
    let stamped = List.fold_left add_var String.Map.empty t.vars in
    let all = List.fold_left add_var stamped t.unstamped_vars in
    all, stamped
end

module Env = struct
  (** Does it still make sense to have that separate ? *)

  type t = { env : Os.Env.t; forced_env : Os.Env.t; }
  let v ?(forced_env = String.Map.empty) env = { env; forced_env }
  let env e = e.env
  let forced_env e = e.forced_env
end

module Memo = struct
  type feedback =
  [ `Miss_tool of Tool.t * string
  | `Op_complete of Op.t ]

  type t = { c : ctx; m : memo }
  and ctx = { mark : Op.mark }
  and tool_lookup = t -> Cmd.tool -> (Fpath.t, string) result Fut.t
  and memo =
    { clock : Os.Mtime.counter;
      cpu_clock : Os.Cpu.Time.counter;
      feedback : feedback -> unit;
      cwd : Fpath.t;
      win_exe : bool;
      tool_lookup : tool_lookup;
      env : Env.t ;
      guard : Guard.t;
      reviver : Reviver.t;
      exec : Exec.t;
      mutable has_failures : bool;
      mutable op_id : int;
      mutable ops : Op.t list;
      mutable ready_roots : Fpath.Set.t; }

  (* Tool lookup *)

  let file_ready m p =
    (* XXX Maybe we should really test for file existence here and notify
       a failure if it doesn't exist. But also maybe we should
       introduce a stat cache and propagate it everywhere in B000.

       XXX maybe it would be better to have this as a build op but then
       we might not be that interested in repeated file_ready, e.g.
       done by multiple resolvers. Fundamentally ready_roots had
       to be added for correct "never became ready" error reports. *)
    Guard.set_file_ready m.m.guard p;
    m.m.ready_roots <- Fpath.Set.add p m.m.ready_roots

  let cache_lookup lookup =
    let cache = Hashtbl.create 91 in
    fun m tool -> match Hashtbl.find cache tool with
    | p -> p
    | exception Not_found ->
        let p = lookup m tool in Hashtbl.add cache tool p; p

  let tool_lookup_of_os_env ?sep ?(var = "PATH") env =
    let search_path = match String.Map.find var env with
    | exception Not_found -> "" | s -> s
    in
    match Fpath.list_of_search_path ?sep search_path with
    | Error _ as e -> fun _ _ -> Fut.return e
    | Ok search ->
        fun m t -> match Os.Cmd.get_tool ~win_exe:m.m.win_exe ~search t with
        | Error _ as e -> Fut.return e
        | Ok file as tool -> file_ready m file; Fut.return tool

  let create
      ?clock ?cpu_clock:cc ~feedback ~cwd ?(win_exe = Sys.win32)
      ?tool_lookup env guard reviver exec
    =
    let clock = match clock with None -> Os.Mtime.counter () | Some c -> c in
    let cpu_clock = match cc with
    | None -> Os.Cpu.Time.counter () | Some c -> c
    in
    let tool_lookup = cache_lookup @@ match tool_lookup with
    | None -> tool_lookup_of_os_env (Env.env env)
    | Some l -> l
    in
    let op_id = 0 and ops = [] in
    let c = { mark = "" } in
    let m =
      { clock; cpu_clock; feedback; cwd; win_exe; tool_lookup; env; guard;
        reviver; exec; has_failures = false; op_id; ops;
        ready_roots = Fpath.Set.empty }
    in
    { c; m }

  let memo
      ?(hash_fun = (module Hash.Xxh3_64 : Hash.T)) ?win_exe ?tool_lookup
      ?env ?cwd ?cache_dir ?trash_dir
      ?(jobs = B0_std.Os.Cpu.logical_count ()) ?feedback ()
    =
    let feedback = match feedback with | Some f -> f | None -> fun _ -> () in
    let fb_exec = (feedback :> Exec.feedback -> unit) in
    let fb_memo = (feedback :> feedback -> unit) in
    let clock = Os.Mtime.counter () in
    let env = match env with None -> Os.Env.current () | Some env -> Ok env in
    let cwd = match cwd with None -> Os.Dir.cwd () | Some cwd -> Ok cwd in
    Result.bind env @@ fun env ->
    Result.bind cwd @@ fun cwd ->
    (* FIXME remove these defaults. *)
    let cache_dir = match cache_dir with
    | None -> Fpath.(cwd / "_b0" / ".cache") | Some d -> d
    in
    let trash_dir = match trash_dir with
    | None -> Fpath.(cwd / "_b0" / ".trash") | Some d -> d
    in
    Result.bind (File_cache.create cache_dir) @@ fun cache ->
    let env = Env.v env in
    let guard = Guard.create () in
    let reviver = Reviver.create clock hash_fun cache in
    let trash = Trash.create trash_dir in
    let exec = Exec.create ~clock ~feedback:fb_exec ~trash ~jobs () in
    Ok (create ~clock ~feedback:fb_memo ~cwd ?win_exe ?tool_lookup env
          guard reviver exec)

  let clock m = m.m.clock
  let cpu_clock m = m.m.cpu_clock
  let win_exe m = m.m.win_exe
  let tool_lookup m = m.m.tool_lookup
  let env m = m.m.env
  let reviver m = m.m.reviver
  let guard m = m.m.guard
  let exec m = m.m.exec
  let trash m = Exec.trash m.m.exec
  let delete_trash ~block m = Trash.delete ~block (trash m)
  let hash_string m s = Reviver.hash_string m.m.reviver s
  let hash_file m f = Reviver.hash_file m.m.reviver f
  let ops m = m.m.ops
  let timestamp m = Os.Mtime.count m.m.clock
  let new_op_id m = let id = m.m.op_id in m.m.op_id <- id + 1; id
  let mark m = m.c.mark
  let with_mark m mark = { c = { mark }; m = m.m }
  let has_failures m = m.m.has_failures
  let add_op m o = m.m.ops <- o :: m.m.ops; Guard.add m.m.guard o

  exception Fail

  let notify_op m ?k kind msg =
    let k = match k with None -> None | Some k -> Some (fun o -> k ()) in
    let id = new_op_id m and created = timestamp m in
    let o = Op.Notify.v_op ~id ~mark:m.c.mark ~created ?k kind msg in
    add_op m o

  let notify_reviver_error m kind o e =
    notify_op m kind (Fmt.str "@[cache error: op %d: %s@]" (Op.id o) e)

  let fail m fmt =
    let k msg = notify_op m `Fail msg; raise Fail in
    Fmt.kstr k fmt

  let fail_if_error m = function Ok v -> v | Error e -> fail m "%s" e

  let invoke_k m ~pp_kind k v = try k v with
  | Stack_overflow as e -> raise e
  | Out_of_memory as e -> raise e
  | Sys.Break as e -> raise e
  | Fail -> ()
  | e ->
      let bt = Printexc.get_raw_backtrace () in
      let err =
        Fmt.str "@[<v>%a raised unexpectedly:@,%a@]"
          pp_kind v Fmt.exn_backtrace (e, bt)
      in
      notify_op m `Fail err

  let run_proc m k =
    let k = fun () -> ignore (k ()) in
    let pp_kind = Fmt.any "Procedure" in
    invoke_k m ~pp_kind k ()

  let continue_op m o =
    let pp_kind ppf o = Fmt.pf ppf "Continuation of operation %d" (Op.id o) in
    List.iter (Guard.set_file_ready m.m.guard) (Op.writes o);
    m.m.feedback (`Op_complete o);
    invoke_k m ~pp_kind Op.invoke_k o

  let discontinue_op m o =
    (* This is may not be entirely clear from the code :-( but any failed op
       means this function eventually gets called, hereby giving [has_failure]
       its appropriate semantics. *)
    m.m.has_failures <- true;
    List.iter (Guard.set_file_never m.m.guard) (Op.writes o);
    Op.discard_k o; m.m.feedback (`Op_complete o)

  let finish_op m o = match Op.status o with
  | Op.Done ->
      if Op.revived o then continue_op m o else
      begin match Hash.equal (Op.hash o) Hash.nil with
      | true ->
          begin match Op.did_not_write o with
          | [] -> continue_op m o
          | miss ->
              Op.set_status o (Op.Failed (Op.Missing_writes miss));
              discontinue_op m o
          end
      | false ->
          match Reviver.record m.m.reviver o with
          | Ok true -> continue_op m o
          | Ok false ->
              let miss = Op.did_not_write o in
              Op.set_status o (Op.Failed (Op.Missing_writes miss));
              discontinue_op m o
          | Error e ->
              begin match Op.did_not_write o with
              | [] -> notify_reviver_error m `Warn o e; continue_op m o
              | miss ->
                  Op.set_status o (Op.Failed (Op.Missing_writes miss));
                  discontinue_op m o
              end
      end
  | Op.Aborted | Op.Failed _ -> discontinue_op m o
  | Op.Waiting -> assert false

  let submit_op m o = match Op.status o with
  | Op.Aborted -> finish_op m o
  | Op.Waiting ->
      begin match Reviver.hash_op m.m.reviver o with
      | Error e ->
          (* XXX Add Op.Failed_hash failure instead of abusing Op.Exec ? *)
          let status = match Op.cannot_read o with
          | [] -> Op.Failed (Op.Exec (Some (Fmt.str "op hash error: %s" e)))
          | reads -> Op.Failed (Op.Missing_reads reads)
          in
          Op.set_status o status;
          discontinue_op m o
      | Ok hash ->
          Op.set_hash o hash;
          begin match Reviver.revive m.m.reviver o with
          | Ok false -> Exec.schedule m.m.exec o
          | Ok true -> finish_op m o
          | Error e ->
              (* It's not really interesting to warn here. Also entails
                 that cache format changes trips out people a bit less. *)
              notify_reviver_error m `Info o e; Exec.schedule m.m.exec o
          end
      end
  | Op.Done | Op.Failed _ -> assert false

  (* XXX we may blow stack continuations can add which stirs.
     XXX futures make it even worse. *)

  let rec stir ~block m = match Guard.allowed m.m.guard with
  | Some o -> submit_op m o; stir ~block m
  | None ->
      match Exec.collect m.m.exec ~block with
      | Some o -> finish_op m o; stir ~block m
      | None -> ()

  let add_op_and_stir m o = add_op m o; stir ~block:false m

  let status m =
    B000.Op.find_aggregate_error ~ready_roots:m.m.ready_roots (ops m)

  (* Futures *)

  (* Notifications *)

  let notify ?k m kind fmt = Fmt.kstr (notify_op m ?k kind) fmt
  let notify_if_error m kind ~use = function
  | Ok v -> v
  | Error e -> notify_op m kind e; use

  (* Files *)

  let read m file =
    let id = new_op_id m and created = timestamp m in
    let r, set = Fut.create () in
    let k o =
      let r = Op.Read.get o in
      let data = Op.Read.data r in
      Op.Read.discard_data r; set data
    in
    let o = Op.Read.v_op ~id ~mark:m.c.mark ~created ~k file in
    add_op_and_stir m o; r

  let wait_files m files =
    let id = new_op_id m and created = timestamp m in
    let r, set = Fut.create () in
    let k o = set () in
    let o = Op.Wait_files.v_op ~id ~mark:m.c.mark ~created ~k files in
    add_op_and_stir m o; r

  let write m ?(stamp = "") ?(reads = []) ?(mode = 0o644) write d =
    let id = new_op_id m and mark = m.c.mark and created = timestamp m in
    let o = Op.Write.v_op ~id ~mark ~created ~stamp ~reads ~mode ~write d in
    add_op_and_stir m o

  let copy m ?(mode = 0o644) ?linenum ~src dst =
    let id = new_op_id m and mark = m.c.mark and created = timestamp m in
    let o = Op.Copy.v_op ~id ~mark ~created ~mode ~linenum ~src dst in
    add_op_and_stir m o

  let mkdir m ?(mode = 0o755) dir =
    let id = new_op_id m and mark = m.c.mark and created = timestamp m in
    let r, set = Fut.create () in
    let k o = set () in
    let o = Op.Mkdir.v_op ~id ~mark ~created ~k ~mode dir in
    add_op_and_stir m o; r

  let delete m p =
    let id = new_op_id m and mark = m.c.mark and created = timestamp m in
    let r, set = Fut.create () in
    let k o = set () in
    let o = Op.Delete.v_op ~id ~mark ~created ~k p in
    add_op_and_stir m o;
    r

  (* FIXME That whole lookup approach stills seems quite involved.
     Try to simplify. *)

  type _tool =
  { tool : Tool.t;
    tool_file : Fpath.t;
    tool_env : Os.Env.assignments;
    tool_stamped_env : Os.Env.assignments; }

  type tool =
  | Miss of Tool.t * string
  | Tool of _tool

  type cmd = { cmd_tool : tool Fut.t; cmd_args : Cmd.t }

  let tool_env m t =
    let env = Env.env m.m.env in
    let tool_env, stamped = Tool.read_env t env in
    let forced_env = Env.forced_env m.m.env in
    let tool_env = Os.Env.override tool_env ~by:forced_env in
    let stamped = Os.Env.override stamped ~by:forced_env in
    tool_env, stamped

  let spawn_env m cmd_tool = function
  | None -> cmd_tool.tool_env, cmd_tool.tool_stamped_env
  | Some spawn_env ->
      let env = Env.env m.m.env in
      let tool_env, stamped = Tool.read_env cmd_tool.tool env in
      let forced_env = Env.forced_env m.m.env in
      let tool_env = Os.Env.override tool_env ~by:spawn_env in
      let tool_env = Os.Env.override tool_env ~by:forced_env in
      let stamped = Os.Env.override stamped ~by:spawn_env in
      let stamped = Os.Env.override stamped ~by:forced_env in
      Os.Env.to_assignments tool_env, Os.Env.to_assignments stamped

  let tool m tool =
    let cmd_tool =
      let name, is_path =
        let name = Fpath.to_string (Tool.name tool) in
        let name =
          let suffix = ".exe" in
          if not m.m.win_exe || String.ends_with ~suffix name then name else
          name ^ suffix
        in
        Fpath.v name, String.contains name Fpath.dir_sep_char
      in
      let tool_file = match is_path with
      | true -> Fut.return (Ok name)
      | false -> m.m.tool_lookup m name
      in
      Fut.bind tool_file @@ function
      | Error e -> Fut.return (Miss (tool, e))
      | Ok tool_file ->
          let tool_env, tool_stamped_env = tool_env m tool in
          let tool_env = Os.Env.to_assignments tool_env in
          let tool_stamped_env = Os.Env.to_assignments tool_stamped_env in
          Fut.return @@
          Tool { tool; tool_file; tool_env; tool_stamped_env }
    in
    fun cmd_args -> { cmd_tool; cmd_args }

  let tool_opt m t = (* FIXME this does not do the same business as tool *)
    Fut.bind (m.m.tool_lookup m (Tool.name t)) @@ function
    | Error e (* FIXME distinguish no lookup from errors *) ->
        Fut.return None
    | Ok _ -> Fut.return (Some (tool m t))

  let _spawn
      m ?(stamp = "") ?(reads = []) ?(writes = []) ?writes_manifest_root ?env
      ?cwd ?stdin ?(stdout = `Ui) ?(stderr = `Ui) ?(success_exits = [0])
      ?post_exec ?k cmd
    =
    Fut.await cmd.cmd_tool @@ function
    | Miss (tool, e) -> m.m.feedback (`Miss_tool (tool, e))
    | Tool tool ->
        let id = new_op_id m and created = timestamp m in
        let reads =
          (* XXX should we do this at a lower level ? *)
          tool.tool_file :: reads
        in
        let env, stamped_env = spawn_env m tool env in
        let cwd = match cwd with None -> m.m.cwd | Some d -> d in
        let k = match k with
        | None -> fun o -> ()
        | Some k ->
            fun o -> match Op.Spawn.exit (Op.Spawn.get o) with
            | Some (`Exited code) -> k code
            | _ -> assert false
        in
        let o =
          Op.Spawn.v_op
            ~id ~mark:m.c.mark ~created ~reads ~writes ?writes_manifest_root
            ?post_exec ~k ~stamp ~env ~stamped_env ~cwd ~stdin ~stdout ~stderr
            ~success_exits tool.tool_file cmd.cmd_args
        in
        add_op_and_stir m o

  let spawn
      m ?stamp ?reads ?writes ?env ?cwd ?stdin ?stdout ?stderr ?success_exits
      ?post_exec ?k cmd
    =
    _spawn m ?stamp ?reads ?writes ?env ?cwd ?stdin ?stdout ?stderr
      ?success_exits ?post_exec ?k cmd

  let spawn'
      m ?stamp ?reads ~writes_root ?writes ?env ?cwd ?stdin ?stdout ?stderr
      ?success_exits ?k cmd
    =
    let writes = match writes with
    | Some writes -> writes
    | None ->
        fun o ->
          let dotfiles = true and recurse = true in
          fail_if_error m
            Os.Dir.(fold_files ~dotfiles ~recurse path_list writes_root [])
    in
    let post_exec o =
      if B000.Op.revived o || B000.Op.status o <> B000.Op.Done then () else
      Op.set_writes o (writes o)
    in
    _spawn m ?stamp ?reads ~writes_manifest_root:writes_root ?env ?cwd ?stdin
      ?stdout ?stderr ?success_exits ~post_exec ?k cmd
end

(* Stores *)

module Store = struct
  module rec Key : sig
    type t = V : 'a typed -> t
    and 'a typed =
      { uid : int; tid : 'a Type.Id.t; mark : string;
        det : Store.t -> Memo.t -> 'a Fut.t; untyped : t; }
    val compare : t -> t -> int
  end = struct
    type t = V : 'a typed -> t
    and 'a typed =
      { uid : int; tid : 'a Type.Id.t; mark : string;
        det : Store.t -> Memo.t -> 'a Fut.t; untyped : t;}
    let compare (V l0) (V l1) = (compare : int -> int -> int) l0.uid l1.uid
  end
  and Store : sig
    module Kmap : Map.S with type key = Key.t
    type binding = B : 'a Key.typed * 'a Fut.t -> binding
    type t = { memo : Memo.t; mutable map : binding Kmap.t; dir : Fpath.t }
  end = struct
    module Kmap = Map.Make (Key)
    type binding = B : 'a Key.typed * 'a Fut.t -> binding
    type t = { memo : Memo.t; mutable map : binding Kmap.t; dir : Fpath.t }
  end

  type 'a key = 'a Key.typed
  type binding = B : 'a key * 'a -> binding
  type t = Store.t

  let create memo ~dir bs =
    let add m (B (k, v)) =
      Store.Kmap.add k.untyped (Store.B (k, Fut.return v)) m
    in
    let map = List.fold_left add Store.Kmap.empty bs in
    { Store.memo; map; dir : Fpath.t; }

  let memo s = s.Store.memo
  let dir s = s.Store.dir

  let key_uid = (* FIXME atomic *)  let id = ref (-1) in fun () -> incr id; !id
  let key ?(mark = "") det =
    let uid = key_uid () and tid = Type.Id.make () in
    let rec k = { Key.uid; tid; mark; det; untyped }
    and untyped = Key.V k in k

  let get : type a. t -> a key -> a Fut.t =
  fun s k -> match Store.Kmap.find_opt k.Key.untyped s.map with
  | None ->
      (* We don't use the key determination future directly because
         its determination may indirectly trigger new gets of the same
         key because the memo will be stired and possibly a [get] of
         this key will occur before we get to indicate in the map that
         the key is being determined. Using our own future here makes
         sure all further [get]s end up in the other branch. *)
      let fut, set = Fut.create () in
      s.map <- Store.Kmap.add k.Key.untyped (Store.B (k, fut)) s.map;
      let memo =
        (* XXX maybe it would be interesting to have a stack of marks
           for build understanding "key via m ; m; m;" *)
        Memo.with_mark s.memo k.Key.mark
      in
      Fut.await (k.Key.det s memo) set;
      fut
  | Some (Store.B (l', fut)) ->
      match Type.Id.provably_equal k.Key.tid l'.Key.tid with
      | Some Type.Equal -> fut | None -> assert false

  let set s k v = match Store.Kmap.mem k.Key.untyped s.Store.map with
  | true -> Fmt.invalid_arg "Key %s already set in store" k.Key.mark
  | false ->
      let fut = Fut.return v in
      s.map <- Store.Kmap.add k.Key.untyped (Store.B (k, fut)) s.map
end

(*---------------------------------------------------------------------------
   Copyright (c) 2018 The b0 programmers

   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.
  ---------------------------------------------------------------------------*)