hop-2012/subscription.ml

70 lines
2.0 KiB
OCaml
Raw Normal View History

2012-03-07 18:23:41 +00:00
(* Copyright 2012 Tony Garnock-Jones <tonygarnockjones@gmail.com>. *)
2012-05-01 21:36:38 +00:00
(* This file is part of Hop. *)
2012-03-07 18:23:41 +00:00
2012-05-01 21:36:38 +00:00
(* Hop is free software: you can redistribute it and/or modify it *)
2012-03-07 18:23:41 +00:00
(* 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 *)
2012-03-07 18:23:41 +00:00
(* 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-03-07 18:23:41 +00:00
2012-01-08 17:41:04 +00:00
open Datastructures
type t = {
mutable live: bool;
uuid: Uuid.t;
filter: Sexp.t;
sink: string;
name: Sexp.t
}
type set_t = t StringMap.t ref
let new_set () = ref StringMap.empty
2012-03-06 22:05:57 +00:00
let create source subs filter sink name reply_sink reply_name =
2012-01-08 17:41:04 +00:00
let uuid = Uuid.create () in
let sub = {
live = true;
uuid = uuid;
filter = filter;
sink = sink;
name = name
} in
subs := StringMap.add uuid sub !subs;
2012-03-06 22:05:57 +00:00
Meta.announce_subscription source filter sink name true;
2012-01-08 17:41:04 +00:00
Node.post_ignore reply_sink reply_name (Message.subscribe_ok (Sexp.Str uuid)) (Sexp.Str "");
sub
2012-03-06 22:05:57 +00:00
let delete source subs uuid =
try
let sub = StringMap.find uuid !subs in
sub.live <- false;
subs := StringMap.remove uuid !subs;
2012-03-06 22:05:57 +00:00
Meta.announce_subscription source sub.filter sub.sink sub.name false;
Some sub
with Not_found ->
None
2012-01-08 17:41:04 +00:00
let lookup subs uuid =
try Some (StringMap.find uuid !subs)
with Not_found -> None
2012-03-05 21:56:28 +00:00
let send_to_subscription' sub body delete_action =
2012-01-08 17:41:04 +00:00
if not sub.live
then false
else
if Node.post sub.sink sub.name body (Sexp.Str sub.uuid)
then true
else (delete_action sub.uuid; false)
2012-03-06 22:05:57 +00:00
let send_to_subscription source subs sub body =
send_to_subscription' sub body (fun (uuid) -> delete source subs uuid)