Skip to content

Commit

Permalink
make the IsLabel instance for PI optional
Browse files Browse the repository at this point in the history
  • Loading branch information
fumieval committed Mar 22, 2022
1 parent 759b3d7 commit b168e4b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 10 deletions.
8 changes: 8 additions & 0 deletions relational-query/relational-query.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ tested-with: GHC == 8.8.1, GHC == 8.8.2
, GHC == 7.4.1, GHC == 7.4.2
extra-source-files: ChangeLog.md

flag IsLabel
default: True
manual: True
description: Define an IsLabel instance for Database.Relational.Typed.Record.PI

library
exposed-modules:
Database.Relational.Arrow
Expand Down Expand Up @@ -132,6 +137,9 @@ library
ghc-options: -Wnoncanonical-monadfail-instances

default-language: Haskell2010
if flag(IsLabel)
ghc-options: -DISLABEL


test-suite sqls
build-depends: base <5
Expand Down
22 changes: 12 additions & 10 deletions relational-query/src/Database/Relational/OverloadedProjection.hs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE TypeFamilies #-}

#if __GLASGOW_HASKELL__ >= 800
-- |
Expand All @@ -20,6 +21,7 @@
--
-- This module provides interfaces of overloaded projections.
module Database.Relational.OverloadedProjection (
PiLabel(..),
HasProjection (..),
) where

Expand All @@ -40,23 +42,23 @@ class HasProjection l a b | l a -> b where
projection :: PiLabel l -> Pi a b

#if __GLASGOW_HASKELL__ >= 802
-- | Derive 'IsLabel' instance from 'HasProjection'.
instance HasProjection l a b => IsLabel l (Pi a b) where
fromLabel = projection (GetPi :: PiLabel l)

-- | Derive 'PI' label.
instance (PersistableWidth a, HasProjection l a b)
=> IsLabel l (PI c a b) where
fromLabel = (! projection (GetPi :: PiLabel l))
#define FROM_LABEL fromLabel
#else
#define FROM_LABEL fromLabel _
#endif

instance l ~ l' => IsLabel l (PiLabel l') where -- a type equality constraint makes better type inference
FROM_LABEL = GetPi

-- | Derive 'IsLabel' instance from 'HasProjection'.
instance HasProjection l a b => IsLabel l (Pi a b) where
fromLabel _ = projection (GetPi :: PiLabel l)
FROM_LABEL = projection (GetPi :: PiLabel l)

#if defined(ISLABEL)
-- | Derive 'PI' label.
instance (PersistableWidth a, HasProjection l a b)
=> IsLabel l (PI c a b) where
fromLabel _ = (! projection (GetPi :: PiLabel l))
FROM_LABEL = (! projection (GetPi :: PiLabel l))
#endif
#else
module Database.Relational.OverloadedProjection () where
Expand Down

0 comments on commit b168e4b

Please sign in to comment.