hop-2012/server/server_control.ml

64 lines
1.8 KiB
OCaml
Raw Permalink Normal View History

(* Copyright 2012 Tony Garnock-Jones <tonygarnockjones@gmail.com>. *)
2012-05-01 21:36:38 +00:00
(* This file is part of Hop. *)
2012-05-01 21:36:38 +00:00
(* Hop is free software: you can redistribute it and/or modify it *)
(* under the terms of the GNU General Public License as published by the *)
(* Free Software Foundation, either version 3 of the License, or (at your *)
(* option) any later version. *)
2012-05-01 21:36:38 +00:00
(* Hop 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 *)
(* General Public License for more details. *)
(* You should have received a copy of the GNU General Public License *)
2012-05-01 21:36:38 +00:00
(* along with Hop. If not, see <http://www.gnu.org/licenses/>. *)
2012-05-05 22:18:23 +00:00
open Lwt
open Datastructures
let continue_running = ref true
2012-05-05 22:18:23 +00:00
let (cq_in, cq_out) = Lwt_stream.create ()
let achieved_milestones = ref BytesSet.empty
2012-05-05 22:18:23 +00:00
let milestone name = cq_out (Some (`Milestone name))
2012-05-05 22:18:23 +00:00
let shutdown_now details = cq_out (Some (`Shutdown details))
let is_milestone_achieved m =
match m with
| Some m' ->
BytesSet.mem m' !achieved_milestones
| None ->
false
let rec run' until_milestone =
match is_milestone_achieved until_milestone with
2012-05-05 22:18:23 +00:00
| true ->
return ()
| false ->
(match_lwt Lwt_stream.next cq_in with
| `Shutdown details ->
ignore (Log.error "Shutting down server" details);
continue_running := false;
2012-05-05 22:18:23 +00:00
return ()
| `Milestone name ->
ignore (Log.info "Achieved milestone" [Sexp.Str name]);
achieved_milestones := BytesSet.add name !achieved_milestones;
run' until_milestone)
let is_running () = !continue_running
let run_until milestone =
if !continue_running
2012-05-05 22:18:23 +00:00
then (ignore (Log.info "Waiting for milestone" [Sexp.Str milestone]);
run' (Some milestone))
2012-05-05 22:18:23 +00:00
else return ()
let run_forever () =
if !continue_running
then run' None
2012-05-05 22:18:23 +00:00
else return ()