daml/compiler/damlc
Remy 8512a63b05
[damlc] Resurrect scenarios (#18467)
It is mainly a revert of 384111d806 with
the following change Scneario are put in DA.Scenario module instead of
Prelude
2024-02-14 15:37:26 +01:00
..
daml-compiler remove the featurePackageUpgrades flag from the compiler (#18424) 2024-02-09 10:57:33 +01:00
daml-desugar update copyright (#18167) 2024-01-15 20:27:42 +01:00
daml-doc Remove retroactive interface instance syntax (#18350) 2024-02-07 11:28:25 +00:00
daml-doctest update copyright (#18167) 2024-01-15 20:27:42 +01:00
daml-ghc-util remove agreement text from the compiler (#18272) 2024-01-29 12:49:12 +00:00
daml-ide update copyright (#18167) 2024-01-15 20:27:42 +01:00
daml-ide-core Restructure daml3-script such that everything is internal. (#18127) 2024-01-26 14:03:30 +00:00
daml-lf-conversion remove Legacy Numeric builtins for the compiler (#18447) 2024-02-12 12:14:29 +01:00
daml-lf-util Make package metadata mandatory in the compiler (#18235) 2024-01-22 14:20:03 +00:00
daml-opts remove the nat synonyms feature flag from the compiler (#18246) 2024-01-23 16:11:10 +00:00
daml-package-config Fixed multipackage in presence of daml.yaml with version+build options (#18135) 2024-01-16 14:46:58 +00:00
daml-preprocessor [damlc] Resurrect scenarios (#18467) 2024-02-14 15:37:26 +01:00
daml-prim-src remove the nat type erasure feature flag in the compiler (#18261) 2024-01-25 10:42:26 +01:00
daml-rule-types update copyright (#18167) 2024-01-15 20:27:42 +01:00
daml-stdlib-src [damlc] Resurrect scenarios (#18467) 2024-02-14 15:37:26 +01:00
exe update copyright (#18167) 2024-01-15 20:27:42 +01:00
ide-debug-driver update copyright (#18167) 2024-01-15 20:27:42 +01:00
lib/DA/Cli Support split release artifactory, improve missing connection errors (#18271) 2024-02-13 12:28:32 +00:00
pkg-db update copyright (#18167) 2024-01-15 20:27:42 +01:00
stable-packages Make package metadata mandatory in the compiler (#18235) 2024-01-22 14:20:03 +00:00
tests [damlc] Resurrect scenarios (#18467) 2024-02-14 15:37:26 +01:00
base-hoogle-template.txt Capitalise The Standard Library in title position (#17208) 2023-08-07 09:31:47 +01:00
base-md-template.md Capitalise The Standard Library in title position (#17208) 2023-08-07 09:31:47 +01:00
base-rst-index-template.rst update copyright (#18167) 2024-01-15 20:27:42 +01:00
base-rst-template.rst update copyright (#18167) 2024-01-15 20:27:42 +01:00
BUILD.bazel [damlc] Resurrect scenarios (#18467) 2024-02-14 15:37:26 +01:00
README.md Desugared Daml golden tests (#13591) 2022-04-14 13:14:37 +00:00
util.bzl update copyright (#18167) 2024-01-15 20:27:42 +01:00

Code layout

The following list is ordered topologicaly based on the dependency graph.

daml-preprocessor

daml-preprocessor contains the Daml preprocessor which runs our version of the record-dot-preprocessor and the preprocessor for generating Generic instances. The preprocessor also performs a few additional checks, e.g., that you do not import internal modules.

daml-opts

daml-opts contains two libraries: daml-opt-types and daml-opts.

daml-opt-types contains the Options type which controls the various flags affecting most damlc commands. Most of the options can be controlled via command line flags.

daml-opts contains the conversion from damlcs Options type to ghcides IdeOptions type. This is in a separate package to avoid making everything depend on daml-preprocessor.

daml-lf-conversion

daml-lf-conversion handles the conversion from GHCs Core to Daml-LF.

daml-ide-core

daml-ide-core is a wrapper around ghcide that adds Daml-specific rules such as rules for producing Daml-LF.

daml-doc

daml-doc contains our variant of haddock.

daml-desugar

daml-desugar provides a simple way to obtain the GHC representation of a parsed Daml file.

daml-ide

daml-ide contains the LSP layer of the IDE and wraps the corresponding LSP layer in ghcide and adds custom handlers such as those for scenario results.

daml-compiler

daml-compiler contains the implementation of a few top-level damlc commands, e.g., upgrade.

lib

lib is all of damlc but packaged as a library since that can be more convenient for tests.

exe

This is a tiny wrapper around lib to produce the damlc executable.

Developing

When working on the compiler:

da-ghcid //compiler/damlc/tests:integration-v1dev --reload=compiler/damlc/tests/daml-test-files --test=":main --pattern="
bazel run //compiler/damlc/tests:integration-v1dev -- --pattern=
bazel run damlc -- compile $PWD/MyDaml12File.daml

When working on the IDE via the test suite:

bazel run //compiler/damlc/tests:shake -- --pattern=
da-ghcid //compiler/damlc/tests:shake --test=":main --pattern="

The above commands do not execute scenarios. To do that, use a command like

bazel run damlc test $PWD/compiler/damlc/tests/bond-trading/Test.daml

At the moment, commands relying on ghc-pkg, e.g., damlc build do not work via bazel run. For testing, install the SDK with daml-sdk-head and then use daml-head damlc.

Updating expected diagnostics in the damlc integration tests

Most of the .daml files in tests/daml-test-files contain comments of the form

-- @WARN range=1:1-1:10; Something to warn about

These comments specify the diagnostics we expect when compiling the file. Sometimes these expectations change for various reasons and updating the comments can be quite tedious, particularly when there are many of them. You can extract the comments reflecting the updated expectations from the compiler output by copying the output into the clipboard and running

# On MacOS
pbpaste | sed -n -r -f compiler/damlc/tests/extract-diagnostics.sed

# On Linux
xclip -out -selection clipboard | sed -n -r -f compiler/damlc/tests/extract-diagnostics.sed

If a test case in the damlc intgration tests fails, it will print the compiler output. Alternative, you can run damlc as described above to get the output.

Updating daml-doc's golden tests

Run

bazel run //compiler/damlc/tests:daml-doc -- --accept

to accept the current documentation as new golden files.

Updating daml-desugar's golden tests

Likewise, run

bazel run //compiler/damlc/tests:daml-desugar -- --accept

to accept the current desugaring as new golden files.

Documentation

Standard library docs are exposed under the bazel rules which you can build with:

bazel build //compiler/damlc:daml-base-docs

This creates a tarball containing RST (ReStructured Text) docs, and a hoogle database.

Daml Packages and Database

A Daml project is compiled to a Daml package and can be distributed as a Daml archive (DAR). This is essentially a zip archive containing the Daml source code of the library together with the compiled .dalf file. The damlc package loading mechanism is based on GHC's package database and uses the same .conf file format. GHC's package database is documented at https://downloads.haskell.org/~ghc/latest/docs/html/users_guide/packages.html.

Loading packages

damlc loads packages from a package database given by the option --package-db. It creates a map from package name to Daml-LF file from all the contained .dalf files in this directory and links the created Daml-LF against these packages. It uses the .hi interface files created upon installation of the packages for type checking.

Base packages

Currently a package database is provided together with the damlc Bazel rule and bazel run damlc loads this database by default. This package database is also bundled in the damlc-dist.tar.gz tarball included in the SDK.

Building the package database

The package database that comes with damlc and the above archives can be build with

bazel build //compiler/damlc/pkg-db:pkg-db