napkin-1.0.0
Safe HaskellSafe-Inferred
LanguageGHC2021

Napkin.Run.Effects.Interpreters.FakeLocal

Description

A SqlBackend interpreter that performs a minimal amount of table state management to facilitate dry runs and trivial unwrapping of SqlBackend effects.

It produces a report of used dependencies, but this is not intended for use in the Spec system for figuring out dependencies. User's forced/added dependencies would not show up here, for example. This is meant more for dry runs and simulations.

Synopsis

Documentation

data IState #

Constructors

IState 

Fields

Instances

Instances details
Generic IState # 
Instance details

Defined in Napkin.Run.Effects.Interpreters.FakeLocal

Associated Types

type Rep IState :: Type -> Type #

Methods

from :: IState -> Rep IState x #

to :: Rep IState x -> IState #

Show IState # 
Instance details

Defined in Napkin.Run.Effects.Interpreters.FakeLocal

Eq IState # 
Instance details

Defined in Napkin.Run.Effects.Interpreters.FakeLocal

Methods

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

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

type Rep IState # 
Instance details

Defined in Napkin.Run.Effects.Interpreters.FakeLocal

type Rep IState = D1 ('MetaData "IState" "Napkin.Run.Effects.Interpreters.FakeLocal" "napkin-1.0.0-B79azc00rn1K8mj00hwhwG" 'False) (C1 ('MetaCons "IState" 'PrefixI 'True) ((S1 ('MetaSel ('Just "created") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 (Set (Ref Table))) :*: S1 ('MetaSel ('Just "managed") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 (Set (Ref Table)))) :*: (S1 ('MetaSel ('Just "external") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 (Set (Ref Table))) :*: (S1 ('MetaSel ('Just "hidden") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 (Set (Ref Table))) :*: S1 ('MetaSel ('Just "targetCheck") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Bool)))))

createReference :: Member (State IState) r => Ref Table -> Sem r () #

Simulate creation of a table

useDependency :: (Member (State IState) r, Member (Reader HiddenDependencies) r) => Ref Table -> Sem r () #

Simulate use of a table

newtype TargetExists #

Constructors

TargetExists Bool 

runExternalFakeSuccess :: forall effs a. Members [State IState, Input (Transformed TargetName)] effs => Sem (External : effs) a -> Sem effs a #