1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
//! Provides templating logic for rendering terminal output in a visual format.
//!
//! The included templating logic allows rendering SVG images. Templating is based on [Handlebars],
//! and can be [customized](Template#customization) to support differing layout or even
//! data formats (e.g., HTML). The default template supports [a variety of options](TemplateOptions)
//! controlling output aspects, e.g. image dimensions and scrolling animation.
//!
//! [Handlebars]: https://handlebarsjs.com/
//!
//! # Examples
//!
//! See [`Template`] for examples of usage.
use std::{fmt, io::Write};
use handlebars::{Handlebars, RenderError, RenderErrorReason, Template as HandlebarsTemplate};
use serde::{Deserialize, Serialize};
mod data;
mod helpers;
mod palette;
#[cfg(test)]
mod tests;
use self::helpers::register_helpers;
pub use self::{
data::{CreatorData, HandlebarsData, SerializedInteraction},
palette::{NamedPalette, NamedPaletteParseError, Palette, TermColors},
};
pub use crate::utils::{RgbColor, RgbColorParseError};
use crate::{write::SvgLine, TermError, Transcript};
const DEFAULT_TEMPLATE: &str = include_str!("default.svg.handlebars");
const PURE_TEMPLATE: &str = include_str!("pure.svg.handlebars");
const MAIN_TEMPLATE_NAME: &str = "main";
/// Line numbering options.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
#[non_exhaustive]
pub enum LineNumbers {
/// Number lines in each output separately. Inputs are not numbered.
EachOutput,
/// Use continuous numbering for the lines in all outputs. Inputs are not numbered.
ContinuousOutputs,
/// Use continuous numbering for the lines in all displayed inputs (i.e., ones that
/// are not [hidden](crate::UserInput::hide())) and outputs.
Continuous,
}
/// Configurable options of a [`Template`].
///
/// # Serialization
///
/// Options can be deserialized from `serde`-supported encoding formats, such as TOML. This is used
/// in the CLI app to read options from a file:
///
/// ```
/// # use assert_matches::assert_matches;
/// # use term_transcript::svg::{RgbColor, TemplateOptions, WrapOptions};
/// let options_toml = r#"
/// width = 900
/// window_frame = true
/// line_numbers = 'continuous'
/// wrap.hard_break_at = 100
/// scroll = { max_height = 300, pixels_per_scroll = 18, interval = 1.5 }
///
/// [palette.colors]
/// black = '#3c3836'
/// red = '#b85651'
/// green = '#8f9a52'
/// yellow = '#c18f41'
/// blue = '#68948a'
/// magenta = '#ab6c7d'
/// cyan = '#72966c'
/// white = '#a89984'
///
/// [palette.intense_colors]
/// black = '#5a524c'
/// red = '#b85651'
/// green = '#a9b665'
/// yellow = '#d8a657'
/// blue = '#7daea3'
/// magenta = '#d3869b'
/// cyan = '#89b482'
/// white = '#ddc7a1'
/// "#;
///
/// let options: TemplateOptions = toml::from_str(options_toml)?;
/// assert_eq!(options.width, 900);
/// assert_matches!(options.wrap, Some(WrapOptions::HardBreakAt(100)));
/// assert_eq!(
/// options.palette.colors.green,
/// RgbColor(0x8f, 0x9a, 0x52)
/// );
/// # anyhow::Ok(())
/// ```
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TemplateOptions {
/// Width of the rendered terminal window in pixels. The default value is `720`.
#[serde(default = "TemplateOptions::default_width")]
pub width: usize,
/// Palette of terminal colors. The default value of [`Palette`] is used by default.
#[serde(default)]
pub palette: Palette,
/// CSS instructions to add at the beginning of the SVG `<style>` tag. This is mostly useful
/// to import fonts in conjunction with `font_family`.
///
/// The value is not validated in any way, so supplying invalid CSS instructions can lead
/// to broken SVG rendering.
#[serde(skip_serializing_if = "str::is_empty", default)]
pub additional_styles: String,
/// Font family specification in the CSS format. Should be monospace.
#[serde(default = "TemplateOptions::default_font_family")]
pub font_family: String,
/// Indicates whether to display a window frame around the shell. Default value is `false`.
#[serde(default)]
pub window_frame: bool,
/// Options for the scroll animation. If set to `None` (which is the default),
/// no scrolling will be enabled, and the height of the generated image is not limited.
#[serde(skip_serializing_if = "Option::is_none", default)]
pub scroll: Option<ScrollOptions>,
/// Text wrapping options. The default value of [`WrapOptions`] is used by default.
#[serde(default = "TemplateOptions::default_wrap")]
pub wrap: Option<WrapOptions>,
/// Line numbering options.
#[serde(default)]
pub line_numbers: Option<LineNumbers>,
}
impl Default for TemplateOptions {
fn default() -> Self {
Self {
width: Self::default_width(),
palette: Palette::default(),
additional_styles: String::new(),
font_family: Self::default_font_family(),
window_frame: false,
scroll: None,
wrap: Self::default_wrap(),
line_numbers: None,
}
}
}
impl TemplateOptions {
fn default_width() -> usize {
720
}
fn default_font_family() -> String {
"SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace".to_owned()
}
#[allow(clippy::unnecessary_wraps)] // required by serde
fn default_wrap() -> Option<WrapOptions> {
Some(WrapOptions::default())
}
/// Generates data for rendering.
///
/// # Errors
///
/// Returns an error if output cannot be rendered to HTML (e.g., it contains invalid
/// SGR sequences).
#[cfg_attr(
feature = "tracing",
tracing::instrument(level = "debug", skip(transcript), err)
)]
pub fn render_data<'s>(
&'s self,
transcript: &'s Transcript,
) -> Result<HandlebarsData<'s>, TermError> {
let rendered_outputs = self.render_outputs(transcript)?;
let mut has_failures = false;
let interactions: Vec<_> = transcript
.interactions()
.iter()
.zip(rendered_outputs)
.map(|(interaction, (output_html, output_svg))| {
let failure = interaction
.exit_status()
.map_or(false, |status| !status.is_success());
has_failures = has_failures || failure;
SerializedInteraction {
input: interaction.input(),
output_html,
output_svg,
exit_status: interaction.exit_status().map(|status| status.0),
failure,
}
})
.collect();
Ok(HandlebarsData {
creator: CreatorData::default(),
interactions,
options: self,
has_failures,
})
}
#[cfg_attr(
feature = "tracing",
tracing::instrument(level = "debug", skip_all, err)
)]
fn render_outputs(
&self,
transcript: &Transcript,
) -> Result<Vec<(String, Vec<SvgLine>)>, TermError> {
let max_width = self.wrap.as_ref().map(|wrap_options| match wrap_options {
WrapOptions::HardBreakAt(width) => *width,
});
transcript
.interactions
.iter()
.map(|interaction| {
let output = interaction.output();
let mut buffer = String::with_capacity(output.as_ref().len());
output.write_as_html(&mut buffer, max_width)?;
let svg_lines = output.write_as_svg(max_width)?;
Ok((buffer, svg_lines))
})
.collect()
}
}
/// Options that influence the scrolling animation.
///
/// The animation is only displayed if the console exceeds [`Self::max_height`]. In this case,
/// the console will be scrolled vertically by [`Self::pixels_per_scroll`]
/// with the interval of [`Self::interval`] seconds between every frame.
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct ScrollOptions {
/// Maximum height of the console, in pixels. The default value allows to fit 19 lines
/// of text into the view with the default template (potentially, slightly less because
/// of vertical margins around user inputs).
pub max_height: usize,
/// Number of pixels moved each scroll. Default value is 52 (4 lines of text with the default template).
pub pixels_per_scroll: usize,
/// Interval between keyframes in seconds. The default value is `4`.
pub interval: f32,
}
impl Default for ScrollOptions {
fn default() -> Self {
const DEFAULT_LINE_HEIGHT: usize = 18; // from the default template
Self {
max_height: DEFAULT_LINE_HEIGHT * 19,
pixels_per_scroll: DEFAULT_LINE_HEIGHT * 4,
interval: 4.0,
}
}
}
/// Text wrapping options.
#[derive(Debug, Clone, Deserialize, Serialize)]
#[non_exhaustive]
#[serde(rename_all = "snake_case")]
pub enum WrapOptions {
/// Perform a hard break at the specified width of output. The [`Default`] implementation
/// returns this variant with width 80.
HardBreakAt(usize),
}
impl Default for WrapOptions {
fn default() -> Self {
Self::HardBreakAt(80)
}
}
/// Template for rendering [`Transcript`]s, e.g. into an [SVG] image.
///
/// # Available templates
///
/// When using a template created with [`Self::new()`], a transcript is rendered into SVG
/// with the text content embedded as an HTML fragment. This is because SVG is not good
/// at laying out multiline texts and text backgrounds, while HTML excels at both.
/// As a downside of this approach, the resulting SVG requires for its viewer to support
/// HTML embedding; while web browsers *a priori* support such embedding, some other SVG viewers
/// may not.
///
/// A template created with [`Self::pure_svg()`] renders a transcript into pure SVG,
/// in which text is laid out manually and backgrounds use a hack (lines of text with
/// appropriately colored `█` chars placed behind the content lines). The resulting SVG is
/// supported by more viewers, but it may look incorrectly in certain corner cases. For example,
/// if the font family used in the template does not contain `█` or some chars
/// used in the transcript, the background may be mispositioned.
///
/// [Snapshot testing](crate::test) functionality produces snapshots using [`Self::new()`]
/// (i.e., with HTML embedding); pure SVG templates cannot be tested.
///
/// # Customization
///
/// A custom [Handlebars] template can be supplied via [`Self::custom()`]. This can be used
/// to partially or completely change rendering logic, including the output format (e.g.,
/// to render to HTML instead of SVG).
///
/// Data supplied to a template is [`HandlebarsData`].
///
/// Besides [built-in Handlebars helpers][rust-helpers] (a superset of [standard helpers]),
/// custom templates have access to the following additional helpers. All the helpers are
/// extensively used by the [default template]; thus, studying it may be a good place to start
/// customizing. Another example is an [HTML template] from the crate examples.
///
/// ## Arithmetic helpers: `add`, `sub`, `mul`, `div`
///
/// Perform the specified arithmetic operation on the supplied args.
/// `add` and `mul` support any number of numeric args; `sub` and `div` exactly 2 numeric args.
/// `div` also supports rounding via `round` hash option. `round=true` rounds to the nearest
/// integer; `round="up"` / `round="down"` perform rounding in the specified direction.
///
/// ```handlebars
/// {{add 2 3 5}}
/// {{div (len xs) 3 round="up"}}
/// ```
///
/// ## Counting lines: `count_lines`
///
/// Counts the number of lines in the supplied string. If `format="html"` hash option is included,
/// line breaks introduced by `<br/>` tags are also counted.
///
/// ```handlebars
/// {{count_lines test}}
/// {{count_lines test format="html"}}
/// ```
///
/// ## Integer ranges: `range`
///
/// Creates an array with integers in the range specified by the 2 provided integer args.
/// The "from" bound is inclusive, the "to" one is exclusive.
///
/// ```handlebars
/// {{#each (range 0 3)}}{{@index}}, {{/each}}
/// {{! Will output `0, 1, 2,` }}
/// ```
///
/// ## Variable scope: `scope`
///
/// A block helper that creates a scope with variables specified in the options hash.
/// In the block, each variable can be obtained or set using an eponymous helper:
///
/// - If the variable helper is called as a block helper, the variable is set to the contents
/// of the block, which is treated as JSON.
/// - If the variable helper is called as an inline helper with the `set` option, the variable
/// is set to the value of the option.
/// - Otherwise, the variable helper acts as a getter for the current value of the variable.
///
/// ```handlebars
/// {{#scope test=""}}
/// {{test set="Hello"}}
/// {{test}} {{! Outputs `Hello` }}
/// {{#test}}{{test}}, world!{{/test}}
/// {{test}} {{! Outputs `Hello, world!` }}
/// {{/scope}}
/// ```
///
/// Since variable getters are helpers, not "real" variables, they should be enclosed
/// in parentheses `()` if used as args / options for other helpers, e.g. `{{add (test) 2}}`.
///
/// ## Partial evaluation: `eval`
///
/// Evaluates a partial with the provided name and parses its output as JSON. This can be used
/// to define "functions" for better code structuring. Function args can be supplied in options
/// hash.
///
/// ```handlebars
/// {{#*inline "some_function"}}
/// {{add x y}}
/// {{/inline}}
/// {{#with (eval "some_function" x=3 y=5) as |sum|}}
/// {{sum}} {{! Outputs 8 }}
/// {{/with}}
/// ```
///
/// [SVG]: https://developer.mozilla.org/en-US/docs/Web/SVG
/// [Handlebars]: https://handlebarsjs.com/
/// [rust-helpers]: https://docs.rs/handlebars/latest/handlebars/index.html#built-in-helpers
/// [standard helpers]: https://handlebarsjs.com/guide/builtin-helpers.html
/// [default template]: https://github.com/slowli/term-transcript/blob/master/src/svg/default.svg.handlebars
/// [HTML template]: https://github.com/slowli/term-transcript/blob/master/examples/custom.html.handlebars
///
/// # Examples
///
/// ```
/// use term_transcript::{svg::*, Transcript, UserInput};
///
/// # fn main() -> anyhow::Result<()> {
/// let mut transcript = Transcript::new();
/// transcript.add_interaction(
/// UserInput::command("test"),
/// "Hello, \u{1b}[32mworld\u{1b}[0m!",
/// );
///
/// let template_options = TemplateOptions {
/// palette: NamedPalette::Dracula.into(),
/// ..TemplateOptions::default()
/// };
/// let mut buffer = vec![];
/// Template::new(template_options).render(&transcript, &mut buffer)?;
/// let buffer = String::from_utf8(buffer)?;
/// assert!(buffer.contains(r#"Hello, <span class="fg2">world</span>!"#));
/// # Ok(())
/// # }
/// ```
pub struct Template {
options: TemplateOptions,
handlebars: Handlebars<'static>,
}
impl fmt::Debug for Template {
fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
formatter
.debug_struct("Template")
.field("options", &self.options)
.finish_non_exhaustive()
}
}
impl Default for Template {
fn default() -> Self {
Self::new(TemplateOptions::default())
}
}
impl Template {
/// Initializes the default template based on provided `options`.
#[allow(clippy::missing_panics_doc)] // Panic should never be triggered
pub fn new(options: TemplateOptions) -> Self {
let template = HandlebarsTemplate::compile(DEFAULT_TEMPLATE)
.expect("Default template should be valid");
Self::custom(template, options)
}
/// Initializes the pure SVG template based on provided `options`.
#[allow(clippy::missing_panics_doc)] // Panic should never be triggered
pub fn pure_svg(options: TemplateOptions) -> Self {
let template =
HandlebarsTemplate::compile(PURE_TEMPLATE).expect("Pure template should be valid");
Self::custom(template, options)
}
/// Initializes a custom template.
pub fn custom(template: HandlebarsTemplate, options: TemplateOptions) -> Self {
let mut handlebars = Handlebars::new();
handlebars.set_strict_mode(true);
register_helpers(&mut handlebars);
handlebars.register_template(MAIN_TEMPLATE_NAME, template);
Self {
options,
handlebars,
}
}
/// Renders the `transcript` using the template (usually as an SVG image, although
/// custom templates may use a different output format).
///
/// # Errors
///
/// Returns a Handlebars rendering error, if any. Normally, the only errors could be
/// related to I/O (e.g., the output cannot be written to a file).
#[cfg_attr(
feature = "tracing",
tracing::instrument(skip_all, err, fields(self.options = ?self.options))
)]
pub fn render<W: Write>(
&self,
transcript: &Transcript,
destination: W,
) -> Result<(), RenderError> {
let data = self
.options
.render_data(transcript)
.map_err(|err| RenderErrorReason::NestedError(Box::new(err)))?;
#[cfg(feature = "tracing")]
let _entered = tracing::debug_span!("render_to_write").entered();
self.handlebars
.render_to_write(MAIN_TEMPLATE_NAME, &data, destination)
}
}