| Version 4 (modified by refold, 11 months ago) |
|---|
This page contains various notes pertaining to the "Sandboxed Builds and Isolated Environments" GSoC 2012 project.
The project can be summarised as "integrate cabal-dev into cabal and polish the result". Specifically, we want to be able to choose a compiler version to be used in the sandbox, and run a shell with a sandbox-restricted compiler and tools. Another important concern is portability: all features must be available on both Windows and *nix. One feature that is not going to be supported is cabal-dev ghci (depends on cabal repl patches which are not yet merged). Additionally, compilers other than GHC are not going to be supported, at least initially.
Mechanisms described on the PackageEnvironments page form a starting point for the implementation of the internal part; ideas from Johan Tibell's "Cabal of my dreams" post influence the command-line UI design.
Implementation plan
Because of the difficulties of merging large and invasive changes into mainline Cabal I intend to structure my work as several smaller patch sets which can be merged one-by-one, preferably during the summer period. It is also important to minimise the impact on the rest of the Cabal library initially, even if that means some code duplication. Once a working version of the code has been merged, it will be much easier to build up on that and apply refactoring & polishing changes.
At this moment, I plan to break up the project into the following stages:
Extend the package index format
Implement the extended package index format as described in the PackageEnvironments. This is the foundation that the later stages build on.
Q: Do we need the cabal index subcommand?
A: It can be useful for debugging, but should be hidden from users.
Implement a cabal sandbox subcommand
This is the "merge cabal-dev into cabal" part. The idea is to make cabal-dev available as a cabal subcommand. The implementation will use the extended package index and package environment file, and the UI will be modeled after cabal-dev, but with some differences:
- cabal sandbox build will add all dependencies to the sandbox automatically, so there will be no need for cabal sandbox install. Ditto for cabal sandbox bench and cabal sandbox test.
- In addition to add-source, there will be a link-source subcommand that will rebuild and re-add the linked package each time it changes. Q: Can we make link-source the default?
- It will be possible to specify the compiler version to be used in the sandbox.
Example session:
$ cabal sandbox-init --with-compiler=/path/to/ghc $ cabal sandbox-link-source /path/to/unreleased-package $ cabal sandbox-configure Configuring... $ cabal sandbox-build Building dependency-1... Building dependency-2... Building unreleased-package... Building... $ vim /path/to/unreleased-package/.../SomeModule.hs $ cabal sandbox-build Building unreleased-package... Building...
Revise the UI and add polish
The cabal sandbox init subcommand will be replaced by a --sandbox flag to --configure; --link-source will be also made a --configure option. The configure, build, test, bench and install commands will be made aware of whether there is an sandbox active; they will be also changed to install dependencies automatically.
Example session:
$ cabal configure --sandbox --with-compiler=/path/to/ghc --link-source=/path/to/dependency-1 $ cabal build Note: building in a sandbox. Building dependency-1... Building dependency-2... Building...
Once ghc-pkg gets Nix-style package management, the --sandbox switch will be made the default.
Implement a --package-root configure option
For large sets of dependencies, linking sources manually with --link-source is tedious. It would be nice if configure could be just given a path to the package directory, and then would walk the directory tree and discover the .cabal files automatically. Another nice feature is linking to Git/Darcs/... repositories.
Q: Given --package-root, --link-source is redundant. Should it be removed?
Implement shared sandboxes
Allow providing an optional path argument to configure --sandbox so that sandboxes could be shared.
Implement cabal sandbox shell
This feature (inspired by virthualenv) will allow to run a shell with a sandbox-restricted compiler and tools. Important: Windows support.
Progress
Week 1
- Wrote this document
- Started working on extending the index format
Miscellaneous
To look at: the Setup.hs dependencies issue that Rogan talks about here.
