beam-core-0.6.0.0: Database/Beam/Query/CustomSQL.hs
{-# LANGUAGE FunctionalDependencies #-}
{-# LANGUAGE UndecidableInstances #-}
-- | Allows the creation of custom SQL expressions from arbitrary 'ByteStrings'.
--
-- Simply create a function with an arbitrary number of 'ByteString' arguments
-- that returns a 'ByteString'. Then, apply 'customExpr_' to your function.
-- This will result in a function with the same arity, that takes in
-- 'QGenExpr's instead of 'ByteString's', and returns a 'QGenExpr' as well.
--
-- Semantically, the expression builder function is called with arguments
-- representing SQL expressions, that, when evaluated, will evaluate to the
-- result of the expressions supplied as arguments to 'customExpr_'. See the
-- section on <http://tathougies.github.io/beam/user-guide/queries/custom-queries/ extensibility>
-- in the user guide for example usage.
module Database.Beam.Query.CustomSQL
(
-- * The 'customExpr_' function
IsCustomExprFn(..)
-- ** Type-inference help
, valueExpr_, agg_
-- * For backends
, IsCustomSqlSyntax(..) ) where
import Database.Beam.Query.Internal
import Database.Beam.Backend.SQL.Builder
import Data.ByteString (ByteString)
import Data.ByteString.Builder (byteString, toLazyByteString)
import Data.ByteString.Lazy (toStrict)
import Data.Monoid
import Data.String
import qualified Data.Text as T
-- | A type-class for expression syntaxes that can embed custom expressions.
class (Monoid (CustomSqlSyntax syntax), IsString (CustomSqlSyntax syntax)) =>
IsCustomSqlSyntax syntax where
data CustomSqlSyntax syntax :: *
-- | Given an arbitrary 'ByteString', produce a 'syntax' that represents the
-- 'ByteString' as a SQL expression.
customExprSyntax :: CustomSqlSyntax syntax -> syntax
-- | Given an arbitrary 'syntax', produce a 'ByteString' that corresponds to
-- how that syntax would look when rendered in the backend.
renderSyntax :: syntax -> CustomSqlSyntax syntax
instance IsCustomSqlSyntax SqlSyntaxBuilder where
newtype CustomSqlSyntax SqlSyntaxBuilder = SqlSyntaxBuilderCustom ByteString
deriving (IsString, Monoid)
customExprSyntax (SqlSyntaxBuilderCustom bs) = SqlSyntaxBuilder (byteString bs)
renderSyntax = SqlSyntaxBuilderCustom . toStrict . toLazyByteString . buildSql
newtype CustomSqlSnippet syntax = CustomSqlSnippet (T.Text -> CustomSqlSyntax syntax)
instance IsCustomSqlSyntax syntax => Monoid (CustomSqlSnippet syntax) where
mempty = CustomSqlSnippet (pure mempty)
mappend (CustomSqlSnippet a) (CustomSqlSnippet b) =
CustomSqlSnippet $ \pfx -> a pfx <> b pfx
instance IsCustomSqlSyntax syntax => IsString (CustomSqlSnippet syntax) where
fromString s = CustomSqlSnippet $ \_ -> fromString s
class IsCustomExprFn fn res | res -> fn where
customExpr_ :: fn -> res
instance IsCustomSqlSyntax syntax => IsCustomExprFn (CustomSqlSnippet syntax) (QGenExpr ctxt syntax s res) where
customExpr_ (CustomSqlSnippet mkSyntax) = QExpr (customExprSyntax . mkSyntax)
instance (IsCustomExprFn a res, IsCustomSqlSyntax syntax) => IsCustomExprFn (CustomSqlSnippet syntax -> a) (QGenExpr ctxt syntax s r -> res) where
customExpr_ fn (QExpr e) = customExpr_ $ fn (CustomSqlSnippet (renderSyntax . e))
-- customExpr :: IsCustomExprFn
-- | Force a 'QGenExpr' to be typed as a value expression (a 'QExpr'). Useful
-- for getting around type-inference errors with supplying the entire type.
valueExpr_ :: QExpr syntax s a -> QExpr syntax s a
valueExpr_ = id
-- | Force a 'QGenExpr' to be typed as an aggregate. Useful for defining custom
-- aggregates for use in 'aggregate_'.
agg_ :: QAgg syntax s a -> QAgg syntax s a
agg_ = id