2021-06-22 19:45:19 +03:00
|
|
|
# Leo RFC 003: Imports Stabilization
|
|
|
|
|
|
|
|
## Authors
|
|
|
|
|
2021-08-31 19:11:26 +03:00
|
|
|
The Aleo Team.
|
2021-06-22 19:45:19 +03:00
|
|
|
|
|
|
|
## Status
|
|
|
|
|
2021-09-22 20:16:01 +03:00
|
|
|
IMPLEMENTED
|
2021-06-22 19:45:19 +03:00
|
|
|
|
2021-10-01 20:38:16 +03:00
|
|
|
## Summary
|
2021-06-22 19:45:19 +03:00
|
|
|
|
2021-06-23 13:07:44 +03:00
|
|
|
This proposal aims to improve the import management system in Leo programs to
|
2021-10-01 20:46:06 +03:00
|
|
|
make the program environment more reproducible, predictable and compatible. To achieve
|
|
|
|
that we suggest a few changes to the Leo CLI and Manifest:
|
2021-06-22 19:45:19 +03:00
|
|
|
|
2021-10-01 20:46:06 +03:00
|
|
|
- add a "dependencies" section to the Leo Manifest and add a command to pull those dependencies;
|
2021-06-22 19:45:19 +03:00
|
|
|
- allow custom names for imports to manually resolve name conflicts;
|
2021-06-28 21:20:45 +03:00
|
|
|
- add "curve" and "proving system" sections to the Manifest;
|
2021-07-01 00:47:34 +03:00
|
|
|
- add "include" and "exclude" parameters for "proving system" and "curve";
|
2021-10-01 20:46:06 +03:00
|
|
|
- add a lock file to store imported dependencies and their relations;
|
2021-06-22 19:45:19 +03:00
|
|
|
|
2021-10-01 20:38:16 +03:00
|
|
|
## Motivation
|
2021-06-22 19:45:19 +03:00
|
|
|
|
2021-08-31 19:11:26 +03:00
|
|
|
The current design of imports does not provide any guarantees on what's stored
|
|
|
|
in program imports and published with the program to Aleo Package Manager.
|
2021-10-01 20:46:06 +03:00
|
|
|
When a dependency is "added," it is stored inside the imports folder, and it is possible
|
2021-06-28 21:20:45 +03:00
|
|
|
to manually edit and/or add packages in this folder.
|
2021-06-22 19:45:19 +03:00
|
|
|
|
2021-10-01 20:46:06 +03:00
|
|
|
Also, imports are stored under the package name, which makes it impossible to import
|
2021-08-31 19:11:26 +03:00
|
|
|
two different packages with the same name.
|
2021-06-22 19:45:19 +03:00
|
|
|
|
2021-10-01 20:46:06 +03:00
|
|
|
Another important detail in the scope of this proposal is that, in the future, Leo
|
|
|
|
programs will have the ability to run with different proving systems
|
2021-08-31 19:11:26 +03:00
|
|
|
and curves, possibly creating incompatibility between programs written
|
2021-07-01 19:14:06 +03:00
|
|
|
for different proving systems or curves. To make a foundation for these features,
|
2021-08-31 19:11:26 +03:00
|
|
|
imports need to be managed with include/exclude lists for allowed (compatible)
|
2021-06-28 21:20:45 +03:00
|
|
|
proving systems and curves.
|
2021-06-22 19:45:19 +03:00
|
|
|
|
2021-10-01 20:58:45 +03:00
|
|
|
## Background
|
|
|
|
|
2021-10-05 04:51:48 +03:00
|
|
|
Leo supports packages and importing, similarly to other languages.
|
2021-10-01 20:58:45 +03:00
|
|
|
|
2021-10-05 05:04:11 +03:00
|
|
|
A Leo _project_ consists of a `main.leo` file
|
|
|
|
and zero or more additional `.leo` files;
|
|
|
|
the latter may be organized in subdirectories.
|
|
|
|
The content of each file is as defined by `file` in the ABNF grammar:
|
|
|
|
it consists of types, functions, etc.
|
|
|
|
Each non-main file forms a Leo _package_ (because it packages the types, functions, etc. that it defines),
|
|
|
|
which can be referenced via its path, without the `.leo` extension and with `/` replaced by `.`
|
|
|
|
(restrictions on the file and directory names derive from the definition of `package-name` in the ABNF grammar,
|
|
|
|
and ensure that the package names can be resolved to file system paths).
|
|
|
|
A Leo project also forms a package, which can be published in the Aleo Package Manager (APM),
|
|
|
|
a repository of Aleo packages, similar to `crates.io` in Rust.
|
|
|
|
|
|
|
|
The files in a Leo project can import entities (types, functions, etc.) from
|
|
|
|
not only local packages (i.e. other files in the same project),
|
|
|
|
but also packages in the APM.
|
2021-10-01 20:58:45 +03:00
|
|
|
This RFC is focused on importing packages from the APM.
|
|
|
|
|
|
|
|
Each package in the APM is uniquely identified by:
|
|
|
|
* The author, who must have a registered account on the APM, with a unique username.
|
|
|
|
* The package name, which is unique within each author's account.
|
|
|
|
* The package version, which allows different versions of the same package to be treated like different packages.
|
|
|
|
|
2021-10-01 20:38:16 +03:00
|
|
|
## Design
|
2021-06-22 19:45:19 +03:00
|
|
|
|
2021-10-01 20:38:16 +03:00
|
|
|
### Leo Manifest - target section
|
2021-06-30 22:00:48 +03:00
|
|
|
|
2021-10-01 20:46:06 +03:00
|
|
|
To lay the foundation for the future of the Leo ecosystem and to start integrating
|
|
|
|
information about programs compatibility, we suggest adding two new fields to
|
2021-06-30 22:00:48 +03:00
|
|
|
the new `[target]` section of the Leo Manifest: `proving_system` and `curve`.
|
|
|
|
|
2021-07-01 19:14:06 +03:00
|
|
|
Currently, the Leo compiler only supports `Groth16` for the proving system and `Bls12_377`
|
2021-10-01 20:46:06 +03:00
|
|
|
for the curve, which are meant to be default values in Leo Manifest.
|
2021-06-30 22:00:48 +03:00
|
|
|
|
|
|
|
```toml
|
|
|
|
[project]
|
|
|
|
name = "first"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "The first package"
|
|
|
|
license = "MIT"
|
|
|
|
|
|
|
|
[target]
|
|
|
|
curve = "Bls12_377"
|
|
|
|
proving_system = "Groth16"
|
|
|
|
```
|
|
|
|
|
2021-10-01 20:46:06 +03:00
|
|
|
These fields are meant to be used to determine whether the imported program is
|
2021-06-30 22:00:48 +03:00
|
|
|
compatible to the original when support for different curves and proving systems
|
|
|
|
is added.
|
|
|
|
|
2021-10-01 20:38:16 +03:00
|
|
|
### Leo Manifest - dependencies
|
2021-06-22 19:45:19 +03:00
|
|
|
|
|
|
|
Dependencies section:
|
|
|
|
|
|
|
|
```toml
|
|
|
|
[dependencies]
|
|
|
|
name = { author = "author", package = "package", version = "version" }
|
|
|
|
|
2021-06-30 22:00:48 +03:00
|
|
|
# alternative way of adding dependency record
|
2021-06-22 19:45:19 +03:00
|
|
|
[dependencies.name]
|
|
|
|
author = "author"
|
|
|
|
package = "package"
|
|
|
|
version = "1.0"
|
|
|
|
```
|
|
|
|
|
2021-10-01 20:38:16 +03:00
|
|
|
#### Parameters description
|
2021-06-30 22:00:48 +03:00
|
|
|
|
2021-10-01 20:46:06 +03:00
|
|
|
The `name` field sets the name of the dependency in Leo code. That way we allow
|
2021-06-30 22:00:48 +03:00
|
|
|
developer to resolve collisions in import names manually. So, for example,
|
2021-10-01 20:46:06 +03:00
|
|
|
if a developer is adding the `howard/silly-sudoku` package to his program, he
|
2021-06-30 22:14:36 +03:00
|
|
|
might define its in-code name as `sudoku` and import it with that name:
|
2021-06-30 22:00:48 +03:00
|
|
|
|
|
|
|
```ts
|
|
|
|
import sudoku;
|
|
|
|
```
|
|
|
|
|
2021-08-31 19:11:26 +03:00
|
|
|
`package`, `author` and `version` are package name, package author and
|
|
|
|
version respectively. They are already used as arguments in `leo add`
|
2021-06-30 22:00:48 +03:00
|
|
|
command, so these fields are already understood by the Leo developers.
|
|
|
|
|
2021-10-01 20:38:16 +03:00
|
|
|
### Leo CLI
|
2021-06-22 19:45:19 +03:00
|
|
|
|
2021-10-01 20:46:06 +03:00
|
|
|
To support updating the Manifest, a new command should be added to Leo CLI.
|
2021-06-22 19:45:19 +03:00
|
|
|
|
|
|
|
```bash
|
|
|
|
# pull imports
|
2021-07-20 18:04:42 +03:00
|
|
|
leo fetch
|
2021-06-22 19:45:19 +03:00
|
|
|
```
|
|
|
|
|
2021-10-01 20:38:16 +03:00
|
|
|
### Imports Restructurization
|
2021-06-22 19:45:19 +03:00
|
|
|
|
2021-10-01 20:46:06 +03:00
|
|
|
One of the goals of the proposed changes is to allow importing packages with the
|
2021-08-31 19:11:26 +03:00
|
|
|
same name but different authors. This has to be solved not only on the
|
|
|
|
language level but also on the level of storing program imports.
|
2021-06-30 22:00:48 +03:00
|
|
|
|
2021-10-01 20:46:06 +03:00
|
|
|
We suggest using the set of all 3 possible program identifiers for the import
|
2021-08-31 19:11:26 +03:00
|
|
|
folder name: `author-package@version`. Later it can be extended to
|
2021-10-01 20:46:06 +03:00
|
|
|
include a hash for the version, but having the inital set already solves name
|
2021-06-30 22:00:48 +03:00
|
|
|
collisions.
|
|
|
|
|
2021-10-01 20:46:06 +03:00
|
|
|
So, the updated imports would look like:
|
2021-06-30 22:00:48 +03:00
|
|
|
|
|
|
|
```
|
|
|
|
leo-program
|
|
|
|
├── Leo.toml
|
|
|
|
├── README.md
|
|
|
|
├── imports
|
|
|
|
│ ├── author1-program@0.1.0
|
|
|
|
│ │ └── ...
|
|
|
|
│ ├── author2-program2@1.0.4
|
|
|
|
│ └── ...
|
|
|
|
├── inputs
|
|
|
|
│ └── ...
|
|
|
|
└── src
|
|
|
|
└── main.leo
|
|
|
|
```
|
|
|
|
|
2021-10-01 20:46:06 +03:00
|
|
|
This change also affects the way imports are being processed on the ASG
|
|
|
|
level, and we need to add an imports map as an argument to the Leo compiler.
|
2021-08-31 19:11:26 +03:00
|
|
|
The Leo Manifest's dependencies sections needs to be parsed and passed as
|
2021-06-30 22:14:36 +03:00
|
|
|
a hashmap to the compiler:
|
2021-06-30 22:00:48 +03:00
|
|
|
|
|
|
|
```
|
|
|
|
first-program => author1-program@0.1.0
|
|
|
|
second-program => author2-program2@1.0.4
|
|
|
|
```
|
2021-06-22 19:45:19 +03:00
|
|
|
|
2021-10-01 20:38:16 +03:00
|
|
|
### Leo.lock
|
2021-07-20 18:04:42 +03:00
|
|
|
|
2021-10-01 20:46:06 +03:00
|
|
|
For the imports map to be generated and read by the Leo binary and then by the Leo compiler,
|
|
|
|
a lock file needs to be created. The lock file should be generated by the `leo fetch` command,
|
2021-07-20 20:55:45 +03:00
|
|
|
which will pull the dependencies, process their manifests, and put the required information
|
2021-07-20 18:04:42 +03:00
|
|
|
to the file in the root directory of the program called `Leo.lock`.
|
|
|
|
|
2021-10-01 20:46:06 +03:00
|
|
|
The suggested structure of this file is similar to the Cargo.lock file:
|
2021-07-20 18:04:42 +03:00
|
|
|
|
|
|
|
```
|
|
|
|
[[package]]
|
|
|
|
name = "suit-mk2"
|
|
|
|
version = "0.2.0"
|
|
|
|
author = "ironman"
|
|
|
|
import_name = "suit-mk2"
|
|
|
|
|
|
|
|
[package.dependencies]
|
|
|
|
garbage = "ironman-suit@0.1.0"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "suit"
|
|
|
|
version = "0.1.0"
|
|
|
|
author = "ironman"
|
|
|
|
import_name = "garbage"
|
|
|
|
```
|
|
|
|
|
2021-07-20 20:55:45 +03:00
|
|
|
In the example above, you can see that all program dependencies are defined as an
|
|
|
|
array called `package`. Each of the dependencies contains main information about
|
|
|
|
it, including the `import_name` field which is the imported package's name in
|
2021-07-20 18:04:42 +03:00
|
|
|
the Leo program. Also, it stores relationships between these dependencies in the
|
|
|
|
field `dependencies`.
|
|
|
|
|
2021-07-20 20:55:45 +03:00
|
|
|
The format described here allows the Leo binary to form an imports map which can be
|
2021-07-20 18:04:42 +03:00
|
|
|
passed to the compiler.
|
|
|
|
|
2021-10-01 20:46:06 +03:00
|
|
|
It is important to note that the Leo.lock file is created only when a package has dependencies.
|
2021-08-31 19:11:26 +03:00
|
|
|
For programs with no dependencies, a lock file is not required and not created.
|
2021-07-20 18:04:42 +03:00
|
|
|
|
2021-10-01 20:38:16 +03:00
|
|
|
### Recursive Dependencies
|
2021-06-22 19:45:19 +03:00
|
|
|
|
2021-06-30 22:00:48 +03:00
|
|
|
This improvement introduces recursive dependencies. To solve this case preemptively
|
2021-07-01 19:14:06 +03:00
|
|
|
Leo CLI needs to check the dependency tree and throw an error when a recursive dependency
|
2021-06-30 22:00:48 +03:00
|
|
|
is met. We suggest implementing simple dependency tree checking while fetching
|
2021-07-01 19:14:06 +03:00
|
|
|
imports - if imported dependency is met on a higher level - abort the execution.
|
2021-06-22 19:45:19 +03:00
|
|
|
|
2021-06-30 22:00:48 +03:00
|
|
|
Later this solution can be improved by building a lock file containing all the
|
|
|
|
information on program dependencies, and the file itself will have enough data
|
|
|
|
to track and prevent recursion.
|
2021-06-22 19:45:19 +03:00
|
|
|
|
2021-10-01 20:38:16 +03:00
|
|
|
## Drawbacks
|
2021-06-22 19:45:19 +03:00
|
|
|
|
2021-06-23 13:07:44 +03:00
|
|
|
This change might require the update of already published programs on Aleo PM due to
|
2021-06-22 19:45:19 +03:00
|
|
|
Leo Manifest change. However it is possible to implement it in a backward-compatible
|
|
|
|
way.
|
|
|
|
|
2021-10-01 20:46:06 +03:00
|
|
|
It also introduces the danger of having recursive dependencies, but this problem is addressed in the Design section above.
|
2021-06-30 22:00:48 +03:00
|
|
|
|
2021-10-01 20:38:16 +03:00
|
|
|
## Effect on Ecosystem
|
2021-06-22 19:45:19 +03:00
|
|
|
|
2021-10-01 20:46:06 +03:00
|
|
|
The proposed improvement provides safety inside Leo programs and should not affect
|
|
|
|
the ecosystem except for the tools which use Leo directly (such as Aleo Studio).
|
2021-06-22 19:45:19 +03:00
|
|
|
|
2021-08-31 19:11:26 +03:00
|
|
|
It is possible that some of the proposed features will open new features on Aleo PM.
|
2021-06-22 19:45:19 +03:00
|
|
|
|
2021-10-01 20:38:16 +03:00
|
|
|
## Alternatives
|
2021-06-22 19:45:19 +03:00
|
|
|
|
2021-06-23 13:07:44 +03:00
|
|
|
Another approach to the stated cases is to keep everything as we have now but change
|
2021-10-01 20:46:06 +03:00
|
|
|
the way programs are imported and stored and make names unique. Also, the current
|
2021-08-31 19:11:26 +03:00
|
|
|
implementation provides some guarantees on import stablitity and consistency.
|