Copyright | (c) Soostone Inc 2020 |
---|---|
License | AllRightsReserved |
Stability | experimental |
Portability | POSIX |
Safe Haskell | Safe-Inferred |
Language | GHC2021 |
dump Specs as dot or SQL files
Documentation
type OutputDirectory = FilePath #
type DumpSpec b = (ReifiesBackend b, MustacheBackend b, RunBackendEffect b, DumpBackendRequirements b) #
runDump :: DumpSpec b => RuntimeEnv -> RawInterpretedSpec b -> OutputDirectory -> IncludeUnmanagedTables -> DumpNameMode -> [RunTableSelector] -> IO (Either (NonEmpty ValidationError) ()) #
data DumpNameMode #
Instances
Show DumpNameMode # | |
Defined in Napkin.Spec.Dump showsPrec :: Int -> DumpNameMode -> ShowS # show :: DumpNameMode -> String # showList :: [DumpNameMode] -> ShowS # | |
Eq DumpNameMode # | |
Defined in Napkin.Spec.Dump (==) :: DumpNameMode -> DumpNameMode -> Bool # (/=) :: DumpNameMode -> DumpNameMode -> Bool # |
renderTableSpec :: forall b. DumpSpec b => RuntimeEnv -> InterpretedSpecEnvironment -> TableSpec b -> IO (Either WriteLog (WriteLog, WriteLog)) #
storeDependencyGraph :: SpecDepGraph -> FilePath -> IO () #
type ColorBuckets = Map String Color #
specGraphAsDot :: SpecDepGraph -> DotGraph Int #
type TagsPerRow = Int #
createTableSpecTagsTableRows :: TagsPerRow -> ColorBuckets -> Set TableSpecTag -> [Row] #
tableau10Colors :: [Color] #
tableau20Colors :: [Color] #
Instances
ToJSON GraphJSON # | |
Defined in Napkin.Spec.Dump | |
Generic GraphJSON # | |
type Rep GraphJSON # | |
Defined in Napkin.Spec.Dump type Rep GraphJSON = D1 ('MetaData "GraphJSON" "Napkin.Spec.Dump" "napkin-0.5.14-JrXUGmKUOt9J0meJSj0Kh4" 'True) (C1 ('MetaCons "GraphJSON" 'PrefixI 'True) (S1 ('MetaSel ('Just "managedTables") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 (Map SpecTableName ManagedTable)))) |
data ManagedTable #
Instances
ToJSON ManagedTable # | |
Defined in Napkin.Spec.Dump toJSON :: ManagedTable -> Value # toEncoding :: ManagedTable -> Encoding # toJSONList :: [ManagedTable] -> Value # toEncodingList :: [ManagedTable] -> Encoding # | |
Generic ManagedTable # | |
Defined in Napkin.Spec.Dump type Rep ManagedTable :: Type -> Type # from :: ManagedTable -> Rep ManagedTable x # to :: Rep ManagedTable x -> ManagedTable # | |
type Rep ManagedTable # | |
Defined in Napkin.Spec.Dump type Rep ManagedTable = D1 ('MetaData "ManagedTable" "Napkin.Spec.Dump" "napkin-0.5.14-JrXUGmKUOt9J0meJSj0Kh4" 'False) (C1 ('MetaCons "ManagedTable" 'PrefixI 'True) (S1 ('MetaSel ('Just "dependencies") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 (Set (Ref Table))) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 (Set TableSpecTag)) :*: S1 ('MetaSel ('Just "artifacts") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 (Set (Ref Table)))))) |
toGraphJSON :: Specs b -> Map SpecTableName (ProgramDependenciesAndQueries b) -> GraphJSON #