package batteries
- Boxes
- Formatting functions
- Break hints
- Margin
- Maximum indentation limit
- Formatting depth: maximum number of boxes allowed before ellipsis
- Advanced formatting
- Tabulations
- Ellipsis
- Semantics Tags
- Redirecting the standard formatter output
- Changing the meaning of standard formatter pretty printing
- Changing the meaning of printing semantics tags
- Multiple formatted output
- Basic functions to use with formatters
-
printflike functions for pretty-printing. - Deprecated
- Basic functions to use with formatters
- Deprecated
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=00f34b9aed4e47f314425b2ca9ceac206f112095a17ea9a7ffa6dac8cfccc492
md5=066051f9a210277710c54ad57c3b9568
doc/batteries.unthreaded/BatFormat/index.html
Module BatFormat
Pretty printing.
This module implements a pretty-printing facility to format text within ``pretty-printing boxes''. The pretty-printer breaks lines at specified break hints, and indents lines according to the box structure.
For a gentle introduction to the basics of pretty-printing using Format, read http://caml.inria.fr/resources/doc/guides/format.html.
You may consider this module as providing an extension to the printf facility to provide automatic line breaking. The addition of pretty-printing annotations to your regular printf formats gives you fancy indentation and line breaks. Pretty-printing annotations are described below in the documentation of the function Format.fprintf.
You may also use the explicit box management and printing functions provided by this module. This style is more basic but more verbose than the fprintf concise formats.
For instance, the sequence open_box 0; print_string "x ="; print_space (); print_int 1; close_box (); print_newline () that prints x = 1 within a pretty-printing box, can be abbreviated as printf "@[%s@ %i@]@." "x =" 1, or even shorter printf "@[x =@ %i@]@." 1.
Rule of thumb for casual users of this library:
- use simple boxes (as obtained by
open_box 0); - use simple break hints (as obtained by
print_cut ()that outputs a simple break hint, or byprint_space ()that outputs a space indicating a break hint); - once a box is opened, display its material with basic printing functions (e. g.
print_intandprint_string); - when the material for a box has been printed, call
close_box ()to close the box; - at the end of your routine, flush the pretty-printer to display all the remaining material, e.g. evaluate
print_newline ().
The behaviour of pretty-printing commands is unspecified if there is no opened pretty-printing box. Each box opened via one of the open_ functions below must be closed using close_box for proper formatting. Otherwise, some of the material printed in the boxes may not be output, or may be formatted incorrectly.
In case of interactive use, the system closes all opened boxes and flushes all pending text (as with the print_newline function) after each phrase. Each phrase is therefore executed in the initial state of the pretty-printer.
Warning: the material output by the following functions is delayed in the pretty-printer queue in order to compute the proper line breaking. Hence, you should not mix calls to the printing functions of the basic I/O system with calls to the functions of this module: this could result in some strange output seemingly unrelated with the evaluation order of printing commands.
Boxes
Formatting functions
Break hints
Margin
Maximum indentation limit
Formatting depth: maximum number of boxes allowed before ellipsis
Advanced formatting
Tabulations
Ellipsis
Semantics Tags
Semantics tags (or simply tags) are used to decorate printed entities for user's defined purposes, e.g. setting font and giving size indications for a display device, or marking delimitation of semantics entities (e.g. HTML or TeX elements or terminal escape sequences).
By default, those tags do not influence line breaking calculation: the tag ``markers'' are not considered as part of the printing material that drives line breaking (in other words, the length of those strings is considered as zero for line breaking).
Thus, tag handling is in some sense transparent to pretty-printing and does not interfere with usual pretty-printing. Hence, a single pretty printing routine can output both simple ``verbatim'' material or richer decorated output depending on the treatment of tags. By default, tags are not active, hence the output is not decorated with tag information. Once set_tags is set to true, the pretty printer engine honours tags and decorates the output accordingly.
When a tag has been opened (or closed), it is both and successively ``printed'' and ``marked''. Printing a tag means calling a formatter specific function with the name of the tag as argument: that ``tag printing'' function can then print any regular material to the formatter (so that this material is enqueued as usual in the formatter queue for further line-breaking computation). Marking a tag means to output an arbitrary string (the ``tag marker''), directly into the output device of the formatter. Hence, the formatter specific ``tag marking'' function must return the tag marker string associated to its tag argument. Being flushed directly into the output device of the formatter, tag marker strings are not considered as part of the printing material that drives line breaking (in other words, the length of the strings corresponding to tag markers is considered as zero for line breaking). In addition, advanced users may take advantage of the specificity of tag markers to be precisely output when the pretty printer has already decided where to break the lines, and precisely when the queue is flushed into the output device.
In the spirit of HTML tags, the default tag marking functions output tags enclosed in "<" and ">": hence, the opening marker of tag t is "<t>" and the closing marker "</t>".
Default tag printing functions just do nothing.
Tag marking and tag printing functions are user definable and can be set by calling set_formatter_tag_functions.
val open_tag : tag -> unitopen_tag t opens the tag named t; the print_open_tag function of the formatter is called with t as argument; the tag marker mark_open_tag t will be flushed into the output device of the formatter.
set_print_tags b turns on or off the printing of tags, while set_mark_tags b turns on or off the output of tag markers.
Redirecting the standard formatter output
val set_formatter_output : 'a BatIO.output -> unitChanging the meaning of standard formatter pretty printing
The Format module is versatile enough to let you completely redefine the meaning of pretty printing: you may provide your own functions to define how to handle indentation, line breaking, and even printing of all the characters that have to be printed!
Changing the meaning of printing semantics tags
val set_formatter_tag_functions : formatter_tag_functions -> unitset_formatter_tag_functions tag_funs changes the meaning of opening and closing tags to use the functions in tag_funs.
When opening a tag name t, the string t is passed to the opening tag marking function (the mark_open_tag field of the record tag_funs), that must return the opening tag marker for that name. When the next call to close_tag () happens, the tag name t is sent back to the closing tag marking function (the mark_close_tag field of record tag_funs), that must return a closing tag marker for that name.
The print_ field of the record contains the functions that are called at tag opening and tag closing time, to output regular material in the pretty-printer queue.
val get_formatter_tag_functions : unit -> formatter_tag_functionsMultiple formatted output
type formatter = Format.formatterval std_formatter : formatterval err_formatter : formatterval formatter_of_output : _ BatIO.output -> formatterval stdbuf : Buffer.tval str_formatter : formatterval make_formatter :
(string -> int -> int -> unit) ->
(unit -> unit) ->
formatterBasic functions to use with formatters
val pp_open_hbox : formatter -> unit -> unitval pp_open_vbox : formatter -> int -> unitval pp_open_hvbox : formatter -> int -> unitval pp_open_hovbox : formatter -> int -> unitval pp_open_box : formatter -> int -> unitval pp_close_box : formatter -> unit -> unitval pp_open_tag : formatter -> string -> unitval pp_close_tag : formatter -> unit -> unitval pp_print_string : formatter -> string -> unitval pp_print_as : formatter -> int -> string -> unitval pp_print_int : formatter -> int -> unitval pp_print_float : formatter -> float -> unitval pp_print_char : formatter -> char -> unitval pp_print_bool : formatter -> bool -> unitval pp_print_break : formatter -> int -> int -> unitval pp_print_cut : formatter -> unit -> unitval pp_print_space : formatter -> unit -> unitval pp_force_newline : formatter -> unit -> unitval pp_print_flush : formatter -> unit -> unitval pp_print_newline : formatter -> unit -> unitval pp_print_if_newline : formatter -> unit -> unitval pp_open_tbox : formatter -> unit -> unitval pp_close_tbox : formatter -> unit -> unitval pp_print_tbreak : formatter -> int -> int -> unitval pp_set_tab : formatter -> unit -> unitval pp_print_tab : formatter -> unit -> unitval pp_set_tags : formatter -> bool -> unitval pp_set_print_tags : formatter -> bool -> unitval pp_set_mark_tags : formatter -> bool -> unitval pp_get_print_tags : formatter -> unit -> boolval pp_get_mark_tags : formatter -> unit -> boolval pp_set_margin : formatter -> int -> unitval pp_get_margin : formatter -> unit -> intval pp_set_max_indent : formatter -> int -> unitval pp_get_max_indent : formatter -> unit -> intval pp_set_max_boxes : formatter -> int -> unitval pp_get_max_boxes : formatter -> unit -> intval pp_over_max_boxes : formatter -> unit -> boolval pp_set_ellipsis_text : formatter -> string -> unitval pp_get_ellipsis_text : formatter -> unit -> stringval pp_set_formatter_output_functions :
formatter ->
(string -> int -> int -> unit) ->
(unit -> unit) ->
unitval pp_get_formatter_output_functions :
formatter ->
unit ->
(string -> int -> int -> unit) * (unit -> unit)val pp_set_all_formatter_output_functions :
formatter ->
out:(string -> int -> int -> unit) ->
flush:(unit -> unit) ->
newline:(unit -> unit) ->
spaces:(int -> unit) ->
unitval pp_get_all_formatter_output_functions :
formatter ->
unit ->
(string ->
int ->
int ->
unit)
* (unit ->
unit)
* (unit ->
unit)
* (int ->
unit)val pp_set_formatter_tag_functions :
formatter ->
formatter_tag_functions ->
unitval pp_get_formatter_tag_functions :
formatter ->
unit ->
formatter_tag_functionsval pp_print_list :
?pp_sep:(formatter -> unit -> unit) ->
(formatter -> 'a -> unit) ->
formatter ->
'a list ->
unitpp_print_list ?pp_sep pp_v ppf l prints the list l. pp_v is used on the elements of l and each element is separated by a call to pp_sep (defaults to pp_print_cut). Does nothing on empty lists.
val pp_print_text : formatter -> string -> unitpp_print_text ppf s prints s with spaces and newlines respectively printed with pp_print_space and pp_force_newline.
printf like functions for pretty-printing.
fprintf ff fmt arg1 ... argN formats the arguments arg1 to argN according to the format string fmt, and outputs the resulting string on the formatter ff.
The format fmt is a character string which contains three types of objects: plain characters and conversion specifications as specified in the Printf module, and pretty-printing indications specific to the Format module.
The pretty-printing indication characters are introduced by a @ character, and their meanings are:
@[: open a pretty-printing box. The type and offset of the box may be optionally specified with the following syntax: the<character, followed by an optional box type indication, then an optional integer offset, and the closing>character. Box type is one ofh,v,hv,b, orhov, which stand respectively for an horizontal box, a vertical box, an ``horizontal-vertical'' box, or an ``horizontal or vertical'' box (bstanding for an ``horizontal or vertical'' box demonstrating indentation andhovstanding for a regular``horizontal or vertical'' box). For instance,@[<hov 2>opens an ``horizontal or vertical'' box with indentation 2 as obtained withopen_hovbox 2. For more details about boxes, see the various box opening functionsopen_*box.@]: close the most recently opened pretty-printing box.@,: output a good break as withprint_cut ().@: output a space, as withprint_space ().@\n: force a newline, as withforce_newline ().@;: output a good break as withprint_break. Thenspacesandoffsetparameters of the break may be optionally specified with the following syntax: the<character, followed by an integernspacesvalue, then an integeroffset, and a closing>character. If no parameters are provided, the good break defaults to a space.@?: flush the pretty printer as withprint_flush (). This is equivalent to the conversion%!.@.: flush the pretty printer and output a new line, as withprint_newline ().@<n>: print the following item as if it were of lengthn. Hence,printf "@<0>%s" argis equivalent toprint_as 0 arg. If@<n>is not followed by a conversion specification, then the following character of the format is printed as if it were of lengthn.@\{: open a tag. The name of the tag may be optionally specified with the following syntax: the<character, followed by an optional string specification, and the closing>character. The string specification is any character string that does not contain the closing character'>'. If omitted, the tag name defaults to the empty string. For more details about tags, see the functionsopen_tagandclose_tag.@\}: close the most recently opened tag.@@: print a plain@character.
Example: printf "@[%s@ %d@]@." "x =" 1 is equivalent to open_box (); print_string "x ="; print_space (); print_int 1; close_box (); print_newline (). It prints x = 1 within a pretty-printing box.
val sprintf : ('a, unit, string) format -> 'aFormatted output functions with continuations.
val ksprintf : (string -> 'a) -> ('b, unit, string, 'a) format4 -> 'bDeprecated
val kprintf : (string -> 'a) -> ('b, unit, string, 'a) format4 -> 'bBasic functions to use with formatters
val pp_set_formatter_output : formatter -> _ BatIO.output -> unitDeprecated
val set_formatter_out_channel : _ BatIO.output -> unitval formatter_of_out_channel : _ BatIO.output -> formatterval pp_set_formatter_out_channel : formatter -> _ BatIO.output -> unit- Boxes
- Formatting functions
- Break hints
- Margin
- Maximum indentation limit
- Formatting depth: maximum number of boxes allowed before ellipsis
- Advanced formatting
- Tabulations
- Ellipsis
- Semantics Tags
- Redirecting the standard formatter output
- Changing the meaning of standard formatter pretty printing
- Changing the meaning of printing semantics tags
- Multiple formatted output
- Basic functions to use with formatters
-
printflike functions for pretty-printing. - Deprecated
- Basic functions to use with formatters
- Deprecated