generic-persistence-0.4.0.0: src/Database/GP/SqlGenerator.hs
{-# LANGUAGE AllowAmbiguousTypes #-}
module Database.GP.SqlGenerator
( insertStmtFor,
updateStmtFor,
selectFromStmt,
deleteStmtFor,
createTableStmtFor,
dropTableStmtFor,
WhereClauseExpr,
Field,
field,
whereClauseValues,
(&&.),
(||.),
(=.),
(>.),
(<.),
(>=.),
(<=.),
(<>.),
like,
contains,
between,
in',
isNull,
not',
sqlFun,
allEntries,
byId,
)
where
import Data.List (intercalate)
import Database.GP.Entity
import Database.GP.Query
-- |
-- This module defines some basic SQL statements for Record Data Types that are instances of 'Entity'.
-- The SQL statements are generated using Haskell generics to provide compile time reflection capabilities.
-- | A function that returns an SQL insert statement for an entity. Type 'a' must be an instance of Data.
-- The function will use the field names of the data type to generate the column names in the insert statement.
-- The values of the fields will be used as the values in the insert statement.
-- Output example: INSERT INTO Person (id, name, age, address) VALUES (123456, "Alice", 25, "123 Main St");
insertStmtFor :: forall a. Entity a => String
insertStmtFor =
"INSERT INTO "
++ tableName @a
++ " ("
++ intercalate ", " columns
++ ") VALUES ("
++ intercalate ", " (params (length columns))
++ ");"
where
columns = columnNamesFor @a
columnNamesFor :: forall a. Entity a => [String]
columnNamesFor = map snd fieldColumnPairs
where
fieldColumnPairs = fieldsToColumns @a
-- | A function that returns an SQL update statement for an entity. Type 'a' must be an instance of Entity.
updateStmtFor :: forall a. (Entity a) => String
updateStmtFor =
"UPDATE "
++ tableName @a
++ " SET "
++ intercalate ", " updatePairs
++ " WHERE "
++ idColumn @a
++ " = ?"
++ ";"
where
updatePairs = map (++ " = ?") (columnNamesFor @a)
-- | A function that returns an SQL select statement for an entity. Type 'a' must be an instance of Entity.
-- The function takes a where clause expression as parameter. This expression is used to filter the result set.
selectFromStmt :: forall a. (Entity a) => WhereClauseExpr -> String
selectFromStmt whereClauseExpr =
"SELECT "
++ intercalate ", " (columnNamesFor @a)
++ " FROM "
++ tableName @a
++ " WHERE "
++ whereClauseExprToSql @a whereClauseExpr
++ ";"
deleteStmtFor :: forall a. (Entity a) => String
deleteStmtFor =
"DELETE FROM "
++ tableName @a
++ " WHERE "
++ idColumn @a
++ " = ?;"
createTableStmtFor :: forall a. (Entity a) => Database -> String
createTableStmtFor dbServer =
"CREATE TABLE "
++ tableName @a
++ " ("
++ intercalate ", " (map (\(f, c) -> c ++ " " ++ columnTypeFor @a dbServer f ++ optionalPK f) (fieldsToColumns @a))
++ ");"
where
isIdField f = f == idField @a
optionalPK f = if isIdField f then " PRIMARY KEY" else ""
-- | A function that returns the column type for a field of an entity.
-- TODO: Support other databases than just SQLite.
columnTypeFor :: forall a. (Entity a) => Database -> String -> String
columnTypeFor SQLite fieldName =
case fType of
"Int" -> "INTEGER"
"String" -> "TEXT"
"Double" -> "REAL"
"Float" -> "REAL"
"Bool" -> "INT"
_ -> "TEXT"
where
maybeFType = maybeFieldTypeFor @a fieldName
fType = maybe "OTHER" show maybeFType
columnTypeFor other _ = error $ "Schema creation for " ++ show other ++ " not implemented yet"
dropTableStmtFor :: forall a. (Entity a) => String
dropTableStmtFor =
"DROP TABLE IF EXISTS "
++ tableName @a
++ ";"