mirror of
https://github.com/github/semantic.git
synced 2024-12-26 16:33:03 +03:00
Propagate module/path information into generated scope graphs.
By adding a `Reader ModuleInfo` constraint to the scope graph DSL, we can ensure that newly-introduced declarations and references get this helpful information (rather than sticking a `lowerBound` in there).
This commit is contained in:
parent
6a00388913
commit
047b602882
@ -17,6 +17,7 @@ import qualified Control.Effect.ScopeGraph.Properties.Reference as Props
|
|||||||
import Control.Monad
|
import Control.Monad
|
||||||
import qualified Data.ByteString as ByteString
|
import qualified Data.ByteString as ByteString
|
||||||
import qualified Data.List.NonEmpty as NonEmpty
|
import qualified Data.List.NonEmpty as NonEmpty
|
||||||
|
import Data.Module (ModuleInfo (..))
|
||||||
import qualified Data.ScopeGraph as ScopeGraph
|
import qualified Data.ScopeGraph as ScopeGraph
|
||||||
import qualified Language.Python ()
|
import qualified Language.Python ()
|
||||||
import qualified Language.Python as Py (Term)
|
import qualified Language.Python as Py (Term)
|
||||||
@ -54,7 +55,9 @@ The graph should be
|
|||||||
|
|
||||||
|
|
||||||
runScopeGraph :: ToScopeGraph t => Path.AbsRelFile -> Source.Source -> t Loc -> (ScopeGraph.ScopeGraph Name, Result)
|
runScopeGraph :: ToScopeGraph t => Path.AbsRelFile -> Source.Source -> t Loc -> (ScopeGraph.ScopeGraph Name, Result)
|
||||||
runScopeGraph p _src item = run . runSketch (Just p) $ scopeGraph item
|
runScopeGraph p _src item = run . runSketch info $ scopeGraph item
|
||||||
|
where
|
||||||
|
info = ModuleInfo (Path.toString p) "Python" mempty
|
||||||
|
|
||||||
sampleGraphThing :: ScopeGraphEff sig m => m Result
|
sampleGraphThing :: ScopeGraphEff sig m => m Result
|
||||||
sampleGraphThing = do
|
sampleGraphThing = do
|
||||||
@ -74,14 +77,14 @@ assertSimpleAssignment :: HUnit.Assertion
|
|||||||
assertSimpleAssignment = do
|
assertSimpleAssignment = do
|
||||||
let path = "semantic-python/test/fixtures/1-04-toplevel-assignment.py"
|
let path = "semantic-python/test/fixtures/1-04-toplevel-assignment.py"
|
||||||
(result, Complete) <- graphFile path
|
(result, Complete) <- graphFile path
|
||||||
(expecto, Complete) <- runM $ runSketch Nothing sampleGraphThing
|
(expecto, Complete) <- runM $ runSketch (ModuleInfo path "Python" mempty) sampleGraphThing
|
||||||
HUnit.assertEqual "Should work for simple case" expecto result
|
HUnit.assertEqual "Should work for simple case" expecto result
|
||||||
|
|
||||||
assertSimpleReference :: HUnit.Assertion
|
assertSimpleReference :: HUnit.Assertion
|
||||||
assertSimpleReference = do
|
assertSimpleReference = do
|
||||||
let path = "semantic-python/test/fixtures/5-01-simple-reference.py"
|
let path = "semantic-python/test/fixtures/5-01-simple-reference.py"
|
||||||
(result, Complete) <- graphFile path
|
(result, Complete) <- graphFile path
|
||||||
(expecto, Complete) <- runM $ runSketch Nothing expectedReference
|
(expecto, Complete) <- runM $ runSketch (ModuleInfo path "Python" mempty) expectedReference
|
||||||
|
|
||||||
HUnit.assertEqual "Should work for simple case" expecto result
|
HUnit.assertEqual "Should work for simple case" expecto result
|
||||||
|
|
||||||
@ -112,8 +115,9 @@ expectedImportHole = do
|
|||||||
assertLexicalScope :: HUnit.Assertion
|
assertLexicalScope :: HUnit.Assertion
|
||||||
assertLexicalScope = do
|
assertLexicalScope = do
|
||||||
let path = "semantic-python/test/fixtures/5-02-simple-function.py"
|
let path = "semantic-python/test/fixtures/5-02-simple-function.py"
|
||||||
|
let info = ModuleInfo path "Python" mempty
|
||||||
(graph, _) <- graphFile path
|
(graph, _) <- graphFile path
|
||||||
case run (runSketch Nothing expectedLexicalScope) of
|
case run (runSketch info expectedLexicalScope) of
|
||||||
(expecto, Complete) -> HUnit.assertEqual "Should work for simple case" expecto graph
|
(expecto, Complete) -> HUnit.assertEqual "Should work for simple case" expecto graph
|
||||||
(_, Todo msg) -> HUnit.assertFailure ("Failed to complete:" <> show msg)
|
(_, Todo msg) -> HUnit.assertFailure ("Failed to complete:" <> show msg)
|
||||||
|
|
||||||
@ -129,7 +133,8 @@ assertFunctionArg :: HUnit.Assertion
|
|||||||
assertFunctionArg = do
|
assertFunctionArg = do
|
||||||
let path = "semantic-python/test/fixtures/5-03-function-argument.py"
|
let path = "semantic-python/test/fixtures/5-03-function-argument.py"
|
||||||
(graph, _) <- graphFile path
|
(graph, _) <- graphFile path
|
||||||
case run (runSketch Nothing expectedFunctionArg) of
|
let info = ModuleInfo path "Python" mempty
|
||||||
|
case run (runSketch info expectedFunctionArg) of
|
||||||
(expecto, Complete) -> HUnit.assertEqual "Should work for simple case" expecto graph
|
(expecto, Complete) -> HUnit.assertEqual "Should work for simple case" expecto graph
|
||||||
(_, Todo msg) -> HUnit.assertFailure ("Failed to complete:" <> show msg)
|
(_, Todo msg) -> HUnit.assertFailure ("Failed to complete:" <> show msg)
|
||||||
|
|
||||||
@ -150,7 +155,8 @@ assertImportHole :: HUnit.Assertion
|
|||||||
assertImportHole = do
|
assertImportHole = do
|
||||||
let path = "semantic-python/test/fixtures/cheese/6-01-imports.py"
|
let path = "semantic-python/test/fixtures/cheese/6-01-imports.py"
|
||||||
(graph, _) <- graphFile path
|
(graph, _) <- graphFile path
|
||||||
case run (runSketch Nothing expectedImportHole) of
|
let info = ModuleInfo path "Python" mempty
|
||||||
|
case run (runSketch info expectedImportHole) of
|
||||||
(expecto, Complete) -> HUnit.assertEqual "Should work for simple case" expecto graph
|
(expecto, Complete) -> HUnit.assertEqual "Should work for simple case" expecto graph
|
||||||
(_, Todo msg) -> HUnit.assertFailure ("Failed to complete:" <> show msg)
|
(_, Todo msg) -> HUnit.assertFailure ("Failed to complete:" <> show msg)
|
||||||
|
|
||||||
@ -158,7 +164,8 @@ assertQualifiedImport :: HUnit.Assertion
|
|||||||
assertQualifiedImport = do
|
assertQualifiedImport = do
|
||||||
let path = "semantic-python/test/fixtures/cheese/6-01-qualified-imports.py"
|
let path = "semantic-python/test/fixtures/cheese/6-01-qualified-imports.py"
|
||||||
(graph, _) <- graphFile path
|
(graph, _) <- graphFile path
|
||||||
case run (runSketch Nothing expectedQualifiedImport) of
|
let info = ModuleInfo path "Python" mempty
|
||||||
|
case run (runSketch info expectedQualifiedImport) of
|
||||||
(expecto, Complete) -> HUnit.assertEqual "Should work for simple case" expecto graph
|
(expecto, Complete) -> HUnit.assertEqual "Should work for simple case" expecto graph
|
||||||
(_, Todo msg) -> HUnit.assertFailure ("Failed to complete:" <> show msg)
|
(_, Todo msg) -> HUnit.assertFailure ("Failed to complete:" <> show msg)
|
||||||
|
|
||||||
|
@ -26,24 +26,26 @@ import Control.Carrier.Fresh.Strict
|
|||||||
import Control.Carrier.Reader
|
import Control.Carrier.Reader
|
||||||
import Control.Carrier.State.Strict
|
import Control.Carrier.State.Strict
|
||||||
import Control.Effect.ScopeGraph
|
import Control.Effect.ScopeGraph
|
||||||
|
import Data.Module (ModuleInfo)
|
||||||
import qualified Data.ScopeGraph as ScopeGraph
|
import qualified Data.ScopeGraph as ScopeGraph
|
||||||
import Data.Semilattice.Lower
|
import Data.Semilattice.Lower
|
||||||
import qualified System.Path as Path
|
|
||||||
|
|
||||||
type SketchC addr m
|
type SketchC addr m
|
||||||
= StateC (ScopeGraph Name)
|
= StateC (ScopeGraph Name)
|
||||||
( StateC Name
|
( StateC Name
|
||||||
( ReaderC Name
|
( ReaderC Name
|
||||||
|
( ReaderC ModuleInfo
|
||||||
( FreshC m
|
( FreshC m
|
||||||
)))
|
))))
|
||||||
|
|
||||||
runSketch ::
|
runSketch ::
|
||||||
(Functor m)
|
(Functor m)
|
||||||
=> Maybe Path.AbsRelFile
|
=> ModuleInfo
|
||||||
-> SketchC Name m a
|
-> SketchC Name m a
|
||||||
-> m (ScopeGraph Name, a)
|
-> m (ScopeGraph Name, a)
|
||||||
runSketch _rootpath go
|
runSketch info go
|
||||||
= evalFresh 0
|
= evalFresh 0
|
||||||
|
. runReader @ModuleInfo info
|
||||||
. runReader @Name rootname
|
. runReader @Name rootname
|
||||||
. evalState @Name rootname
|
. evalState @Name rootname
|
||||||
. runState @(ScopeGraph Name) initialGraph
|
. runState @(ScopeGraph Name) initialGraph
|
||||||
|
@ -64,6 +64,7 @@ type ScopeGraphEff sig m
|
|||||||
= ( Has (State (ScopeGraph Name)) sig m
|
= ( Has (State (ScopeGraph Name)) sig m
|
||||||
, Has (State Name) sig m
|
, Has (State Name) sig m
|
||||||
, Has (Reader Name) sig m
|
, Has (Reader Name) sig m
|
||||||
|
, Has (Reader Module.ModuleInfo) sig m
|
||||||
, Has Fresh sig m
|
, Has Fresh sig m
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -84,11 +85,12 @@ declare :: ScopeGraphEff sig m => Name -> Props.Declaration -> m ()
|
|||||||
declare n props = do
|
declare n props = do
|
||||||
current <- currentScope
|
current <- currentScope
|
||||||
old <- graphInProgress
|
old <- graphInProgress
|
||||||
|
info <- ask
|
||||||
let Props.Declaration kind relation associatedScope span = props
|
let Props.Declaration kind relation associatedScope span = props
|
||||||
let (new, _pos) =
|
let (new, _pos) =
|
||||||
ScopeGraph.declare
|
ScopeGraph.declare
|
||||||
(ScopeGraph.Declaration n)
|
(ScopeGraph.Declaration n)
|
||||||
(lowerBound @Module.ModuleInfo)
|
info
|
||||||
relation
|
relation
|
||||||
ScopeGraph.Public
|
ScopeGraph.Public
|
||||||
span
|
span
|
||||||
@ -103,10 +105,11 @@ reference :: forall sig m . ScopeGraphEff sig m => Text -> Text -> Props.Referen
|
|||||||
reference n decl props = do
|
reference n decl props = do
|
||||||
current <- currentScope
|
current <- currentScope
|
||||||
old <- graphInProgress
|
old <- graphInProgress
|
||||||
|
info <- ask
|
||||||
let new =
|
let new =
|
||||||
ScopeGraph.reference
|
ScopeGraph.reference
|
||||||
(ScopeGraph.Reference (Name.name n))
|
(ScopeGraph.Reference (Name.name n))
|
||||||
(lowerBound @Module.ModuleInfo)
|
info
|
||||||
(Props.Reference.span props)
|
(Props.Reference.span props)
|
||||||
(Props.Reference.kind props)
|
(Props.Reference.kind props)
|
||||||
(ScopeGraph.Declaration (Name.name decl))
|
(ScopeGraph.Declaration (Name.name decl))
|
||||||
|
@ -20,7 +20,7 @@ data Reference = Reference
|
|||||||
{ kind :: ScopeGraph.Kind
|
{ kind :: ScopeGraph.Kind
|
||||||
, relation :: ScopeGraph.Relation
|
, relation :: ScopeGraph.Relation
|
||||||
, span :: Span
|
, span :: Span
|
||||||
} deriving (Generic, Show)
|
} deriving (Generic, Show)
|
||||||
|
|
||||||
instance HasSpan Reference where
|
instance HasSpan Reference where
|
||||||
span_ = lens span (\r s -> r { span = s })
|
span_ = lens span (\r s -> r { span = s })
|
||||||
|
Loading…
Reference in New Issue
Block a user