]> matita.cs.unibo.it Git - helm.git/blobdiff - matitaB/components/content_pres/boxPp.ml
update in basic_2
[helm.git] / matitaB / components / content_pres / boxPp.ml
index 45c8b6c20b89f4c131848c92da3d93d39a263b06..ff94649964812a27b0bd44b6401483b4de04f0f6 100644 (file)
 
 (* $Id$ *)
 
-module Pres = Mpresentation
 
 (** {2 Pretty printing from BoxML to strings} *)
 
-let utf8_string_length s = Utf8.compute_len s 0 (String.length s)
+let utf8_string_length s = 
+  Utf8.compute_len s 0 (String.length s)
 
 let string_space = " "
 let string_space_len = utf8_string_length string_space
-let string_indent = (* string_space *) [],""
-let string_indent_len = utf8_string_length (snd string_indent)
+let string_indent = (* string_space *) "
+let string_indent_len = utf8_string_length string_indent
 let string_ink = "---------------------------"
 let string_ink_len = utf8_string_length string_ink
 
 let contains_attrs contained container =
   List.for_all (fun attr -> List.mem attr container) contained
 
-let want_indent = contains_attrs (RenderingAttrs.indent_attributes `BoxML)
-let want_spacing = contains_attrs (RenderingAttrs.spacing_attributes `BoxML)
+let small_skip_attributes _ = [ None, "width", "0.5em" ]
 
-let shift off = List.map (fun (start,stop,v) -> start+off,stop+off,v);;
+let want_indent = contains_attrs [ None, "indent", "0.5em" ]
+let want_spacing = contains_attrs [ None, "spacing", "0.5em" ]
 
-let (^^) (map1,s1) (map2,s2) = map1 @ (shift (utf8_string_length s1) map2), s1 ^ s2;;
+let shift off = List.map (fun (start,stop,v) -> start+off,stop+off,v);;
 
-(* CSC: inefficient (quadratic) implementation *)
-let mapped_string_concat sep =
- let sep_len = utf8_string_length sep in
- let rec aux off =
-  function
-     [] -> [],""
-   | [map,s] -> shift off map,s
-   | (map,s)::tl ->
-       let map = shift off map in
-       let map2,s2 = aux (off + utf8_string_length s + sep_len) tl in
-        map@map2, s ^ sep ^ s2
- in
-  aux 0
-;;
+let indent_string s = string_indent ^ s
 
-let indent_string s = string_indent ^^ s
 let indent_children (size, children) =
   let children' = List.map indent_string children in
   size + string_space_len, children'
@@ -79,55 +65,79 @@ let merge_columns sep cols =
   let sep_len = utf8_string_length sep in
   let indent = ref 0 in
   let res_rows = ref [] in
-  let add_row ~continue row =
+  let max_len = ref 0 in
+  let add_row ~continue size row =
     match !res_rows with
     | last :: prev when continue ->
-        res_rows := (last ^^ ([],sep) ^^ row) :: prev;
-        indent := !indent + utf8_string_length (snd last) + sep_len
-    | _ -> res_rows := (([],String.make !indent ' ') ^^ row) :: !res_rows;
+        res_rows := (last ^ sep ^ row) :: prev;
+        indent := size
+    | _ -> res_rows := ((String.make !indent ' ') ^ row) :: !res_rows;
   in
   List.iter
-    (fun rows ->
-      match rows with
+    (fun (len,rows) ->
+      (match rows with
       | hd :: tl ->
-          add_row ~continue:true hd;
-          List.iter (add_row ~continue:false) tl
-      | [] -> ())
+          add_row ~continue:true !max_len hd;
+          List.iter (add_row ~continue:false len) tl
+      | [] -> ());
+      max_len := !max_len + len + sep_len)
     cols;
-  List.rev !res_rows
+  !max_len, List.rev !res_rows
     
-let max_len =
-  List.fold_left (fun max_size (_,s) -> max (utf8_string_length s) max_size) 0
-
 let render_row available_space spacing children =
   let spacing_bonus = if spacing then string_space_len else 0 in
   let rem_space = ref available_space in
   let renderings = ref [] in
   List.iter
     (fun f ->
-      let occupied_space, rendering = f !rem_space in
+      let (*occupied_space, rendering*) rendering = f !rem_space in
+      let occupied_space,_ = rendering in
       renderings := rendering :: !renderings;
       rem_space := !rem_space - (occupied_space + spacing_bonus))
     children;
   let sep = if spacing then string_space else "" in
-  let rendering = merge_columns sep (List.rev !renderings) in
-  max_len rendering, rendering
+  (*let rendering = merge_columns sep (List.rev !renderings) in
+  max_len rendering, rendering *)
+  merge_columns sep (List.rev !renderings) 
 
-let fixed_rendering href s =
+let fixed_rendering s = 
   let s_len = utf8_string_length s in
-  let map = match href with None -> [] | Some href -> [0,s_len-1,href] in
-  (fun _ -> s_len, [map,s])
+  fun _ -> s_len,[s]
 
 let render_to_strings ~map_unicode_to_tex choose_action size markup =
+  prerr_endline ("render size is " ^ string_of_int size);
+  let add_markup attr txt =
+    let txt = Netencoding.Html.encode ~in_enc:`Enc_utf8 () txt in
+    let value_of_attr (_,_,v) = v in
+    let title = 
+      try Some (value_of_attr (List.find (fun (_,t,_) -> t = "title") attr))
+      with _ -> None in
+    let href =
+      try Some (value_of_attr (List.find (fun (_,t,_) -> t = "href") attr))
+      with _ -> None in
+    match title,href with
+    | None,None -> txt
+    | None,Some u -> "<A href=\"" ^ u ^ "\">" ^ txt ^ "</A>"
+    | Some t, Some u ->
+       "<A href=\"" ^ u ^ "\" title=\"" ^ t ^ "\">" ^ txt ^ "</A>"
+    | Some t, None ->
+       let u = "cic:/fakeuri.con" in
+       "<A href=\"" ^ u ^ "\" title=\"" ^ t ^ "\">" ^ txt ^ "</A>"
+  in
+
   let max_size = max_int in
   let rec aux_box =
     function
-    | Box.Text (_, t) -> fixed_rendering None t
-    | Box.Space _ -> fixed_rendering None string_space
-    | Box.Ink _ -> fixed_rendering None string_ink
+    | Box.Text (attr, t) ->
+        fun x -> 
+        (match fixed_rendering t x with
+         | len, [txt] -> len, [add_markup attr txt]
+         | _ -> assert false)
+    | Box.Space _ -> fixed_rendering string_space
+    | Box.Ink _ -> fixed_rendering string_ink
     | Box.Action (_, []) -> assert false
     | Box.Action (_, l) -> aux_box (choose_action l)
-    | Box.Object (_, o) -> aux_mpres o
+    | Box.Object (_, o) -> fixed_rendering o
     | Box.H (attrs, children) ->
         let spacing = want_spacing attrs in
         let children' = List.map aux_box children in
@@ -143,14 +153,14 @@ let render_to_strings ~map_unicode_to_tex choose_action size markup =
             res
           else  (* break needed, re-render using a Box.V *)
             aux_box (Box.V (attrs, children)) size)
-    | Box.V (attrs, []) -> assert false
+    | Box.V (attrs, []) -> aux_box (Box.Text (attrs,"")) (* FIXME *)
     | Box.V (attrs, [child]) -> aux_box child
     | Box.V (attrs, hd :: tl) ->
         let indent = want_indent attrs in
         let hd_f = aux_box hd in
         let tl_fs = List.map aux_box tl in
         (fun size ->
-          let _, hd_rendering = hd_f size in
+          let hd_rendering = hd_f size in
           let children_size =
             max 0 (if indent then size - string_indent_len else size)
           in
@@ -158,11 +168,12 @@ let render_to_strings ~map_unicode_to_tex choose_action size markup =
             List.map
               (fun f ->
 (*                 let indent_header = if indent then string_indent else "" in *)
-                snd (indent_children (f children_size)))
+                indent_children (f children_size))
               tl_fs
           in
-          let rows = hd_rendering @ List.concat tl_renderings in
-          max_len rows, rows)
+            List.fold_right 
+              (fun (len,row) (acclen,accrows) -> max acclen len, row@accrows)
+              (hd_rendering::tl_renderings) (0,[])) 
     | Box.HOV (attrs, []) -> assert false
     | Box.HOV (attrs, [child]) -> aux_box child
     | Box.HOV (attrs, children) ->
@@ -177,19 +188,23 @@ let render_to_strings ~map_unicode_to_tex choose_action size markup =
           let renderings = ref [] in
           let rem_space = ref size in
           let first_row = ref true in
-          let use_rendering (space, rendering) =
+          let max_len = ref 0 in
+          let use_rendering (* (space, rendering) *) rendering =
+            let space, _ = rendering in
             let use_indent = !renderings = [] && not !first_row in
-            let rendering' =
-              if use_indent then List.map indent_string rendering
-              else rendering
+            let bonus = if use_indent then indent_bonus else spacing_bonus in
+            let rendering' = (* space+bonus, *)
+              if use_indent then 
+                 space+indent_bonus, List.map indent_string (snd rendering)
+              else space, (snd rendering)
             in
             renderings := rendering' :: !renderings;
-            let bonus = if use_indent then indent_bonus else spacing_bonus in
             rem_space := !rem_space - (space + bonus)
           in
           let end_cluster () =
-            let new_rows = merge_columns sep (List.rev !renderings) in
+            let new_len, new_rows = merge_columns sep (List.rev !renderings) in
             rows := List.rev_append new_rows !rows;
+            max_len := max !max_len new_len;
             rem_space := size - indent_bonus;
             renderings := [];
             first_row := false
@@ -206,75 +221,10 @@ let render_to_strings ~map_unicode_to_tex choose_action size markup =
               end)
             fs;
           if !renderings <> [] then end_cluster ();
-          max_len !rows, List.rev !rows)
-  and aux_mpres =
-   let text s = Pres.Mtext ([], s) in
-   let mrow c = Pres.Mrow ([], c) in
-   let parentesize s = s in
-   function x ->
-    let attrs = Pres.get_attr x in
-    let href =
-     try
-      let _,_,href =
-       List.find (fun (ns,na,value) -> ns = Some "xlink" && na = "href") attrs
-      in
-       Some href
-     with Not_found -> None in
-    match x with
-    | Pres.Mi (_, s)
-    | Pres.Mn (_, s)
-    | Pres.Mtext (_, s)
-    | Pres.Ms (_, s)
-    | Pres.Mgliph (_, s) -> fixed_rendering href s
-    | Pres.Mo (_, s) ->
-        let s =
-          if map_unicode_to_tex then begin
-            if utf8_string_length s = 1 && Char.code s.[0] < 128 then
-              s
-            else
-              match Utf8Macro.tex_of_unicode s with
-              | s::_ -> s ^ " "
-              | [] -> " " ^ s ^ " "
-          end else
-            s
-        in
-        fixed_rendering href s
-    | Pres.Mspace _ -> fixed_rendering href string_space
-    | Pres.Mrow (attrs, children) ->
-        let children' = List.map aux_mpres children in
-        (fun size -> render_row size false children')
-    | Pres.Mfrac (_, m, n) ->
-       aux_mpres (mrow [ text " \\frac "; parentesize m ; text " "; parentesize n; text " " ])
-    | Pres.Msqrt (_, m) -> aux_mpres (mrow [ text " \\sqrt "; parentesize m; text " "])
-    | Pres.Mroot (_, r, i) ->
-        aux_mpres (mrow [
-          text " \\root "; parentesize i; text " \\of "; parentesize r; text " " ])
-    | Pres.Mstyle (_, m)
-    | Pres.Merror (_, m)
-    | Pres.Mpadded (_, m)
-    | Pres.Mphantom (_, m)
-    | Pres.Menclose (_, m) -> aux_mpres m
-    | Pres.Mfenced (_, children) -> aux_mpres (mrow children)
-    | Pres.Maction (_, []) -> assert false
-    | Pres.Msub (_, m, n) ->
-        aux_mpres (mrow [ text " "; parentesize m; text " \\sub "; parentesize n; text " " ])
-    | Pres.Msup (_, m, n) ->
-        aux_mpres (mrow [ text " "; parentesize m; text " \\sup "; parentesize n; text " " ])
-    | Pres.Munder (_, m, n) ->
-        aux_mpres (mrow [ text " "; parentesize m; text " \\below "; parentesize n; text " " ])
-    | Pres.Mover (_, m, n) ->
-        aux_mpres (mrow [ text " "; parentesize m; text " \\above "; parentesize n; text " " ])
-    | Pres.Msubsup _
-    | Pres.Munderover _
-    | Pres.Mtable _ ->
-        prerr_endline
-          "MathML presentation element not yet available in concrete syntax";
-        assert false
-    | Pres.Maction (_, hd :: _) -> aux_mpres hd
-    | Pres.Mobject (_, o) -> aux_box (o: CicNotationPres.boxml_markup)
+          !max_len, List.rev !rows)
   in
-  snd (aux_mpres markup size)
+  snd (aux_box markup size)
 
 let render_to_string ~map_unicode_to_tex choose_action size markup =
mapped_string_concat "\n"
String.concat "\n"
   (render_to_strings ~map_unicode_to_tex choose_action size markup)