mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 21:12:09 +03:00
342391f39d
This upgrades the version of Ormolu required by the HGE repository to v0.5.0.1, and reformats all code accordingly. Ormolu v0.5 reformats code that uses infix operators. This is mostly useful, adding newlines and indentation to make it clear which operators are applied first, but in some cases, it's unpleasant. To make this easier on the eyes, I had to do the following: * Add a few fixity declarations (search for `infix`) * Add parentheses to make precedence clear, allowing Ormolu to keep everything on one line * Rename `relevantEq` to `(==~)` in #6651 and set it to `infix 4` * Add a few _.ormolu_ files (thanks to @hallettj for helping me get started), mostly for Autodocodec operators that don't have explicit fixity declarations In general, I think these changes are quite reasonable. They mostly affect indentation. PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6675 GitOrigin-RevId: cd47d87f1d089fb0bc9dcbbe7798dbceedcd7d83
193 lines
6.3 KiB
Haskell
193 lines
6.3 KiB
Haskell
{-# LANGUAGE UndecidableInstances #-}
|
|
{-# OPTIONS_GHC -fno-warn-orphans #-}
|
|
|
|
-- | Postgres Instances Transport
|
|
--
|
|
-- Defines the MSSQL instance of 'BackendTransport' and how to interact with the
|
|
-- database for running queries, mutations, subscriptions, and so on.
|
|
module Hasura.Backends.Postgres.Instances.Transport
|
|
( runPGMutationTransaction,
|
|
)
|
|
where
|
|
|
|
import Data.Aeson qualified as J
|
|
import Data.ByteString qualified as B
|
|
import Data.HashMap.Strict.InsOrd qualified as OMap
|
|
import Data.Text.Extended
|
|
import Database.PG.Query qualified as PG
|
|
import Hasura.Backends.Postgres.Connection.MonadTx
|
|
import Hasura.Backends.Postgres.Execute.Subscription qualified as PGL
|
|
import Hasura.Backends.Postgres.Execute.Types
|
|
import Hasura.Backends.Postgres.Instances.Execute qualified as EQ
|
|
import Hasura.Backends.Postgres.SQL.Value
|
|
import Hasura.Backends.Postgres.Translate.Select (PostgresAnnotatedFieldJSON)
|
|
import Hasura.Base.Error
|
|
import Hasura.EncJSON
|
|
import Hasura.GraphQL.Execute.Backend
|
|
import Hasura.GraphQL.Execute.Subscription.Plan
|
|
import Hasura.GraphQL.Logging
|
|
import Hasura.GraphQL.Namespace
|
|
( RootFieldAlias,
|
|
RootFieldMap,
|
|
mkUnNamespacedRootFieldAlias,
|
|
)
|
|
import Hasura.GraphQL.Transport.Backend
|
|
import Hasura.GraphQL.Transport.HTTP.Protocol
|
|
import Hasura.Logging qualified as L
|
|
import Hasura.Name qualified as Name
|
|
import Hasura.Prelude
|
|
import Hasura.RQL.Types.Backend
|
|
import Hasura.SQL.Backend
|
|
import Hasura.Server.Types (RequestId)
|
|
import Hasura.Session
|
|
import Hasura.Tracing
|
|
import Hasura.Tracing qualified as Tracing
|
|
|
|
instance
|
|
( Backend ('Postgres pgKind),
|
|
PostgresAnnotatedFieldJSON pgKind
|
|
) =>
|
|
BackendTransport ('Postgres pgKind)
|
|
where
|
|
runDBQuery = runPGQuery
|
|
runDBMutation = runPGMutation
|
|
runDBSubscription = runPGSubscription
|
|
runDBStreamingSubscription = runPGStreamingSubscription
|
|
runDBQueryExplain = runPGQueryExplain
|
|
|
|
runPGQuery ::
|
|
( MonadIO m,
|
|
MonadError QErr m,
|
|
MonadQueryLog m,
|
|
MonadTrace m
|
|
) =>
|
|
RequestId ->
|
|
GQLReqUnparsed ->
|
|
RootFieldAlias ->
|
|
UserInfo ->
|
|
L.Logger L.Hasura ->
|
|
SourceConfig ('Postgres pgKind) ->
|
|
Tracing.TraceT (PG.TxET QErr IO) EncJSON ->
|
|
Maybe EQ.PreparedSql ->
|
|
-- | Also return the time spent in the PG query; for telemetry.
|
|
m (DiffTime, EncJSON)
|
|
runPGQuery reqId query fieldName _userInfo logger sourceConfig tx genSql = do
|
|
-- log the generated SQL and the graphql query
|
|
logQueryLog logger $ mkQueryLog query fieldName genSql reqId
|
|
withElapsedTime $
|
|
trace ("Postgres Query for root field " <>> fieldName) $
|
|
Tracing.interpTraceT (runQueryTx $ _pscExecCtx sourceConfig) tx
|
|
|
|
runPGMutation ::
|
|
( MonadIO m,
|
|
MonadError QErr m,
|
|
MonadQueryLog m,
|
|
MonadTrace m
|
|
) =>
|
|
RequestId ->
|
|
GQLReqUnparsed ->
|
|
RootFieldAlias ->
|
|
UserInfo ->
|
|
L.Logger L.Hasura ->
|
|
SourceConfig ('Postgres pgKind) ->
|
|
Tracing.TraceT (PG.TxET QErr IO) EncJSON ->
|
|
Maybe EQ.PreparedSql ->
|
|
m (DiffTime, EncJSON)
|
|
runPGMutation reqId query fieldName userInfo logger sourceConfig tx _genSql = do
|
|
-- log the graphql query
|
|
logQueryLog logger $ mkQueryLog query fieldName Nothing reqId
|
|
ctx <- Tracing.currentContext
|
|
withElapsedTime $
|
|
trace ("Postgres Mutation for root field " <>> fieldName) $
|
|
Tracing.interpTraceT
|
|
( liftEitherM
|
|
. liftIO
|
|
. runExceptT
|
|
. runTx (_pscExecCtx sourceConfig) PG.ReadWrite
|
|
. withTraceContext ctx
|
|
. withUserInfo userInfo
|
|
)
|
|
tx
|
|
|
|
runPGSubscription ::
|
|
MonadIO m =>
|
|
SourceConfig ('Postgres pgKind) ->
|
|
MultiplexedQuery ('Postgres pgKind) ->
|
|
[(CohortId, CohortVariables)] ->
|
|
m (DiffTime, Either QErr [(CohortId, B.ByteString)])
|
|
runPGSubscription sourceConfig query variables =
|
|
withElapsedTime $
|
|
runExceptT $
|
|
runQueryTx (_pscExecCtx sourceConfig) $
|
|
PGL.executeMultiplexedQuery query variables
|
|
|
|
runPGStreamingSubscription ::
|
|
MonadIO m =>
|
|
SourceConfig ('Postgres pgKind) ->
|
|
MultiplexedQuery ('Postgres pgKind) ->
|
|
[(CohortId, CohortVariables)] ->
|
|
m (DiffTime, Either QErr [(CohortId, B.ByteString, CursorVariableValues)])
|
|
runPGStreamingSubscription sourceConfig query variables =
|
|
withElapsedTime $
|
|
runExceptT $ do
|
|
res <- runQueryTx (_pscExecCtx sourceConfig) $ PGL.executeStreamingMultiplexedQuery query variables
|
|
pure $ res <&> (\(cohortId, cohortRes, cursorVariableVals) -> (cohortId, cohortRes, PG.getViaJSON cursorVariableVals))
|
|
|
|
runPGQueryExplain ::
|
|
forall pgKind m.
|
|
( MonadIO m,
|
|
MonadError QErr m
|
|
) =>
|
|
DBStepInfo ('Postgres pgKind) ->
|
|
m EncJSON
|
|
runPGQueryExplain (DBStepInfo _ sourceConfig _ action) =
|
|
-- All Postgres transport functions use the same monad stack: the ExecutionMonad defined in the
|
|
-- matching instance of BackendExecute. However, Explain doesn't need tracing! Rather than
|
|
-- introducing a separate "ExplainMonad", we simply use @runTraceTWithReporter@ to remove the
|
|
-- TraceT.
|
|
runQueryTx (_pscExecCtx sourceConfig) $ runTraceTWithReporter noReporter "explain" $ action
|
|
|
|
mkQueryLog ::
|
|
GQLReqUnparsed ->
|
|
RootFieldAlias ->
|
|
Maybe EQ.PreparedSql ->
|
|
RequestId ->
|
|
QueryLog
|
|
mkQueryLog gqlQuery fieldName preparedSql requestId =
|
|
QueryLog gqlQuery ((fieldName,) <$> generatedQuery) requestId QueryLogKindDatabase
|
|
where
|
|
generatedQuery =
|
|
preparedSql <&> \(EQ.PreparedSql query args) ->
|
|
GeneratedQuery (PG.getQueryText query) (J.toJSON $ pgScalarValueToJson . snd <$> args)
|
|
|
|
-- ad-hoc transaction optimisation
|
|
-- see Note [Backwards-compatible transaction optimisation]
|
|
|
|
runPGMutationTransaction ::
|
|
( MonadIO m,
|
|
MonadError QErr m,
|
|
MonadQueryLog m,
|
|
MonadTrace m
|
|
) =>
|
|
RequestId ->
|
|
GQLReqUnparsed ->
|
|
UserInfo ->
|
|
L.Logger L.Hasura ->
|
|
SourceConfig ('Postgres pgKind) ->
|
|
RootFieldMap (DBStepInfo ('Postgres pgKind)) ->
|
|
m (DiffTime, RootFieldMap EncJSON)
|
|
runPGMutationTransaction reqId query userInfo logger sourceConfig mutations = do
|
|
logQueryLog logger $ mkQueryLog query (mkUnNamespacedRootFieldAlias Name._transaction) Nothing reqId
|
|
ctx <- Tracing.currentContext
|
|
withElapsedTime $ do
|
|
Tracing.interpTraceT
|
|
( liftEitherM
|
|
. liftIO
|
|
. runExceptT
|
|
. runTx (_pscExecCtx sourceConfig) PG.ReadWrite
|
|
. withTraceContext ctx
|
|
. withUserInfo userInfo
|
|
)
|
|
$ flip OMap.traverseWithKey mutations \fieldName dbsi ->
|
|
trace ("Postgres Mutation for root field " <>> fieldName) $ dbsiAction dbsi
|