use crate::create_messages;
use std::{
error::Error as ErrorArg,
fmt::{Debug, Display},
};
create_messages!(
PackageError,
code_mask: 5000i32,
code_prefix: "PAK",
@backtraced
failed_to_get_input_file_entry {
args: (error: impl ErrorArg),
msg: format!("failed to get input file entry: {error}"),
help: None,
}
@backtraced
failed_to_get_input_file_type {
args: (file: impl Debug, error: impl ErrorArg),
msg: format!("failed to get input file `{file:?}` type: {error}"),
help: None,
}
@backtraced
invalid_input_file_type {
args: (file: impl Debug, type_: std::fs::FileType),
msg: format!("input file `{file:?}` has invalid type: {type_:?}"),
help: None,
}
@backtraced
failed_to_create_inputs_directory {
args: (error: impl ErrorArg),
msg: format!("failed creating inputs directory {error}"),
help: None,
}
@backtraced
failed_to_read_circuit_file {
args: (path: impl Debug),
msg: format!("Cannot read struct file from the provided file path - {path:?}"),
help: None,
}
@backtraced
failed_to_read_inputs_directory {
args: (error: impl ErrorArg),
msg: format!("failed reading inputs directory {error}"),
help: None,
}
@backtraced
failed_to_read_input_file {
args: (path: impl Debug),
msg: format!("Cannot read input file from the provided file path - {path:?}"),
help: None,
}
@backtraced
failed_to_read_snapshot_file {
args: (path: impl Debug),
msg: format!("Cannot read snapshot file from the provided file path - {path:?}"),
help: None,
}
@backtraced
failed_to_read_checksum_file {
args: (path: impl Debug),
msg: format!("Cannot read checksum file from the provided file path - {path:?}"),
help: None,
}
@backtraced
io_error_circuit_file {
args: (error: impl ErrorArg),
msg: format!("IO error struct file from the provided file path - {error}"),
help: None,
}
@backtraced
io_error_checksum_file {
args: (error: impl ErrorArg),
msg: format!("IO error checksum file from the provided file path - {error}"),
help: None,
}
@backtraced
io_error_main_file {
args: (error: impl ErrorArg),
msg: format!("IO error main file from the provided file path - {error}"),
help: None,
}
@backtraced
failed_to_remove_circuit_file {
args: (path: impl Debug),
msg: format!("failed removing struct file from the provided file path - {path:?}"),
help: None,
}
@backtraced
failed_to_remove_checksum_file {
args: (path: impl Debug),
msg: format!("failed removing checksum file from the provided file path - {path:?}"),
help: None,
}
@backtraced
failed_to_remove_snapshot_file {
args: (path: impl Debug),
msg: format!("failed removing snapshot file from the provided file path - {path:?}"),
help: None,
}
@backtraced
io_error_input_file {
args: (error: impl ErrorArg),
msg: format!("IO error input file from the provided file path - {error}"),
help: None,
}
@backtraced
io_error_gitignore_file {
args: (error: impl ErrorArg),
msg: format!("IO error gitignore file from the provided file path - {error}"),
help: None,
}
@backtraced
failed_to_create_source_directory {
args: (error: impl ErrorArg),
msg: format!("Failed creating source directory {error}."),
help: None,
}
@backtraced
failed_to_get_leo_file_entry {
args: (error: impl ErrorArg),
msg: format!("Failed to get Leo file entry: {error}."),
help: None,
}
@backtraced
failed_to_get_leo_file_extension {
args: (extension: impl Debug),
msg: format!("Failed to get Leo file extension: {extension:?}."),
help: None,
}
@backtraced
invalid_leo_file_extension {
args: (file: impl Debug, extension: impl Debug),
msg: format!("Source file `{file:?}` has invalid extension: {extension:?}."),
help: None,
}
@backtraced
failed_to_initialize_package {
args: (package: impl Display, path: impl Debug),
msg: format!("failed to initialize package {package} {path:?}"),
help: None,
}
@backtraced
invalid_package_name {
args: (package: impl Display),
msg: format!("invalid project name {package}"),
help: None,
}
@backtraced
directory_not_found {
args: (dirname: impl Display, path: impl Display),
msg: format!("The `{dirname}` does not exist at `{path}`."),
help: None,
}
@backtraced
failed_to_create_directory {
args: (dirname: impl Display, error: impl ErrorArg),
msg: format!("failed to create directory `{dirname}`, error: {error}."),
help: None,
}
@backtraced
failed_to_remove_directory {
args: (dirname: impl Display, error: impl ErrorArg),
msg: format!("failed to remove directory: {dirname}, error: {error}"),
help: None,
}
@backtraced
failed_to_read_file {
args: (path: impl Display, error: impl ErrorArg),
msg: format!("failed to read file: {path}, error: {error}"),
help: None,
}
@backtraced
failed_to_get_file_name {
args: (),
msg: "Failed to get names of Leo files in the `src/` directory.".to_string(),
help: Some("Check your `src/` directory for invalid file names.".to_string()),
}
@backtraced
failed_to_set_cwd {
args: (dir: impl Display, error: impl ErrorArg),
msg: format!("Failed to set current working directory to `{dir}`. Error: {error}."),
help: None,
}
@backtraced
failed_to_open_manifest {
args: (error: impl Display),
msg: format!("Failed to open manifest file: {error}"),
help: Some("Create a package by running `leo new`.".to_string()),
}
@backtraced
failed_to_open_aleo_file {
args: (error: impl Display),
msg: format!("Failed to open Aleo file: {error}"),
help: Some("Create a package by running `leo new`.".to_string()),
}
@backtraced
failed_to_create_aleo_file {
args: (error: impl Display),
msg: format!("Failed to create Aleo file: {error}."),
help: None,
}
@backtraced
failed_to_write_aleo_file {
args: (error: impl Display),
msg: format!("Failed to write aleo file: {error}."),
help: None,
}
@backtraced
failed_to_remove_aleo_file {
args: (error: impl Display),
msg: format!("Failed to remove aleo file: {error}."),
help: None,
}
@backtraced
empty_source_directory {
args: (),
msg: "The `src/` directory is empty.".to_string(),
help: Some("Add a `main.leo` file to the `src/` directory.".to_string()),
}
@backtraced
source_directory_can_contain_only_one_file {
args: (),
msg: "The `src/` directory can contain only one file and must be named `main.leo`.".to_string(),
help: None,
}
@backtraced
io_error_env_file {
args: (error: impl ErrorArg),
msg: format!("IO error env file from the provided file path - {error}"),
help: None,
}
);