Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Packages in hugr-model and envelope support. #2026

Merged
merged 7 commits into from
Apr 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 17 additions & 16 deletions hugr-core/src/envelope.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@
//! - Bit 7,6: Constant "01" to make some headers ascii-printable.
//!

#![allow(deprecated)]
// TODO: Due to a bug in `derive_more`
// (https://github.com/JelteF/derive_more/issues/419) we need to deactivate
// deprecation warnings here. We can reactivate them once the bug is fixed by
// https://github.com/JelteF/derive_more/pull/454.

mod header;

pub use header::{EnvelopeConfig, EnvelopeFormat, ZstdConfig, MAGIC_NUMBERS};
Expand Down Expand Up @@ -161,9 +167,11 @@ pub enum EnvelopeError {
ZstdUnsupported,
/// Tried to encode a package with multiple HUGRs, when only 1 was expected.
#[display(
"Packages with multiple HUGRs are currently unsupported. Tried to encode {count} HUGRs, when 1 was expected."
)]
"Packages with multiple HUGRs are currently unsupported. Tried to encode {count} HUGRs, when 1 was expected."
)]
#[from(ignore)]
/// Deprecated: Packages with multiple HUGRs is a legacy feature that is no longer supported.
#[deprecated(since = "0.15.2", note = "Multiple HUGRs are supported via packages.")]
MultipleHugrs {
/// The number of HUGRs in the package.
count: usize,
Expand Down Expand Up @@ -244,7 +252,7 @@ fn decode_model(
extension_registry: &ExtensionRegistry,
format: EnvelopeFormat,
) -> Result<Package, EnvelopeError> {
use crate::{import::import_hugr, Extension};
use crate::{import::import_package, Extension};
use hugr_model::v0::bumpalo::Bump;

if format.model_version() != Some(0) {
Expand All @@ -255,7 +263,7 @@ fn decode_model(
}

let bump = Bump::default();
let module_list = hugr_model::v0::binary::read_from_reader(&mut stream, &bump)?;
let model_package = hugr_model::v0::binary::read_from_reader(&mut stream, &bump)?;

let mut extension_registry = extension_registry.clone();
if format.append_extensions() {
Expand All @@ -266,9 +274,7 @@ fn decode_model(
}
}

// TODO: Import multiple hugrs from the model?
let hugr = import_hugr(&module_list, &extension_registry)?;
Ok(Package::new([hugr])?)
Ok(import_package(&model_package, &extension_registry)?)
}

/// Internal implementation of [`write_envelope`] to call with/without the zstd compression wrapper.
Expand Down Expand Up @@ -301,25 +307,20 @@ fn encode_model(
package: &Package,
format: EnvelopeFormat,
) -> Result<(), EnvelopeError> {
use crate::export::export_hugr;
use hugr_model::v0::{binary::write_to_writer, bumpalo::Bump};

use crate::export::export_package;

if format.model_version() != Some(0) {
return Err(EnvelopeError::FormatUnsupported {
format,
feature: None,
});
}

// TODO: Export multiple hugrs to the model?
if package.modules.len() != 1 {
return Err(EnvelopeError::MultipleHugrs {
count: package.modules.len(),
});
}
let bump = Bump::default();
let module = export_hugr(&package.modules[0], &bump);
write_to_writer(&module, &mut writer)?;
let model_package = export_package(package, &bump);
write_to_writer(&model_package, &mut writer)?;

if format.append_extensions() {
serde_json::to_writer(writer, &package.extensions.iter().collect_vec())?;
Expand Down
11 changes: 11 additions & 0 deletions hugr-core/src/export.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ use crate::{
ops::{
constant::CustomSerialized, DataflowBlock, DataflowOpTrait, OpName, OpTrait, OpType, Value,
},
package::Package,
std_extensions::{
arithmetic::{float_types::ConstF64, int_types::ConstInt},
collections::array::ArrayValue,
Expand All @@ -27,6 +28,16 @@ use hugr_model::v0::{
use petgraph::unionfind::UnionFind;
use std::fmt::Write;

/// Export a [`Package`] to its representation in the model.
pub fn export_package<'a>(package: &'a Package, bump: &'a Bump) -> table::Package<'a> {
let modules = package
.modules
.iter()
.map(|module| export_hugr(module, bump))
.collect();
table::Package { modules }
}

/// Export a [`Hugr`] graph to its representation in the model.
pub fn export_hugr<'a>(hugr: &'a Hugr, bump: &'a Bump) -> table::Module<'a> {
let mut ctx = Context::new(hugr, bump);
Expand Down
19 changes: 18 additions & 1 deletion hugr-core/src/import.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ use crate::{
ExitBlock, FuncDecl, FuncDefn, Input, LoadConstant, LoadFunction, Module, OpType, OpaqueOp,
Output, Tag, TailLoop, Value, CFG, DFG,
},
package::Package,
std_extensions::{
arithmetic::{float_types::ConstF64, int_types::ConstInt},
collections::array::ArrayValue,
Expand Down Expand Up @@ -79,7 +80,23 @@ macro_rules! error_uninferred {
($($e:expr),*) => { ImportError::Uninferred(format!($($e),*)) }
}

/// Import a `hugr` module from its model representation.
/// Import a [`Package`] from its model representation.
pub fn import_package(
package: &table::Package,
extensions: &ExtensionRegistry,
) -> Result<Package, ImportError> {
let modules = package
.modules
.iter()
.map(|module| import_hugr(module, extensions))
.collect::<Result<Vec<_>, _>>()?;

// This does not panic since the import already requires a module root.
let package = Package::new(modules).expect("non-module root");
Ok(package)
}

/// Import a [`Hugr`] module from its model representation.
pub fn import_hugr(
module: &table::Module,
extensions: &ExtensionRegistry,
Expand Down
10 changes: 5 additions & 5 deletions hugr-core/tests/model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
use std::str::FromStr;

use hugr::std_extensions::std_reg;
use hugr_core::{export::export_hugr, import::import_hugr};
use hugr_core::{export::export_package, import::import_package};
use hugr_model::v0 as model;

fn roundtrip(source: &str) -> String {
let bump = model::bumpalo::Bump::new();
let module_ast = model::ast::Module::from_str(source).unwrap();
let module_table = module_ast.resolve(&bump).unwrap();
let hugr = import_hugr(&module_table, &std_reg()).unwrap();
let exported_table = export_hugr(&hugr, &bump);
let package_ast = model::ast::Package::from_str(source).unwrap();
let package_table = package_ast.resolve(&bump).unwrap();
let core = import_package(&package_table, &std_reg()).unwrap();
let exported_table = export_package(&core, &bump);
let exported_ast = exported_table.as_ast().unwrap();
exported_ast.to_string()
}
Expand Down
2 changes: 2 additions & 0 deletions hugr-core/tests/snapshots/model__roundtrip_add.snap
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ expression: "roundtrip(include_str!(\"../../hugr-model/tests/fixtures/model-add.
---
(hugr 0)

(mod)

(import core.fn)

(import arithmetic.int.iadd)
Expand Down
2 changes: 2 additions & 0 deletions hugr-core/tests/snapshots/model__roundtrip_alias.snap
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ expression: "roundtrip(include_str!(\"../../hugr-model/tests/fixtures/model-alia
---
(hugr 0)

(mod)

(import core.fn)

(import arithmetic.int.types.int)
Expand Down
2 changes: 2 additions & 0 deletions hugr-core/tests/snapshots/model__roundtrip_call.snap
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ expression: "roundtrip(include_str!(\"../../hugr-model/tests/fixtures/model-call
---
(hugr 0)

(mod)

(import core.call)

(import core.load_const)
Expand Down
2 changes: 2 additions & 0 deletions hugr-core/tests/snapshots/model__roundtrip_cfg.snap
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ expression: "roundtrip(include_str!(\"../../hugr-model/tests/fixtures/model-cfg.
---
(hugr 0)

(mod)

(import core.make_adt)

(import core.ctrl)
Expand Down
2 changes: 2 additions & 0 deletions hugr-core/tests/snapshots/model__roundtrip_cond.snap
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ expression: "roundtrip(include_str!(\"../../hugr-model/tests/fixtures/model-cond
---
(hugr 0)

(mod)

(import core.fn)

(import core.adt)
Expand Down
2 changes: 2 additions & 0 deletions hugr-core/tests/snapshots/model__roundtrip_const.snap
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ expression: "roundtrip(include_str!(\"../../hugr-model/tests/fixtures/model-cons
---
(hugr 0)

(mod)

(import collections.array.array)

(import compat.const_json)
Expand Down
2 changes: 2 additions & 0 deletions hugr-core/tests/snapshots/model__roundtrip_constraints.snap
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ expression: "roundtrip(include_str!(\"../../hugr-model/tests/fixtures/model-cons
---
(hugr 0)

(mod)

(import collections.array.array)

(import core.nat)
Expand Down
2 changes: 2 additions & 0 deletions hugr-core/tests/snapshots/model__roundtrip_loop.snap
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ expression: "roundtrip(include_str!(\"../../hugr-model/tests/fixtures/model-loop
---
(hugr 0)

(mod)

(import core.make_adt)

(import core.type)
Expand Down
2 changes: 2 additions & 0 deletions hugr-core/tests/snapshots/model__roundtrip_params.snap
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ expression: "roundtrip(include_str!(\"../../hugr-model/tests/fixtures/model-para
---
(hugr 0)

(mod)

(import core.fn)

(import core.type)
Expand Down
4 changes: 4 additions & 0 deletions hugr-model/capnp/hugr-v0.capnp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ using LinkId = UInt32;
# The index of a `Link`.
using LinkIndex = UInt32;

struct Package {
modules @0 :List(Module);
}

struct Module {
root @0 :RegionId;
nodes @1 :List(Node);
Expand Down
Loading
Loading