miden_objects/account/component/template/mod.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519
use alloc::{
collections::{btree_map::Entry, BTreeMap, BTreeSet},
string::{String, ToString},
vec::Vec,
};
use core::str::FromStr;
use assembly::Library;
use semver::Version;
use vm_core::utils::{ByteReader, ByteWriter, Deserializable, Serializable};
use vm_processor::DeserializationError;
use super::AccountType;
use crate::errors::AccountComponentTemplateError;
mod storage;
pub use storage::*;
// ACCOUNT COMPONENT TEMPLATE
// ================================================================================================
/// Represents a template containing a component's metadata and its associated library.
///
/// The [AccountComponentTemplate] encapsulates all necessary information to initialize and manage
/// an account component within the system. It includes the configuration details and the compiled
/// library code required for the component's operation.
///
/// A template can be instantiated into [AccountComponent](super::AccountComponent) objects.
/// The component metadata can be defined with placeholders that can be replaced at instantiation
/// time.
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct AccountComponentTemplate {
/// The component's metadata. This describes the component and how the storage is laid out,
/// alongside how storage values are initialized.
metadata: AccountComponentMetadata,
/// The account component's assembled code. This defines all functionality related to the
/// component.
library: Library,
}
impl AccountComponentTemplate {
/// Creates a new [AccountComponentTemplate].
///
/// This template holds everything needed to describe and implement a component, including the
/// compiled procedures (via the [Library]) and the metadata that defines the component’s
/// storage layout ([AccountComponentMetadata]). The metadata can include storage placeholders
/// that get filled in at the time of the [AccountComponent](super::AccountComponent)
/// instantiation.
pub fn new(metadata: AccountComponentMetadata, library: Library) -> Self {
Self { metadata, library }
}
/// Returns a reference to the template's [AccountComponentMetadata].
pub fn metadata(&self) -> &AccountComponentMetadata {
&self.metadata
}
/// Returns a reference to the underlying [Library] of this component.
pub fn library(&self) -> &Library {
&self.library
}
}
impl Serializable for AccountComponentTemplate {
fn write_into<W: vm_core::utils::ByteWriter>(&self, target: &mut W) {
target.write(&self.metadata);
target.write(&self.library);
}
}
impl Deserializable for AccountComponentTemplate {
fn read_from<R: vm_core::utils::ByteReader>(
source: &mut R,
) -> Result<Self, vm_processor::DeserializationError> {
// Read and deserialize the configuration from a TOML string.
let metadata: AccountComponentMetadata = source.read()?;
let library = Library::read_from(source)?;
Ok(AccountComponentTemplate::new(metadata, library))
}
}
// ACCOUNT COMPONENT METADATA
// ================================================================================================
/// Represents the full component template configuration.
///
/// An account component metadata describes the component alongside its storage layout.
/// On the storage layout, [placeholders](StoragePlaceholder) can be utilized to identify
/// [values](StorageValue) that should be provided at the moment of instantiation.
///
/// When the `std` feature is enabled, this struct allows for serialization and deserialization to
/// and from a TOML file.
///
/// # Guarantees
///
/// - The metadata's storage layout does not contain duplicate slots, and it always starts at slot
/// index 0.
/// - Storage slots are laid out in a contiguous manner.
/// - Storage placeholders can appear multiple times, but only if the expected [StorageValue] is of
/// the same type in all instances. The expected placeholders can be retrieved with
/// [AccountComponentMetadata::get_unique_storage_placeholders()], which returns a map from
/// [StoragePlaceholder] to [PlaceholderType] (which, in turn, indicates the expected value type
/// for the placeholder).
///
/// # Example
///
/// ```
/// # use semver::Version;
/// # use std::collections::BTreeSet;
/// # use miden_objects::{testing::account_code::CODE, account::{
/// # AccountComponent, AccountComponentMetadata, InitStorageData, StorageEntry,
/// # StoragePlaceholder, StorageValue,
/// # AccountComponentTemplate, FeltRepresentation, WordRepresentation},
/// # assembly::Assembler, Felt};
/// # fn main() -> Result<(), Box<dyn std::error::Error>> {
/// let first_felt = FeltRepresentation::Decimal(Felt::new(0u64));
/// let second_felt = FeltRepresentation::Decimal(Felt::new(1u64));
/// let third_felt = FeltRepresentation::Decimal(Felt::new(2u64));
/// // Templated element:
/// let last_element = FeltRepresentation::Template(StoragePlaceholder::new("foo")?);
///
/// let storage_entry = StorageEntry::new_value(
/// "test-entry",
/// Some("a test entry"),
/// 0,
/// WordRepresentation::Array([first_felt, second_felt, third_felt, last_element]),
/// );
///
/// let init_storage_data = InitStorageData::new([(
/// StoragePlaceholder::new("foo")?,
/// StorageValue::Felt(Felt::new(300u64)),
/// )]);
///
/// let component_template = AccountComponentMetadata::new(
/// "test name".into(),
/// "description of the component".into(),
/// Version::parse("0.1.0")?,
/// BTreeSet::new(),
/// vec![],
/// )?;
///
/// let library = Assembler::default().assemble_library([CODE]).unwrap();
/// let template = AccountComponentTemplate::new(component_template, library);
///
/// let component = AccountComponent::from_template(&template, &init_storage_data)?;
/// # Ok(())
/// # }
/// ```
#[derive(Debug, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "std", derive(serde::Deserialize, serde::Serialize))]
pub struct AccountComponentMetadata {
/// The human-readable name of the component.
name: String,
/// A brief description of what this component is and how it works.
description: String,
/// The version of the component using semantic versioning.
/// This can be used to track and manage component upgrades.
version: Version,
/// A set of supported target account types for this component.
targets: BTreeSet<AccountType>,
/// A list of storage entries defining the component's storage layout and initialization
/// values.
storage: Vec<StorageEntry>,
}
impl AccountComponentMetadata {
/// Create a new [AccountComponentMetadata].
///
/// # Errors
///
/// - If the specified storage slots contain duplicates.
/// - If the slot numbers do not start at zero.
/// - If the slots are not contiguous.
pub fn new(
name: String,
description: String,
version: Version,
targets: BTreeSet<AccountType>,
storage: Vec<StorageEntry>,
) -> Result<Self, AccountComponentTemplateError> {
let component = Self {
name,
description,
version,
targets,
storage,
};
component.validate()?;
Ok(component)
}
/// Retrieves a map of unique storage placeholders mapped to their expected type that require
/// a value at the moment of component instantiation.
///
/// These values will be used for
/// initializing storage slot values, or storage map entries. For a full example on how a
/// placeholder may be utilized, please refer to the docs for [AccountComponentMetadata].
///
/// Types for the returned storage placeholders are inferred based on their location in the
/// storage layout structure.
pub fn get_unique_storage_placeholders(&self) -> BTreeMap<StoragePlaceholder, PlaceholderType> {
let mut placeholder_map = BTreeMap::new();
for storage_entry in &self.storage {
for (placeholder, placeholder_type) in storage_entry.all_placeholders_iter() {
// The constructors of this type guarantee each placeholder has the same type, so
// reinserting them multiple times is fine.
placeholder_map.insert(placeholder.clone(), placeholder_type);
}
}
placeholder_map
}
/// Returns the name of the account component.
pub fn name(&self) -> &str {
&self.name
}
/// Returns the description of the account component.
pub fn description(&self) -> &str {
&self.description
}
/// Returns the semantic version of the account component.
pub fn version(&self) -> &Version {
&self.version
}
/// Returns the account types supported by the component.
pub fn targets(&self) -> &BTreeSet<AccountType> {
&self.targets
}
/// Returns the list of storage entries of the component.
pub fn storage_entries(&self) -> &Vec<StorageEntry> {
&self.storage
}
/// Validate the [AccountComponentMetadata].
///
/// # Errors
///
/// - If the specified storage slots contain duplicates.
/// - If the template contains multiple storage placeholders of different type.
/// - If the slot numbers do not start at zero.
/// - If the slots are not contiguous.
fn validate(&self) -> Result<(), AccountComponentTemplateError> {
let mut all_slots: Vec<u8> = self
.storage
.iter()
.flat_map(|entry| entry.slot_indices().iter().copied())
.collect();
// Check that slots start at 0 and are contiguous
all_slots.sort_unstable();
if let Some(&first_slot) = all_slots.first() {
if first_slot != 0 {
return Err(AccountComponentTemplateError::StorageSlotsDoNotStartAtZero(
first_slot,
));
}
}
for slots in all_slots.windows(2) {
if slots[1] == slots[0] {
return Err(AccountComponentTemplateError::DuplicateSlot(slots[0]));
}
if slots[1] != slots[0] + 1 {
return Err(AccountComponentTemplateError::NonContiguousSlots(slots[0], slots[1]));
}
}
// Check that placeholders do not appear more than once with a different type
let mut placeholders = BTreeMap::new();
for storage_entry in &self.storage {
for (placeholder, placeholder_type) in storage_entry.all_placeholders_iter() {
match placeholders.entry(placeholder.clone()) {
Entry::Occupied(entry) => {
// if already exists, make sure it's the same type
if *entry.get() != placeholder_type {
return Err(
AccountComponentTemplateError::StoragePlaceholderTypeMismatch(
placeholder.clone(),
*entry.get(),
placeholder_type,
),
);
}
},
Entry::Vacant(slot) => {
slot.insert(placeholder_type);
},
}
}
}
for entry in self.storage_entries() {
entry.validate()?;
}
Ok(())
}
}
// SERIALIZATION
// ================================================================================================
impl Serializable for AccountComponentMetadata {
fn write_into<W: ByteWriter>(&self, target: &mut W) {
self.name.write_into(target);
self.description.write_into(target);
self.version.to_string().write_into(target);
self.targets.write_into(target);
self.storage.write_into(target);
}
}
impl Deserializable for AccountComponentMetadata {
fn read_from<R: ByteReader>(source: &mut R) -> Result<Self, DeserializationError> {
Ok(Self {
name: String::read_from(source)?,
description: String::read_from(source)?,
version: semver::Version::from_str(&String::read_from(source)?).map_err(
|err: semver::Error| DeserializationError::InvalidValue(err.to_string()),
)?,
targets: BTreeSet::<AccountType>::read_from(source)?,
storage: Vec::<StorageEntry>::read_from(source)?,
})
}
}
// TESTS
// ================================================================================================
#[cfg(test)]
mod tests {
use assembly::Assembler;
use assert_matches::assert_matches;
use storage::WordRepresentation;
use vm_core::{Felt, FieldElement};
use super::*;
use crate::{account::AccountComponent, testing::account_code::CODE, AccountError};
#[test]
fn test_contiguous_value_slots() {
let storage = vec![
StorageEntry::Value {
name: "slot0".into(),
description: None,
slot: 0,
value: WordRepresentation::Value(Default::default()),
},
StorageEntry::MultiSlot {
name: "slot1".into(),
description: None,
slots: vec![1, 2],
values: vec![
WordRepresentation::Array(Default::default()),
WordRepresentation::Value(Default::default()),
],
},
];
let original_config = AccountComponentMetadata::new(
"test".into(),
"desc".into(),
Version::parse("0.1.0").unwrap(),
BTreeSet::new(),
storage,
)
.unwrap();
let serialized = original_config.as_toml().unwrap();
let deserialized = AccountComponentMetadata::from_toml(&serialized).unwrap();
assert_eq!(deserialized, original_config)
}
#[test]
fn test_new_non_contiguous_value_slots() {
let storage = vec![
StorageEntry::Value {
name: "slot0".into(),
description: None,
slot: 0,
value: Default::default(),
},
StorageEntry::Value {
name: "slot2".into(),
description: None,
slot: 2,
value: Default::default(),
},
];
let result = AccountComponentMetadata::new(
"test".into(),
"desc".into(),
Version::parse("0.1.0").unwrap(),
BTreeSet::new(),
storage,
);
assert_matches!(result, Err(AccountComponentTemplateError::NonContiguousSlots(0, 2)));
}
#[test]
fn test_binary_serde_roundtrip() {
let storage = vec![
StorageEntry::MultiSlot {
name: "slot1".into(),
description: None,
slots: vec![1, 2],
values: vec![
WordRepresentation::Array(Default::default()),
WordRepresentation::Value(Default::default()),
],
},
StorageEntry::Value {
name: "slot0".into(),
description: None,
slot: 0,
value: WordRepresentation::Value(Default::default()),
},
];
let component_template = AccountComponentMetadata::new(
"test".into(),
"desc".into(),
Version::parse("0.1.0").unwrap(),
BTreeSet::new(),
storage,
)
.unwrap();
let library = Assembler::default().assemble_library([CODE]).unwrap();
let template = AccountComponentTemplate::new(component_template, library);
_ = AccountComponent::from_template(&template, &InitStorageData::default()).unwrap();
let serialized = template.to_bytes();
let deserialized = AccountComponentTemplate::read_from_bytes(&serialized).unwrap();
assert_eq!(deserialized, template)
}
#[test]
pub fn fail_duplicate_key() {
let toml_text = r#"
name = "Test Component"
description = "This is a test component"
version = "1.0.1"
targets = ["FungibleFaucet"]
[[storage]]
name = "map"
description = "A storage map entry"
slot = 0
values = [
{ key = "0x1", value = ["{{value.test}}", "0x1", "0x2", "0x3"] },
{ key = "0x1", value = ["0x1", "0x2", "0x3", "{{value.test}}"] },
]
"#;
let result = AccountComponentMetadata::from_toml(toml_text);
assert_matches!(result, Err(AccountComponentTemplateError::StorageMapHasDuplicateKeys(_)));
}
#[test]
pub fn fail_duplicate_key_instance() {
let toml_text = r#"
name = "Test Component"
description = "This is a test component"
version = "1.0.1"
targets = ["FungibleFaucet"]
[[storage]]
name = "map"
description = "A storage map entry"
slot = 0
values = [
{ key = ["0","0","0","1"], value = ["{{value.test}}", "0x1", "0x2", "0x3"] },
{ key = "{{word.test}}", value = ["0x1", "0x2", "0x3", "{{value.test}}"] },
]
"#;
let metadata = AccountComponentMetadata::from_toml(toml_text).unwrap();
let library = Assembler::default().assemble_library([CODE]).unwrap();
let template = AccountComponentTemplate::new(metadata, library);
let init_storage_data = InitStorageData::new([
(
StoragePlaceholder::new("word.test").unwrap(),
StorageValue::Word([Felt::ZERO, Felt::ZERO, Felt::ZERO, Felt::ONE]),
),
(StoragePlaceholder::new("value.test").unwrap(), StorageValue::Felt(Felt::ONE)),
]);
let account_component = AccountComponent::from_template(&template, &init_storage_data);
assert_matches!(
account_component,
Err(AccountError::AccountComponentTemplateInstantiationError(
AccountComponentTemplateError::StorageMapHasDuplicateKeys(_)
))
);
let valid_init_storage_data = InitStorageData::new([
(
StoragePlaceholder::new("word.test").unwrap(),
StorageValue::Word([Felt::new(30), Felt::new(20), Felt::new(10), Felt::ZERO]),
),
(StoragePlaceholder::new("value.test").unwrap(), StorageValue::Felt(Felt::ONE)),
]);
AccountComponent::from_template(&template, &valid_init_storage_data).unwrap();
}
}