1 (* Copyright (C) 2002-2005, 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 let _ = Http_common.debug := false
32 exception Chat_unfinished
33 exception Unbound_identifier of string
34 exception Invalid_action of string (* invalid action for "/search" method *)
36 (** raised by elim when a MutInd is required but not found *)
37 exception Not_a_MutInd
39 let daemon_name = "Whelp"
40 let configuration_file = "/projects/helm/etc/whelp.conf.xml"
43 "ACTION"; "ADVANCED"; "ADVANCED_CHECKED"; "CHOICES"; "CURRENT_CHOICES";
44 "EXPRESSION"; "ID"; "IDEN"; "ID_TO_URIS"; "INTERPRETATIONS";
45 "INTERPRETATIONS_LABELS"; "MSG"; "NEW_ALIASES"; "NEXT_LINK"; "NO_CHOICES";
46 "PAGE"; "PAGES"; "PAGELIST"; "PREV_LINK"; "QUERY_KIND"; "QUERY_SUMMARY"; "RESULTS";
47 "SEARCH_ENGINE_URL"; "SIMPLE_CHECKED"; "TITLE";
51 let regexps = Hashtbl.create 25 in
53 (fun tag -> Hashtbl.add regexps tag (Pcre.regexp (sprintf "@%s@" tag)))
57 Hashtbl.find regexps name
58 with Not_found -> assert false
60 (* First of all we load the configuration *)
61 let _ = Helm_registry.load_from configuration_file
62 let port = Helm_registry.get_int "search_engine.port"
63 let pages_dir = Helm_registry.get "search_engine.html_dir"
65 let moogle_TPL = pages_dir ^ "/moogle.html"
66 let choices_TPL = pages_dir ^ "/moogle_chat.html"
69 let ic = Unix.open_process_in "hostname -f" in
70 let hostname = input_line ic in
71 ignore (Unix.close_process_in ic);
72 sprintf "http://%s:%d" hostname port
73 let _ = Helm_registry.set "search_engine.my_own_url" my_own_url
75 let bad_request body outchan =
76 Http_daemon.respond_error ~code:(`Status (`Client_error `Bad_request)) ~body
79 (** chain application of Pcre substitutions *)
80 let rec apply_substs substs line =
83 | (rex, templ) :: rest -> apply_substs rest (Pcre.replace ~rex ~templ line)
84 (** fold like function on files *)
85 let fold_file f init fname =
86 let inchan = open_in fname in
87 let rec fold_lines' value =
89 let line = input_line inchan in
90 fold_lines' (f value line)
91 with End_of_file -> value
93 let res = (try fold_lines' init with e -> (close_in inchan; raise e)) in
96 (** iter like function on files *)
97 let iter_file f = fold_file (fun _ line -> f line) ()
98 let javascript_quote s =
99 let rex = Pcre.regexp "'" in
100 let rex' = Pcre.regexp "\"" in
101 Pcre.replace ~rex ~templ:"\\'"
102 (Pcre.replace ~rex:rex' ~templ:"\\\"" s)
104 let len = String.length s in
105 String.sub s 1 (len-1)
107 let s = UriManager.string_of_uri uri in
108 let len = String.length s in
109 let suffix = String.sub s (len-4) 4 in
110 not (suffix = ".var")
112 let add_param_substs params =
115 let key' = (Pcre.extract ~pat:"param\\.(.*)" key).(1) in
116 Pcre.regexp ("@" ^ key' ^ "@"), value)
118 (fun ((key,_) as p) -> Pcre.pmatch ~pat:"^param\\." key)
121 let page_RE = Pcre.regexp "¶m\\.page=\\d+"
122 let identifier_RE = Pcre.regexp "^\\s*(\\w|')+\\s*$"
123 let qualified_mutind_RE =
124 Pcre.regexp "^\\s*cic:(/(\\w|')+)+\\.ind#xpointer\\(1/\\d+\\)\\s*$"
126 let query_kind_of_req (req: Http_types.request) =
128 | "/match" -> "Match"
130 | "/locate" -> "Locate"
132 | "/instance" -> "Instance"
135 (* given a uri with a query part in input try to find in it a string
136 * "¶m_name=..." (where param_name is given). If found its value will be
137 * set to param_value. If not, a trailing "¶m_name=param_value" (where
138 * both are given) is added to the input string *)
139 let patch_param param_name param_value url =
140 let rex = Pcre.regexp (sprintf "&%s=[^&]*" (Pcre.quote param_name)) in
141 if Pcre.pmatch ~rex url then
142 Pcre.replace ~rex ~templ:(sprintf "%s=%s" param_name param_value) url
144 sprintf "%s&%s=%s" url param_name param_value
146 (** HTML encoding, e.g.: "<" -> "<" *)
147 let html_encode = Netencoding.Html.encode_from_latin1
149 let fold_n_to_m f n m acc =
152 i when i <= m -> aux (f i acc) (i + 1)
157 let send_results results
158 ?(id_to_uris = DisambiguateTypes.empty_environment)
159 (req: Http_types.request) outchan
161 let query_kind = query_kind_of_req req in
162 let interp = try req#param "interp" with Http_types.Param_not_found _ -> "" in
163 let page_link anchor page =
165 let this = req#param "this" in
167 (patch_param "param.interp" interp
168 (patch_param "param.page" (string_of_int page)
171 let target = Pcre.replace ~pat:"&" ~templ:"&" target in
172 sprintf "<a href=\"%s\">%s</a>" target anchor
173 with Http_types.Param_not_found _ -> ""
175 Http_daemon.send_basic_headers ~code:(`Code 200) outchan ;
176 Http_daemon.send_header "Content-Type" "text/xml" outchan;
177 Http_daemon.send_CRLF outchan ;
180 | `Results results ->
181 let page = try int_of_string (req#param "page") with _ -> 1 in
182 let results_no = List.length results in
183 let results_per_page =
184 Helm_registry.get_int "search_engine.results_per_page"
187 if results_no mod results_per_page = 0 then
188 results_no / results_per_page
190 results_no / results_per_page + 1
192 let pages = if pages = 0 then 1 else pages in
193 let additional_pages = 3 in
194 let (summary, results) = MooglePp.theory_of_result page results in
195 [ tag "PAGE", string_of_int page;
196 tag "PAGES", string_of_int pages ^ " Pages";
198 (let inf = page - additional_pages in
199 let sup = page + additional_pages in
200 let superinf = inf - (sup - pages) in
201 let supersup = sup + (1 - inf) in
203 if inf >= 1 && sup <= pages then
206 1, (if supersup <= pages then supersup else pages)
207 else (* sup > pages *)
208 (if superinf >= 1 then superinf else 1),pages
211 (fun n acc -> acc ^ " " ^
212 (if n = page then string_of_int n
213 else page_link (string_of_int n) n))
215 tag "PREV_LINK", (if page > 1 then page_link "Prev" (page-1) else "");
217 (if page < pages then page_link "Next" (page+1) else "");
218 tag "QUERY_KIND", query_kind;
219 tag "QUERY_SUMMARY", summary;
220 tag "RESULTS", results ]
223 tag "PAGES", "1 Page";
227 tag "QUERY_KIND", query_kind;
228 tag "QUERY_SUMMARY", "error";
234 with Http_types.Param_not_found _ -> "no"
237 (tag "SEARCH_ENGINE_URL", my_own_url) ::
238 (tag "ADVANCED", advanced) ::
239 (tag "EXPRESSION", html_encode (req#param "expression")) ::
240 add_param_substs req#params @
241 (if advanced = "no" then
242 [ tag "SIMPLE_CHECKED", "checked='true'";
243 tag "ADVANCED_CHECKED", "" ]
245 [ tag "SIMPLE_CHECKED", "";
246 tag "ADVANCED_CHECKED", "checked='true'" ]) @
251 let new_aliases = DisambiguatePp.pp_environment id_to_uris in
254 (* CSC: Bug here: this is a string, not an array! *)
255 ((tag "NEW_ALIASES", "'" ^ javascript_quote new_aliases ^ "'") ::
259 output_string outchan (processed_line ^ "\n"))
262 let exec_action dbd (req: Http_types.request) outchan =
263 let term_str = req#param "expression" in
265 if req#path = "/elim" &&
266 not (Pcre.pmatch ~rex:identifier_RE term_str ||
267 Pcre.pmatch ~rex:qualified_mutind_RE term_str) then
269 let (context, metasenv) = ([], []) in
271 try req#param "aliases"
272 with Http_types.Param_not_found _ -> ""
274 let parse_interpretation_choices choices =
275 List.map int_of_string (Pcre.split ~pat:" " choices) in
276 let parse_choices choices_raw =
277 let choices = Pcre.split ~pat:";" choices_raw in
280 match Pcre.split ~pat:"\\s" x with
282 | id::tail when id<>"" ->
286 (fun u -> UriManager.uri_of_string
287 (Netencoding.Url.decode u))
291 | _ -> failwith "Can't parse choices")
295 let id_to_uris = DisambiguatePp.parse_environment id_to_uris_raw in
298 parse_choices (req#param "choices")
299 with Http_types.Param_not_found _ -> (fun _ -> None)
301 let interpretation_choices =
303 let choices_raw = req#param "interpretation_choices" in
304 if choices_raw = "" then None
305 else Some (parse_interpretation_choices choices_raw)
306 with Http_types.Param_not_found _ -> None
308 let module Chat: DisambiguateTypes.Callbacks =
310 let interactive_user_uri_choice ~selection_mode ?ok
311 ?enable_button_for_non_vars ~(title: string) ~(msg: string)
312 ~(id: string) (choices: UriManager.uri list)
314 match id_to_choices id with
315 | Some choices -> choices
316 | None -> List.filter nonvar choices
318 let interactive_interpretation_choice interpretations =
319 match interpretation_choices with
322 let html_interpretations =
323 MooglePp.html_of_interpretations interpretations
325 Http_daemon.send_basic_headers ~code:(`Code 200) outchan ;
326 Http_daemon.send_CRLF outchan ;
330 with Http_types.Param_not_found _ -> "no"
332 let query_kind = query_kind_of_req req in
337 [ tag "SEARCH_ENGINE_URL", my_own_url;
338 tag "ADVANCED", advanced;
339 tag "INTERPRETATIONS", html_interpretations;
340 tag "CURRENT_CHOICES", req#param "choices";
341 tag "EXPRESSION", html_encode (req#param "expression");
342 tag "QUERY_KIND", query_kind;
343 tag "QUERY_SUMMARY", "disambiguation";
344 tag "ACTION", string_tail req#path ]
347 output_string outchan (processed_line ^ "\n"))
349 raise Chat_unfinished
351 let input_or_locate_uri ~title ?id () =
353 | Some id -> raise (Unbound_identifier id)
354 | None -> assert false
357 let module Disambiguate' = Disambiguate.Make(Chat) in
358 let ast = Grammar.Entry.parse CicNotationParser.term (Stream.of_string term_str) in
359 let (id_to_uris, metasenv, term) =
361 Disambiguate'.disambiguate_term ~dbd ~context ~metasenv
362 ~aliases:id_to_uris ast
364 | [id_to_uris,metasenv,term,_] -> id_to_uris,metasenv,term
369 | "/match" -> MetadataQuery.match_term ~dbd term
370 | "/instance" -> MetadataQuery.instance ~dbd term
372 let status = ProofEngineTypes.initial_status term metasenv in
373 let intros = PrimitiveTactics.intros_tac () in
374 let subgoals = ProofEngineTypes.apply_tactic intros status in
377 let (uri,metasenv,bo,ty) = proof in
378 List.map fst (MetadataQuery.experimental_hint ~dbd (proof, goal))
383 | Cic.MutInd (uri, typeno, _) ->
384 UriManager.uri_of_uriref uri typeno None
385 | _ -> raise Not_a_MutInd
387 MetadataQuery.elim ~dbd uri
390 let uris = List.map UriManager.string_of_uri uris in
391 send_results ~id_to_uris (`Results uris) req outchan
394 send_results (`Error (MooglePp.pp_error "Not an inductive type"
395 ("elim requires as input an identifier corresponding to an inductive"
399 let callback dbd (req: Http_types.request) outchan =
401 debug_print (sprintf "Received request: %s" req#path);
404 (* TODO implement "is_permitted" *)
405 (let is_permitted page = not (Pcre.pmatch ~pat:"/" page) in
406 let page = req#param "url" in
407 let fname = sprintf "%s/%s" pages_dir page in
410 bool_of_string (req#param "preprocess")
411 with Invalid_argument _ | Http_types.Param_not_found _ -> false)
414 | page when is_permitted page && Sys.file_exists fname ->
415 Http_daemon.send_basic_headers ~code:(`Code 200) outchan;
416 Http_daemon.send_header "Content-Type" "text/html" outchan;
417 Http_daemon.send_CRLF outchan;
418 if preprocess then begin
421 output_string outchan
423 ((tag "SEARCH_ENGINE_URL", my_own_url) ::
424 (tag "ADVANCED", "no") ::
425 (tag "RESULTS", "") ::
426 add_param_substs req#params)
431 Http_daemon.send_file ~src:(Http_types.FileSrc fname) outchan
432 | page -> Http_daemon.respond_forbidden ~url:page outchan))
433 | "/help" -> Http_daemon.respond ~body:daemon_name outchan
435 let initial_expression =
436 try req#param "expression" with Http_types.Param_not_found _ -> ""
439 Pcre.replace ~pat:"\\s*$"
440 (Pcre.replace ~pat:"^\\s*" initial_expression)
442 if expression = "" then
443 send_results (`Results []) req outchan
445 let results = MetadataQuery.locate ~dbd expression in
446 let results = List.map UriManager.string_of_uri results in
447 send_results (`Results results) req outchan
452 | "/match" -> exec_action dbd req outchan
454 Http_daemon.respond_error ~code:(`Status (`Client_error `Bad_request))
456 debug_print (sprintf "%s done!" req#path)
458 | Chat_unfinished -> ()
459 | Http_types.Param_not_found attr_name ->
460 bad_request (sprintf "Parameter '%s' is missing" attr_name) outchan
461 | CicNotationParser.Parse_error (_, msg) ->
462 send_results (`Error (MooglePp.pp_error "Parse error" msg)) req outchan
463 | Unbound_identifier id ->
464 send_results (`Error (MooglePp.pp_error "Unbound identifier" id)) req
467 let exn_string = Printexc.to_string exn in
468 debug_print exn_string;
469 let msg = MooglePp.pp_error "Uncaught exception" exn_string in
470 send_results (`Error msg) req outchan
472 let restore_environment () =
474 Helm_registry.get_opt Helm_registry.string "search_engine.environment_dump"
478 printf "Restoring Cic environment from %s ... " fname; flush stdout;
479 let ic = open_in fname in
480 CicEnvironment.restore_from_channel ic;
482 printf "done!\n"; flush stdout
484 let read_notation () =
485 CicNotation.load_notation (Helm_registry.get "search_engine.notations");
486 CicNotation.load_notation (Helm_registry.get "search_engine.interpretations")
489 printf "%s started and listening on port %d\n" daemon_name port;
490 printf "Current directory is %s\n" (Sys.getcwd ());
491 printf "HTML directory is %s\n" pages_dir;
493 Unix.putenv "http_proxy" "";
496 ~host:(Helm_registry.get "db.host")
497 ~database:(Helm_registry.get "db.database")
498 ~user:(Helm_registry.get "db.user")
501 restore_environment ();
503 Http_daemon.start' ~port (callback dbd);
504 printf "%s is terminating, bye!\n" daemon_name