| Did you know ... | Search Documentation: |
| ansi_term.pl -- Print decorated text to ANSI consoles |
This library allows for exploiting the color and attribute facilities of most modern terminals using ANSI escape sequences. This library provides the following:
The behavior of this library is controlled by two Prolog flags:
true, activate the color output for this library. Otherwise
simply call format/3.url(Location) and url(URL, Label)
elements of Prolog messages.
ansi_format(+ClassOrAttributes, +Format, +Args) is det
ansi_format(+Stream, +ClassOrAttributes, +Format, +Args) is detcurrent_output is a
terminal, it adds ANSI escape sequences according to Attributes.
For example, to print a text in bold cyan, do
?- ansi_format([bold,fg(cyan)], 'Hello ~w', [world]).
Attributes is either a single attribute, a list thereof or a term that is mapped to concrete attributes based on the current theme (see prolog:console_color/2). The attribute names are derived from the ANSI specification. See the source for sgr_code/2 for details. Some commonly used attributes are:
fg(Color) and bg(Color), the colour name can be '#RGB' or
'#RRGGBB'h(Color)
or an integer 0..255.
Defined color constants are below. default can be used to access
the default color of the terminal.
ANSI sequences are sent if and only if
current_output has the property tty(true) (see
stream_property/2).color_term is true.
ansi_sgr(+ClassOrAttributes, -Sequence:string) is detcolor_term is false or the class
resolves to no attributes.
Unlike ansi_format/4 this does not write to a stream and thus does
not require a terminal. It is used to decorate strings that are
handed to code that is not aware of colors, notably the toplevel
prompt (see the Prolog flag toplevel_prompt). As the caller
controls where the sequence ends up, the caller is also responsible
for verifying that the destination is a terminal and for emitting
the reset sequence `\e[0m`.
sgr_sequence(+ClassOrAttributes, -Sequence:string) is det[private]bg8(Color).
sgr_codes(+ClassOrAttributes)// is semidet[private]
sgr_code(+Name, -Code)[private]| reset | all attributes off |
| bold | |
| faint | |
| italic | |
| underline | |
blink(slow) | |
blink(rapid) | |
| negative | |
| conceal | |
| crossed_out | |
font(primary) | |
font(N) | Alternate font (1..8) |
| fraktur | |
underline(double) | |
intensity(normal) | |
fg(Name) | Color name |
bg(Name) | Color name |
| framed | |
| encircled | |
| overlined | |
ideogram(underline) | |
| right_side_line | |
ideogram(underline(double)) | |
right_side_line(double) | |
ideogram(overlined) | |
| left_side_line | |
ideogram(stress_marking) | |
| -Off | Switch attributes off |
hfg(Name) | Color name |
hbg(Name) | Color name |
prolog:console_color(+Term, -AnsiAttributes) is semidet[multifile]boot/messages.pl, default_theme/2.
Besides the classes used for messages (code, comment, var,
warning, error, truth(Truth), port(Port), message(Kind),
...), the interactive toplevel uses these:
?- prompt and its `| ` continuation.odd or even
and alternates over the answers of a single query, which allows
for striping the answers using a background color. Only an
answer that shows bindings, residual goals or delays uses this
class: true. and false. are not answers to stripe, and
neither is the empty line that separates the answer from the
next query.X = 1.
The debugger uses, besides frame(level) and port(Port):
odd or even
and alternates over the steps of a trace, which allows for
striping the goals using a background color. Match on Port to
color the goal by port instead of (or in addition to) striping.
Note that a background color on prompt, input or answer(_) is
painted up to the right margin using `\e[K`. A background on
goal(_,_) is not: the debugger writes its ? prompt on the same
line.
prolog:message_line_element(+Stream, +Term) is semidet[multifile]nl. Resetting matters because a
terminal that scrolls while a background colour is in effect
paints the newly exposed line with it.Ctx is the message context. It is created by the handler for begin/2 as a term
ansi(Reset, ReInstall, EraseEol)
where Reset is the sequence written by end/1, ReInstall is a
Format-Args pair that re-installs the attributes of the message and
EraseEol is the sequence that paints the remainder of the line or
the empty atom. Callers must treat Ctx as opaque. It is left
unbound if Stream is not a terminal, if the color_term flag is
false or if the message has no attributes. All handlers that use
Ctx therefore fail if it is unbound, which makes
print_message_lines/3 fall back to writing plain text.
reinstall_message_attrs(+Stream, +Ctx) is det[private]
link_label(+Label, -Class, -Format, -Args, -Ctx) is semidet[private]
ansi_sgr_for(+Stream, +Class, -Sequence) is semidet[private]
erase_eol(+Attrs, -EOL) is det[private]
ansi_hyperlink(+Stream, +Location) is det
ansi_hyperlink(+Stream, +Location, +Label) is detOSC 8
escape sequence. Location is one of
File:LineFile:Line:ColumnThere is no official standard for encoding the Line and Column. We emit
``file://AbsFileName[#Line[:Column]]``
Both Line and Column count from 1, as in the messages we
print and as used by e.g., rg --hyperlink-format=.... Note that
a capital L before the line, as used by GitHub, is accepted by
Epilog as well.
The sequence is emitted if and only if the Prolog flag
hyperlink_term is true and Stream has the property tty(true).
ansi_format/4 is guarded the same way for color_term, so that a
message captured using with_output_to/2 is plain text.
hyperlink_stream(+Stream) is semidet[private]
is_url(@URL) is semidet[private]
location_url(+Location, -URL) is det[private]
tty_url_hook(+Location, -URL)[multifile]
url_file_name(-URL, +File) is semidet[private]clib package and its foreign support.
ansi_get_color(+Which, -RGB) is semidetforeground and background. This predicate sends a request to the
console (user_output) and reads the reply. This assumes an xterm
compatible terminal.
exchange_color(+Which, -RGB) is semidet[private]
read_osc_reply(+In, +Param:codes, -Body:codes) is semidet[private]ESC ] Param ; and the string terminator. Terminals reply with
either BEL or ST (ESC \), so we accept both.
Anything that is not our reply is echoed: it was typed by the user while we were waiting rather than sent by the terminal.
color_reply(-RGB)// is semidet[private]
hex_value(+Digits, -Fraction) is det[private]prefer_rationals.The following predicates are exported from this file while their implementation is defined in imported modules or non-module files loaded by this module.
ansi_format(+ClassOrAttributes, +Format, +Args) is det
ansi_format(+Stream, +ClassOrAttributes, +Format, +Args) is detcurrent_output is a
terminal, it adds ANSI escape sequences according to Attributes.
For example, to print a text in bold cyan, do
?- ansi_format([bold,fg(cyan)], 'Hello ~w', [world]).
Attributes is either a single attribute, a list thereof or a term that is mapped to concrete attributes based on the current theme (see prolog:console_color/2). The attribute names are derived from the ANSI specification. See the source for sgr_code/2 for details. Some commonly used attributes are:
fg(Color) and bg(Color), the colour name can be '#RGB' or
'#RRGGBB'h(Color)
or an integer 0..255.
Defined color constants are below. default can be used to access
the default color of the terminal.
ANSI sequences are sent if and only if
current_output has the property tty(true) (see
stream_property/2).color_term is true.
ansi_hyperlink(+Stream, +Location) is det
ansi_hyperlink(+Stream, +Location, +Label) is detOSC 8
escape sequence. Location is one of
File:LineFile:Line:ColumnThere is no official standard for encoding the Line and Column. We emit
``file://AbsFileName[#Line[:Column]]``
Both Line and Column count from 1, as in the messages we
print and as used by e.g., rg --hyperlink-format=.... Note that
a capital L before the line, as used by GitHub, is accepted by
Epilog as well.
The sequence is emitted if and only if the Prolog flag
hyperlink_term is true and Stream has the property tty(true).
ansi_format/4 is guarded the same way for color_term, so that a
message captured using with_output_to/2 is plain text.