Safe Haskell | None |
---|---|
Language | Haskell2010 |
- type CheckedDatabaseSettings be db = db (CheckedDatabaseEntity be db)
- class IsDatabaseEntity be entity => IsCheckedDatabaseEntity be entity where
- data CheckedDatabaseEntityDescriptor be entity :: *
- type CheckedDatabaseEntityDefaultRequirements be entity syntax :: Constraint
- data CheckedDatabaseEntity be (db :: (* -> *) -> *) entityType where
- CheckedDatabaseEntity :: IsCheckedDatabaseEntity be entityType => CheckedDatabaseEntityDescriptor be entityType -> [SomeDatabasePredicate] -> CheckedDatabaseEntity be db entityType
- unCheckDatabase :: forall be db. Database be db => CheckedDatabaseSettings be db -> DatabaseSettings be db
- collectChecks :: forall be db. Database be db => CheckedDatabaseSettings be db -> [SomeDatabasePredicate]
- data CheckedFieldModification tbl a
- checkedFieldNamed :: Text -> CheckedFieldModification tbl a
- modifyCheckedTable :: (Text -> Text) -> tbl (CheckedFieldModification tbl) -> EntityModification (CheckedDatabaseEntity be db) be (TableEntity tbl)
- checkedTableModification :: forall tbl. Beamable tbl => tbl (CheckedFieldModification tbl)
- class (Typeable p, Hashable p, Eq p) => DatabasePredicate p where
- data SomeDatabasePredicate where
- SomeDatabasePredicate :: DatabasePredicate p => p -> SomeDatabasePredicate
- data PredicateSpecificity
- p :: DatabasePredicate p => p -> SomeDatabasePredicate
- newtype TableCheck = TableCheck (forall tbl. Table tbl => Text -> tbl (TableField tbl) -> SomeDatabasePredicate)
- newtype DomainCheck = DomainCheck (Text -> SomeDatabasePredicate)
- newtype FieldCheck = FieldCheck (Text -> Text -> SomeDatabasePredicate)
- data MigrationStep syntax next where
- MigrationStep :: Text -> Migration syntax a -> (a -> next) -> MigrationStep syntax next
- newtype MigrationSteps syntax from to = MigrationSteps (Kleisli (F (MigrationStep syntax)) from to)
- type Migration syntax = F (MigrationF syntax)
- data MigrationF syntax next where
- MigrationRunCommand :: {..} -> MigrationF syntax next
- data MigrationCommand cmd = MigrationCommand {}
- data MigrationDataLoss
- runMigrationSteps :: Monad m => Int -> Maybe Int -> MigrationSteps syntax () a -> (forall a'. Int -> Text -> Migration syntax a' -> m a') -> m a
- runMigrationSilenced :: Migration syntax a -> a
- executeMigration :: Applicative m => (syntax -> m ()) -> Migration syntax a -> m a
- eraseMigrationType :: a -> MigrationSteps syntax a a' -> MigrationSteps syntax () ()
- migrationStep :: Text -> (a -> Migration syntax a') -> MigrationSteps syntax a a'
- upDown :: syntax -> Maybe syntax -> Migration syntax ()
- migrationDataLoss :: Migration syntax a -> MigrationDataLoss
- migrateScript :: forall syntax m a. (Monoid m, Semigroup m) => (Text -> m) -> (syntax -> m) -> MigrationSteps syntax () a -> m
- evaluateDatabase :: forall syntax a. MigrationSteps syntax () a -> a
- stepNames :: forall syntax a. MigrationSteps syntax () a -> [Text]
Checked database entities
type CheckedDatabaseSettings be db = db (CheckedDatabaseEntity be db) Source #
The type of a checked database descriptor. Conceptually, this is just a
DatabaseSettings
with a set of predicates. Use unCheckDatabase
to get the
regular DatabaseSettings
object and collectChecks
to access the
predicates.
class IsDatabaseEntity be entity => IsCheckedDatabaseEntity be entity where Source #
Like IsDatabaseEntity
in beam-core
, but for entities against which we
can generate DatabasePredicate
s. Conceptually, this is the same as
IsDatabaseEntity
, but with one extra function to generate
DatabasePredicate
s from the description.
data CheckedDatabaseEntityDescriptor be entity :: * Source #
The type of the descriptor for this checked entity. Usually this wraps
the corresponding DatabaseEntityDescriptor
from IsDatabaseEntity
, along
with some mechanism for generating DatabasePredicate
s.
type CheckedDatabaseEntityDefaultRequirements be entity syntax :: Constraint Source #
Like DatabaseEntityDefaultRequirements
but for checked entities
unCheck :: CheckedDatabaseEntityDescriptor be entity -> DatabaseEntityDescriptor be entity Source #
Produce the corresponding DatabaseEntityDescriptior
collectEntityChecks :: CheckedDatabaseEntityDescriptor be entity -> [SomeDatabasePredicate] Source #
Produce the set of DatabasePredicate
s that apply to this entity
checkedDbEntityAuto :: CheckedDatabaseEntityDefaultRequirements be entity syntax => Proxy syntax -> Text -> CheckedDatabaseEntityDescriptor be entity Source #
Like dbEntityAuto
but for checked databases. Most often, this wraps
dbEntityAuto
and provides some means to generate DatabasePredicate
s
Beamable tbl => IsCheckedDatabaseEntity be (TableEntity tbl) Source # | |
IsCheckedDatabaseEntity be (DomainTypeEntity ty) Source # | |
data CheckedDatabaseEntity be (db :: (* -> *) -> *) entityType where Source #
Like DatabaseEntity
but for checked databases
CheckedDatabaseEntity :: IsCheckedDatabaseEntity be entityType => CheckedDatabaseEntityDescriptor be entityType -> [SomeDatabasePredicate] -> CheckedDatabaseEntity be db entityType |
unCheckDatabase :: forall be db. Database be db => CheckedDatabaseSettings be db -> DatabaseSettings be db Source #
Convert a CheckedDatabaseSettings
to a regular DatabaseSettings
. The
return value is suitable for use in any regular beam query or DML statement.
collectChecks :: forall be db. Database be db => CheckedDatabaseSettings be db -> [SomeDatabasePredicate] Source #
A beam-migrate
database schema is defined completely by the set of
predicates that apply to it. This function allows you to access this
definition for a CheckedDatabaseSettings
object.
Modifyinging checked entities
data CheckedFieldModification tbl a Source #
Purposefully opaque type describing how to modify a table field. Used to
parameterize the second argument to modifyCheckedTable
. For now, the only
way to construct a value is the IsString
instance, which allows you to
rename the field.
Beamable tbl => RenamableWithRule (tbl (CheckedFieldModification tbl)) Source # | |
IsString (CheckedFieldModification tbl a) Source # | |
checkedFieldNamed :: Text -> CheckedFieldModification tbl a Source #
modifyCheckedTable :: (Text -> Text) -> tbl (CheckedFieldModification tbl) -> EntityModification (CheckedDatabaseEntity be db) be (TableEntity tbl) Source #
Modify a checked table.
The first argument is a function that takes the original table name as input and produces a new table name.
The second argument gives instructions on how to rename each field in the
table. Use checkedTableModification
to create a value of this type which
does no renaming. Each field in the table supplied here has the type
CheckedFieldModification
. Most commonly, the programmer will use the
OverloadedStrings
instance to provide a new name.
Examples
Rename a table, without renaming any of its fields:
modifyCheckedTable (_ -> NewTblNm) checkedTableModification
Modify a table, renaming the field called _field1
in Haskell to
FirstName. Note that below, FirstName
represents a
CheckedFieldModification
object.
modifyCheckedTable id (checkedTableModification { _field1 = FirstName })
checkedTableModification :: forall tbl. Beamable tbl => tbl (CheckedFieldModification tbl) Source #
Produce a table field modification that does nothing
Most commonly supplied as the second argument to modifyCheckedTable
when
you just want to rename the table, not the fields.
Predicates
class (Typeable p, Hashable p, Eq p) => DatabasePredicate p where Source #
A predicate is a type that describes some condition that the database
schema must meet. Beam represents database schemas as the set of all
predicates that apply to a database schema. The Hashable
and Eq
instances
allow us to build HashSet
s of predicates to represent schemas in this way.
englishDescription :: p -> String Source #
An english language description of this predicate. For example, "There is
a table named TableName
"
predicateSpecificity :: proxy p -> PredicateSpecificity Source #
Whether or not this predicate applies to all backends or only one
backend. This is used when attempting to translate schemas between
backends. If you are unsure, provide PredicateSpecificityOnlyBackend
along with an identifier unique to your backend.
serializePredicate :: p -> Value Source #
Serialize a predicate to a JSON Value
.
predicateCascadesDropOn :: DatabasePredicate p' => p -> p' -> Bool Source #
Some predicates require other predicates to be true. For example, in
order for a table to have a column, that table must exist. This function
takes in the current predicate and another arbitrary database predicate. It
should return True
if this predicate needs the other predicate to be true
in order to exist.
By default, this simply returns False
, which makes sense for many
predicates.
data SomeDatabasePredicate where Source #
A Database predicate is a value of any type which satisfies
DatabasePredicate
. We often want to store these in lists and sets, so we
need a monomorphic container that can store these polymorphic values.
SomeDatabasePredicate :: DatabasePredicate p => p -> SomeDatabasePredicate |
data PredicateSpecificity Source #
Some predicates make sense in any backend. Others only make sense in one. This denotes the difference.
p :: DatabasePredicate p => p -> SomeDatabasePredicate Source #
Convenience synonym for SomeDatabasePredicate
Entity checks
newtype TableCheck Source #
A predicate that depends on the name of a table as well as its fields
TableCheck (forall tbl. Table tbl => Text -> tbl (TableField tbl) -> SomeDatabasePredicate) |
newtype DomainCheck Source #
A predicate that depends on the name of a domain type
newtype FieldCheck Source #
A predicate that depedns on the name of a table and one of its fields
FieldCheck (Text -> Text -> SomeDatabasePredicate) |
Migrations
data MigrationStep syntax next where Source #
Represents a particular step in a migration
MigrationStep :: Text -> Migration syntax a -> (a -> next) -> MigrationStep syntax next |
Functor (MigrationStep syntax) Source # | |
newtype MigrationSteps syntax from to Source #
A series of MigrationStep
s that take a database from the schema in from
to the one in to
. Use the migrationStep
function and the arrow interface
to sequence MigrationSteps
.
MigrationSteps (Kleisli (F (MigrationStep syntax)) from to) |
Arrow (MigrationSteps syntax) Source # | |
Category * (MigrationSteps syntax) Source # | |
type Migration syntax = F (MigrationF syntax) Source #
A sequence of potentially reversible schema update commands
data MigrationF syntax next where Source #
Free monadic function for Migration
s
MigrationRunCommand :: {..} -> MigrationF syntax next | |
|
Functor (MigrationF syntax) Source # | |
data MigrationCommand cmd Source #
A migration command along with metadata on wheth
MigrationCommand | |
|
Show cmd => Show (MigrationCommand cmd) Source # | |
data MigrationDataLoss Source #
Information on whether a MigrationCommand
loses data. You can
monoidally combine these to get the potential data loss for a
sequence of commands.
MigrationLosesData | The command loses data |
MigrationKeepsData | The command keeps all data |
:: Monad m | |
=> Int | Zero-based index of the first step to run |
-> Maybe Int | Index of the last step to run, or |
-> MigrationSteps syntax () a | The set of steps to run |
-> (forall a'. Int -> Text -> Migration syntax a' -> m a') | Callback for each step. Called with the step index, the step description and the migration. |
-> m a |
Run the migration steps between the given indices, using a custom execution function.
runMigrationSilenced :: Migration syntax a -> a Source #
Get the result of a migration, without running any steps
executeMigration :: Applicative m => (syntax -> m ()) -> Migration syntax a -> m a Source #
Execute a given migration, provided a command to execute arbitrary syntax.
You usually use this with runNoReturn
.
eraseMigrationType :: a -> MigrationSteps syntax a a' -> MigrationSteps syntax () () Source #
Remove the explicit source and destination schemas from a MigrationSteps
object
migrationStep :: Text -> (a -> Migration syntax a') -> MigrationSteps syntax a a' Source #
Create a MigrationSteps
from the given description and migration function.
upDown :: syntax -> Maybe syntax -> Migration syntax () Source #
Given a command in the forward direction, and an optional one in the
reverse direction, construct a Migration
that performs the given
command. Multiple commands can be sequenced monadically.
migrationDataLoss :: Migration syntax a -> MigrationDataLoss Source #
Given a migration, get the potential data loss, if it's run top-down
:: (Monoid m, Semigroup m) | |
=> (Text -> m) | Called at the beginning of each |
-> (syntax -> m) | Called for each command in the migration step |
-> MigrationSteps syntax () a | The set of steps to run |
-> m |
Given functions to render a migration step description and the underlying
syntax, create a script for the given MigrationSteps
.
evaluateDatabase :: forall syntax a. MigrationSteps syntax () a -> a Source #
Run a MigrationSteps
without executing any of the commands against a
database.
stepNames :: forall syntax a. MigrationSteps syntax () a -> [Text] Source #
Collect the names of all steps in hte given MigrationSteps