Skip to content
Snippets Groups Projects
Commit 1aa1f72f authored by Loïc Correnson's avatar Loïc Correnson Committed by Virgile Prevosto
Browse files

[utils/markdown] use smart constructors for text

parent 575340fb
No related branches found
No related tags found
No related merge requests found
...@@ -97,17 +97,17 @@ let format txt = Format.kasprintf plain txt ...@@ -97,17 +97,17 @@ let format txt = Format.kasprintf plain txt
let image ~alt ~file = [Image(alt,file)] let image ~alt ~file = [Image(alt,file)]
let mklink ?text href = let href ?text href =
let txt = let txt =
match text with Some txt -> txt | None -> match text with Some txt -> txt | None ->
let tt = match href with URL u -> u | Page p -> p | Section(_,s) -> s in let tt = match href with URL u -> u | Page p -> p | Section(_,s) -> s in
[Inline_code tt] [Inline_code tt]
in [Link(txt, href)] in [Link(txt, href)]
let url ?text href = mklink ?text (URL href) let url ?text addr = href ?text (URL addr)
let link ?text ?page ?name () = let link ?text ?page ?name () =
mklink ?text @@ match page, name with href ?text @@ match page, name with
| None, None -> Page "" | None, None -> Page ""
| Some p, None -> Page p | Some p, None -> Page p
| None, Some a -> Section("",a) | None, Some a -> Section("",a)
......
...@@ -109,6 +109,9 @@ val code: string -> text ...@@ -109,6 +109,9 @@ val code: string -> text
(** Image *) (** Image *)
val image: alt:string -> file:string -> text val image: alt:string -> file:string -> text
(** Href link *)
val href: ?text:text -> href -> text
(** Local links *) (** Local links *)
val link: ?text:text -> ?page:string -> ?name:string -> unit -> text val link: ?text:text -> ?page:string -> ?name:string -> unit -> text
......
...@@ -74,7 +74,7 @@ let plural l s = ...@@ -74,7 +74,7 @@ let plural l s =
let get_eva_domains () = let get_eva_domains () =
Extlib.filter_map Extlib.filter_map
(fun (x,_) -> Dynamic.Parameter.Bool.get x ()) (fun (x,_) -> Dynamic.Parameter.Bool.get x ())
(fun (x,y) -> ([Plain "option"; Bold x], plain y)) (fun (x,y) -> (plain "option" @ bold x), plain y)
all_eva_domains all_eva_domains
let section_domains env = let section_domains env =
...@@ -138,7 +138,7 @@ let section_stubs env = ...@@ -138,7 +138,7 @@ let section_stubs env =
Printer.pp_funspec (Annotations.funspec kf) in Printer.pp_funspec (Annotations.funspec kf) in
Block ( intro @ funspec ) :: insert_remark env anchor Block ( intro @ funspec ) :: insert_remark env anchor
in in
H4 ([Inline_code s], Some anchor) :: content) H4 (code s, Some anchor) :: content)
l l
in in
let describe_func kf = let describe_func kf =
...@@ -155,7 +155,7 @@ let section_stubs env = ...@@ -155,7 +155,7 @@ let section_stubs env =
Printer.pp_global (GFun (Kernel_function.get_definition kf,loc)) in Printer.pp_global (GFun (Kernel_function.get_definition kf,loc)) in
Block ( intro @ fundecl ) :: insert_remark env anchor Block ( intro @ fundecl ) :: insert_remark env anchor
in in
H4 ([Inline_code name], Some anchor) :: content H4 (code name, Some anchor) :: content
in in
let content = let content =
if stubbed_kf <> [] then begin if stubbed_kf <> [] then begin
...@@ -240,7 +240,7 @@ let gen_inputs env = ...@@ -240,7 +240,7 @@ let gen_inputs env =
plain "that have been considered during the analysis \ plain "that have been considered during the analysis \
are the following:" are the following:"
); );
UL (List.map (fun x -> [Text [ Inline_code x ]]) (get_files())); UL (List.map (fun x -> text @@ code x) (get_files()));
]] ]]
let gen_config env = let gen_config env =
...@@ -339,12 +339,7 @@ let make_events_table print_kind caption events = ...@@ -339,12 +339,7 @@ let make_events_table print_kind caption events =
in in
let line = let line =
[ plain (string_of_pos_opt evt_source); [ plain (string_of_pos_opt evt_source);
[ Inline_code evt_message; format "`%s` (emitted by `%s`)" evt_message evt_plugin ]
Plain "(emitted by";
Inline_code evt_plugin;
Plain ")"
]
]
in in
if print_kind then plain (kind evt_kind) :: line else line if print_kind then plain (kind evt_kind) :: line else line
in in
...@@ -412,15 +407,14 @@ let gen_section_warnings env = ...@@ -412,15 +407,14 @@ let gen_section_warnings env =
[ Comment "you can comment on each individual error" ] [ Comment "you can comment on each individual error" ]
else else
[ [
Block [ Block ( text @@ glue [
Text [Bold "Important warning:"; bold "Important warning:";
Plain "Frama-C did not complete its execution "; plain "Frama-C did not complete its execution ";
Plain "successfully. Analysis results may be inaccurate."; plain "successfully. Analysis results may be inaccurate.";
Plain ((plural errs "The error") ^ " listed below must be"); plain ((plural errs "The error") ^ " listed below must be");
Plain "fixed first before examining other "; plain "fixed first before examining other ";
Plain "warnings and alarms." plain "warnings and alarms."
]; ] ) ;
];
make_errors_table errs make_errors_table errs
] ]
in in
...@@ -434,22 +428,20 @@ let gen_section_warnings env = ...@@ -434,22 +428,20 @@ let gen_section_warnings env =
if env.is_draft then if env.is_draft then
[Comment "you can comment on each individual error"] [Comment "you can comment on each individual error"]
else else
[ [Block (
Block [ (text @@ glue [
Text [ plain ("The table below lists the " ^ plural warnings "warning");
Plain ("The table below lists the " ^ plural warnings "warning"); plain "that have been emitted by the analyzer.";
Plain "that have been emitted by the analyzer."; plain "They might put additional assumptions on the relevance";
Plain "They might put additional assumptions on the relevance"; plain "of the analysis results and must be reviewed carefully";
Plain "of the analysis results and must be reviewed carefully"; ]) @
]; (text @@ glue [
Text ( plain "Note that this does not take into account emitted alarms:";
plain "Note that this does not take into account emitted alarms:"@ plain "they are reported in";
plain "they are reported in"@ link ~text:(plain "the next section") ~name:"alarms" ()
Markdown.link ~text:(plain "the next section") ~name:"alarms" () ])
) );
]; make_warnings_table warnings ]
make_warnings_table warnings
]
in in
error_section @ error_section @
H1 (plain "Warnings", Some "warnings") H1 (plain "Warnings", Some "warnings")
...@@ -492,15 +484,13 @@ let gen_section_alarms env = ...@@ -492,15 +484,13 @@ let gen_section_alarms env =
if env.is_draft then if env.is_draft then
Comment "No alarm!" :: insert_marks env anchor Comment "No alarm!" :: insert_marks env anchor
else else
Block [ Block (text @@ glue [
Text bold "No alarm"; plain "was found during the analysis";
[ Bold "No alarm"; Plain "was found during the analysis"; plain "Any execution starting from";
Plain "Any execution starting from"; code (Kernel.MainFunction.get_function_name ());
Inline_code (Kernel.MainFunction.get_function_name ()); plain "in a context matching the one used for the analysis";
Plain "in a context matching the one used for the analysis"; plain "will be immune from any undefined behavior."
Plain "will be immune from any undefined behavior." ])
]
]
:: insert_remark env anchor :: insert_remark env anchor
in in
H1 (plain "Results of the analysis", Some anchor) :: text_content H1 (plain "Results of the analysis", Some anchor) :: text_content
...@@ -521,18 +511,16 @@ let gen_section_alarms env = ...@@ -521,18 +511,16 @@ let gen_section_alarms env =
if env.is_draft then begin if env.is_draft then begin
sections sections
end else begin end else begin
Block [ Block (text @@ glue [
Text plain ("The table below lists the " ^ alarm);
[ Plain ("The table below lists the " ^ alarm); plain "that have been emitted during the analysis.";
Plain "that have been emitted during the analysis."; plain "Any execution starting from";
Plain "Any execution starting from"; code (Kernel.MainFunction.get_function_name());
Inline_code (Kernel.MainFunction.get_function_name()); plain "in a context matching the one used for the analysis";
Plain "in a context matching the one used for the analysis"; plain "will be immune from any other undefined behavior.";
Plain "will be immune from any other undefined behavior."; plain "More information on each individual alarm is";
Plain "More information on each individual alarm is"; plain "given in the remainder of this section"
Plain "given in the remainder of this section" ]) ::
]
] ::
Table { content; caption; header } :: Table { content; caption; header } ::
sections sections
end end
......
...@@ -513,8 +513,7 @@ struct ...@@ -513,8 +513,7 @@ struct
let header = [ plain E.name, Left; plain "Description", Left ] in let header = [ plain E.name, Left; plain "Description", Left ] in
let content = let content =
List.map List.map
(fun (_,tag,descr) -> (fun (_,tag,descr) -> [ format "`%S`" tag ; descr ])
[ [Markdown.Inline_code (Printf.sprintf "%S" tag)] ; descr ])
E.values E.values
in in
Table { caption; header; content } Table { caption; header; content }
......
...@@ -108,11 +108,9 @@ let pages_of_chapter c = ...@@ -108,11 +108,9 @@ let pages_of_chapter c =
let table_of_chapter c = let table_of_chapter c =
[H2 (Markdown.plain (title_of_chapter c), None); [H2 (Markdown.plain (title_of_chapter c), None);
Block Block (list (List.map
[UL (fun p -> text (link ~text:(plain p.title) ~page:p.path ()))
(List.map (pages_of_chapter c)))]
(fun p -> [Text [Link(Markdown.plain p.title, Page p.path)]])
(pages_of_chapter c))]]
let table_of_contents () = let table_of_contents () =
table_of_chapter `Protocol @ table_of_chapter `Protocol @
...@@ -124,7 +122,7 @@ let table_of_contents () = ...@@ -124,7 +122,7 @@ let table_of_contents () =
let index () = let index () =
List.map List.map
(fun (title,entry) -> Markdown.Link(plain title, entry)) (fun (title,entry) -> Markdown.href ~text:(plain title) entry)
(List.sort (fun (a,_) (b,_) -> String.compare a b) !entries) (List.sort (fun (a,_) (b,_) -> String.compare a b) !entries)
let link ~toc ~title ~href : json = let link ~toc ~title ~href : json =
...@@ -191,12 +189,12 @@ let dump ~root ?(meta=true) () = ...@@ -191,12 +189,12 @@ let dump ~root ?(meta=true) () =
Yojson.Basic.to_file path maindata ; Yojson.Basic.to_file path maindata ;
let body = let body =
[ H1 (plain "Documentation", None); [ H1 (plain "Documentation", None);
Block [Text [Bold "Version"; Plain Config.version]]] Block (text (format "Version %s" Config.version))]
@ @
table_of_contents () table_of_contents ()
@ @
[H2 (plain "Index", None); [H2 (plain "Index", None);
Block [UL (List.map (fun i -> [Text [i]]) (index ()))]] Block (list (List.map text (index ())))]
in in
let title = "Documentation" in let title = "Documentation" in
pp_one_page ~root ~page:"readme.md" ~title body pp_one_page ~root ~page:"readme.md" ~title body
......
...@@ -58,57 +58,54 @@ let flow md = { atomic=false ; text=md } ...@@ -58,57 +58,54 @@ let flow md = { atomic=false ; text=md }
let text { text } = text let text { text } = text
let protect a = let protect a =
if a.atomic then a.text else Markdown.((Plain "(") :: a.text @ [Plain ")"]) if a.atomic then a.text else Markdown.(plain "(" @ a.text @ plain ")")
let publish ~page ~name ~descr ~synopsis ?(details = []) () = let publish ~page ~name ~descr ~synopsis ?(details = []) () =
check_name name ; check_name name ;
check_page page name ; check_page page name ;
let id = Printf.sprintf "data-%s" name in let id = Printf.sprintf "data-%s" name in
let title = Printf.sprintf "`DATA` %s" name in let title = Printf.sprintf "`DATA` %s" name in
let href = Doc.href page id in let dref = Doc.href page id in
let link_title = Markdown.emph name in let dlink = Markdown.href ~text:(Markdown.emph name) dref in
let data_link = Markdown.Link(link_title, href) in let syntax = Markdown.(glue [
let syntax = Markdown.(Text ( plain "<" ; dlink ; plain ">" ; plain ":=" ; synopsis.text ]) in
Plain "<" :: data_link :: Plain ">" :: Plain ":=" :: synopsis.text let content = Markdown.(Block ( text descr @ text syntax ) :: details) in
)) in
let content = Markdown.((Block [Text descr; syntax]) :: details) in
let _href = Doc.publish ~page ~name:id ~title ~index:[name] content [] in let _href = Doc.publish ~page ~name:id ~title ~index:[name] content [] in
atom [data_link] atom dlink
let unit = atom [Markdown.Plain "-"] let unit = atom @@ Markdown.plain "-"
let any = atom [Markdown.Emph "any"] let any = atom @@ Markdown.emph "any"
let int = atom [Markdown.Emph "int"] let int = atom @@ Markdown.emph "int"
let ident = atom [Markdown.Emph "ident"] let ident = atom @@ Markdown.emph "ident"
let string = atom [Markdown.Emph "string"] let string = atom @@ Markdown.emph "string"
let number = atom [Markdown.Emph "number"] let number = atom @@ Markdown.emph "number"
let boolean = atom [Markdown.Emph "boolean"] let boolean = atom @@ Markdown.emph "boolean"
let escaped name = let escaped name =
Markdown.Inline_code (Printf.sprintf "'%s'" @@ String.escaped name) Markdown.code (Printf.sprintf "'%s'" @@ String.escaped name)
let tag name = atom @@ [escaped name] let tag name = atom @@ escaped name
let array a = atom @@ Markdown.(code "[" @ protect a @ code ", … ]")
let array a =
atom @@ Markdown.(Inline_code "[" :: protect a @ [Inline_code ", … ]"])
let tuple ts = let tuple ts =
atom @@ atom @@
Markdown.( Markdown.(
Inline_code "[" :: code "[" @
glue ~sep:[Inline_code ","] (List.map protect ts) @ glue ~sep:(code ",") (List.map protect ts) @
[Inline_code "]"]) code "]"
)
let union ts = flow @@ Markdown.(glue ~sep:(plain "|") (List.map protect ts)) let union ts = flow @@ Markdown.(glue ~sep:(plain "|") (List.map protect ts))
let option t = atom @@ Markdown.(protect t @ [Inline_code "?"]) let option t = atom @@ Markdown.(protect t @ code "?")
let field (a,t) = Markdown.( escaped a :: Inline_code ":" :: t.text ) let field (a,t) = Markdown.( escaped a @ code ":" @ t.text )
let record fds = let record fds =
let fields = let fields =
if fds = [] then Markdown.plain "…" else if fds = [] then Markdown.plain "…" else
Markdown.(glue ~sep:[Inline_code ";"] (List.map field fds)) Markdown.(glue ~sep:(code ";") (List.map field fds))
in atom @@ Markdown.(Inline_code "{" :: fields @ [Inline_code "}"]) in atom @@ Markdown.(code "{" @ fields @ code "}")
type field = { type field = {
name : string ; name : string ;
...@@ -118,13 +115,14 @@ type field = { ...@@ -118,13 +115,14 @@ type field = {
let fields ~title (fds : field list) = let fields ~title (fds : field list) =
let open Markdown in let open Markdown in
let caption = Some (plain "Fields description") in
let header = [ let header = [
plain title, Left; plain title, Left;
plain "Format", Center; plain "Format", Center;
plain "Description", Left plain "Description", Left
] in ] in
let field f = [[Inline_code f.name]; f.syntax.text ; f.descr] in let column f = [ code f.name ; f.syntax.text ; f.descr ] in
Markdown.Table { caption; header; content = List.map field fds } Markdown.Table {
caption = None ; header ; content = List.map column fds ;
}
(* -------------------------------------------------------------------------- *) (* -------------------------------------------------------------------------- *)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment