package sihl
The modular functional web framework
Install
Dune Dependency
Authors
Maintainers
Sources
sihl-queue-0.1.9.tbz
sha256=77f0813d75a88edd14b3396e8b848d94c31c28803299b4b1bd4b78b1de4a2e80
sha512=a8907bc35ea14b7c3a7d638979a2a274860202b2de58b84b5621a4908db001ace493d8aa2e5383f4c8b1847efd256938592f63ef75a41521284b3640d3a7442a
doc/src/sihl.migration/service.ml.html
Source file service.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
open Lwt.Syntax module Core = Sihl_core module Database = Sihl_database let log_src = Logs.Src.create "sihl.service.migration" module Logs = (val Logs.src_log log_src : Logs.LOG) module Map = Map.Make (String) let registered_migrations : Model.Migration.t Map.t ref = ref Map.empty let register_migration migration = let label, _ = migration in let found = Map.find_opt label !registered_migrations in match found with | Some _ -> Logs.debug (fun m -> m "Found duplicate migration '%s', ignoring it" label) | None -> registered_migrations := Map.add label migration !registered_migrations ;; let register_migrations migrations = List.iter register_migration migrations module Make (MigrationRepo : Sig.REPO) : Sig.SERVICE = struct let setup () = Logs.debug (fun m -> m "Setting up table if not exists"); MigrationRepo.create_table_if_not_exists () ;; let has ~namespace = MigrationRepo.get ~namespace |> Lwt.map Option.is_some let get ~namespace = let* state = MigrationRepo.get ~namespace in Lwt.return @@ match state with | Some state -> state | None -> raise (Model.Exception (Printf.sprintf "Could not get migration state for %s" namespace)) ;; let upsert state = MigrationRepo.upsert ~state let mark_dirty ~namespace = let* state = get ~namespace in let dirty_state = Model.mark_dirty state in let* () = upsert dirty_state in Lwt.return dirty_state ;; let mark_clean ~namespace = let* state = get ~namespace in let clean_state = Model.mark_clean state in let* () = upsert clean_state in Lwt.return clean_state ;; let increment ~namespace = let* state = get ~namespace in let updated_state = Model.increment state in let* () = upsert updated_state in Lwt.return updated_state ;; let register_migration migration = register_migration migration |> ignore let register_migrations migrations = register_migrations migrations |> ignore let set_fk_check_request = Caqti_request.exec Caqti_type.bool "SET FOREIGN_KEY_CHECKS = ?;" ;; let with_disabled_fk_check f = Database.Service.query (fun connection -> let module Connection = (val connection : Caqti_lwt.CONNECTION) in let* () = Connection.exec set_fk_check_request false |> Lwt.map Database.Service.raise_error in Lwt.finalize (fun () -> f connection) (fun () -> Connection.exec set_fk_check_request true |> Lwt.map Database.Service.raise_error)) ;; let execute_steps migration = let namespace, steps = migration in let rec run steps = match steps with | [] -> Lwt.return () | Model.Migration.{ label; statement; check_fk = true } :: steps -> Logs.debug (fun m -> m "Running %s" label); let query (module Connection : Caqti_lwt.CONNECTION) = let req = Caqti_request.exec ~oneshot:true Caqti_type.unit statement in Connection.exec req () |> Lwt.map Database.Service.raise_error in let* () = Database.Service.query query in Logs.debug (fun m -> m "Ran %s" label); let* _ = increment ~namespace in run steps | { label; statement; check_fk = false } :: steps -> let* () = with_disabled_fk_check (fun connection -> Logs.debug (fun m -> m "Running %s without fk checks" label); let query (module Connection : Caqti_lwt.CONNECTION) = let req = Caqti_request.exec ~oneshot:true Caqti_type.unit statement in Connection.exec req () |> Lwt.map Database.Service.raise_error in query connection) in Logs.debug (fun m -> m "Ran %s" label); let* _ = increment ~namespace in run steps in let () = match List.length steps with | 0 -> Logs.debug (fun m -> m "No migrations to apply for %s" namespace) | n -> Logs.debug (fun m -> m "Applying %i migrations for %s" n namespace) in run steps ;; let execute_migration migration = let namespace, _ = migration in Logs.debug (fun m -> m "Execute migrations for %s" namespace); let* () = setup () in let* has_state = has ~namespace in let* state = if has_state then let* state = get ~namespace in if Model.dirty state then ( let msg = Printf.sprintf "Dirty migration found for %s, has to be fixed manually" namespace in Logs.err (fun m -> m "%s" msg); raise (Model.Exception msg)) else mark_dirty ~namespace else ( Logs.debug (fun m -> m "Setting up table for %s" namespace); let state = Model.create ~namespace in let* () = upsert state in Lwt.return state) in let migration_to_apply = Model.steps_to_apply migration state in let* () = execute_steps migration_to_apply in let* _ = mark_clean ~namespace in Lwt.return @@ Ok () ;; let execute migrations = let n = List.length migrations in if n > 0 then Logs.debug (fun m -> m "Executing %i migrations" (List.length migrations)) else Logs.debug (fun m -> m "No migrations to execute"); let open Lwt in let rec run migrations = match migrations with | [] -> Lwt.return () | migration :: migrations -> execute_migration migration >>= (function | Ok () -> run migrations | Error err -> Logs.err (fun m -> m "Error while running migration %a: %s" Model.Migration.pp migration err); raise (Model.Exception err)) in run migrations ;; let run_all () = let steps = !registered_migrations |> Map.to_seq |> List.of_seq |> List.map snd in execute steps ;; let migrate_cmd = Core.Command.make ~name:"migrate" ~description:"Run all migrations" (fun _ -> run_all ()) ;; let start () = Lwt.return () let stop _ = Lwt.return () let lifecycle = Core.Container.Lifecycle.create "migration" ~dependencies:[ Database.Service.lifecycle ] ~start ~stop ;; let register ?(migrations = []) () = register_migrations migrations; Core.Container.Service.create ~commands:[ migrate_cmd ] lifecycle ;; end module Repo = Repo
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>