hoyo-0.6.0.0: Bookmark directories for cd
Copyright(c) Frederick Pringle 2023
LicenseBSD-3-Clause
Maintainerfreddyjepringle@gmail.com
Safe HaskellNone
LanguageHaskell2010

Hoyo.Internal.Types

Description

Types used by all the main Hoyo.* modules.

Synopsis

Documentation

data Env Source #

The main hoyo read-only environment. Contains the current saved bookmarks, the current hoyo configuration, and the file locations for each.

Instances

Instances details
Show Env Source # 
Instance details

Defined in Hoyo.Internal.Types

Methods

showsPrec :: Int -> Env -> ShowS #

show :: Env -> String #

showList :: [Env] -> ShowS #

MonadReader Env HoyoMonad Source # 
Instance details

Defined in Hoyo.Internal.Types

Methods

ask :: HoyoMonad Env #

local :: (Env -> Env) -> HoyoMonad a -> HoyoMonad a #

reader :: (Env -> a) -> HoyoMonad a #

data Bookmark Source #

Bookmark a directory for easy cd. A bookmark remembers the directory, the index, the creation time, and optionally a user-specified nickname for the bookmark.

Instances

Instances details
Eq Bookmark Source # 
Instance details

Defined in Hoyo.Internal.Types

Show Bookmark Source # 
Instance details

Defined in Hoyo.Internal.Types

data DefaultBookmark Source #

Default bookmarks to save at init. A default bookmark remembers the directory and optionally a user-specified nickname for the bookmark.

newtype Bookmarks Source #

Wrapper for [Bookmark].

Constructors

Bookmarks 

Fields

Instances

Instances details
Show Bookmarks Source # 
Instance details

Defined in Hoyo.Internal.Types

data BookmarkSearchTerm Source #

Data-type for represting a bookmark search. You can either search by index or by name. Used by the delete and move commands.

data ConfigValueType Source #

The types of config values allowed in the Hoyo config.

data ConfigValue (t :: ConfigValueType) where Source #

Values in the Hoyo config. Using a GADT parameterised by ConfigValueType gives us stricter type safety.

Instances

Instances details
Eq (ConfigValue t) Source # 
Instance details

Defined in Hoyo.Internal.Types

Show (ConfigValue t) Source # 
Instance details

Defined in Hoyo.Internal.Types

data AnyConfigValue Source #

Existential wrapper around ConfigValue.

Constructors

forall (t :: ConfigValueType). AnyConfigValue (ConfigValue t) 

data Config Source #

A representation of hoyo settings.

Instances

Instances details
Eq Config Source # 
Instance details

Defined in Hoyo.Internal.Types

Methods

(==) :: Config -> Config -> Bool #

(/=) :: Config -> Config -> Bool #

Show Config Source # 
Instance details

Defined in Hoyo.Internal.Types

data CommandException Source #

Report an exception while running a command.

Instances

Instances details
Eq CommandException Source # 
Instance details

Defined in Hoyo.Internal.Types

Show CommandException Source # 
Instance details

Defined in Hoyo.Internal.Types

Generic CommandException Source # 
Instance details

Defined in Hoyo.Internal.Types

Associated Types

type Rep CommandException :: Type -> Type #

type Rep CommandException Source # 
Instance details

Defined in Hoyo.Internal.Types

type Rep CommandException = D1 ('MetaData "CommandException" "Hoyo.Internal.Types" "hoyo-0.6.0.0-inplace" 'False) (C1 ('MetaCons "SearchException" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 SearchException)) :+: (C1 ('MetaCons "InvalidArgumentException" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 [Text])) :+: C1 ('MetaCons "LoopException" 'PrefixI 'False) (U1 :: Type -> Type)))

data HoyoException Source #

A custom hierarchical exception type for hoyo.

Instances

Instances details
Eq HoyoException Source # 
Instance details

Defined in Hoyo.Internal.Types

Show HoyoException Source # 
Instance details

Defined in Hoyo.Internal.Types

Generic HoyoException Source # 
Instance details

Defined in Hoyo.Internal.Types

Associated Types

type Rep HoyoException :: Type -> Type #

Semigroup HoyoException Source # 
Instance details

Defined in Hoyo.Internal.Types

MonadError HoyoException HoyoMonad Source # 
Instance details

Defined in Hoyo.Internal.Types

type Rep HoyoException Source # 
Instance details

Defined in Hoyo.Internal.Types

newtype HoyoMonad a Source #

HoyoMonad is the main monad stack for the hoyo program. It's essentially a wrapper around ExceptT T.Text (ReaderT Env IO): in other words, HoyoMonad a is equivalent to Env -> IO (Either T.Text a)

Constructors

HoyoMonad 

Instances

Instances details
Monad HoyoMonad Source # 
Instance details

Defined in Hoyo.Internal.Types

Methods

(>>=) :: HoyoMonad a -> (a -> HoyoMonad b) -> HoyoMonad b #

(>>) :: HoyoMonad a -> HoyoMonad b -> HoyoMonad b #

return :: a -> HoyoMonad a #

Functor HoyoMonad Source # 
Instance details

Defined in Hoyo.Internal.Types

Methods

fmap :: (a -> b) -> HoyoMonad a -> HoyoMonad b #

(<$) :: a -> HoyoMonad b -> HoyoMonad a #

Applicative HoyoMonad Source # 
Instance details

Defined in Hoyo.Internal.Types

Methods

pure :: a -> HoyoMonad a #

(<*>) :: HoyoMonad (a -> b) -> HoyoMonad a -> HoyoMonad b #

liftA2 :: (a -> b -> c) -> HoyoMonad a -> HoyoMonad b -> HoyoMonad c #

(*>) :: HoyoMonad a -> HoyoMonad b -> HoyoMonad b #

(<*) :: HoyoMonad a -> HoyoMonad b -> HoyoMonad a #

MonadIO HoyoMonad Source # 
Instance details

Defined in Hoyo.Internal.Types

Methods

liftIO :: IO a -> HoyoMonad a #

MonadThrow HoyoMonad Source # 
Instance details

Defined in Hoyo.Internal.Types

Methods

throwM :: Exception e => e -> HoyoMonad a #

MonadCatch HoyoMonad Source # 
Instance details

Defined in Hoyo.Internal.Types

Methods

catch :: Exception e => HoyoMonad a -> (e -> HoyoMonad a) -> HoyoMonad a #

MonadReader Env HoyoMonad Source # 
Instance details

Defined in Hoyo.Internal.Types

Methods

ask :: HoyoMonad Env #

local :: (Env -> Env) -> HoyoMonad a -> HoyoMonad a #

reader :: (Env -> a) -> HoyoMonad a #

MonadError HoyoException HoyoMonad Source # 
Instance details

Defined in Hoyo.Internal.Types

data AddOptions Source #

Options for the "add" command to be parsed from the command-line.

Constructors

AddOptions 

Instances

Instances details
Eq AddOptions Source # 
Instance details

Defined in Hoyo.Internal.Types

Show AddOptions Source # 
Instance details

Defined in Hoyo.Internal.Types

newtype MoveOptions Source #

Options for the "move" command to be parsed from the command-line.

Constructors

MoveOptions 

Instances

Instances details
Eq MoveOptions Source # 
Instance details

Defined in Hoyo.Internal.Types

Show MoveOptions Source # 
Instance details

Defined in Hoyo.Internal.Types

data ListOptions Source #

Options for the "list" command to be parsed from the command-line.

Instances

Instances details
Eq ListOptions Source # 
Instance details

Defined in Hoyo.Internal.Types

Show ListOptions Source # 
Instance details

Defined in Hoyo.Internal.Types

data ClearOptions Source #

Options for the "clear" command to be parsed from the command-line.

Constructors

ClearOptions 

Instances

Instances details
Eq ClearOptions Source # 
Instance details

Defined in Hoyo.Internal.Types

Show ClearOptions Source # 
Instance details

Defined in Hoyo.Internal.Types

newtype DeleteOptions Source #

Options for the "delete" command to be parsed from the command-line.

Instances

Instances details
Eq DeleteOptions Source # 
Instance details

Defined in Hoyo.Internal.Types

Show DeleteOptions Source # 
Instance details

Defined in Hoyo.Internal.Types

data RefreshOptions Source #

Options for the "refresh" command to be parsed from the command-line.

Constructors

RefreshOptions 

Instances

Instances details
Eq RefreshOptions Source # 
Instance details

Defined in Hoyo.Internal.Types

Show RefreshOptions Source # 
Instance details

Defined in Hoyo.Internal.Types

newtype ConfigPrintOptions Source #

Options for the "config print" command to be parsed from the command-line.

data ConfigResetOptions Source #

Options for the "config reset" command to be parsed from the command-line.

Constructors

ConfigResetOptions 

data ConfigSetOptions Source #

Options for the "config set" command to be parsed from the command-line.

Constructors

ConfigSetOptions 

Fields

data ConfigAddDefaultOptions Source #

Options for the "config add-default" command to be parsed from the command-line.

data ConfigCommand Source #

Options for the "config" command to be parsed from the command-line.

Instances

Instances details
Eq ConfigCommand Source # 
Instance details

Defined in Hoyo.Internal.Types

Show ConfigCommand Source # 
Instance details

Defined in Hoyo.Internal.Types

data CheckOptions Source #

Options for the "check" command to be parsed from the command-line.

Constructors

CheckOptions 

Instances

Instances details
Eq CheckOptions Source # 
Instance details

Defined in Hoyo.Internal.Types

Show CheckOptions Source # 
Instance details

Defined in Hoyo.Internal.Types

newtype HelpOptions Source #

Options for the "help" command to be parsed from the command-line.

Constructors

HelpOptions 

Instances

Instances details
Eq HelpOptions Source # 
Instance details

Defined in Hoyo.Internal.Types

Show HelpOptions Source # 
Instance details

Defined in Hoyo.Internal.Types

data Command Source #

The core data-type for the hoyo CLI. The Command is parsed from the command-line, then runCommand dispatches on the type.

Instances

Instances details
Eq Command Source # 
Instance details

Defined in Hoyo.Internal.Types

Methods

(==) :: Command -> Command -> Bool #

(/=) :: Command -> Command -> Bool #

Show Command Source # 
Instance details

Defined in Hoyo.Internal.Types

data MaybeOverride Source #

Datatype for representing a command-line settings override.

Instances

Instances details
Eq MaybeOverride Source # 
Instance details

Defined in Hoyo.Internal.Types

Show MaybeOverride Source # 
Instance details

Defined in Hoyo.Internal.Types

data GlobalOptions Source #

CLI options that can be set regardless of which command is run.

Instances

Instances details
Eq GlobalOptions Source # 
Instance details

Defined in Hoyo.Internal.Types

Show GlobalOptions Source # 
Instance details

Defined in Hoyo.Internal.Types

data Options Source #

The final result of parsing the CLI arguments. Contains a command and all information for that command, and any global options that have been set.

Constructors

Options 

Instances

Instances details
Eq Options Source # 
Instance details

Defined in Hoyo.Internal.Types

Methods

(==) :: Options -> Options -> Bool #

(/=) :: Options -> Options -> Bool #

Show Options Source # 
Instance details

Defined in Hoyo.Internal.Types