toml-parser-2.0.0.0: TOML 1.0.0 parser
Copyright(c) Eric Mertens 2023
LicenseISC
Maintaineremertens@gmail.com
Safe HaskellSafe-Inferred
LanguageHaskell2010

Toml.Pretty

Description

This module provides human-readable renderers for types used in this package to assist error message production.

The generated Doc values are annotated with DocClass values to assist in producing syntax-highlighted outputs.

To extract a plain String representation, use show.

Synopsis

Types

type TomlDoc = Doc DocClass Source #

Pretty-printer document with TOML class attributes to aid in syntax-highlighting.

data DocClass Source #

Annotation used to enable styling pretty-printed TOML

Constructors

TableClass

top-level [key] and [[key]]

KeyClass

dotted keys, left-hand side of assignments

StringClass

string literals

NumberClass

number literals

DateClass

date and time literals

BoolClass

boolean literals

Instances

Instances details
Read DocClass Source # 
Instance details

Defined in Toml.Pretty

Show DocClass Source # 
Instance details

Defined in Toml.Pretty

Eq DocClass Source # 
Instance details

Defined in Toml.Pretty

Ord DocClass Source # 
Instance details

Defined in Toml.Pretty

Printing semantic values

prettyToml Source #

Arguments

:: Table' a

table to print

-> TomlDoc

TOML syntax

Render a complete TOML document using top-level table and array of table sections where possible.

Keys are sorted alphabetically. To provide a custom ordering, see prettyTomlOrdered.

prettyTomlOrdered Source #

Arguments

:: Ord a 
=> ([Text] -> Text -> a)

table path -> key -> projection

-> Table' l

table to print

-> TomlDoc

TOML syntax

Render a complete TOML document like prettyToml but use a custom key ordering. The comparison function has access to the complete key path. Note that only keys in the same table will every be compared.

This operation allows you to render your TOML files with the most important sections first. A TOML file describing a package might desire to have the [package] section first before any of the ancillary configuration sections.

The table path is the name of the table being sorted. This allows the projection to be aware of which table is being sorted.

The key is the key in the table being sorted. These are the keys that will be compared to each other.

Here's a projection that puts the package section first, the secondary section second, and then all remaining cases are sorted alphabetically afterward.

example :: [String] -> String -> Either Int String
example [] "package" = Left 1
example [] "second"  = Left 2
example _  other     = Right other

We could also put the tables in reverse-alphabetical order by leveraging an existing newtype.

reverseOrderProj :: [String] -> String -> Down String
reverseOrderProj _ = Down

prettyValue :: Value' l -> TomlDoc Source #

Render a value suitable for assignment on the right-hand side of an equals sign. This value will always use inline table and list syntax.

Printing syntactic components

prettyToken :: Token -> String Source #

Render token for human-readable error messages.

prettySectionKind :: SectionKind -> NonEmpty Text -> TomlDoc Source #

Pretty-print a section heading. The result is annotated as a TableClass.

Printing keys

prettySimpleKey :: Text -> Doc a Source #

Renders a simple-key using quotes where necessary.

prettyKey :: NonEmpty Text -> TomlDoc Source #

Renders a dotted-key using quotes where necessary and annotated as a KeyClass.

Locations

prettyLocated :: Located String -> String Source #

Pretty-print as line:col: message

prettyPosition :: Position -> String Source #

Pretty-print as line:col