toml-parser-2.0.2.0: TOML 1.1.0 parser
Copyright(c) Eric Mertens 2023
LicenseISC
Maintaineremertens@gmail.com
Safe HaskellNone
LanguageHaskell2010

Toml.Semantics

Description

This module extracts a nested Map representation of a TOML file. It detects invalid key assignments and resolves dotted key assignments.

Synopsis

Types

type Value = Value' () Source #

A Value' with trivial annotations

data Value' a Source #

Semantic TOML value with all table assignments resolved.

Bundled Patterns

pattern Bool :: Bool -> Value 
pattern Double :: Double -> Value 
pattern List :: [Value] -> Value 
pattern Integer :: Integer -> Value 
pattern Text :: Text -> Value 
pattern Table :: Table -> Value 
pattern Day :: Day -> Value 
pattern TimeOfDay :: TimeOfDay -> Value 
pattern LocalTime :: LocalTime -> Value 
pattern ZonedTime :: ZonedTime -> Value 

Instances

Instances details
Functor Value' Source #

Derived

Instance details

Defined in Toml.Semantics.Types

Methods

fmap :: (a -> b) -> Value' a -> Value' b Source #

(<$) :: a -> Value' b -> Value' a Source #

Foldable Value' Source #

Derived

Instance details

Defined in Toml.Semantics.Types

Methods

fold :: Monoid m => Value' m -> m Source #

foldMap :: Monoid m => (a -> m) -> Value' a -> m Source #

foldMap' :: Monoid m => (a -> m) -> Value' a -> m Source #

foldr :: (a -> b -> b) -> b -> Value' a -> b Source #

foldr' :: (a -> b -> b) -> b -> Value' a -> b Source #

foldl :: (b -> a -> b) -> b -> Value' a -> b Source #

foldl' :: (b -> a -> b) -> b -> Value' a -> b Source #

foldr1 :: (a -> a -> a) -> Value' a -> a Source #

foldl1 :: (a -> a -> a) -> Value' a -> a Source #

toList :: Value' a -> [a] Source #

null :: Value' a -> Bool Source #

length :: Value' a -> Int Source #

elem :: Eq a => a -> Value' a -> Bool Source #

maximum :: Ord a => Value' a -> a Source #

minimum :: Ord a => Value' a -> a Source #

sum :: Num a => Value' a -> a Source #

product :: Num a => Value' a -> a Source #

Traversable Value' Source #

Derived

Instance details

Defined in Toml.Semantics.Types

Methods

traverse :: Applicative f => (a -> f b) -> Value' a -> f (Value' b) Source #

sequenceA :: Applicative f => Value' (f a) -> f (Value' a) Source #

mapM :: Monad m => (a -> m b) -> Value' a -> m (Value' b) Source #

sequence :: Monad m => Value' (m a) -> m (Value' a) Source #

FromValue Value Source #

Matches all values, used for pass-through

Instance details

Defined in Toml.Schema.FromValue

ToValue Value Source #

Identity function

Instance details

Defined in Toml.Schema.ToValue

() ~ a => IsString (Value' a) Source #

Constructs a TOML string literal.

fromString = String
Instance details

Defined in Toml.Semantics.Types

Read a => Read (Value' a) Source #

Default instance

Instance details

Defined in Toml.Semantics.Types

Show a => Show (Value' a) Source #

Default instance

Instance details

Defined in Toml.Semantics.Types

Eq a => Eq (Value' a) Source #

Nearly default instance except ZonedTime doesn't have an Eq instance. ZonedTime values are equal if their times and time-zones are both equal.

Instance details

Defined in Toml.Semantics.Types

Methods

(==) :: Value' a -> Value' a -> Bool Source #

(/=) :: Value' a -> Value' a -> Bool Source #

type Table = Table' () Source #

A Table' with trivial annotations

newtype Table' a Source #

A table with annotated keys and values.

Constructors

MkTable (Map Text (a, Value' a)) 

Instances

Instances details
Functor Table' Source #

Derived

Instance details

Defined in Toml.Semantics.Types

Methods

fmap :: (a -> b) -> Table' a -> Table' b Source #

(<$) :: a -> Table' b -> Table' a Source #

Foldable Table' Source #

Derived

Instance details

Defined in Toml.Semantics.Types

Methods

fold :: Monoid m => Table' m -> m Source #

foldMap :: Monoid m => (a -> m) -> Table' a -> m Source #

foldMap' :: Monoid m => (a -> m) -> Table' a -> m Source #

foldr :: (a -> b -> b) -> b -> Table' a -> b Source #

foldr' :: (a -> b -> b) -> b -> Table' a -> b Source #

foldl :: (b -> a -> b) -> b -> Table' a -> b Source #

foldl' :: (b -> a -> b) -> b -> Table' a -> b Source #

foldr1 :: (a -> a -> a) -> Table' a -> a Source #

foldl1 :: (a -> a -> a) -> Table' a -> a Source #

toList :: Table' a -> [a] Source #

null :: Table' a -> Bool Source #

length :: Table' a -> Int Source #

elem :: Eq a => a -> Table' a -> Bool Source #

maximum :: Ord a => Table' a -> a Source #

minimum :: Ord a => Table' a -> a Source #

sum :: Num a => Table' a -> a Source #

product :: Num a => Table' a -> a Source #

Traversable Table' Source #

Derived

Instance details

Defined in Toml.Semantics.Types

Methods

traverse :: Applicative f => (a -> f b) -> Table' a -> f (Table' b) Source #

sequenceA :: Applicative f => Table' (f a) -> f (Table' a) Source #

mapM :: Monad m => (a -> m b) -> Table' a -> m (Table' b) Source #

sequence :: Monad m => Table' (m a) -> m (Table' a) Source #

FromValue Table Source # 
Instance details

Defined in Toml.Schema.FromValue

Read a => Read (Table' a) Source #

Default instance

Instance details

Defined in Toml.Semantics.Types

Show a => Show (Table' a) Source #

Default instance

Instance details

Defined in Toml.Semantics.Types

Eq a => Eq (Table' a) Source #

Default instance

Instance details

Defined in Toml.Semantics.Types

Methods

(==) :: Table' a -> Table' a -> Bool Source #

(/=) :: Table' a -> Table' a -> Bool Source #

ToTable (Table' a) Source # 
Instance details

Defined in Toml.Schema.ToValue

Methods

toTable :: Table' a -> Table Source #

ToValue (Table' a) Source # 
Instance details

Defined in Toml.Schema.ToValue

Validation

semantics :: [Expr a] -> Either (SemanticError a) (Table' a) Source #

Extracts a semantic value from a sequence of raw TOML expressions, or reports a semantic error if one occurs.

data SemanticError a Source #

This type represents errors generated when resolving keys in a TOML document.

Since: 1.3.0.0

Constructors

SemanticError 

Fields

Instances

Instances details
Functor SemanticError Source # 
Instance details

Defined in Toml.Semantics

Methods

fmap :: (a -> b) -> SemanticError a -> SemanticError b Source #

(<$) :: a -> SemanticError b -> SemanticError a Source #

Foldable SemanticError Source # 
Instance details

Defined in Toml.Semantics

Methods

fold :: Monoid m => SemanticError m -> m Source #

foldMap :: Monoid m => (a -> m) -> SemanticError a -> m Source #

foldMap' :: Monoid m => (a -> m) -> SemanticError a -> m Source #

foldr :: (a -> b -> b) -> b -> SemanticError a -> b Source #

foldr' :: (a -> b -> b) -> b -> SemanticError a -> b Source #

foldl :: (b -> a -> b) -> b -> SemanticError a -> b Source #

foldl' :: (b -> a -> b) -> b -> SemanticError a -> b Source #

foldr1 :: (a -> a -> a) -> SemanticError a -> a Source #

foldl1 :: (a -> a -> a) -> SemanticError a -> a Source #

toList :: SemanticError a -> [a] Source #

null :: SemanticError a -> Bool Source #

length :: SemanticError a -> Int Source #

elem :: Eq a => a -> SemanticError a -> Bool Source #

maximum :: Ord a => SemanticError a -> a Source #

minimum :: Ord a => SemanticError a -> a Source #

sum :: Num a => SemanticError a -> a Source #

product :: Num a => SemanticError a -> a Source #

Traversable SemanticError Source # 
Instance details

Defined in Toml.Semantics

Methods

traverse :: Applicative f => (a -> f b) -> SemanticError a -> f (SemanticError b) Source #

sequenceA :: Applicative f => SemanticError (f a) -> f (SemanticError a) Source #

mapM :: Monad m => (a -> m b) -> SemanticError a -> m (SemanticError b) Source #

sequence :: Monad m => SemanticError (m a) -> m (SemanticError a) Source #

Read a => Read (SemanticError a) Source #

Default instance

Instance details

Defined in Toml.Semantics

Show a => Show (SemanticError a) Source #

Default instance

Instance details

Defined in Toml.Semantics

Eq a => Eq (SemanticError a) Source #

Default instance

Instance details

Defined in Toml.Semantics

Ord a => Ord (SemanticError a) Source #

Default instance

Instance details

Defined in Toml.Semantics

data SemanticErrorKind Source #

Enumeration of the kinds of conflicts a key can generate.

Since: 1.3.0.0

Constructors

AlreadyAssigned

Attempted to assign to a key that was already assigned

ClosedTable

Attempted to open a table already closed

ImplicitlyTable

Attempted to open a tables as an array of tables that was implicitly defined to be a table

Annotations

forgetTableAnns :: Table' a -> Table Source #

Replaces annotations with a unit.

forgetValueAnns :: Value' a -> Value Source #

Replaces annotations with a unit.

valueAnn :: Value' a -> a Source #

Extract the top-level annotation from a value.

valueType :: Value' l -> String Source #

String representation of the kind of value using TOML vocabulary