Skip to content

Commit

Permalink
flat patch
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfmpe committed May 14, 2024
1 parent 71a315a commit 8f6922a
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 27 deletions.
27 changes: 12 additions & 15 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,24 @@
name: github-action

on: [push, pull_request]
on: [push, pull_request]

jobs:
build:
strategy:
matrix:
ghc: ['8.0.2', '8.2.2', '8.4.4', '8.6.5', '8.8.4', '8.10.2', '9.0.1']
ghc: ['8.4.4', '8.6.5', '8.8.4', '8.10.7', '9.0.2', '9.2.5']
os: ['ubuntu-latest', 'macos-latest']
exclude:
# There are some linker warnings in 802 on darwin that
# cause compilation to fail
# See https://github.com/NixOS/nixpkgs/issues/25139
- ghc: '8.0.2'
os: 'macos-latest'
runs-on: ${{ matrix.os }}

name: GHC ${{ matrix.ghc }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-haskell@v1
- uses: actions/checkout@v3
- uses: haskell/actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: '3.10.1.0'
- name: Cache
uses: actions/cache@v1
uses: actions/cache@v3
env:
cache-name: cache-cabal
with:
Expand All @@ -36,10 +31,12 @@ jobs:
${{ runner.os }}
- name: Install dependencies
run: |
cabal update
cabal build --only-dependencies --enable-tests --enable-benchmarks
run: cabal build --only-dependencies --enable-tests --enable-benchmarks
- name: Build
run: cabal build --enable-tests --enable-benchmarks all
- name: Run tests
run: cabal test all
run: cabal test --enable-tests all
- if: matrix.ghc != '8.4.4'
# docs aren't built on ghc 8.4.4 because some dependency docs don't build on older GHCs
name: Build Docs
run: cabal haddock
5 changes: 5 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Revision history for aeson-gadt-th

## 0.2.5.2 - 2022-07-03

* Loosen version bounds
* Support GHC 9.2

## 0.2.5.1 - 2022-01-04

* Remove dependency on `th-extras`. We were just using a reexport (under a
Expand Down
12 changes: 6 additions & 6 deletions aeson-gadt-th.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ flag build-readme

library
exposed-modules: Data.Aeson.GADT.TH
build-depends: base >= 4.8 && < 4.16
, aeson >= 1.3 && < 1.6
build-depends: base >= 4.8 && < 4.20
, aeson >= 1.3 && < 2.3
, containers >= 0.5 && < 0.7
, dependent-sum >= 0.4 && < 0.8
, transformers >= 0.5 && < 0.6
, template-haskell >= 2.11.0 && < 2.18
, th-abstraction >= 0.4 && < 0.5
, transformers >= 0.5 && < 0.7
, template-haskell >= 2.11.0 && < 2.22
, th-abstraction >= 0.4 && < 0.7
if impl(ghc < 8.2)
build-depends: dependent-sum < 0.6.2.2
hs-source-dirs: src
Expand All @@ -39,7 +39,7 @@ executable readme
build-depends: base
, aeson
, dependent-sum
, dependent-sum-template >= 0.1 && < 0.2
, dependent-sum-template >= 0.2 && < 0.3
, dependent-map >= 0.3 && < 0.5
, aeson-gadt-th
default-language: Haskell2010
Expand Down
28 changes: 22 additions & 6 deletions src/Data/Aeson/GADT/TH.hs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,16 @@ import qualified Data.Set as Set
import Data.Some (Some(..))
import Language.Haskell.TH hiding (cxt)
import Language.Haskell.TH.Datatype (ConstructorInfo(..), applySubstitution, datatypeCons, reifyDatatype, unifyTypes)
import Language.Haskell.TH.Datatype.TyVarBndr (TyVarBndr_, tvName)
import Language.Haskell.TH.Datatype.TyVarBndr (tvName)

#if !MIN_VERSION_template_haskell(2,21,0)
#if MIN_VERSION_th_abstraction(0,6,0)
import Language.Haskell.TH.Datatype.TyVarBndr (TyVarBndrVis)
#else
import Language.Haskell.TH.Datatype.TyVarBndr (TyVarBndr_)
type TyVarBndrVis = TyVarBndr_ ()
#endif
#endif

#if MIN_VERSION_dependent_sum(0,5,0)
#else
Expand All @@ -54,7 +63,7 @@ pattern Some x = This x
#endif

-- Do not export this type family, it must remain empty. It's used as a way to trick GHC into not unifying certain type variables.
type family Skolem :: k -> k
data family Skolem :: k -> k

skolemize :: Set Name -> Type -> Type
skolemize rigids t = case t of
Expand Down Expand Up @@ -143,7 +152,7 @@ deriveFromJSONGADTWithOptions opts n = do
let constraints = map head . group . sort $ constraints' -- This 'head' is safe because 'group' returns a list of non-empty lists
v <- newName "v"
parser <- funD 'parseJSON
[ clause [varP v] (normalB [e|
[ clause [varP v] (normalB [e|
do (tag', _v') <- parseJSON $(varE v)
$(caseE [|tag' :: String|] $ map pure matches ++ [wild])
|]) []
Expand Down Expand Up @@ -238,10 +247,17 @@ conMatches clsName topVars ixVar c = do
[InstanceD _ cxt (AppT _className (AppT (ConT _some) ityp)) _] -> do
sub <- lift $ unifyTypes [ityp, tn]
tellCxt $ applySubstitution sub cxt
return (ConP 'Some [VarP x], VarE x)
return ( ConP
'Some
#if MIN_VERSION_template_haskell(2,18,0)
[]
#endif
[VarP x]
, VarE x
)
_ -> error $ "The following instances of " ++ show clsName ++ " for " ++ show (ppr [AppT (ConT ''Some) tn]) ++ " exist (rigids: " ++ unwords (map show $ Set.toList rigidVars) ++ "), and I don't know which to pick:\n" ++ unlines (map (show . ppr) insts)
_ -> do
demandInstanceIfNecessary
demandInstanceIfNecessary
return (VarP x, VarE x)
-- The singleton is special-cased because of
-- https://downloads.haskell.org/ghc/8.10.1-rc1/docs/html/users_guide/8.10.1-notes.html#template-haskell
Expand All @@ -266,7 +282,7 @@ kindArity = \case
-- its declaration, and the arity of the kind of type being defined (i.e. how many more arguments would
-- need to be supplied in addition to the bound parameters in order to obtain an ordinary type of kind *).
-- If the supplied 'Name' is anything other than a data or newtype, produces an error.
tyConArity' :: Name -> Q ([TyVarBndr_ ()], Int)
tyConArity' :: Name -> Q ([TyVarBndrVis], Int)
tyConArity' n = reify n >>= return . \case
TyConI (DataD _ _ ts mk _ _) -> (ts, maybe 0 kindArity mk)
TyConI (NewtypeD _ _ ts mk _ _) -> (ts, maybe 0 kindArity mk)
Expand Down

0 comments on commit 8f6922a

Please sign in to comment.