{-# OPTIONS_GHC -fno-warn-orphans #-} {-# LANGUAGE FlexibleInstances #-} -- | -- Module : Database.Relational.Pure -- Copyright : 2013-2017 Kei Hibino -- License : BSD3 -- -- Maintainer : ex8k.hibino@gmail.com -- Stability : experimental -- Portability : unknown -- -- This module defines interfaces between haskell pure values -- and query internal record values. module Database.Relational.Pure () where import Control.Applicative (pure) import Data.Monoid ((<>)) import Data.Int (Int8, Int16, Int32, Int64) import Data.ByteString (ByteString) import qualified Data.ByteString.Lazy as LB import Data.Text (Text) import qualified Data.Text as T import qualified Data.Text.Encoding as T import qualified Data.Text.Lazy as LT import qualified Data.Text.Lazy.Encoding as LT import Text.Printf (PrintfArg, printf) import Data.Time (FormatTime, Day, TimeOfDay, LocalTime, UTCTime, ZonedTime, formatTime) import Data.Time.Locale.Compat (defaultTimeLocale) import Data.DList (DList, fromList) import Language.SQL.Keyword (Keyword (..)) import Database.Record (PersistableWidth, persistableWidth, PersistableRecordWidth) import Database.Record.Persistable (runPersistableRecordWidth) import Database.Relational.Internal.String (StringSQL, stringSQL, boolSQL) import Database.Relational.ProjectableClass (LiteralSQL (..)) -- | Constant integral SQL terms. intTermsSQL :: (Show a, Integral a) => a -> DList StringSQL intTermsSQL = pure . stringSQL . show -- | Escape 'String' for constant SQL string expression. escapeStringToSqlExpr :: String -> String escapeStringToSqlExpr = rec where rec "" = "" rec ('\'':cs) = '\'' : '\'' : rec cs rec (c:cs) = c : rec cs -- | From 'String' into constant SQL string expression. stringExprSQL :: String -> StringSQL stringExprSQL = stringSQL . ('\'':) . (++ "'") . escapeStringToSqlExpr stringTermsSQL :: String -> DList StringSQL stringTermsSQL = pure . stringExprSQL -- | Constant SQL terms of '()'. instance LiteralSQL () -- | Constant SQL terms of 'Int8'. instance LiteralSQL Int8 where showLiteral' = intTermsSQL -- | Constant SQL terms of 'Int16'. instance LiteralSQL Int16 where showLiteral' = intTermsSQL -- | Constant SQL terms of 'Int32'. instance LiteralSQL Int32 where showLiteral' = intTermsSQL -- | Constant SQL terms of 'Int64'. instance LiteralSQL Int64 where showLiteral' = intTermsSQL -- | Constant SQL terms of 'Int'. -- Use this carefully, because this is architecture dependent size of integer type. instance LiteralSQL Int where showLiteral' = intTermsSQL -- | Constant SQL terms of 'String'. instance LiteralSQL String where showLiteral' = stringTermsSQL -- | Constant SQL terms of 'ByteString'. instance LiteralSQL ByteString where showLiteral' = stringTermsSQL . T.unpack . T.decodeUtf8 -- | Constant SQL terms of 'LB.ByteString'. instance LiteralSQL LB.ByteString where showLiteral' = stringTermsSQL . LT.unpack . LT.decodeUtf8 -- | Constant SQL terms of 'Text'. instance LiteralSQL Text where showLiteral' = stringTermsSQL . T.unpack -- | Constant SQL terms of 'LT.Text'. instance LiteralSQL LT.Text where showLiteral' = stringTermsSQL . LT.unpack -- | Constant SQL terms of 'Char'. instance LiteralSQL Char where showLiteral' = stringTermsSQL . (:"") -- | Constant SQL terms of 'Bool'. instance LiteralSQL Bool where showLiteral' = pure . boolSQL floatTerms :: (PrintfArg a, Ord a, Num a)=> a -> DList StringSQL floatTerms f = pure . stringSQL $ printf fmt f where fmt | f >= 0 = "%f" | otherwise = "(%f)" -- | Constant SQL terms of 'Float'. Caution for floating-point error rate. instance LiteralSQL Float where showLiteral' = floatTerms -- | Constant SQL terms of 'Double'. Caution for floating-point error rate. instance LiteralSQL Double where showLiteral' = floatTerms constantTimeTerms :: FormatTime t => Keyword -> String -> t -> DList StringSQL constantTimeTerms kw fmt t = pure $ kw <> stringExprSQL (formatTime defaultTimeLocale fmt t) -- | Constant SQL terms of 'Day'. instance LiteralSQL Day where showLiteral' = constantTimeTerms DATE "%Y-%m-%d" -- | Constant SQL terms of 'TimeOfDay'. instance LiteralSQL TimeOfDay where showLiteral' = constantTimeTerms TIME "%H:%M:%S" -- | Constant SQL terms of 'LocalTime'. instance LiteralSQL LocalTime where showLiteral' = constantTimeTerms TIMESTAMP "%Y-%m-%d %H:%M:%S" -- | Constant SQL terms of 'ZonedTime'. -- This generates ***NOT STANDARD*** SQL of TIMESTAMPTZ literal. instance LiteralSQL ZonedTime where showLiteral' = constantTimeTerms TIMESTAMPTZ "%Y-%m-%d %H:%M:%S%z" -- | Constant SQL terms of 'UTCTime'. -- This generates ***NOT STANDARD*** SQL of TIMESTAMPTZ literal with UTC timezone. instance LiteralSQL UTCTime where showLiteral' = constantTimeTerms TIMESTAMPTZ "%Y-%m-%d %H:%M:%S%z" showMaybeTerms :: LiteralSQL a => PersistableRecordWidth a -> Maybe a -> DList StringSQL showMaybeTerms wa = d where d (Just a) = showLiteral' a d Nothing = fromList . replicate (runPersistableRecordWidth wa) $ stringSQL "NULL" -- | Constant SQL terms of 'Maybe' type. Width inference is required. instance (PersistableWidth a, LiteralSQL a) => LiteralSQL (Maybe a) where showLiteral' = showMaybeTerms persistableWidth