Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
Cabal
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Glasgow Haskell Compiler
Packages
Cabal
Commits
e8d17565
Commit
e8d17565
authored
9 years ago
by
Duncan Coutts
Browse files
Options
Downloads
Patches
Plain Diff
Add more docs/comments to recently added utils
parent
377cc8f3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cabal-install/Distribution/Client/ComponentDeps.hs
+5
-0
5 additions, 0 deletions
cabal-install/Distribution/Client/ComponentDeps.hs
cabal-install/Distribution/Client/InstallPlan.hs
+13
-4
13 additions, 4 deletions
cabal-install/Distribution/Client/InstallPlan.hs
with
18 additions
and
4 deletions
cabal-install/Distribution/Client/ComponentDeps.hs
+
5
−
0
View file @
e8d17565
...
...
@@ -65,6 +65,10 @@ instance Binary Component
type
ComponentDep
a
=
(
Component
,
a
)
-- | Fine-grained dependencies for a package
--
-- Typically used as @ComponentDeps [Dependency]@, to represent the list of
-- dependencies for each named component within a package.
--
newtype
ComponentDeps
a
=
ComponentDeps
{
unComponentDeps
::
Map
Component
a
}
deriving
(
Show
,
Functor
,
Eq
,
Ord
,
Generic
)
...
...
@@ -101,6 +105,7 @@ insert comp a = ComponentDeps . Map.alter aux comp . unComponentDeps
aux
Nothing
=
Just
a
aux
(
Just
a'
)
=
Just
$
a
`
mappend
`
a'
-- | Keep only selected components (and their associated deps info).
filterDeps
::
(
Component
->
a
->
Bool
)
->
ComponentDeps
a
->
ComponentDeps
a
filterDeps
p
=
ComponentDeps
.
Map
.
filterWithKey
p
.
unComponentDeps
...
...
This diff is collapsed.
Click to expand it.
cabal-install/Distribution/Client/InstallPlan.hs
+
13
−
4
View file @
e8d17565
...
...
@@ -188,13 +188,19 @@ data GenericInstallPlan ipkg srcpkg iresult ifailure = GenericInstallPlan {
planFakeMap
::
!
FakeMap
,
planIndepGoals
::
!
Bool
,
-- cached (lazily) graph
-- | Cached (lazily) graph
--
-- The 'Graph' representaion works in terms of integer node ids, so we
-- have to keep mapping to and from our meaningful nodes, which of course
-- are package ids.
--
planGraph
::
Graph
,
planGraphRev
::
Graph
,
planPkgIdOf
::
Graph
.
Vertex
->
UnitId
,
planVertexOf
::
UnitId
->
Graph
.
Vertex
planGraphRev
::
Graph
,
-- ^ Reverse deps, transposed
planPkgIdOf
::
Graph
.
Vertex
->
UnitId
,
-- ^ mapping back to package ids
planVertexOf
::
UnitId
->
Graph
.
Vertex
-- ^ mapping into node ids
}
-- | Much like 'planPkgIdOf', but mapping back to full packages.
planPkgOf
::
GenericInstallPlan
ipkg
srcpkg
iresult
ifailure
->
Graph
.
Vertex
->
GenericPlanPackage
ipkg
srcpkg
iresult
ifailure
...
...
@@ -221,6 +227,8 @@ invariant plan =
(
planIndepGoals
plan
)
(
planIndex
plan
)
-- | Smart constructor that deals with caching the 'Graph' representation.
--
mkInstallPlan
::
(
HasUnitId
ipkg
,
PackageFixedDeps
ipkg
,
HasUnitId
srcpkg
,
PackageFixedDeps
srcpkg
)
=>
PlanIndex
ipkg
srcpkg
iresult
ifailure
...
...
@@ -233,6 +241,7 @@ mkInstallPlan index fakeMap indepGoals =
planFakeMap
=
fakeMap
,
planIndepGoals
=
indepGoals
,
-- lazily cache the graph stuff:
planGraph
=
graph
,
planGraphRev
=
Graph
.
transposeG
graph
,
planPkgIdOf
=
vertexToPkgId
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment