Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Properly handle confluent imports #2915

Merged
merged 3 commits into from
Jul 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -711,9 +711,9 @@ lookupQualifiedSymbol ::
forall r.
(Members '[State Scope, State ScoperState] r) =>
([Symbol], Symbol) ->
Sem r ([PreSymbolEntry], [ModuleSymbolEntry], [FixitySymbolEntry])
Sem r (HashSet PreSymbolEntry, HashSet ModuleSymbolEntry, HashSet FixitySymbolEntry)
lookupQualifiedSymbol sms = do
(es, (ms, fs)) <- runOutputList . runOutputList . execOutputList $ go sms
(es, (ms, fs)) <- runOutputHashSet . runOutputHashSet . execOutputHashSet $ go sms
return (es, ms, fs)
where
go ::
Expand Down Expand Up @@ -758,18 +758,21 @@ lookupQualifiedSymbol sms = do
normalizePreSymbolEntry :: (Members '[State ScoperState] r) => PreSymbolEntry -> Sem r SymbolEntry
normalizePreSymbolEntry = \case
PreSymbolFinal a -> return a
PreSymbolAlias a -> gets (^?! scoperAlias . at (a ^. aliasName . S.nameId) . _Just) >>= normalizePreSymbolEntry
PreSymbolAlias a -> gets (^. scoperAlias . at (a ^. aliasName . S.nameId)) >>= normalizePreSymbolEntry . fromMaybe err
where
err :: forall a. a
err = impossibleError ("The alias " <> ppTrace (a ^. aliasName) <> " was not found in the ScoperState ")

checkQualifiedName ::
(Members '[Error ScoperError, State Scope, State ScoperState, InfoTableBuilder, Reader InfoTable] r) =>
QualifiedName ->
Sem r PreSymbolEntry
checkQualifiedName q@(QualifiedName (SymbolPath p) sym) = do
es <- fst3 <$> lookupQualifiedSymbol (toList p, sym)
case es of
case toList es of
[] -> notInScope
[e] -> return e
_ -> throw (ErrAmbiguousSym (AmbiguousSym q' es))
_ -> throw (ErrAmbiguousSym (AmbiguousSym q' (toList es)))
where
q' = NameQualified q
notInScope = throw (ErrQualSymNotInScope (QualSymNotInScope q))
Expand Down Expand Up @@ -1820,7 +1823,7 @@ lookupModuleSymbol ::
Sem r ScopedModule
lookupModuleSymbol n = do
es <- snd3 <$> lookupQualifiedSymbol (path, sym)
case nonEmpty (resolveShadowing es) of
case nonEmpty (resolveShadowing (toList es)) of
Nothing -> notInScope
Just (x :| []) -> getModule x n
Just more -> throw (ErrAmbiguousModuleSym (AmbiguousModuleSym n more))
Expand Down Expand Up @@ -2384,7 +2387,7 @@ checkUnqualifiedName s = do
scope <- get
-- Lookup at the global scope
entries <- fst3 <$> lookupQualifiedSymbol ([], s)
case resolveShadowing entries of
case resolveShadowing (toList entries) of
[] -> throw (ErrSymNotInScope (NotInScope s scope))
[x] -> return x
es -> throw (ErrAmbiguousSym (AmbiguousSym n es))
Expand All @@ -2399,7 +2402,7 @@ checkFixitySymbol s = do
scope <- get
-- Lookup at the global scope
entries <- thd3 <$> lookupQualifiedSymbol ([], s)
case resolveShadowing entries of
case resolveShadowing (toList entries) of
[] -> throw (ErrSymNotInScope (NotInScope s scope))
[x] -> do
let res = entryToSymbol x s
Expand Down Expand Up @@ -2473,13 +2476,14 @@ lookupNameOfKind ::
Name ->
Sem r (Maybe ScopedIden)
lookupNameOfKind nameKind n = do
entries <- lookupQualifiedSymbol (path, sym) >>= mapMaybeM filterEntry . fst3
entries <- lookupQualifiedSymbol (path, sym) >>= mapMaybeM filterEntry . toList . fst3
case entries of
[] -> return Nothing
[(_, s)] -> return (Just s) -- There is one constructor with such a name
es -> throw (ErrAmbiguousSym (AmbiguousSym n (map fst es)))
where
(path, sym) = splitName n

filterEntry :: PreSymbolEntry -> Sem r (Maybe (PreSymbolEntry, ScopedIden))
filterEntry e = do
e' <- entryToScopedIden n e
Expand Down
8 changes: 8 additions & 0 deletions src/Juvix/Compiler/Store/Scoped/Data/SymbolEntry.hs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ instance Serialize Alias

instance NFData Alias

instance Hashable Alias

-- | Either an alias or a symbol entry.
data PreSymbolEntry
= PreSymbolAlias Alias
Expand All @@ -24,6 +26,8 @@ instance Serialize PreSymbolEntry

instance NFData PreSymbolEntry

instance Hashable PreSymbolEntry

-- | A symbol which is not an alias.
newtype SymbolEntry = SymbolEntry
{ _symbolEntry :: S.Name
Expand All @@ -45,6 +49,8 @@ instance Serialize ModuleSymbolEntry

instance NFData ModuleSymbolEntry

instance Hashable ModuleSymbolEntry

newtype FixitySymbolEntry = FixitySymbolEntry
{ _fixityEntry :: S.Name
}
Expand All @@ -54,6 +60,8 @@ instance Serialize FixitySymbolEntry

instance NFData FixitySymbolEntry

instance Hashable FixitySymbolEntry

makeLenses ''Alias
makeLenses ''SymbolEntry
makeLenses ''ModuleSymbolEntry
Expand Down
3 changes: 3 additions & 0 deletions src/Juvix/Prelude/Base/Foundation.hs
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,9 @@ undefined = Err.error "undefined"
impossible :: (HasCallStack) => a
impossible = Err.error "impossible"

impossibleError :: (HasCallStack) => Text -> a
impossibleError msg = Err.error ("impossible: " <> unpack msg)

--------------------------------------------------------------------------------

infixl 7 <+?>
Expand Down
10 changes: 7 additions & 3 deletions src/Juvix/Prelude/Effects/Accum.hs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
module Juvix.Prelude.Effects.Accum
( Accum,
runAccumList,
runAccumListReverse,
execAccumList,
ignoreAccum,
accum,
Expand All @@ -21,10 +22,13 @@ newtype instance StaticRep (Accum o) = Accum
accum :: (Member (Accum o) r) => o -> Sem r ()
accum o = overStaticRep (\(Accum l) -> Accum (o : l))

runAccumList :: Sem (Accum o ': r) a -> Sem r ([o], a)
runAccumList m = do
runAccumListReverse :: Sem (Accum o ': r) a -> Sem r ([o], a)
runAccumListReverse m = do
(a, Accum s) <- runStaticRep (Accum mempty) m
return (reverse s, a)
return (s, a)

runAccumList :: Sem (Accum o ': r) a -> Sem r ([o], a)
runAccumList m = first reverse <$> runAccumListReverse m

execAccumList :: Sem (Accum o ': r) a -> Sem r [o]
execAccumList = fmap fst . runAccumList
Expand Down
12 changes: 12 additions & 0 deletions src/Juvix/Prelude/Effects/Output.hs
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,22 @@ runOutputSem handle =
interpret $ \case
Output x -> handle x

runOutputHashSet :: (Hashable o) => Sem (Output o ': r) a -> Sem r (HashSet o, a)
runOutputHashSet =
fmap (first hashSet)
. reinterpret
runAccumListReverse
( \case
Output x -> accum x
)

runOutputList :: Sem (Output o ': r) a -> Sem r ([o], a)
runOutputList = reinterpret runAccumList $ \case
Output x -> accum x

execOutputHashSet :: (Hashable o) => Sem (Output o ': r) a -> Sem r (HashSet o)
execOutputHashSet = fmap fst . runOutputHashSet

execOutputList :: Sem (Output o ': r) a -> Sem r [o]
execOutputList = fmap fst . runOutputList

Expand Down
4 changes: 4 additions & 0 deletions test/Scope/Positive.hs
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,10 @@ tests =
"Named argument puns"
$(mkRelDir ".")
$(mkRelFile "Puns.juvix"),
posTest
"Confluent imports"
$(mkRelDir "ConfluentScoping")
$(mkRelFile "Main.juvix"),
posTest
"Record field iterator"
$(mkRelDir ".")
Expand Down
3 changes: 3 additions & 0 deletions tests/positive/ConfluentScoping/A.juvix
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module A;

import B public;
3 changes: 3 additions & 0 deletions tests/positive/ConfluentScoping/B.juvix
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module B;

axiom Axiom : Type;
6 changes: 6 additions & 0 deletions tests/positive/ConfluentScoping/Main.juvix
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module Main;

import A open;
import B;

axiom X : B.Axiom;
8 changes: 8 additions & 0 deletions tests/positive/ConfluentScoping/Package.juvix
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module Package;

import PackageDescription.V2 open;

package : Package :=
defaultPackage@?{
name := "confluentscoping"
};
Loading