package granary

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

Source file unix_file.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
open Lwt.Syntax

(* Default page size when none is supplied (#95). *)
let default_page_size = 4096

type error =
  | Io of string
  | Out_of_bounds of
      { page_id : int64
      ; n_pages : int64
      }

let pp_error fmt = function
  | Io msg -> Format.fprintf fmt "Io %s" msg
  | Out_of_bounds { page_id; n_pages } ->
    Format.fprintf fmt "Out_of_bounds page_id=%Ld n_pages=%Ld" page_id n_pages
;;

(* In-process lock table: tracks open files by (st_dev, st_ino) inode key.
   POSIX lockf is per-process, so two opens from the same process won't
   conflict via lockf alone.  We guard against that here.
   Using the inode key is portable and correct for hardlinks/symlinks. *)
let locked_inodes : (int * int, unit) Hashtbl.t = Hashtbl.create 16

type t =
  { fd : Lwt_unix.file_descr
  ; inode_key : int * int
  ; mutable n_pages : int64
  ; mutable page_size : int (** bytes per page for addressing (#95) *)
  ; mutable size_bytes : int (** file size at open; used to recompute n_pages *)
  }

let n_pages t = t.n_pages
let page_size t = t.page_size

(* #95: adopt a new page size (after peeking the header's geometry) and
   recompute the logical page count from the file's byte size. *)
let set_page_size t ps =
  t.page_size <- ps;
  t.n_pages <- Int64.of_int (t.size_bytes / ps)
;;

let pp fmt t = Format.fprintf fmt "Unix_file.t { n_pages = %Ld }" t.n_pages

let in_bounds t page_id =
  Int64.compare page_id 0L >= 0 && Int64.compare page_id t.n_pages < 0
;;

(* [pread]/[pwrite] avoid the lseek+read race that the previous Unix-based
   implementation papered over with Lwt's cooperative-only assumption.
   With concurrent fibers each driving their own offsets, the kernel
   syscall now carries the offset so two reads never trample each other. *)
let pread_exactly fd ~file_offset buf off len =
  let rec loop o r abs_off =
    if r = 0
    then Lwt.return_unit
    else
      let* n = Lwt_unix.pread fd buf ~file_offset:abs_off o r in
      if n = 0
      then Lwt.fail (Failure "unexpected EOF")
      else loop (o + n) (r - n) (abs_off + n)
  in
  loop off len file_offset
;;

let pwrite_exactly fd ~file_offset buf off len =
  let rec loop o r abs_off =
    if r = 0
    then Lwt.return_unit
    else
      let* n = Lwt_unix.pwrite fd buf ~file_offset:abs_off o r in
      if n = 0
      then Lwt.fail (Failure "unexpected write returned 0")
      else loop (o + n) (r - n) (abs_off + n)
  in
  loop off len file_offset
;;

(* Close [fd], swallowing any error — callers use this only on the
   cleanup-and-error path, where the original error is what we want to
   report. *)
let close_silently fd = Lwt.catch (fun () -> Lwt_unix.close fd) (fun _ -> Lwt.return_unit)

let open_ ?(page_size = default_page_size) ~path () =
  Lwt.catch
    (fun () ->
       let* fd = Lwt_unix.openfile path [ Unix.O_RDWR; Unix.O_CREAT ] 0o644 in
       Lwt.catch
         (fun () ->
            let* st = Lwt_unix.fstat fd in
            let key = st.Unix.st_dev, st.Unix.st_ino in
            if Hashtbl.mem locked_inodes key
            then
              let* () = close_silently fd in
              Lwt.return_error (Io "already open in this process")
            else
              Lwt.catch
                (fun () ->
                   let* () = Lwt_unix.lockf fd Unix.F_TLOCK 0 in
                   let* size = Lwt_unix.lseek fd 0 Unix.SEEK_END in
                   let n_pages = Int64.of_int (size / page_size) in
                   Hashtbl.add locked_inodes key ();
                   Lwt.return_ok
                     { fd; inode_key = key; n_pages; page_size; size_bytes = size })
                (function
                  | Unix.Unix_error (Unix.EWOULDBLOCK, _, _) ->
                    let* () = close_silently fd in
                    Lwt.return_error (Io "already locked")
                  | Unix.Unix_error (e, _, _) ->
                    let* () = close_silently fd in
                    Lwt.return_error (Io (Unix.error_message e))
                  | exn -> Lwt.fail exn))
         (function
           | Unix.Unix_error (e, _, _) ->
             let* () = close_silently fd in
             Lwt.return_error (Io (Unix.error_message e))
           | exn -> Lwt.fail exn))
    (function
      | Unix.Unix_error (e, _, _) -> Lwt.return_error (Io (Unix.error_message e))
      | exn -> Lwt.fail exn)
;;

let close t =
  Lwt.catch
    (fun () ->
       let* () = Lwt_unix.lockf t.fd Unix.F_ULOCK 0 in
       let* () = Lwt_unix.close t.fd in
       Hashtbl.remove locked_inodes t.inode_key;
       Lwt.return_ok ())
    (function
      | Unix.Unix_error (e, _, _) -> Lwt.return_error (Io (Unix.error_message e))
      | exn -> Lwt.fail exn)
;;

let read_page t ~page_id buf =
  if not (in_bounds t page_id)
  then Lwt.return_error (Out_of_bounds { page_id; n_pages = t.n_pages })
  else
    Lwt.catch
      (fun () ->
         (* Transfer the caller's buffer length (#95): a short read (e.g. the
            4096-byte geometry peek of page 0) reads only the leading bytes. *)
         let len = Cstruct.length buf in
         let offset = Int64.to_int (Int64.mul page_id (Int64.of_int t.page_size)) in
         let tmp = Bytes.create len in
         let* () = pread_exactly t.fd ~file_offset:offset tmp 0 len in
         Cstruct.blit_from_bytes tmp 0 buf 0 len;
         Lwt.return_ok ())
      (function
        | Unix.Unix_error (e, _, _) -> Lwt.return_error (Io (Unix.error_message e))
        | Failure msg -> Lwt.return_error (Io msg)
        | exn -> Lwt.fail exn)
;;

let write_page t ~page_id buf =
  if not (in_bounds t page_id)
  then Lwt.return_error (Out_of_bounds { page_id; n_pages = t.n_pages })
  else
    Lwt.catch
      (fun () ->
         let len = Cstruct.length buf in
         let offset = Int64.to_int (Int64.mul page_id (Int64.of_int t.page_size)) in
         let tmp = Bytes.create len in
         Cstruct.blit_to_bytes buf 0 tmp 0 len;
         let* () = pwrite_exactly t.fd ~file_offset:offset tmp 0 len in
         Lwt.return_ok ())
      (function
        | Unix.Unix_error (e, _, _) -> Lwt.return_error (Io (Unix.error_message e))
        | Failure msg -> Lwt.return_error (Io msg)
        | exn -> Lwt.fail exn)
;;

let sync t =
  Lwt.catch
    (fun () ->
       let* () = Lwt_unix.fsync t.fd in
       Lwt.return_ok ())
    (function
      | Unix.Unix_error (e, _, _) -> Lwt.return_error (Io (Unix.error_message e))
      | exn -> Lwt.fail exn)
;;

let resize t ~n_pages =
  Lwt.catch
    (fun () ->
       let new_size = Int64.to_int (Int64.mul n_pages (Int64.of_int t.page_size)) in
       let* () = Lwt_unix.ftruncate t.fd new_size in
       t.n_pages <- n_pages;
       t.size_bytes <- new_size;
       Lwt.return_ok ())
    (function
      | Unix.Unix_error (e, _, _) -> Lwt.return_error (Io (Unix.error_message e))
      | exn -> Lwt.fail exn)
;;

[@@@ai_disclosure "ai-generated"]
[@@@ai_model "claude-opus-4-7"]
[@@@ai_provider "Anthropic"]