package timed
Timed references for imperative state
Install
Dune Dependency
Authors
Maintainers
Sources
1.1.tar.gz
md5=06106626006450f41f0c4d4fcbcf95d0
sha512=b136d79e6ad1a50c811acadc0ae0be049f2dc0d6fc87d233400d602cdf8c6dab3af87557e8f8d740f6eba4b87b9d5b2fcc7e550d24e4ba8c03237573da5623d5
doc/src/timed.compat/timed_compat.ml.html
Source file timed_compat.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
(***************************************************************************** MIT License Copyright (c) 2018 Rodolphe Lepigre and Christophe Raffalli Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. *****************************************************************************) module Time = struct (* Type used to store the previous value of a reference. *) type memo = M : {r : 'a ref; mutable v : 'a} -> memo (* The main data structure is an oriented graph that is held by one of its nodes, and stored on the OCaml heap. This means that parts of the graph that are not accessible (in terms of pointers) can be collected, and we can consider that they are not part of the graph. Every node contains a destination node [d], and undo information [u]. *) type node = {mutable d : node; mutable u : memo option} type t = node (* NOTE We require the in-memory graph to be either empty, or to be a tree oriented toward its root. Intuitively, the root (if any) will represent the [current] time, and any other [node] in the tree represents a point to which we can travel (following pointer backwards, from a given point to the root of the tree). *) (* Root of the in-memory tree, or current “time”. *) let current : node Weak.t = Weak.create 1 (* NOTE The [current] “time” is implemented as a weak pointer so that the root of the tree can be collected (and the graph made empty) if none of the other nodes are accessible (the “time” has not been saved). This is useful to save memory in the cases where the state is never saved. *) (* Get and set operation for the [current] root node. *) let get_current : unit -> node option = fun _ -> Weak.get current 0 let set_current : node -> unit = fun n -> Weak.set current 0 (Some(n)) (* NOTE At a low level, restoring a previously saved “time” really amounts to setting the corresponding node to be the root of the tree (reversing the pointers, and undoing the updates in the process). *) (* NOTE [current] is either empty, or it contains a [node] that points to itself (i.e., a loop), that stores the latest updates. *) (* [reverse s] reverses the edge going from [s] to [s.d], applies the undo operation represented by [s.u], and updates [s.u] to enable redo. *) let reverse : node -> unit = fun s -> let d = s.d in (* Destination node. *) let undo (M({r;v} as rc)) = rc.v <- !r; r := v in (match s.u with None -> () | Some(u) -> undo u); d.d <- s; d.u <- s.u (* Returns the current “time” (which is a [node]), in which the subsequent reference updates will be stored until a call to [restore], or another call to [save]. This new node becomes the root. *) let save : unit -> t = fun () -> match get_current () with | None -> (* Empty graph, just create a root node (points to itself). *) let rec n = {d = n; u = None} in set_current n; n | Some(c) when c.u == None -> (* No updates since previous save, we can use the same node. *) assert (c.d == c); c | Some(c) -> (* Updates were saved in previous node, create a new root. *) assert (c.d == c); let rec n = {d = n; u = None} in c.d <- n; set_current n; n (* [restore t] restores the value of all pointer at time [t]. *) let restore : t -> unit = fun t -> (* Undoes the references along the given path. *) let rec gn path t0 = match path with | [] -> (* [t0] becomes the current time. *) assert (t0 == t); t0.d <- t0; t0.u <- None; set_current t0 | t::path -> (* We reverse the edge from [t] to [t0] (preforms the undo). *) assert (t.d == t0); reverse t; gn path t in (* Builds the path from [t] to the current time, and calls [gn]. *) let rec fn path t = let d = t.d in if d == t then (reverse d; gn path d) else fn (t::path) d in fn [] t (* Reference update. Information for rollback is stored in the root [node] (if any), which corresponds to the last saved “time”. *) let (:=) : 'a ref -> 'a -> unit = fun r v -> begin match get_current () with | None -> () (* Current time not accessible, no need to save. *) | Some(c) -> assert (c.d == c); (* Check that the root points to itself. *) let u = Some(M {r; v = !r}) in if c.u = None then c.u <- u (* Current node available. *) else (* Need new node. *) let rec n = {d = n; u} in c.d <- n; set_current n end; r := v (* Actual update. *) end (* Reference update. *) let (:=) : 'a ref -> 'a -> unit = Time.(:=) (* Derived functions. *) let incr : int ref -> unit = fun r -> r := !r + 1 let decr : int ref -> unit = fun r -> r := !r - 1 let pure_apply : ('a -> 'b) -> 'a -> 'b = fun f v -> let t = Time.save () in let r = f v in Time.restore t; r let pure_test : ('a -> bool) -> 'a -> bool = fun f v -> let t = Time.save () in let r = f v in if not r then Time.restore t; r
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>