2022-03-10 13:33:55 +03:00
|
|
|
-- | The modules in the @Hasura.Backends.MSSQL.FromIr@ namespace translates the
|
|
|
|
-- RQL IR into TSQL, the SQL dialect of MSSQL, as defined in abstract syntax in
|
|
|
|
-- "Hasura.Backends.MSSQL.Types".
|
2021-09-24 01:56:37 +03:00
|
|
|
--
|
2022-03-10 13:33:55 +03:00
|
|
|
-- The translation happens in the @FromIr@ monad, which manages identifier
|
|
|
|
-- scoping and error collection.
|
2021-09-24 01:56:37 +03:00
|
|
|
--
|
2022-03-10 13:33:55 +03:00
|
|
|
-- The actual rendering of this AST into TSQL text happens in
|
|
|
|
-- "Hasura.Backends.MSSQL.ToQuery".
|
2021-02-23 20:37:27 +03:00
|
|
|
module Hasura.Backends.MSSQL.FromIr
|
2022-03-10 13:33:55 +03:00
|
|
|
( -- * The central Monad
|
2021-02-23 20:37:27 +03:00
|
|
|
FromIr,
|
2022-03-10 13:33:55 +03:00
|
|
|
runFromIr,
|
|
|
|
Error (..),
|
|
|
|
|
|
|
|
-- * Name generation
|
|
|
|
NameTemplate (..),
|
|
|
|
generateAlias,
|
2021-02-23 20:37:27 +03:00
|
|
|
)
|
|
|
|
where
|
2021-09-24 01:56:37 +03:00
|
|
|
|
2021-02-23 20:37:27 +03:00
|
|
|
import Control.Monad.Validate
|
2022-03-10 13:33:55 +03:00
|
|
|
import Control.Monad.Validate qualified as V
|
2021-02-23 20:37:27 +03:00
|
|
|
import Data.Map.Strict (Map)
|
|
|
|
import Data.Map.Strict qualified as M
|
|
|
|
import Data.Text qualified as T
|
|
|
|
import Hasura.Backends.MSSQL.Instances.Types ()
|
2021-12-15 20:07:21 +03:00
|
|
|
import Hasura.Backends.MSSQL.Types.Internal as TSQL
|
2022-03-10 13:33:55 +03:00
|
|
|
import Hasura.Base.Error (QErr, throw500)
|
2021-02-23 20:37:27 +03:00
|
|
|
import Hasura.Prelude
|
2021-06-11 06:26:50 +03:00
|
|
|
import Hasura.RQL.IR qualified as IR
|
2021-02-23 20:37:27 +03:00
|
|
|
import Hasura.SQL.Backend
|
|
|
|
|
2022-03-10 13:33:55 +03:00
|
|
|
-- | The central Monad used throughout for all conversion functions.
|
2021-02-23 20:37:27 +03:00
|
|
|
--
|
2022-03-10 13:33:55 +03:00
|
|
|
-- It has the following features:
|
2021-02-23 20:37:27 +03:00
|
|
|
--
|
2022-03-10 13:33:55 +03:00
|
|
|
-- * It's a 'MonadValidate', so it'll continue going when it encounters 'Error's
|
|
|
|
-- to accumulate as many as possible.
|
2021-02-23 20:37:27 +03:00
|
|
|
--
|
2022-03-10 13:33:55 +03:00
|
|
|
-- * It has a facility for generating fresh, unique aliases, which lets the
|
|
|
|
-- translation output retain a resemblance with source names without the
|
|
|
|
-- translation process needing to be bothered about potential name shadowing.
|
|
|
|
-- See 'generateAlias'.
|
2021-02-23 20:37:27 +03:00
|
|
|
newtype FromIr a = FromIr
|
|
|
|
{ unFromIr :: StateT (Map Text Int) (Validate (NonEmpty Error)) a
|
|
|
|
}
|
|
|
|
deriving (Functor, Applicative, Monad, MonadValidate (NonEmpty Error))
|
|
|
|
|
2022-03-10 13:33:55 +03:00
|
|
|
-- | Run a 'FromIr' action, throwing errors that have been collected using the
|
|
|
|
-- supplied action.
|
|
|
|
runFromIr :: MonadError QErr m => FromIr a -> m a
|
|
|
|
runFromIr = flip onLeft (throw500 . tshow) . V.runValidate . flip evalStateT mempty . unFromIr
|
2021-02-23 20:37:27 +03:00
|
|
|
|
2022-03-10 13:33:55 +03:00
|
|
|
-- | Errors that may happen during translation.
|
|
|
|
data Error
|
|
|
|
= UnsupportedOpExpG (IR.OpExpG 'MSSQL Expression)
|
|
|
|
| FunctionNotSupported
|
2023-02-22 16:45:27 +03:00
|
|
|
| LogicalModelNotSupported
|
2022-03-10 13:33:55 +03:00
|
|
|
deriving (Show, Eq)
|
2021-02-23 20:37:27 +03:00
|
|
|
|
2022-03-10 13:33:55 +03:00
|
|
|
-- | Hints about the type of entity that 'generateAlias' is producing an alias
|
|
|
|
-- for.
|
2021-02-23 20:37:27 +03:00
|
|
|
data NameTemplate
|
|
|
|
= ArrayRelationTemplate Text
|
|
|
|
| ArrayAggregateTemplate Text
|
|
|
|
| ObjectRelationTemplate Text
|
|
|
|
| TableTemplate Text
|
|
|
|
| ForOrderAlias Text
|
|
|
|
|
2022-03-10 13:33:55 +03:00
|
|
|
-- | Generate a fresh alias for a given entity to remove ambiguity and naming
|
|
|
|
-- conflicts between scopes at the TSQL level.
|
|
|
|
--
|
|
|
|
-- Names are generated in the form @type_name_occurrence@, where:
|
|
|
|
--
|
|
|
|
-- * @type@ hints at the type of entity,
|
|
|
|
-- * @name@ refers to the source name being aliased, and
|
|
|
|
-- * @occurrence@ is an integer counter that distinguishes each occurrence of @type_name@.
|
|
|
|
--
|
|
|
|
-- Example outputs:
|
|
|
|
--
|
|
|
|
-- > do
|
|
|
|
-- > "ar_articles_1" <- generateAlias (ArrayRelationTemplate "articles")
|
|
|
|
-- > "ar_articles_2" <- generateAlias (ArrayRelationTemplate "articles")
|
|
|
|
-- > "t_users_1" <- generateAlias (TableTemplate "users")
|
2021-09-20 13:26:21 +03:00
|
|
|
generateAlias :: NameTemplate -> FromIr Text
|
|
|
|
generateAlias template = do
|
2022-03-10 13:33:55 +03:00
|
|
|
FromIr (modify' (M.insertWith (+) rendered 1))
|
|
|
|
occurrence <- M.findWithDefault 1 rendered <$> FromIr get
|
|
|
|
pure (rendered <> tshow occurrence)
|
2021-02-23 20:37:27 +03:00
|
|
|
where
|
2022-03-10 13:33:55 +03:00
|
|
|
rendered = T.take 20 $
|
2021-02-23 20:37:27 +03:00
|
|
|
case template of
|
|
|
|
ArrayRelationTemplate sample -> "ar_" <> sample
|
|
|
|
ArrayAggregateTemplate sample -> "aa_" <> sample
|
|
|
|
ObjectRelationTemplate sample -> "or_" <> sample
|
|
|
|
TableTemplate sample -> "t_" <> sample
|
|
|
|
ForOrderAlias sample -> "order_" <> sample
|