3 * Stefano Zacchiroli <zack@cs.unibo.it>
4 * for the HELM Team http://helm.cs.unibo.it/
6 * This file is part of HELM, an Hypertextual, Electronic
7 * Library of Mathematics, developed at the Computer Science
8 * Department, University of Bologna, Italy.
10 * HELM is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
15 * HELM is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with HELM; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25 * For details, see the HELM World-Wide-Web page,
26 * http://helm.cs.unibo.it/
33 let debug_print s = if debug then prerr_endline s ;;
34 Http_common.debug := false;;
36 let daemon_name = "H-Bugs Broker" ;;
37 let default_port = 49081 ;;
38 let port_env_var = "HELM_HBUGS_BROKER_PORT" ;;
41 int_of_string (Sys.getenv port_env_var)
43 | Not_found -> default_port
44 | Failure "int_of_string" ->
45 prerr_endline "Warning: invalid port, reverting to default";
48 let usage_string = "HBugs Broker: usage string not yet written :-(";;
50 exception Unexpected_msg of message;;
52 let return_xml_msg body outchan =
53 Http_daemon.respond ~headers:["Content-Type", "text/xml"] ~body outchan
55 let parse_musing_id = function
56 | Musing_started (_, musing_id) ->
57 prerr_endline ("#### Started musing ID: " ^ musing_id);
59 | Musing_aborted (_, musing_id) -> musing_id
61 prerr_endline (sprintf "Assertion failed, received msg: %s"
62 (Hbugs_messages.string_of_msg msg));
67 let mutex = Mutex.create () in
70 (* debug_print "Acquiring lock ..."; *)
72 (* debug_print "Lock Acquired!"; *)
73 let res = Lazy.force action in
74 (* debug_print "Releaseing lock ..."; *)
76 (* debug_print "Lock released!"; *)
78 with e -> Mutex.unlock mutex; raise e
82 let clients = new Hbugs_broker_registry.clients in
83 let tutors = new Hbugs_broker_registry.tutors in
84 let musings = new Hbugs_broker_registry.musings in
86 [ (clients :> Hbugs_broker_registry.registry);
87 (tutors :> Hbugs_broker_registry.registry);
88 (musings :> Hbugs_broker_registry.registry) ]
91 let my_own_id = Hbugs_id_generator.new_broker_id () in
93 (* debugging: dump broker internal status, used by '/dump' method *)
94 let dump_registries () =
96 String.concat "\n" (List.map (fun o -> o#dump) registries)
99 let handle_msg outchan msg =
100 (* messages from clients *)
104 Hbugs_messages.respond_msg (Usage usage_string) outchan
105 | Register_client (client_id, client_url) -> do_critical (lazy (
107 clients#register client_id client_url;
108 Hbugs_messages.respond_msg (Client_registered my_own_id) outchan
109 with Hbugs_broker_registry.Client_already_in id ->
110 Hbugs_messages.respond_exc "already_registered" id outchan
112 | Unregister_client client_id -> do_critical (lazy (
113 if clients#isAuthenticated client_id then begin
114 clients#unregister client_id;
115 Hbugs_messages.respond_msg (Client_unregistered my_own_id) outchan
117 Hbugs_messages.respond_exc "forbidden" client_id outchan
119 | List_tutors client_id -> do_critical (lazy (
120 if clients#isAuthenticated client_id then begin
121 Hbugs_messages.respond_msg
122 (Tutor_list (my_own_id, tutors#index))
125 Hbugs_messages.respond_exc "forbidden" client_id outchan
127 | Subscribe (client_id, tutor_ids) -> do_critical (lazy (
128 if clients#isAuthenticated client_id then begin
129 if List.length tutor_ids <> 0 then begin (* at least one tutor id *)
130 if List.for_all tutors#exists tutor_ids then begin
131 clients#subscribe client_id tutor_ids;
132 Hbugs_messages.respond_msg
133 (Subscribed (my_own_id, tutor_ids)) outchan
134 end else (* required subscription to at least one unexistent tutor *)
136 List.filter (fun id -> not (tutors#exists id)) tutor_ids
138 Hbugs_messages.respond_exc
139 "tutor_not_found" (String.concat " " missing_tutors) outchan
140 end else (* no tutor id specified *)
141 Hbugs_messages.respond_exc "no_tutor_specified" "" outchan
143 Hbugs_messages.respond_exc "forbidden" client_id outchan
145 | State_change (client_id, new_state) -> do_critical (lazy (
146 if clients#isAuthenticated client_id then begin
147 let active_musings = musings#getByClientId client_id in
148 prerr_endline (sprintf "ACTIVE MUSINGS: %s" (String.concat ", " active_musings));
149 if List.length active_musings = 0 then
150 prerr_endline ("No active musings for client " ^ client_id);
151 prerr_endline "CSC: State change!!!" ;
153 List.map (* collect Abort_musing message's responses *)
154 (fun id -> (* musing id *)
155 let tutor = snd (musings#getByMusingId id) in
156 Hbugs_messages.submit_req
157 ~url:(tutors#getUrl tutor) (Abort_musing (my_own_id, id)))
160 let stopped_musing_ids = List.map parse_musing_id stop_answers in
161 List.iter musings#unregister active_musings;
162 (match new_state with
163 | Some new_state -> (* need to start new musings *)
164 let subscriptions = clients#getSubscription client_id in
165 if List.length subscriptions = 0 then
166 prerr_endline ("No subscriptions for client " ^ client_id);
167 let started_musing_ids =
168 List.map (* register new musings and collect their ids *)
171 Hbugs_messages.submit_req
172 ~url:(tutors#getUrl tutor_id)
173 (Start_musing (my_own_id, new_state))
175 let musing_id = parse_musing_id res in
176 musings#register musing_id client_id tutor_id;
180 Hbugs_messages.respond_msg
181 (State_accepted (my_own_id, stopped_musing_ids, started_musing_ids))
183 | None -> (* no need to start new musings *)
184 Hbugs_messages.respond_msg
185 (State_accepted (my_own_id, stopped_musing_ids, []))
188 Hbugs_messages.respond_exc "forbidden" client_id outchan
191 (* messages from tutors *)
193 | Register_tutor (tutor_id, tutor_url, hint_type, dsc) -> do_critical (lazy (
195 tutors#register tutor_id tutor_url hint_type dsc;
196 Hbugs_messages.respond_msg (Tutor_registered my_own_id) outchan
197 with Hbugs_broker_registry.Tutor_already_in id ->
198 Hbugs_messages.respond_exc "already_registered" id outchan
200 | Unregister_tutor tutor_id -> do_critical (lazy (
201 if tutors#isAuthenticated tutor_id then begin
202 tutors#unregister tutor_id;
203 Hbugs_messages.respond_msg (Tutor_unregistered my_own_id) outchan
205 Hbugs_messages.respond_exc "forbidden" tutor_id outchan
208 | Musing_completed (tutor_id, musing_id, result) -> do_critical (lazy (
209 if not (tutors#isAuthenticated tutor_id) then begin (* unauthorized *)
210 Hbugs_messages.respond_exc "forbidden" tutor_id outchan;
211 end else if not (musings#isActive musing_id) then begin (* too late *)
212 Hbugs_messages.respond_msg (Too_late (my_own_id, musing_id)) outchan;
213 end else begin (* all is ok: autorhized and on time *)
218 clients#getUrl (fst (musings#getByMusingId musing_id))
221 Hbugs_messages.submit_req ~url:client_url (Hint (my_own_id, hint))
224 | Wow _ -> () (* ok: client is happy with our hint *)
228 "Warning: unexpected msg from client: %s\nExpected was: Wow"
229 (Hbugs_messages.string_of_msg msg))));
230 Hbugs_messages.respond_msg (Thanks (my_own_id, musing_id)) outchan;
231 musings#unregister musing_id
235 | msg -> (* unexpected message *)
236 debug_print "Unknown message!";
237 Hbugs_messages.respond_exc
238 "unexpected_msg" (Hbugs_messages.string_of_msg msg) outchan)
240 (* (* DEBUGGING wrapper around 'handle_msg' *)
241 let handle_msg outchan =
243 (fun msg -> (* filter handle_msg through a function which dumps input
245 debug_print (Hbugs_messages.string_of_msg msg);
246 handle_msg outchan msg)
253 let callback (req: Http_types.request) outchan =
255 debug_print ("Connection from " ^ req#clientAddr);
256 debug_print ("Received request: " ^ req#path);
258 (* TODO write help message *)
259 | "/help" -> return_xml_msg "<help> not yet written </help>" outchan
261 let msg = Hbugs_messages.msg_of_string req#body in
262 handle_msg outchan msg
265 Http_daemon.respond ~body:(dump_registries ()) outchan
267 Http_daemon.respond_error ~code:400 outchan
268 | _ -> Http_daemon.respond_error ~code:400 outchan);
269 debug_print "Done!\n"
271 | Http_types.Param_not_found attr_name ->
272 Hbugs_messages.respond_exc "missing_parameter" attr_name outchan
274 Hbugs_messages.respond_exc
275 "uncaught_exception" (Printexc.to_string exc) outchan
278 (* thread who cleans up ancient client/tutor/musing registrations *)
280 let delay = 3600.0 in (* 1 hour delay *)
283 List.iter (fun o -> o#purge) registries
288 printf "Listening on port %d ...\n" port;
290 ignore (Thread.create ragman ());
291 Http_daemon.start' ~port ~mode:`Thread callback