Module Base__Import0.Format
Pretty-printing.
This module implements a pretty-printing facility to format values within 'pretty-printing boxes' and 'semantic tags' combined with a set of printf-like functions. The pretty-printer splits lines at specified break hints, and indents lines according to the box structure. Similarly, semantic tags can be used to decouple text presentation from its contents.
This pretty-printing facility is implemented as an overlay on top of abstract formatters which provide basic output functions. Some formatters are predefined, notably:
Most functions in the Format module come in two variants: a short version that operates on std_formatter and the generic version prefixed by pp_ that takes a formatter as its first argument.
More formatters can be created with formatter_of_out_channel, formatter_of_buffer, formatter_of_symbolic_output_buffer or using custom formatters.
Introduction
For a gentle introduction to the basics of pretty-printing using Format, read http://caml.inria.fr/resources/doc/guides/format.en.html.
You may consider this module as providing an extension to the printf facility to provide automatic line splitting. The addition of pretty-printing annotations to your regular printf format strings 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 pretty-printing box management and printing functions provided by this module. This style is more basic but more verbose than the concise fprintf format strings.
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 pretty-printing 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 pretty-printing box is open, display its material with basic printing functions (e. g.
print_intandprint_string); - when the material for a pretty-printing box has been printed, call
close_box ()to close the box; - at the end of pretty-printing, flush the pretty-printer to display all the remaining material, e.g. evaluate
print_newline ().
The behavior of pretty-printing commands is unspecified if there is no open pretty-printing box. Each box opened by 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, each phrase is executed in the initial state of the standard pretty-printer: after each phrase execution, the interactive system closes all open pretty-printing boxes, flushes all pending text, and resets the standard pretty-printer.
Warning: mixing calls to pretty-printing functions of this module with calls to Stdlib low level output functions is error prone.
The pretty-printing functions output material that is delayed in the pretty-printer queue and stacks in order to compute proper line splitting. In contrast, basic I/O output functions write directly in their output device. As a consequence, the output of a basic I/O function may appear before the output of a pretty-printing function that has been called before. For instance,
Stdlib.print_string "<";
Format.print_string "PRETTY";
Stdlib.print_string ">";
Format.print_string "TEXT";
leads to output <>PRETTYTEXT.
type formatterAbstract data corresponding to a pretty-printer (also called a formatter) and all its machinery. See also Defining formatters.
Pretty-printing boxes
val pp_open_box : formatter -> int -> unitval open_box : int -> unitpp_open_box ppf dopens a new compacting pretty-printing box with offsetdin the formatterppf.Within this box, the pretty-printer prints as much as possible material on every line.
A break hint splits the line if there is no more room on the line to print the remainder of the box.
Within this box, the pretty-printer emphasizes the box structure: a break hint also splits the line if the splitting ``moves to the left'' (i.e. the new line gets an indentation smaller than the one of the current line).
This box is the general purpose pretty-printing box.
If the pretty-printer splits the line in the box, offset
dis added to the current indentation.
val pp_close_box : formatter -> unit -> unitval close_box : unit -> unitCloses the most recently open pretty-printing box.
val pp_open_hbox : formatter -> unit -> unitval open_hbox : unit -> unitpp_open_hbox ppf ()opens a new 'horizontal' pretty-printing box.This box prints material on a single line.
Break hints in a horizontal box never split the line. (Line splitting may still occur inside boxes nested deeper).
val pp_open_vbox : formatter -> int -> unitval open_vbox : int -> unitpp_open_vbox ppf dopens a new 'vertical' pretty-printing box with offsetd.This box prints material on as many lines as break hints in the box.
Every break hint in a vertical box splits the line.
If the pretty-printer splits the line in the box,
dis added to the current indentation.
val pp_open_hvbox : formatter -> int -> unitval open_hvbox : int -> unitpp_open_hvbox ppf dopens a new 'horizontal/vertical' pretty-printing box with offsetd.This box behaves as an horizontal box if it fits on a single line, otherwise it behaves as a vertical box.
If the pretty-printer splits the line in the box,
dis added to the current indentation.
val pp_open_hovbox : formatter -> int -> unitval open_hovbox : int -> unitpp_open_hovbox ppf dopens a new 'horizontal-or-vertical' pretty-printing box with offsetd.This box prints material as much as possible on every line.
A break hint splits the line if there is no more room on the line to print the remainder of the box.
If the pretty-printer splits the line in the box,
dis added to the current indentation.
Formatting functions
val pp_print_string : formatter -> string -> unitval print_string : string -> unitpp_print_string ppf sprintssin the current pretty-printing box.
val pp_print_as : formatter -> int -> string -> unitval print_as : int -> string -> unitpp_print_as ppf len sprintssin the current pretty-printing box. The pretty-printer formatssas if it were of lengthlen.
val pp_print_int : formatter -> int -> unitval print_int : int -> unitPrint an integer in the current pretty-printing box.
val pp_print_float : formatter -> float -> unitval print_float : float -> unitPrint a floating point number in the current pretty-printing box.
val pp_print_char : formatter -> char -> unitval print_char : char -> unitPrint a character in the current pretty-printing box.
val pp_print_bool : formatter -> bool -> unitval print_bool : bool -> unitPrint a boolean in the current pretty-printing box.
Break hints
val pp_print_space : formatter -> unit -> unitval print_space : unit -> unitpp_print_space ppf ()emits a 'space' break hint: the pretty-printer may split the line at this point, otherwise it prints one space.pp_print_space ppf ()is equivalent topp_print_break ppf 1 0.
val pp_print_cut : formatter -> unit -> unitval print_cut : unit -> unitpp_print_cut ppf ()emits a 'cut' break hint: the pretty-printer may split the line at this point, otherwise it prints nothing.pp_print_cut ppf ()is equivalent topp_print_break ppf 0 0.
val pp_print_break : formatter -> int -> int -> unitval print_break : int -> int -> unitpp_print_break ppf nspaces offsetemits a 'full' break hint: the pretty-printer may split the line at this point, otherwise it printsnspacesspaces.If the pretty-printer splits the line,
offsetis added to the current indentation.
val pp_print_custom_break : formatter -> fits:(string * int * string) -> breaks:(string * int * string) -> unitpp_print_custom_break ppf ~fits:(s1, n, s2) ~breaks:(s3, m, s4)emits a custom break hint: the pretty-printer may split the line at this point.If it does not split the line, then the
s1is emitted, thennspaces, thens2.If it splits the line, then it emits the
s3string, then an indent (according to the box rules), then an offset ofmspaces, then thes4string.While
nandmare handled byformatter_out_functions.out_indent, the strings will be handled byformatter_out_functions.out_string. This allows for a custom formatter that handles indentation distinctly, for example, outputs<br/>tags or entities.The custom break is useful if you want to change which visible (non-whitespace) characters are printed in case of break or no break. For example, when printing a list
[a; b; c], you might want to add a trailing semicolon when it is printed vertically:
[ a; b; c; ]You can do this as follows:
printf "@[<v 0>[@;<0 2>@[<v 0>a;@,b;@,c@]%t]@]@\n" (pp_print_custom_break ~fits:("", 0, "") ~breaks:(";", 0, ""))- since
- 4.08.0
val pp_force_newline : formatter -> unit -> unitval force_newline : unit -> unitForce a new line in the current pretty-printing box.
The pretty-printer must split the line at this point,
Not the normal way of pretty-printing, since imperative line splitting may interfere with current line counters and box size calculation. Using break hints within an enclosing vertical box is a better alternative.
val pp_print_if_newline : formatter -> unit -> unitval print_if_newline : unit -> unitExecute the next formatting command if the preceding line has just been split. Otherwise, ignore the next formatting command.
Pretty-printing termination
val pp_print_flush : formatter -> unit -> unitval print_flush : unit -> unitEnd of pretty-printing: resets the pretty-printer to initial state.
All open pretty-printing boxes are closed, all pending text is printed. In addition, the pretty-printer low level output device is flushed to ensure that all pending text is really displayed.
Note: never use
print_flushin the normal course of a pretty-printing routine, since the pretty-printer uses a complex buffering machinery to properly indent the output; manually flushing those buffers at random would conflict with the pretty-printer strategy and result to poor rendering.Only consider using
print_flushwhen displaying all pending material is mandatory (for instance in case of interactive use when you want the user to read some text) and when resetting the pretty-printer state will not disturb further pretty-printing.Warning: If the output device of the pretty-printer is an output channel, repeated calls to
print_flushmeans repeated calls toStdlib.flushto flush the out channel; these explicit flush calls could foil the buffering strategy of output channels and could dramatically impact efficiency.
val pp_print_newline : formatter -> unit -> unitval print_newline : unit -> unitEnd of pretty-printing: resets the pretty-printer to initial state.
All open pretty-printing boxes are closed, all pending text is printed.
Equivalent to
print_flushfollowed by a new line. See corresponding words of caution forprint_flush.Note: this is not the normal way to output a new line; the preferred method is using break hints within a vertical pretty-printing box.
Margin
val pp_set_margin : formatter -> int -> unitval set_margin : int -> unitpp_set_margin ppf dsets the right margin tod(in characters): the pretty-printer splits lines that overflow the right margin according to the break hints given. Nothing happens ifdis smaller than 2. Ifdis too large, the right margin is set to the maximum admissible value (which is greater than10 ^ 9). Ifdis less than the current maximum indentation limit, the maximum indentation limit is decreased while trying to preserve a minimal ratiomax_indent/margin>=50%and if possible the current differencemargin - max_indent.See also
pp_set_geometry.
val pp_get_margin : formatter -> unit -> intval get_margin : unit -> intReturns the position of the right margin.
Maximum indentation limit
val pp_set_max_indent : formatter -> int -> unitval set_max_indent : int -> unitpp_set_max_indent ppf dsets the maximum indentation limit of lines tod(in characters): once this limit is reached, new pretty-printing boxes are rejected to the left, unless the enclosing box fully fits on the current line. As an illustration,set_margin 10; set_max_indent 5; printf "@[123456@[7@]89A@]@."yields
123456 789Abecause the nested box
"@[7@]"is opened after the maximum indentation limit (7>5) and its parent box does not fit on the current line. Either decreasing the length of the parent box to make it fit on a line:printf "@[123456@[7@]89@]@."or opening an intermediary box before the maximum indentation limit which fits on the current line
printf "@[123@[456@[7@]89@]A@]@."avoids the rejection to the left of the inner boxes and print respectively
"123456789"and"123456789A". Note also that vertical boxes never fit on a line whereas horizontal boxes always fully fit on the current line.Nothing happens if
dis smaller than 2.If
dis too large, the limit is set to the maximum admissible value (which is greater than10 ^ 9).If
dis greater or equal than the current margin, it is ignored, and the current maximum indentation limit is kept.See also
pp_set_geometry.
val pp_get_max_indent : formatter -> unit -> intval get_max_indent : unit -> intReturn the maximum indentation limit (in characters).
Geometry
Geometric functions can be used to manipulate simultaneously the coupled variables, margin and maxixum indentation limit.
val check_geometry : geometry -> boolCheck if the formatter geometry is valid:
1 < max_indent < margin
val pp_set_geometry : formatter -> max_indent:int -> margin:int -> unitval set_geometry : max_indent:int -> margin:int -> unitval pp_safe_set_geometry : formatter -> max_indent:int -> margin:int -> unitval safe_set_geometry : max_indent:int -> margin:int -> unitpp_set_geometry ppf ~max_indent ~marginsets both the margin and maximum indentation limit forppf.When
1 < max_indent < margin,pp_set_geometry ppf ~max_indent ~marginis equivalent topp_set_margin ppf margin; pp_set_max_indent ppf max_indent; and avoids the subtly incorrectpp_set_max_indent ppf max_indent; pp_set_margin ppf margin;Outside of this domain,
pp_set_geometryraises an invalid argument exception whereaspp_safe_set_geometrydoes nothing.- since
- 4.08.0
Maximum formatting depth
val pp_set_max_boxes : formatter -> int -> unitval set_max_boxes : int -> unitpp_set_max_boxes ppf maxsets the maximum number of pretty-printing boxes simultaneously open.Material inside boxes nested deeper is printed as an ellipsis (more precisely as the text returned by
get_ellipsis_text()).Nothing happens if
maxis smaller than 2.
val pp_get_max_boxes : formatter -> unit -> intval get_max_boxes : unit -> intReturns the maximum number of pretty-printing boxes allowed before ellipsis.
val pp_over_max_boxes : formatter -> unit -> boolval over_max_boxes : unit -> boolTests if the maximum number of pretty-printing boxes allowed have already been opened.
Tabulation boxes
val pp_open_tbox : formatter -> unit -> unitval open_tbox : unit -> unitopen_tbox ()opens a new tabulation box.This box prints lines separated into cells of fixed width.
Inside a tabulation box, special tabulation markers defines points of interest on the line (for instance to delimit cell boundaries). Function
Format.set_tabsets a tabulation marker at insertion point.A tabulation box features specific tabulation breaks to move to next tabulation marker or split the line. Function
Format.print_tbreakprints a tabulation break.
val pp_close_tbox : formatter -> unit -> unitval close_tbox : unit -> unitCloses the most recently opened tabulation box.
val pp_set_tab : formatter -> unit -> unitval set_tab : unit -> unitSets a tabulation marker at current insertion point.
val pp_print_tab : formatter -> unit -> unitval print_tab : unit -> unitprint_tab ()emits a 'next' tabulation break hint: if not already set on a tabulation marker, the insertion point moves to the first tabulation marker on the right, or the pretty-printer splits the line and insertion point moves to the leftmost tabulation marker.It is equivalent to
print_tbreak 0 0.
val pp_print_tbreak : formatter -> int -> int -> unitval print_tbreak : int -> int -> unitprint_tbreak nspaces offsetemits a 'full' tabulation break hint.If not already set on a tabulation marker, the insertion point moves to the first tabulation marker on the right and the pretty-printer prints
nspacesspaces.If there is no next tabulation marker on the right, the pretty-printer splits the line at this point, then insertion point moves to the leftmost tabulation marker of the box.
If the pretty-printer splits the line,
offsetis added to the current indentation.
Ellipsis
val pp_set_ellipsis_text : formatter -> string -> unitval set_ellipsis_text : string -> unitSet the text of the ellipsis printed when too many pretty-printing boxes are open (a single dot,
., by default).
val pp_get_ellipsis_text : formatter -> unit -> stringval get_ellipsis_text : unit -> stringReturn the text of the ellipsis.
Semantic tags
type stag=..Semantic tags (or simply tags) are user's defined annotations to associate user's specific operations to printed entities.
Common usage of semantic tags is text decoration to get specific font or text size rendering for a display device, or marking delimitation of entities (e.g. HTML or TeX elements or terminal escape sequences). More sophisticated usage of semantic tags could handle dynamic modification of the pretty-printer behavior to properly print the material within some specific tags. For instance, we can define an RGB tag like so:
type stag += RGB of {r:int;g:int;b:int}In order to properly delimit printed entities, a semantic tag must be opened before and closed after the entity. Semantic tags must be properly nested like parentheses using
pp_open_stagandpp_close_stag.Tag specific operations occur any time a tag is opened or closed, At each occurrence, two kinds of operations are performed tag-marking and tag-printing:
- The tag-marking operation is the simpler tag specific operation: it simply writes a tag specific string into the output device of the formatter. Tag-marking does not interfere with line-splitting computation.
- The tag-printing operation is the more involved tag specific operation: it can print arbitrary material to the formatter. Tag-printing is tightly linked to the current pretty-printer operations.
Roughly speaking, tag-marking is commonly used to get a better rendering of texts in the rendering device, while tag-printing allows fine tuning of printing routines to print the same entity differently according to the semantic tags (i.e. print additional material or even omit parts of the output).
More precisely: when a semantic tag is opened or closed then both and successive 'tag-printing' and 'tag-marking' operations occur:
- Tag-printing a semantic tag means calling the formatter specific function
print_open_stag(resp.print_close_stag) 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 splitting computation). - Tag-marking a semantic tag means calling the formatter specific function
mark_open_stag(resp.mark_close_stag) with the name of the tag as argument: that tag-marking function can then return the 'tag-opening marker' (resp. `tag-closing marker') for direct output into the output device of the formatter.
Being written directly into the output device of the formatter, semantic tag marker strings are not considered as part of the printing material that drives line splitting (in other words, the length of the strings corresponding to tag markers is considered as zero for line splitting).
Thus, semantic tag handling is in some sense transparent to pretty-printing and does not interfere with usual indentation. 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_tagsis set totrue, the pretty-printer engine honors tags and decorates the output accordingly.Default tag-marking functions behave the HTML way: string tags are enclosed in "<" and ">" while other tags are ignored; hence, opening marker for tag string
"t"is"<t>"and closing marker is"</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_stag_functions.Semantic tag operations may be set on or off with
set_tags. Tag-marking operations may be set on or off withset_mark_tags. Tag-printing operations may be set on or off withset_print_tags.
val pp_open_stag : formatter -> stag -> unitval open_stag : stag -> unitpp_open_stag ppf topens the semantic tag namedt.The
print_open_stagtag-printing function of the formatter is called withtas argument; then the opening tag marker fort, as given bymark_open_stag t, is written into the output device of the formatter.
val pp_close_stag : formatter -> unit -> unitval close_stag : unit -> unitpp_close_stag ppf ()closes the most recently opened semantic tagt.The closing tag marker, as given by
mark_close_stag t, is written into the output device of the formatter; then theprint_close_stagtag-printing function of the formatter is called withtas argument.
val pp_set_tags : formatter -> bool -> unitval set_tags : bool -> unitpp_set_tags ppf bturns on or off the treatment of semantic tags (default is off).
val pp_set_print_tags : formatter -> bool -> unitval set_print_tags : bool -> unitpp_set_print_tags ppf bturns on or off the tag-printing operations.
val pp_set_mark_tags : formatter -> bool -> unitval set_mark_tags : bool -> unitpp_set_mark_tags ppf bturns on or off the tag-marking operations.
val pp_get_print_tags : formatter -> unit -> boolval get_print_tags : unit -> boolReturn the current status of tag-printing operations.
val pp_get_mark_tags : formatter -> unit -> boolval get_mark_tags : unit -> boolReturn the current status of tag-marking operations.
val pp_set_formatter_out_channel : formatter -> Stdlib.out_channel -> unitRedirecting the standard formatter output
val set_formatter_out_channel : Stdlib.out_channel -> unitRedirect the standard pretty-printer output to the given channel. (All the output functions of the standard formatter are set to the default output functions printing to the given channel.)
set_formatter_out_channelis equivalent topp_set_formatter_out_channelstd_formatter.
val pp_set_formatter_output_functions : formatter -> (string -> int -> int -> unit) -> (unit -> unit) -> unitval set_formatter_output_functions : (string -> int -> int -> unit) -> (unit -> unit) -> unitpp_set_formatter_output_functions ppf out flushredirects the standard pretty-printer output functions to the functionsoutandflush.The
outfunction performs all the pretty-printer string output. It is called with a strings, a start positionp, and a number of charactersn; it is supposed to output charactersptop + n - 1ofs.The
flushfunction is called whenever the pretty-printer is flushed (via conversion%!, or pretty-printing indications@?or@., or using low level functionsprint_flushorprint_newline).
val pp_get_formatter_output_functions : formatter -> unit -> (string -> int -> int -> unit) * (unit -> unit)val get_formatter_output_functions : unit -> (string -> int -> int -> unit) * (unit -> unit)Return the current output functions of the standard pretty-printer.
Redefining formatter output
Redefining output functions
type formatter_out_functions={out_string : string -> int -> int -> unit;out_flush : unit -> unit;out_newline : unit -> unit;out_spaces : int -> unit;out_indent : int -> unit;}The set of output functions specific to a formatter:
- the
out_stringfunction performs all the pretty-printer string output. It is called with a strings, a start positionp, and a number of charactersn; it is supposed to output charactersptop + n - 1ofs. - the
out_flushfunction flushes the pretty-printer output device. out_newlineis called to open a new line when the pretty-printer splits the line.- the
out_spacesfunction outputs spaces when a break hint leads to spaces instead of a line split. It is called with the number of spaces to output. - the
out_indentfunction performs new line indentation when the pretty-printer splits the line. It is called with the indentation value of the new line.
By default:
- fields
out_stringandout_flushare output device specific; (e.g.Stdlib.output_stringandStdlib.flushfor aStdlib.out_channeldevice, orBuffer.add_substringandStdlib.ignorefor aBuffer.toutput device), - field
out_newlineis equivalent toout_string "\n" 0 1; - fields
out_spacesandout_indentare equivalent toout_string (String.make n ' ') 0 n.
- since
- 4.01.0
- the
val pp_set_formatter_out_functions : formatter -> formatter_out_functions -> unitval set_formatter_out_functions : formatter_out_functions -> unitpp_set_formatter_out_functions ppf out_funsSet all the pretty-printer output functions ofppfto those of argumentout_funs,This way, you can change the meaning of indentation (which can be something else than just printing space characters) and the meaning of new lines opening (which can be connected to any other action needed by the application at hand).
Reasonable defaults for functions
out_spacesandout_newlineare respectivelyout_funs.out_string (String.make n ' ') 0 nandout_funs.out_string "\n" 0 1.- since
- 4.01.0
val pp_get_formatter_out_functions : formatter -> unit -> formatter_out_functionsval get_formatter_out_functions : unit -> formatter_out_functionsReturn the current output functions of the pretty-printer, including line splitting and indentation functions. Useful to record the current setting and restore it afterwards.
- since
- 4.01.0
Redefining semantic tag operations
type formatter_stag_functions={mark_open_stag : stag -> string;mark_close_stag : stag -> string;print_open_stag : stag -> unit;print_close_stag : stag -> unit;}The semantic tag handling functions specific to a formatter:
markversions are the 'tag-marking' functions that associate a string marker to a tag in order for the pretty-printing engine to write those markers as 0 length tokens in the output device of the formatter.printversions are the 'tag-printing' functions that can perform regular printing when a tag is closed or opened.
val pp_set_formatter_stag_functions : formatter -> formatter_stag_functions -> unitval set_formatter_stag_functions : formatter_stag_functions -> unitpp_set_formatter_stag_functions ppf tag_funschanges the meaning of opening and closing semantic tag operations to use the functions intag_funswhen printing onppf.When opening a semantic tag with name
t, the stringtis passed to the opening tag-marking function (themark_open_stagfield of the recordtag_funs), that must return the opening tag marker for that name. When the next call toclose_stag ()happens, the semantic tag nametis sent back to the closing tag-marking function (themark_close_stagfield of recordtag_funs), that must return a closing tag marker for that name.The
print_field of the record contains the tag-printing functions that are called at tag opening and tag closing time, to output regular material in the pretty-printer queue.
val pp_get_formatter_stag_functions : formatter -> unit -> formatter_stag_functionsval get_formatter_stag_functions : unit -> formatter_stag_functionsReturn the current semantic tag operation functions of the standard pretty-printer.
Defining formatters
Defining new formatters permits unrelated output of material in parallel on several output devices. All the parameters of a formatter are local to the formatter: right margin, maximum indentation limit, maximum number of pretty-printing boxes simultaneously open, ellipsis, and so on, are specific to each formatter and may be fixed independently.
For instance, given a Buffer.t buffer b, formatter_of_buffer b returns a new formatter using buffer b as its output device. Similarly, given a Stdlib.out_channel output channel oc, formatter_of_out_channel oc returns a new formatter using channel oc as its output device.
Alternatively, given out_funs, a complete set of output functions for a formatter, then formatter_of_out_functions out_funs computes a new formatter using those functions for output.
val formatter_of_out_channel : Stdlib.out_channel -> formatterformatter_of_out_channel ocreturns a new formatter writing to the corresponding output channeloc.
val std_formatter : formatterThe standard formatter to write to standard output.
It is defined as
formatter_of_out_channelStdlib.stdout.
val err_formatter : formatterA formatter to write to standard error.
It is defined as
formatter_of_out_channelStdlib.stderr.
val formatter_of_buffer : Stdlib.Buffer.t -> formatterformatter_of_buffer breturns a new formatter writing to bufferb. At the end of pretty-printing, the formatter must be flushed usingpp_print_flushorpp_print_newline, to print all the pending material into the buffer.
val stdbuf : Stdlib.Buffer.tThe string buffer in which
str_formatterwrites.
val str_formatter : formatterA formatter to output to the
stdbufstring buffer.str_formatteris defined asformatter_of_bufferstdbuf.
val flush_str_formatter : unit -> stringReturns the material printed with
str_formatter, flushes the formatter and resets the corresponding buffer.
val make_formatter : (string -> int -> int -> unit) -> (unit -> unit) -> formattermake_formatter out flushreturns a new formatter that outputs with functionout, and flushes with functionflush.For instance,
make_formatter (Stdlib.output oc) (fun () -> Stdlib.flush oc)returns a formatter to the
Stdlib.out_channeloc.
val formatter_of_out_functions : formatter_out_functions -> formatterformatter_of_out_functions out_funsreturns a new formatter that writes with the set of output functionsout_funs.See definition of type
formatter_out_functionsfor the meaning of argumentout_funs.- since
- 4.06.0
Symbolic pretty-printing
type symbolic_output_item=Items produced by symbolic pretty-printers
- since
- 4.06.0
val make_symbolic_output_buffer : unit -> symbolic_output_buffermake_symbolic_output_buffer ()returns a fresh buffer for symbolic output.- since
- 4.06.0
val clear_symbolic_output_buffer : symbolic_output_buffer -> unitclear_symbolic_output_buffer sobresets buffersob.- since
- 4.06.0
val get_symbolic_output_buffer : symbolic_output_buffer -> symbolic_output_item listget_symbolic_output_buffer sobreturns the contents of buffersob.- since
- 4.06.0
val flush_symbolic_output_buffer : symbolic_output_buffer -> symbolic_output_item listflush_symbolic_output_buffer sobreturns the contents of buffersoband resets buffersob.flush_symbolic_output_buffer sobis equivalent tolet items = get_symbolic_output_buffer sob in clear_symbolic_output_buffer sob; items- since
- 4.06.0
val add_symbolic_output_item : symbolic_output_buffer -> symbolic_output_item -> unitadd_symbolic_output_item sob itmadds itemitmto buffersob.- since
- 4.06.0
val formatter_of_symbolic_output_buffer : symbolic_output_buffer -> formatterformatter_of_symbolic_output_buffer sobreturns a symbolic formatter that outputs tosymbolic_output_buffersob.- since
- 4.06.0
Convenience formatting functions.
val pp_print_list : ?pp_sep:(formatter -> unit -> unit) -> (formatter -> 'a -> unit) -> formatter -> 'a list -> unitpp_print_list ?pp_sep pp_v ppf lprints items of listl, usingpp_vto print each item, and callingpp_sepbetween items (pp_sepdefaults topp_print_cut. Does nothing on empty lists.- since
- 4.02.0
val pp_print_text : formatter -> string -> unitpp_print_text ppf sprintsswith spaces and newlines respectively printed usingpp_print_spaceandpp_force_newline.- since
- 4.02.0
val pp_print_option : ?none:(formatter -> unit -> unit) -> (formatter -> 'a -> unit) -> formatter -> 'a option -> unitpp_print_option ?none pp_v ppf oprintsoonppfusingpp_vifoisSome vandnoneif it isNone.noneprints nothing by default.- since
- 4.08
val pp_print_result : ok:(formatter -> 'a -> unit) -> error:(formatter -> 'e -> unit) -> formatter -> ('a, 'e) Stdlib.result -> unitpp_print_result ~ok ~error ppf rprintsronppfusingokifrisOk _anderrorifrisError _.- since
- 4.08
Formatted pretty-printing
val fprintf : formatter -> ('a, formatter, unit) Stdlib.format -> 'a
val printf : ('a, formatter, unit) Stdlib.format -> 'aSame as
fprintfabove, but output onstd_formatter.
val eprintf : ('a, formatter, unit) Stdlib.format -> 'aSame as
fprintfabove, but output onerr_formatter.
val sprintf : ('a, unit, string) Stdlib.format -> 'aSame as
printfabove, but instead of printing on a formatter, returns a string containing the result of formatting the arguments. Note that the pretty-printer queue is flushed at the end of each call tosprintf.In case of multiple and related calls to
sprintfto output material on a single string, you should consider usingfprintfwith the predefined formatterstr_formatterand callflush_str_formatter ()to get the final result.Alternatively, you can use
Format.fprintfwith a formatter writing to a buffer of your own: flushing the formatter and the buffer at the end of pretty-printing returns the desired string.
val asprintf : ('a, formatter, unit, string) Stdlib.format4 -> 'aSame as
printfabove, but instead of printing on a formatter, returns a string containing the result of formatting the arguments. The type ofasprintfis general enough to interact nicely with%aconversions.- since
- 4.01.0
val dprintf : ('a, formatter, unit, formatter -> unit) Stdlib.format4 -> 'aSame as
fprintf, except the formatter is the last argument.dprintf "..." a b cis a function of typeformatter -> unitwhich can be given to a format specifier%t.This can be used as a replacement for
asprintfto delay formatting decisions. Using the string returned byasprintfin a formatting context forces formatting decisions to be taken in isolation, and the final string may be created prematurely.dprintfallows delay of formatting decisions until the final formatting context is known. For example:let t = Format.dprintf "%i@ %i@ %i" 1 2 3 in ... Format.printf "@[<v>%t@]" t- since
- 4.08.0
val ifprintf : formatter -> ('a, formatter, unit) Stdlib.format -> 'aSame as
fprintfabove, but does not print anything. Useful to ignore some material when conditionally printing.- since
- 3.10.0
val kfprintf : (formatter -> 'a) -> formatter -> ('b, formatter, unit, 'a) Stdlib.format4 -> 'bSame as
fprintfabove, but instead of returning immediately, passes the formatter to its first argument at the end of printing.
val kdprintf : ((formatter -> unit) -> 'a) -> ('b, formatter, unit, 'a) Stdlib.format4 -> 'bSame as
dprintfabove, but instead of returning immediately, passes the suspended printer to its first argument at the end of printing.- since
- 4.08.0
val ikfprintf : (formatter -> 'a) -> formatter -> ('b, formatter, unit, 'a) Stdlib.format4 -> 'bSame as
kfprintfabove, but does not print anything. Useful to ignore some material when conditionally printing.- since
- 3.12.0
val ksprintf : (string -> 'a) -> ('b, unit, string, 'a) Stdlib.format4 -> 'bSame as
sprintfabove, but instead of returning the string, passes it to the first argument.
val kasprintf : (string -> 'a) -> ('b, formatter, unit, 'a) Stdlib.format4 -> 'bSame as
asprintfabove, but instead of returning the string, passes it to the first argument.- since
- 4.03
Deprecated
val bprintf : Stdlib.Buffer.t -> ('a, formatter, unit) Stdlib.format -> 'a- deprecated
This function is error prone. Do not use it. This function is neither compositional nor incremental, since it flushes the pretty-printer queue at each call.
If you need to print to some buffer
b, you must first define a formatter writing tob, usinglet to_b = formatter_of_buffer b; then use regular calls toFormat.fprintfwith formatterto_b.
val kprintf : (string -> 'a) -> ('b, unit, string, 'a) Stdlib.format4 -> 'b- deprecated
An alias for
ksprintf.
val set_all_formatter_output_functions : out:(string -> int -> int -> unit) -> flush:(unit -> unit) -> newline:(unit -> unit) -> spaces:(int -> unit) -> unit- deprecated
Subsumed by
set_formatter_out_functions.
val get_all_formatter_output_functions : unit -> (string -> int -> int -> unit) * (unit -> unit) * (unit -> unit) * (int -> unit)- deprecated
Subsumed by
get_formatter_out_functions.
val pp_set_all_formatter_output_functions : formatter -> out:(string -> int -> int -> unit) -> flush:(unit -> unit) -> newline:(unit -> unit) -> spaces:(int -> unit) -> unit- deprecated
Subsumed by
pp_set_formatter_out_functions.
val pp_get_all_formatter_output_functions : formatter -> unit -> (string -> int -> int -> unit) * (unit -> unit) * (unit -> unit) * (int -> unit)- deprecated
Subsumed by
pp_get_formatter_out_functions.
String tags
val open_tag : tag -> unit- deprecated
Subsumed by
open_stag.
val pp_close_tag : formatter -> unit -> unit- deprecated
Subsumed by
pp_close_stag.
type formatter_tag_functions={mark_open_tag : tag -> string;mark_close_tag : tag -> string;print_open_tag : tag -> unit;print_close_tag : tag -> unit;}- deprecated
Subsumed by
formatter_stag_functions.
val pp_set_formatter_tag_functions : formatter -> formatter_tag_functions -> unitThis function will erase non-string tag formatting functions.
- deprecated
Subsumed by
pp_set_formatter_stag_functions.
val set_formatter_tag_functions : formatter_tag_functions -> unit- deprecated
Subsumed by
set_formatter_stag_functions.
val pp_get_formatter_tag_functions : formatter -> unit -> formatter_tag_functions- deprecated
Subsumed by
pp_get_formatter_stag_functions.
val get_formatter_tag_functions : unit -> formatter_tag_functions- deprecated
Subsumed by
get_formatter_stag_functions.