]> matita.cs.unibo.it Git - helm.git/blob - matitaB/matita/matitadaemon.ml
07b03207a7ec4b7774af7bd19ad889b7019bb0ab
[helm.git] / matitaB / matita / matitadaemon.ml
1 open Printf;;
2 open Http_types;;
3
4 module Stack = Continuationals.Stack
5
6 let rt_path () = Helm_registry.get "matita.rt_base_dir" 
7
8 let utf8_length = Netconversion.ustring_length `Enc_utf8
9
10 let utf8_parsed_text s floc =
11   let start, stop = HExtlib.loc_of_floc floc in
12   let len = stop - start in
13   let res = Netconversion.ustring_sub `Enc_utf8 start len s in
14   res, String.length res
15
16 (*** from matitaScript.ml ***)
17 (* let only_dust_RE = Pcre.regexp "^(\\s|\n|%%[^\n]*\n)*$" *)
18
19 let eval_statement include_paths (* (buffer : GText.buffer) *) status (* script *)
20  statement
21 =
22   let ast,unparsed_text =
23     match statement with
24     | `Raw text ->
25         (* if Pcre.pmatch ~rex:only_dust_RE text then raise Margin; *)
26         let strm =
27          GrafiteParser.parsable_statement status
28           (Ulexing.from_utf8_string text) in
29         let ast = MatitaEngine.get_ast status include_paths strm in
30          ast, text
31     | `Ast (st, text) -> st, text
32   in
33   let floc = match ast with
34   | GrafiteAst.Executable (loc, _)
35   | GrafiteAst.Comment (loc, _) -> loc in
36   
37   let _,lend = HExtlib.loc_of_floc floc in 
38   let parsed_text, _parsed_text_len = 
39     utf8_parsed_text unparsed_text (HExtlib.floc_of_loc (0,lend)) in
40   let byte_parsed_text_len = String.length parsed_text in
41   let unparsed_txt' = 
42     String.sub unparsed_text byte_parsed_text_len 
43       (String.length unparsed_text - byte_parsed_text_len)
44   in
45   
46   let status = 
47     MatitaEngine.eval_ast ~include_paths ~do_heavy_checks:false status ("",0,ast)
48   in 
49   (status, parsed_text, unparsed_txt'),"",(*parsed_text_len*)
50     utf8_length parsed_text
51
52 let sequent_size = ref 40;;
53
54 let include_paths = ref [];;
55
56 (* <metasenv>
57  *   <meta number="...">
58  *     <metaname>...</metaname>
59  *     <goal>...</goal>
60  *   </meta>
61  *
62  *   ...
63  * </metasenv> *)
64 let output_status s =
65   let _,_,metasenv,subst,_ = s#obj in
66   let render_switch = function 
67   | Stack.Open i -> "?" ^ (string_of_int i) 
68   | Stack.Closed i -> "<S>?" ^ (string_of_int i) ^ "</S>"
69   in
70   let int_of_switch = function
71   | Stack.Open i | Stack.Closed i -> i
72   in
73   let sequent = function
74   | Stack.Open i ->
75       let meta = List.assoc i metasenv in
76       snd (ApplyTransformation.ntxt_of_cic_sequent 
77         ~metasenv ~subst ~map_unicode_to_tex:false !sequent_size s (i,meta))
78   | Stack.Closed _ -> "This goal has already been closed."
79   in
80   let render_sequent is_loc acc depth tag (pos,sw) =
81     let metano = int_of_switch sw in
82     let markup = 
83       if is_loc then
84         (match depth, pos with
85          | 0, 0 -> "<B>" ^ (render_switch sw) ^ "</B>"
86          | 0, _ -> 
87             Printf.sprintf "<B>|<SUB>%d</SUB>: %s</B>" pos (render_switch sw)
88          | 1, pos when Stack.head_tag s#stack = `BranchTag ->
89              Printf.sprintf "|<SUB>%d</SUB> : %s" pos (render_switch sw)
90          | _ -> render_switch sw)
91       else render_switch sw
92     in
93     prerr_endline "pippo1";
94     let markup = 
95       Netencoding.Html.encode ~in_enc:`Enc_utf8 ~prefer_name:false () markup in
96     let markup = "<metaname>" ^ markup ^ "</metaname>" in
97     prerr_endline "pippo2";
98     let sequent =
99       Netencoding.Html.encode ~in_enc:`Enc_utf8 ~prefer_name:false () (sequent sw)
100     in      
101     let txt0 = "<goal>" ^ sequent ^ "</goal>" in
102     "<meta number=\"" ^ (string_of_int metano) ^ "\">" ^ markup ^
103     txt0 ^ "</meta>" ^ acc
104   in
105   let res = "<metasenv>" ^
106     (Stack.fold 
107       ~env:(render_sequent true) ~cont:(render_sequent false) 
108       ~todo:(render_sequent false) "" s#stack) ^
109     "</metasenv>"
110   in 
111   prerr_endline ("sending metasenv:\n" ^ res); res
112 ;;
113
114 (* let html_of_status s =
115   let _,_,metasenv,subst,_ = s#obj in
116   let txt = List.fold_left 
117     (fun acc (nmeta,_ as meta) ->
118        let txt0 = snd (ApplyTransformation.ntxt_of_cic_sequent 
119          ~metasenv ~subst ~map_unicode_to_tex:false 80 s meta)
120        in
121        prerr_endline ("### txt0 = " ^ txt0);
122       ("<B>Goal ?" ^ (string_of_int nmeta) ^ "</B>\n" ^ txt0)::acc)
123     [] metasenv
124   in
125   String.concat "\n\n" txt
126 ;; *)
127
128 let heading_nl_RE = Pcre.regexp "^\\s*\n\\s*";;
129
130 let first_line s =
131   let s = Pcre.replace ~rex:heading_nl_RE s in
132   try
133     let nl_pos = String.index s '\n' in
134     String.sub s 0 nl_pos
135   with Not_found -> s
136 ;;
137
138 let read_file fname =
139   let chan = open_in fname in
140   let lines = ref [] in
141   (try
142      while true do
143        lines := input_line chan :: !lines
144      done;
145    with End_of_file -> close_in chan);
146   String.concat "\n" (List.rev !lines)
147 ;;
148
149 let load_index outchan =
150   let s = read_file "index.html" in
151   Http_daemon.respond ~headers:["Content-Type", "text/html"] ~code:(`Code 200) ~body:s outchan
152 ;;
153
154 let load_doc filename outchan =
155   let s = read_file filename in
156   let is_png = 
157     try String.sub filename (String.length filename - 4) 4 = ".png"
158     with Invalid_argument _ -> false
159   in
160   let contenttype = if is_png then "image/png" else "text/html" in
161   Http_daemon.respond ~headers:["Content-Type", contenttype] ~code:(`Code 200) ~body:s outchan
162 ;;
163
164 let retrieve (cgi : Netcgi1_compat.Netcgi_types.cgi_activation) =
165   let cgi = Netcgi1_compat.Netcgi_types.of_compat_activation cgi in
166   let env = cgi#environment in
167   (try 
168     let sid = Uuidm.of_string (Netcgi.Cookie.value (env#cookie "session")) in
169     let sid = HExtlib.unopt sid in
170     cgi # set_header 
171       ~cache:`No_cache 
172       ~content_type:"text/xml; charset=\"utf-8\""
173       ();
174     let filename = cgi # argument_value "file" in
175     prerr_endline ("reading file " ^ filename);
176     let body = 
177       Netencoding.Html.encode ~in_enc:`Enc_utf8 ~prefer_name:false () 
178         (read_file filename) in
179     prerr_endline ("sending:\nBEGIN\n" ^ body ^ "\nEND");
180     let body = "<file>" ^ body ^ "</file>" in
181     let baseuri, incpaths = 
182       try 
183         let root, baseuri, _fname, _tgt = 
184           Librarian.baseuri_of_script ~include_paths:[] filename in 
185         let includes =
186          try
187           Str.split (Str.regexp " ") 
188            (List.assoc "include_paths" (Librarian.load_root_file (root^"/root")))
189          with Not_found -> []
190         in
191         let rc = root :: includes in
192          List.iter (HLog.debug) rc; baseuri, rc
193        with 
194          Librarian.NoRootFor _ | Librarian.FileNotFound _ -> "",[] in
195     include_paths := incpaths;
196     let status = MatitaAuthentication.get_status sid in
197     MatitaAuthentication.set_status sid (status#set_baseuri baseuri);
198     cgi#out_channel#output_string body;
199   with
200   | Not_found _ -> 
201     cgi # set_header
202       ~status:`Internal_server_error
203       ~cache:`No_cache 
204       ~content_type:"text/xml; charset=\"utf-8\""
205       ());
206   cgi#out_channel#commit_work()
207 ;;
208
209 let advance0 sid text =
210   let status = MatitaAuthentication.get_status sid in
211   let history = MatitaAuthentication.get_history sid in
212   let (st,new_statements,new_unparsed),(* newtext TODO *) _,parsed_len =
213        (* try *)
214          eval_statement !include_paths (*buffer*) status (`Raw text)
215        (* with End_of_file -> raise Margin *)
216      in
217   MatitaAuthentication.set_status sid st;
218   MatitaAuthentication.set_history sid (st::history);
219   parsed_len, new_unparsed, st
220
221
222 let login (cgi : Netcgi1_compat.Netcgi_types.cgi_activation) =
223   let cgi = Netcgi1_compat.Netcgi_types.of_compat_activation cgi in
224   let env = cgi#environment in
225   
226   prerr_endline "1";
227   assert (cgi#arguments <> []);
228   let uid = cgi#argument_value "userid" in
229   let userpw = cgi#argument_value "password" in
230   prerr_endline ("2: user = " ^ uid);
231   let pw,_ = MatitaAuthentication.lookup_user uid in
232   prerr_endline "3";
233
234   if pw = userpw then
235    begin
236     prerr_endline "4";
237     let sid = MatitaAuthentication.create_session uid in
238     let cookie = Netcgi.Cookie.make "session" (Uuidm.to_string sid) in
239     cgi#set_header ~status:`See_other ~cache:`No_cache ~set_cookies:[cookie] ();
240     env#set_output_header_field "Location" "/index.html"
241    end
242   else
243    begin
244     cgi#set_header
245       ~cache:`No_cache 
246       ~content_type:"text/html; charset=\"utf-8\""
247       ();
248     cgi#out_channel#output_string
249       "<html><head></head><body>Authentication error</body></html>"
250    end;
251     
252   cgi#out_channel#commit_work()
253   
254 ;;
255
256 let logout (cgi : Netcgi1_compat.Netcgi_types.cgi_activation) =
257   let cgi = Netcgi1_compat.Netcgi_types.of_compat_activation cgi in
258   let env = cgi#environment in
259   (try 
260     let sid = Uuidm.of_string (Netcgi.Cookie.value (env#cookie "session")) in
261     let sid = HExtlib.unopt sid in
262     MatitaAuthentication.logout_user sid;
263     cgi # set_header 
264       ~cache:`No_cache 
265       ~content_type:"text/html; charset=\"utf-8\""
266       ();
267     let text = read_file (rt_path () ^ "/logout.html") in
268     cgi#out_channel#output_string text
269   with
270   | Not_found _ -> 
271     cgi # set_header
272       ~status:`Internal_server_error
273       ~cache:`No_cache 
274       ~content_type:"text/xml; charset=\"utf-8\""
275       ());
276   cgi#out_channel#commit_work()
277 ;;
278
279 (* returns the length of the executed text and an html representation of the
280  * current metasenv*)
281 let advance (cgi : Netcgi1_compat.Netcgi_types.cgi_activation) =
282   let cgi = Netcgi1_compat.Netcgi_types.of_compat_activation cgi in
283   let env = cgi#environment in
284   (try 
285     let sid = Uuidm.of_string (Netcgi.Cookie.value (env#cookie "session")) in
286     let sid = HExtlib.unopt sid in
287     cgi # set_header 
288       ~cache:`No_cache 
289       ~content_type:"text/xml; charset=\"utf-8\""
290       ();
291     let text = cgi#argument_value "body" in
292     prerr_endline ("body =\n" ^ text);
293     let parsed_len, new_unparsed, new_status = advance0 sid text in
294     let txt = output_status new_status in
295     let body = 
296        "<response><parsed length=\"" ^ (string_of_int parsed_len) ^ "\" />" ^ txt 
297        ^ "</response>"
298     in 
299     prerr_endline ("sending advance response:\n" ^ body);
300     cgi#out_channel#output_string body
301   with
302   | Not_found _ -> 
303     cgi # set_header
304       ~status:`Internal_server_error
305       ~cache:`No_cache 
306       ~content_type:"text/xml; charset=\"utf-8\""
307       ());
308   cgi#out_channel#commit_work()
309 ;;
310
311 let gotoBottom (cgi : Netcgi1_compat.Netcgi_types.cgi_activation) =
312   let cgi = Netcgi1_compat.Netcgi_types.of_compat_activation cgi in
313   let env = cgi#environment in
314   (try 
315     let sid = Uuidm.of_string (Netcgi.Cookie.value (env#cookie "session")) in
316     let sid = HExtlib.unopt sid in
317
318     let rec aux parsed_len text =
319       try
320         prerr_endline ("evaluating: " ^ first_line text);
321         let plen,new_unparsed,_new_status = advance0 sid text in
322         aux (parsed_len+plen) new_unparsed
323       with 
324       | _ -> parsed_len
325     in 
326     cgi # set_header 
327       ~cache:`No_cache 
328       ~content_type:"text/xml; charset=\"utf-8\""
329       ();
330     let text = cgi#argument_value "body" in
331     prerr_endline ("body =\n" ^ text);
332     let parsed_len = aux 0 text in
333     let status = MatitaAuthentication.get_status sid in
334     let txt = output_status status in
335     let body = 
336        "<response><parsed length=\"" ^ (string_of_int parsed_len) ^ "\" />" ^ txt 
337        ^ "</response>"
338     in 
339     prerr_endline ("sending goto bottom response:\n" ^ body);
340     cgi#out_channel#output_string body
341    with Not_found -> cgi#set_header ~status:`Internal_server_error 
342       ~cache:`No_cache 
343       ~content_type:"text/xml; charset=\"utf-8\"" ());
344   cgi#out_channel#commit_work() 
345 ;;
346
347 let retract (cgi : Netcgi1_compat.Netcgi_types.cgi_activation) =
348   let cgi = Netcgi1_compat.Netcgi_types.of_compat_activation cgi in
349   let env = cgi#environment in
350   (try 
351     let sid = Uuidm.of_string (Netcgi.Cookie.value (env#cookie "session")) in
352     let sid = HExtlib.unopt sid in
353     cgi # set_header 
354       ~cache:`No_cache 
355       ~content_type:"text/xml; charset=\"utf-8\""
356       ();
357     let history = MatitaAuthentication.get_history sid in
358     let new_history,new_status =
359        match history with
360          _::(status::_ as history) ->
361           history, status
362       | [_] -> (prerr_endline "singleton";failwith "retract")
363       | _ -> (prerr_endline "nil"; assert false) in
364     NCicLibrary.time_travel new_status;
365     MatitaAuthentication.set_history sid new_history;
366     MatitaAuthentication.set_status sid new_status;
367     prerr_endline ("after retract history.length = " ^ 
368       string_of_int (List.length new_history));
369     let body = output_status new_status in
370     cgi#out_channel#output_string body
371    with _ -> cgi#set_header ~status:`Internal_server_error 
372       ~cache:`No_cache 
373       ~content_type:"text/xml; charset=\"utf-8\"" ());
374   cgi#out_channel#commit_work() 
375 ;;
376
377
378 open Netcgi1_compat.Netcgi_types;;
379
380 (**********************************************************************)
381 (* Create the webserver                                               *)
382 (**********************************************************************)
383
384
385 let start() =
386   let (opt_list, cmdline_cfg) = Netplex_main.args() in
387
388   let use_mt = ref true in
389
390   let opt_list' =
391     [ "-mt", Arg.Set use_mt,
392       "  Use multi-threading instead of multi-processing"
393     ] @ opt_list in
394
395   Arg.parse 
396     opt_list'
397     (fun s -> raise (Arg.Bad ("Don't know what to do with: " ^ s)))
398     "usage: netplex [options]";
399   let parallelizer = 
400     if !use_mt then
401       Netplex_mt.mt()     (* multi-threading *)
402     else
403       Netplex_mp.mp() in  (* multi-processing *)
404 (*
405   let adder =
406     { Nethttpd_services.dyn_handler = (fun _ -> process1);
407       dyn_activation = Nethttpd_services.std_activation `Std_activation_buffered;
408       dyn_uri = None;                 (* not needed *)
409       dyn_translator = (fun _ -> ""); (* not needed *)
410       dyn_accept_all_conditionals = false;
411     } in
412 *)
413   let do_advance =
414     { Nethttpd_services.dyn_handler = (fun _ -> advance);
415       dyn_activation = Nethttpd_services.std_activation `Std_activation_buffered;
416       dyn_uri = None;                 (* not needed *)
417       dyn_translator = (fun _ -> ""); (* not needed *)
418       dyn_accept_all_conditionals = false;
419     } in
420   let do_retract =
421     { Nethttpd_services.dyn_handler = (fun _ -> retract);
422       dyn_activation = Nethttpd_services.std_activation `Std_activation_buffered;
423       dyn_uri = None;                 (* not needed *)
424       dyn_translator = (fun _ -> ""); (* not needed *)
425       dyn_accept_all_conditionals = false;
426     } in
427   let goto_bottom =
428     { Nethttpd_services.dyn_handler = (fun _ -> gotoBottom);
429       dyn_activation = Nethttpd_services.std_activation `Std_activation_buffered;
430       dyn_uri = None;                 (* not needed *)
431       dyn_translator = (fun _ -> ""); (* not needed *)
432       dyn_accept_all_conditionals = false;
433     } in
434   let retrieve =
435     { Nethttpd_services.dyn_handler = (fun _ -> retrieve);
436       dyn_activation = Nethttpd_services.std_activation `Std_activation_buffered;
437       dyn_uri = None;                 (* not needed *)
438       dyn_translator = (fun _ -> ""); (* not needed *)
439       dyn_accept_all_conditionals = false;
440     } in
441   let do_login =
442     { Nethttpd_services.dyn_handler = (fun _ -> login);
443       dyn_activation = Nethttpd_services.std_activation `Std_activation_buffered;
444       dyn_uri = None;                 (* not needed *)
445       dyn_translator = (fun _ -> ""); (* not needed *)
446       dyn_accept_all_conditionals = false;
447     } in
448   (*let do_logout =
449     { Nethttpd_services.dyn_handler = (fun _ -> logout);
450       dyn_activation = Nethttpd_services.std_activation `Std_activation_buffered;
451       dyn_uri = None;                 (* not needed *)
452       dyn_translator = (fun _ -> ""); (* not needed *)
453       dyn_accept_all_conditionals = false;
454     } in *)
455   
456   let nethttpd_factory = 
457     Nethttpd_plex.nethttpd_factory
458       ~handlers:[ "advance", do_advance
459                 ; "retract", do_retract
460                 ; "bottom", goto_bottom
461                 ; "open", retrieve 
462                 ; "login", do_login 
463                 (*; "logout", do_logout *)]
464       () in
465   MatitaInit.initialize_all ();
466   (* test begin *)
467   MatitaAuthentication.add_user "ricciott" "pippo123";
468   MatitaAuthentication.add_user "asperti" "pluto456";
469   (* test end *)
470   Netplex_main.startup
471     parallelizer
472     Netplex_log.logger_factories   (* allow all built-in logging styles *)
473     Netplex_workload.workload_manager_factories (* ... all ways of workload management *)
474     [ nethttpd_factory ]           (* make this nethttpd available *)
475     cmdline_cfg
476 ;;
477
478 Sys.set_signal Sys.sigpipe Sys.Signal_ignore;
479 start();;