beam-migrate-0.5.3.2: Database/Beam/Migrate/Checks.hs
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE UndecidableInstances #-}
-- | Defines common 'DatabasePredicate's that are shared among backends
module Database.Beam.Migrate.Checks where
import Database.Beam.Backend.SQL.SQL92
import Database.Beam.Migrate.SQL.SQL92
import Database.Beam.Migrate.SQL.Types
import Database.Beam.Migrate.Serialization
import Database.Beam.Migrate.Types.Predicates
import Data.Aeson ((.:), (.=), withObject, object)
import Data.Aeson.Types (Parser, Value)
import Data.Hashable (Hashable(..))
import Data.Text (Text)
import Data.Typeable (Typeable, cast)
import GHC.Generics (Generic)
-- * Schema checks
-- | Asserts that a schema with the given name exists in a database
data SchemaExistsPredicate = SchemaExistsPredicate Text {-^ Table name -}
deriving (Show, Eq, Ord, Typeable, Generic)
instance Hashable SchemaExistsPredicate
instance DatabasePredicate SchemaExistsPredicate where
englishDescription (SchemaExistsPredicate s) =
"Schema " <> show s <> " must exist"
serializePredicate (SchemaExistsPredicate s) =
object [ "schema-exists" .= s ]
predicateSpecificity _ = PredicateSpecificityAllBackends
-- * Table checks
-- | Asserts that a table with the given name exists in a database
data TableExistsPredicate = TableExistsPredicate QualifiedName {-^ Table name -}
deriving (Show, Eq, Ord, Typeable, Generic)
instance Hashable TableExistsPredicate
instance DatabasePredicate TableExistsPredicate where
englishDescription (TableExistsPredicate t) =
"Table " <> show t <> " must exist"
serializePredicate (TableExistsPredicate t) =
object [ "table-exists" .= t ]
predicateSpecificity _ = PredicateSpecificityAllBackends
-- | A class that can check whether a particular data type is present
-- in a set of preconditions.
class HasDataTypeCreatedCheck dataType where
dataTypeHasBeenCreated :: dataType -> (forall preCondition. Typeable preCondition => [ preCondition ]) -> Bool
-- | Asserts that the table specified has a column with the given data type. The
-- type paramater @syntax@ should be an instance of 'IsSql92ColumnSchemaSyntax'.
data TableHasColumn be where
TableHasColumn
:: ( HasDataTypeCreatedCheck (BeamMigrateSqlBackendDataTypeSyntax be) )
=> { hasColumn_table :: QualifiedName {-^ Table name -}
, hasColumn_column :: Text {-^ Column name -}
, hasColumn_type :: BeamMigrateSqlBackendDataTypeSyntax be {-^ Data type -}
}
-> TableHasColumn be
instance Hashable (BeamMigrateSqlBackendDataTypeSyntax be) => Hashable (TableHasColumn be) where
hashWithSalt salt (TableHasColumn t c s) = hashWithSalt salt (t, c, s)
instance Eq (BeamMigrateSqlBackendDataTypeSyntax be) => Eq (TableHasColumn be) where
TableHasColumn aTbl aCol aDt == TableHasColumn bTbl bCol bDt =
aTbl == bTbl && aCol == bCol && aDt == bDt
instance ( Typeable be
, BeamMigrateOnlySqlBackend be
, Hashable (BeamMigrateSqlBackendDataTypeSyntax be) ) =>
DatabasePredicate (TableHasColumn be) where
englishDescription (TableHasColumn tbl col type_) =
"Table " <> show tbl <> " must have a column " <> show col <> " of " <> displaySyntax type_
predicateSpecificity _ = PredicateSpecificityAllBackends
serializePredicate (TableHasColumn tbl col type_) =
object [ "has-column" .= object [ "table" .= tbl, "column" .= col
, "type" .= serializeDataType type_ ]]
predicateCascadesDropOn (TableHasColumn tblNm _ _) p'
| Just (TableExistsPredicate tblNm') <- cast p' = tblNm' == tblNm
| otherwise = False
-- | Asserts that a particular column of a table has a given constraint. The
-- @syntax@ type parameter should be an instance of 'IsSql92ColumnSchemaSyntax'
data TableColumnHasConstraint be
= TableColumnHasConstraint
{ hasConstraint_table :: QualifiedName {-^ Table name -}
, hasConstraint_column :: Text {-^ Column name -}
, hasConstraint_defn :: BeamSqlBackendColumnConstraintDefinitionSyntax be {-^ Constraint definition -}
} deriving Generic
instance Hashable (BeamSqlBackendColumnConstraintDefinitionSyntax be) => Hashable (TableColumnHasConstraint be)
deriving instance Eq (BeamSqlBackendColumnConstraintDefinitionSyntax be) => Eq (TableColumnHasConstraint be)
instance ( Typeable be, BeamMigrateOnlySqlBackend be
, Hashable (BeamSqlBackendColumnConstraintDefinitionSyntax be) ) =>
DatabasePredicate (TableColumnHasConstraint be) where
englishDescription (TableColumnHasConstraint tbl col cns) =
"Column " <> show tbl <> "." <> show col <> " has constraint " <> displaySyntax cns
predicateSpecificity _ = PredicateSpecificityAllBackends
serializePredicate (TableColumnHasConstraint tbl col cns) =
object [ "has-column-constraint" .= object [ "table" .= tbl, "column" .= col
, "constraint" .= serializeConstraint cns ] ]
predicateCascadesDropOn (TableColumnHasConstraint tblNm colNm _) p'
| Just (TableExistsPredicate tblNm') <- cast p' = tblNm' == tblNm
| Just (TableHasColumn tblNm' colNm' _ :: TableHasColumn be) <- cast p' = tblNm' == tblNm && colNm' == colNm
| otherwise = False
-- | Asserts that the given table has a primary key made of the given columns.
-- The order of the columns is significant.
data TableHasPrimaryKey
= TableHasPrimaryKey
{ hasPrimaryKey_table :: QualifiedName {-^ Table name -}
, hasPrimaryKey_cols :: [Text] {-^ Column names -}
} deriving (Show, Eq, Generic)
instance Hashable TableHasPrimaryKey
instance DatabasePredicate TableHasPrimaryKey where
englishDescription (TableHasPrimaryKey tblName colNames) =
"Table " <> show tblName <> " has primary key " <> show colNames
predicateSpecificity _ = PredicateSpecificityAllBackends
serializePredicate (TableHasPrimaryKey tbl cols) =
object [ "has-primary-key" .= object [ "table" .= tbl
, "columns" .= cols ] ]
predicateCascadesDropOn (TableHasPrimaryKey tblNm _) p'
| Just (TableExistsPredicate tblNm') <- cast p' = tblNm' == tblNm
| otherwise = False
-- * Deserialization
-- | 'BeamDeserializers' for all the predicates defined in this module
beamCheckDeserializers
:: forall be
. ( Typeable be, BeamMigrateOnlySqlBackend be
, HasDataTypeCreatedCheck (BeamMigrateSqlBackendDataTypeSyntax be) )
=> BeamDeserializers be
beamCheckDeserializers = mconcat
[ beamDeserializer (const deserializeSchemaExistsPredicate)
, beamDeserializer (const deserializeTableExistsPredicate)
, beamDeserializer (const deserializeTableHasPrimaryKeyPredicate)
, beamDeserializer deserializeTableHasColumnPredicate
, beamDeserializer deserializeTableColumnHasConstraintPredicate
]
where
deserializeSchemaExistsPredicate :: Value -> Parser SomeDatabasePredicate
deserializeSchemaExistsPredicate =
withObject "SchemaExistsPredicate" $ \v ->
SomeDatabasePredicate <$> (SchemaExistsPredicate <$> v .: "schema-exists")
deserializeTableExistsPredicate :: Value -> Parser SomeDatabasePredicate
deserializeTableExistsPredicate =
withObject "TableExistPredicate" $ \v ->
SomeDatabasePredicate <$> (TableExistsPredicate <$> v .: "table-exists")
deserializeTableHasPrimaryKeyPredicate :: Value -> Parser SomeDatabasePredicate
deserializeTableHasPrimaryKeyPredicate =
withObject "TableHasPrimaryKey" $ \v ->
v .: "has-primary-key" >>=
(withObject "TableHasPrimaryKey" $ \v' ->
SomeDatabasePredicate <$> (TableHasPrimaryKey <$> v' .: "table" <*> v' .: "columns"))
deserializeTableHasColumnPredicate :: BeamDeserializers be'
-> Value -> Parser SomeDatabasePredicate
deserializeTableHasColumnPredicate d =
withObject "TableHasColumn" $ \v ->
v .: "has-column" >>=
(withObject "TableHasColumn" $ \v' ->
SomeDatabasePredicate <$>
fmap (id @(TableHasColumn be))
(TableHasColumn <$> v' .: "table" <*> v' .: "column"
<*> (beamDeserialize d =<< v' .: "type")))
deserializeTableColumnHasConstraintPredicate :: BeamDeserializers be'
-> Value -> Parser SomeDatabasePredicate
deserializeTableColumnHasConstraintPredicate d =
withObject "TableColumnHasConstraint" $ \v ->
v .: "has-column-constraint" >>=
(withObject "TableColumnHasConstraint" $ \v' ->
SomeDatabasePredicate <$>
fmap (id @(TableColumnHasConstraint be))
(TableColumnHasConstraint <$> v' .: "table" <*> v' .: "column"
<*> (beamDeserialize d =<< v' .: "constraint")))