package pgx_unix

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

Source file pgx_unix.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
(* PG'OCaml is a set of OCaml bindings for the PostgreSQL database.
 *
 * PG'OCaml - type safe interface to PostgreSQL.
 * Copyright (C) 2005-2009 Richard Jones and other authors.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library 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
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this library; see the file COPYING.  If not, write to
 * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 *)

external reraise : exn -> _ = "%reraise"

module Simple_thread = struct
  type 'a t = 'a

  let return x = x
  let ( >>= ) v f = f v

  let catch f fexn =
    try f () with
    | e -> fexn e
  ;;

  type sockaddr =
    | Unix of string
    | Inet of string * int

  type nonrec in_channel = in_channel
  type nonrec out_channel = out_channel

  let open_connection sockaddr =
    let std_socket =
      match sockaddr with
      | Unix path -> Unix.ADDR_UNIX path
      | Inet (hostname, port) ->
        let hostent = Unix.gethostbyname hostname in
        (* Choose a random address from the list. *)
        let addrs = hostent.Unix.h_addr_list in
        let len = Array.length addrs in
        let i = Random.int len in
        let addr = addrs.(i) in
        Unix.ADDR_INET (addr, port)
    in
    Unix.open_connection std_socket
  ;;

  let output_char = output_char
  let output_binary_int = output_binary_int
  let output_string = output_string
  let flush = flush
  let input_char = input_char
  let input_binary_int = input_binary_int
  let really_input = really_input
  let close_in = close_in

  (* The unix getlogin syscall can fail *)
  let getlogin () = Unix.getuid () |> Unix.getpwuid |> fun { Unix.pw_name; _ } -> pw_name
  let debug = prerr_endline

  let protect f ~(finally : unit -> unit) =
    let result = ref None in
    try
      result := Some (f ());
      raise Exit
    with
    | Exit as e ->
      finally ();
      (match !result with
      | Some x -> x
      | None -> reraise e)
    | e ->
      finally ();
      reraise e
  ;;

  module Sequencer = struct
    type 'a monad = 'a t
    type 'a t = 'a

    let create t = t
    let enqueue t f = f t
  end
end

module M = Pgx.Make (Simple_thread)
include M
OCaml

Innovation. Community. Security.