1 (* Copyright (C) 2002, HELM Team.
3 * This file is part of HELM, an Hypertextual, Electronic
4 * Library of Mathematics, developed at the Computer Science
5 * Department, University of Bologna, Italy.
7 * HELM is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
12 * HELM is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with HELM; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
22 * For details, see the HELM World-Wide-Web page,
23 * http://cs.unibo.it/helm/.
29 let debug_print s = if debug then prerr_endline s;;
30 Http_common.debug := true;;
31 (* Http_common.debug := true;; *)
33 (** accepted HTTP servers for ask_uwobo method forwarding *)
34 let valid_servers = [ "mowgli.cs.unibo.it:58080" ; "mowgli.cs.unibo.it" ; "localhost:58080" ] ;;
36 let mqi_flags = [] (* default MathQL interpreter options *)
40 let daemon_name = "Search Engine";;
41 let default_port = 58085;;
42 let port_env_var = "SEARCH_ENGINE_PORT";;
46 Sys.getenv "SEARCH_ENGINE_HTML_DIR"
47 with Not_found -> "html" (* relative to searchEngine's document root *)
49 let interactive_user_uri_choice_TPL = pages_dir ^ "/templateambigpdq1.html";;
50 let interactive_interpretation_choice_TPL =
51 pages_dir ^ "/templateambigpdq2.html";;
52 let constraints_choice_TPL = pages_dir ^ "/constraints_choice_template.html";;
53 let final_results_TPL = pages_dir ^ "/templateambigpdq3.html";;
55 exception Chat_unfinished
57 (* build a bool from a 1-character-string *)
58 let bool_of_string' = function
61 | s -> failwith ("Can't parse a boolean from string: " ^ s)
64 (* build an int option from a string *)
65 let int_of_string' = function
69 Some (int_of_string s)
70 with Failure "int_of_string" ->
71 failwith ("Can't parse an int option from string: " ^ s)
74 let is_concl_pos pos =
75 pos = "http://www.cs.unibo.it/helm/schemas/schema-helm#MainConclusion"
77 pos = "http://www.cs.unibo.it/helm/schemas/schema-helm#InConclusion"
81 pos = "http://www.cs.unibo.it/helm/schemas/schema-helm#MainConclusion"
83 pos = "http://www.cs.unibo.it/helm/schemas/schema-helm#MainHypothesis"
86 (* HTML pretty printers for mquery_generator types *)
88 let html_of_r_obj (uri, pos, depth) =
90 "<tr><td><input type='checkbox' name='constr_obj' checked='on'/></td><td>%s</td><td>%s</td><td>%s</td></tr>"
91 uri (Str.string_after pos ((String.rindex pos '#') + 1))
92 (if is_main_pos pos then
93 sprintf "<input name='obj_depth' size='2' type='text' value='%s' />"
94 (match depth with Some i -> string_of_int i | None -> "")
96 "<input type=\"hidden\" name=\"obj_depth\" />")
99 let html_of_r_rel (pos, depth) =
101 "<tr><td><input type='checkbox' name='constr_rel' checked='on'/></td><td>%s</td><td><input name='rel_depth' size='2' type='text' value='%s' /></td></tr>"
102 pos (match depth with Some i -> string_of_int i | None -> "")
105 let html_of_r_sort (pos, depth, sort) =
107 "<tr><td><input type='checkbox' name='constr_sort' checked='on'/></td><td>%s</td><td>%s</td><td><input name='sort_depth' size='2' type='text' value='%s'/></td></tr>"
108 sort pos (match depth with Some i -> string_of_int i | None -> "")
111 (** pretty print a MathQL query result to an HELM theory file *)
112 let theory_of_result result =
113 let results_no = List.length result in
114 if results_no > 0 then
115 let mode = if results_no > 10 then "linkonly" else "typeonly" in
117 let idx = ref (results_no + 1) in
119 (fun (uri,attrs) i ->
121 "<tr><td valign=\"top\">" ^ string_of_int !idx ^ ".</td><td><ht:OBJECT uri=\"" ^ uri ^ "\" mode=\"" ^ mode ^ "\"/></td></tr>" ^ i
124 "<h1>Query Results:</h1><table xmlns:ht=\"http://www.cs.unibo.it/helm/namespaces/helm-theory\">" ^ results ^ "</table>"
126 "<h1>Query Results:</h1><p>No results found!</p>"
129 let pp_result result =
130 "<html xmlns:ht=\"http://www.cs.unibo.it/helm/namespaces/helm-theory\">\n<head><title>Query Results</title><style> A { text-decoration: none } </style></head>\n<body>" ^ theory_of_result result ^ "</body></html>"
133 (** chain application of Pcre substitutions *)
134 let rec apply_substs substs line =
137 | (rex, templ) :: rest -> apply_substs rest (Pcre.replace ~rex ~templ line)
138 (** fold like function on files *)
139 let fold_file f init fname =
140 let inchan = open_in fname in
141 let rec fold_lines' value =
143 let line = input_line inchan in
144 fold_lines' (f value line)
145 with End_of_file -> value
147 let res = (try fold_lines' init with e -> (close_in inchan; raise e)) in
150 (** iter like function on files *)
151 let iter_file f = fold_file (fun _ line -> f line) ()
153 let (title_tag_RE, choices_tag_RE, msg_tag_RE, id_to_uris_RE, id_RE,
154 interpretations_RE, interpretations_labels_RE, results_RE, new_aliases_RE,
155 form_RE, variables_initialization_RE)
157 (Pcre.regexp "@TITLE@", Pcre.regexp "@CHOICES@", Pcre.regexp "@MSG@",
158 Pcre.regexp "@ID_TO_URIS@", Pcre.regexp "@ID@",
159 Pcre.regexp "@INTERPRETATIONS@", Pcre.regexp "@INTERPRETATIONS_LABELS@",
160 Pcre.regexp "@RESULTS@", Pcre.regexp "@NEW_ALIASES@", Pcre.regexp "@FORM@",
161 Pcre.regexp "@VARIABLES_INITIALIZATION@")
162 let server_and_port_url_RE = Pcre.regexp "^http://([^/]+)/.*$"
164 exception NotAnInductiveDefinition
168 int_of_string (Sys.getenv port_env_var)
170 | Not_found -> default_port
171 | Failure "int_of_string" ->
172 prerr_endline "Warning: invalid port, reverting to default";
175 let pp_error = sprintf "<html><body><h1>Error: %s</h1></body></html>" in
176 let bad_request body outchan =
177 Http_daemon.respond_error ~status:(`Client_error `Bad_request) ~body outchan
179 let contype = "Content-Type", "text/html" in
181 (* SEARCH ENGINE functions *)
183 let refine_constraints (constr_obj, constr_rel, constr_sort) =
186 (constr_obj, constr_rel, constr_sort),
187 (Some constr_obj, Some constr_rel, Some constr_sort)
188 | "/matchConclusion" ->
191 (function (uri,pos,_) -> (uri,pos,None))
193 (function (uri,pos,depth) as constr -> is_concl_pos pos)
196 (*CSC: we must select the must constraints here!!! *)
197 (constr_obj',[],[]),(Some constr_obj', None, None)
201 let get_constraints term =
203 "/locateInductivePrinciple" ->
206 Cic.MutInd (uri,t,_) -> MQueryUtil.string_of_uriref (uri,[t])
207 | _ -> raise NotAnInductiveDefinition
210 [uri,"http://www.cs.unibo.it/helm/schemas/schema-helm#InHypothesis",
212 uri,"http://www.cs.unibo.it/helm/schemas/schema-helm#MainHypothesis",
217 ["http://www.cs.unibo.it/helm/schemas/schema-helm#MainConclusion",
220 ["http://www.cs.unibo.it/helm/schemas/schema-helm#MainHypothesis",
221 Some 1, "http://www.cs.unibo.it/helm/schemas/schema-helm#Prop"]
223 (constr_obj, constr_rel, constr_sort), (None,None,None)
225 let must = MQueryLevels2.get_constraints term in
226 refine_constraints must req_path
231 <must_obj> ':' <must_rel> ':' <must_sort> ':' <only_obj> ':' <only_rel> ':' <only_sort>
233 <must_*> ::= ('0'|'1') ('_'|<int>) (',' ('0'|'1') ('_'|<int>))*
236 let add_user_constraints ~constraints
237 ((obj, rel, sort), (only_obj, only_rel, only_sort))
240 let l = Pcre.split ~pat:"," s in
244 let subs = Pcre.extract ~pat:"^(.)(\\d+|_)$" s in
245 (bool_of_string' subs.(1), int_of_string' subs.(2)))
248 Not_found -> failwith ("Can't parse constraint string: " ^ constraints)
251 (* to be used on "obj" *)
252 let add_user_must33 user_must must =
254 (fun (b, i) (p1, p2, p3) -> if b then (p1, p2, i) else (p1, p2, None))
257 (* to be used on "rel" *)
258 let add_user_must22 user_must must =
260 (fun (b, i) (p1, p2) -> if b then (p1, i) else (p1, None))
263 (* to be used on "sort" *)
264 let add_user_must32 user_must must =
266 (fun (b, i) (p1, p2, p3) -> if b then (p1, i, p3) else (p1, None, p3))
269 match Pcre.split ~pat:":" constraints with
270 | [user_obj;user_rel;user_sort;user_only_obj;user_only_rel;user_only_sort] ->
272 (user_obj,user_rel,user_sort,user_only_obj,user_only_rel,user_only_sort)
274 (parse_must user_obj,
276 parse_must user_sort,
277 bool_of_string' user_only_obj,
278 bool_of_string' user_only_rel,
279 bool_of_string' user_only_sort)
282 (if user_only_obj then only_obj else None),
283 (if user_only_rel then only_rel else None),
284 (if user_only_sort then only_sort else None)
287 add_user_must33 user_obj obj,
288 add_user_must22 user_rel rel,
289 add_user_must32 user_sort sort
292 | _ -> failwith ("Can't parse constraint string: " ^ constraints)
295 (* HTTP DAEMON CALLBACK *)
297 let callback (req: Http_types.request) outchan =
299 debug_print (sprintf "Received request: %s" req#path);
302 let mqi_handle = MQIConn.init mqi_flags debug_print in
303 let query_string = req#param "query" in
304 let lexbuf = Lexing.from_string query_string in
305 let query = MQueryUtil.query_of_text lexbuf in
306 let result = MQueryInterpreter.execute mqi_handle query in
307 let result_string = pp_result result in
308 MQIConn.close mqi_handle;
309 Http_daemon.respond ~body:result_string ~headers:[contype] outchan
311 let mqi_handle = MQIConn.init mqi_flags debug_print in
312 let id = req#param "id" in
313 let query = MQueryGenerator.locate id in
314 let result = MQueryInterpreter.execute mqi_handle query in
315 MQIConn.close mqi_handle;
316 Http_daemon.respond ~headers:[contype] ~body:(pp_result result) outchan
318 (* TODO implement "is_permitted" *)
319 (let is_permitted _ = true in
320 let remove_fragment uri = Pcre.replace ~pat:"#.*" uri in
321 let page = remove_fragment (req#param "url") in
324 bool_of_string (req#param "preprocess")
325 with Invalid_argument _ | Http_types.Param_not_found _ -> false)
328 | page when is_permitted page ->
329 (let fname = sprintf "%s/%s" pages_dir (remove_fragment page) in
330 Http_daemon.send_basic_headers ~code:200 outchan;
331 Http_daemon.send_header "Content-Type" "text/html" outchan;
332 Http_daemon.send_CRLF outchan;
333 if preprocess then begin
336 output_string outchan
339 (function (key,value) ->
341 (Pcre.extract ~pat:"param\\.(.*)" key).(1)
343 Pcre.regexp ("@" ^ key' ^ "@"), value
346 (fun (key,_) as p-> Pcre.pmatch ~pat:"^param\\." key)
353 Http_daemon.send_file ~src:(FileSrc fname) outchan)
354 | page -> Http_daemon.respond_forbidden ~url:page outchan))
356 let url = req#param "url" in
357 let server_and_port =
358 (Pcre.extract ~rex:server_and_port_url_RE url).(1)
360 if List.mem server_and_port valid_servers then
362 ~headers:["Content-Type", "text/html"]
363 ~body:(Http_client.Convenience.http_get url)
367 ~body:(pp_error ("Untrusted UWOBO server: " ^ server_and_port))
371 | "/locateInductivePrinciple" ->
372 let mqi_handle = MQIConn.init mqi_flags debug_print in
373 let term_string = req#param "term" in
374 let lexbuf = Lexing.from_string term_string in
375 let (context, metasenv) = ([], []) in
376 let (dom, mk_metasenv_and_expr) =
377 CicTextualParserContext.main
378 ~context ~metasenv CicTextualLexer.token lexbuf
380 let id_to_uris_raw = req#param "aliases" in
381 let tokens = Pcre.split ~pat:"\\s" id_to_uris_raw in
382 let rec parse_tokens keys lookup = function (* TODO spostarla fuori *)
384 | "alias" :: key :: value :: rest ->
385 let key' = CicTextualParser0.Id key in
391 (CicTextualParser0.Uri (MQueryMisc.cic_textual_parser_uri_of_string value))
394 | _ -> failwith "Can't parse aliases"
396 let parse_choices choices_raw =
397 let choices = Pcre.split ~pat:";" choices_raw in
400 match Pcre.split ~pat:"\\s" x with
402 | id::tail when id<>"" ->
404 prerr_endline ("#### " ^ id ^ " :=");
405 List.iter (fun u -> prerr_endline ("<" ^ Netencoding.Url.decode u ^ ">")) tail;
407 Some (List.map (fun u -> Netencoding.Url.decode u) tail)
410 | _ -> failwith "Can't parse choices")
414 let (id_to_uris : Disambiguate.domain_and_interpretation) =
415 parse_tokens [] (fun _ -> None) tokens in
418 let choices_raw = req#param "choices" in
419 parse_choices choices_raw
420 with Http_types.Param_not_found _ -> (fun _ -> None)
422 let module Chat: Disambiguate.Callbacks =
425 let get_metasenv () =
426 !CicTextualParser0.metasenv
428 let set_metasenv metasenv =
429 CicTextualParser0.metasenv := metasenv
431 let output_html = prerr_endline
433 let interactive_user_uri_choice
435 ?enable_button_for_non_vars ~(title: string) ~(msg: string)
436 ~(id: string) (choices: string list)
438 (match id_to_choices id with
439 | Some choices -> choices
441 let msg = Pcre.replace ~pat:"\'" ~templ:"\\\'" msg in
442 (match selection_mode with
443 | `SINGLE -> assert false
445 Http_daemon.send_basic_headers ~code:200 outchan ;
446 Http_daemon.send_CRLF outchan ;
449 let formatted_choices =
451 (List.map (fun uri -> sprintf "\'%s\'" uri) choices)
455 [title_tag_RE, title;
456 choices_tag_RE, formatted_choices;
458 id_to_uris_RE, id_to_uris_raw;
462 output_string outchan (processed_line ^ "\n"))
463 interactive_user_uri_choice_TPL;
464 raise Chat_unfinished))
466 let interactive_interpretation_choice interpretations =
467 let html_interpretations_labels =
472 (String.concat "<br />"
475 (sprintf "alias %s %s" id value))
480 let html_interpretations =
488 (sprintf "alias %s %s"
490 (MQueryMisc.wrong_xpointer_format_from_wrong_xpointer_format'
496 Http_daemon.send_basic_headers ~code:200 outchan ;
497 Http_daemon.send_CRLF outchan ;
502 [interpretations_RE, html_interpretations;
503 interpretations_labels_RE, html_interpretations_labels]
506 output_string outchan (processed_line ^ "\n"))
507 interactive_interpretation_choice_TPL;
508 raise Chat_unfinished
510 let input_or_locate_uri ~title =
511 UriManager.uri_of_string "cic:/Coq/Init/DataTypes/nat_ind.con"
515 let module Disambiguate' = Disambiguate.Make (Chat) in
516 let (id_to_uris', metasenv', term') =
517 Disambiguate'.disambiguate_input mqi_handle
518 context metasenv dom mk_metasenv_and_expr id_to_uris
520 (match metasenv' with
522 let ((must_obj, must_rel, must_sort) as must'),
523 ((only_obj, only_rel, only_sort) as only) =
524 get_constraints term' req#path
529 ~constraints:(req#param "constraints")
531 with Http_types.Param_not_found _ ->
533 "var aliases = '" ^ id_to_uris_raw ^ "';\n" ^
534 "var constr_obj_len = " ^
535 string_of_int (List.length must_obj) ^ ";\n" ^
536 "var constr_rel_len = " ^
537 string_of_int (List.length must_rel) ^ ";\n" ^
538 "var constr_sort_len = " ^
539 string_of_int (List.length must_sort) ^ ";\n" in
541 (if must_obj = [] then "" else
542 "<h4>Obj constraints</h4>" ^
544 (String.concat "\n" (List.map html_of_r_obj must_obj)) ^
546 (* The following three lines to make Javascript create *)
547 (* the constr_obj[] and obj_depth[] arrays even if we *)
548 (* have only one real entry. *)
549 "<input type=\"hidden\" name=\"constr_obj\" />" ^
550 "<input type=\"hidden\" name=\"obj_depth\" />") ^
551 (if must_rel = [] then "" else
552 "<h4>Rel constraints</h4>" ^
554 (String.concat "\n" (List.map html_of_r_rel must_rel)) ^
556 (* The following two lines to make Javascript create *)
557 (* the constr_rel[] and rel_depth[] arrays even if *)
558 (* we have only one real entry. *)
559 "<input type=\"hidden\" name=\"constr_rel\" />" ^
560 "<input type=\"hidden\" name=\"rel_depth\" />") ^
561 (if must_sort = [] then "" else
562 "<h4>Sort constraints</h4>" ^
564 (String.concat "\n" (List.map html_of_r_sort must_sort)) ^
566 (* The following two lines to make Javascript create *)
567 (* the constr_sort[] and sort_depth[] arrays even if *)
568 (* we have only one real entry. *)
569 "<input type=\"hidden\" name=\"constr_sort\" />" ^
570 "<input type=\"hidden\" name=\"sort_depth\" />") ^
571 "<h4>Only constraints</h4>" ^
572 "Enforce Only constraints for objects: " ^
573 "<input type='checkbox' name='only_obj'" ^
574 (if only_obj = None then "" else " checked='yes'") ^ " /><br />" ^
575 "Enforce Rel constraints for objects: " ^
576 "<input type='checkbox' name='only_rel'" ^
577 (if only_rel = None then "" else " checked='yes'") ^ " /><br />" ^
578 "Enforce Sort constraints for objects: " ^
579 "<input type='checkbox' name='only_sort'" ^
580 (if only_sort = None then "" else " checked='yes'") ^ " /><br />"
582 Http_daemon.send_basic_headers ~code:200 outchan ;
583 Http_daemon.send_CRLF outchan ;
589 variables_initialization_RE, variables] line
591 output_string outchan (processed_line ^ "\n"))
592 constraints_choice_TPL;
593 raise Chat_unfinished)
595 let query = MQueryGenerator.searchPattern must'' only' in
596 let results = MQueryInterpreter.execute mqi_handle query in
597 Http_daemon.send_basic_headers ~code:200 outchan ;
598 Http_daemon.send_CRLF outchan ;
602 match id_to_uris' with
607 sprintf "\'alias %s cic:%s\'"
609 CicTextualParser0.Id name -> name
610 | _ -> assert false (*CSC: completare *))
612 | None -> assert false
613 | Some (CicTextualParser0.Uri t) ->
614 MQueryMisc.string_of_cic_textual_parser_uri
616 | _ -> assert false (*CSC: completare *)))
621 [results_RE, theory_of_result results ;
622 new_aliases_RE, new_aliases]
625 output_string outchan (processed_line ^ "\n"))
627 | _ -> (* unable to instantiate some implicit variable *)
630 ~body:"some implicit variables are still unistantiated :-("
632 MQIConn.close mqi_handle
634 Http_daemon.respond_error ~status:(`Client_error `Bad_request) outchan);
635 debug_print (sprintf "%s done!" req#path)
637 | Chat_unfinished -> prerr_endline "Chat unfinished, Try again!"
638 | Http_types.Param_not_found attr_name ->
639 bad_request (sprintf "Parameter '%s' is missing" attr_name) outchan
642 ~body:(pp_error ("Uncaught exception: " ^ (Printexc.to_string exc)))
645 printf "%s started and listening on port %d\n" daemon_name port;
646 printf "Current directory is %s\n" (Sys.getcwd ());
647 printf "HTML directory is %s\n" pages_dir;
649 Unix.putenv "http_proxy" "";
650 Http_daemon.start' ~port callback;
651 printf "%s is terminating, bye!\n" daemon_name