Arora Types
Shared type definitions for the Arora framework: the vocabulary the engine, modules, registries and clients use to describe modules, types and runtime values. It carries no engine dependencies, so it is safe to depend on from tools, bindings and remote clients.
High-level vs. low-level types
High-level types use names to reference other entities. Names are meant to be resolved using a registry, or local indexes associating UUIDs to names.
Low-level types are produced for contexts where UUIDs are sufficient, if not more efficient for looking them up.
Module
The "high-level"
ModuleDefinition
completely describes a module to implement. It is usually saved as a module.yaml
file (using serde_yaml). It can be used by the
code generators of
arora-module-cli
to produce the proper bindings for a module.
The "low-level" format of a module is called a
Header,
and is produced by the code generators under the file name header.yaml. It is
used to load the module in the engine, with
arora-cli.
Modules may export symbols, so that they can be called by any client. Modules may also declare symbols to import from other modules, so that the right bindings are made available in the implementation. The only symbols supported so far are functions. Their declaration may involve references to existing types:
- directly (
TypeRef::Scalar) - as the element type of an array (
TypeRef::Array) - as the key or value type of a map (
TypeRef::Map). This kind of reference is not used in this project, in practice.
Type (ty)
Structured types can be described in both high-level or low-level ways, so that they can be used in both high-level or low-level modules. This library can describe:
- primitive types,
equivalent in Rust to:
bool,u8,u16,u32,u64,i8,i16,i32,i64,f32,f64,String. - enumerations, similar to Rust
enums: each variant can hold a value of any other type, and does not necessarily translate into an integer. - structures, similar to Rust
structs and C / C++ PODs: each field has a name and holds a value.
Value
A Value
describes a value defined in the low-level types. It is generic and
can also be serialized (using serde). For other kinds
of conversions a common error type is suggested:
arora_types::value::ConversionError.
Values are useful at runtime to pass arguments to functions, but also to
describe default_values for function parameters.
Note: we call "parameter" the declaration of what a function may accept as inputs (or outputs, if
mutable). We call "argument" the actual value passed to the function.
Serializing a Value (value_serde)
value_serde
converts a Value to and from other representations. One distinction
runs through all of it: does the data carry real type identity (explicit
UUIDs), or only field names? That is the difference between a Structure and a
KeyValue, and it decides which layer you are in.
- the basic serde bridge — no declared type. Any Rust
Serialize/Deserializetype converts to and from aValuewithto_value/from_value. With no type to supply ids, a struct becomes aKeyValue: a name-keyed map that carries each field's name — not aStructure. This is deliberate. Minting an id by hashing a field or type name would be a false identity: it collides, and it silently changes the moment the field or struct is renamed. So when there are no real ids, the honest form keeps the names. (Rust maps becomeKeyValues the same way; an enum keeps its variant tag as anEnumerationwhose payload is aKeyValue.) - the seeded / id-based bridge — a declared type supplies the ids. The same
conversion, but a declared
ty::low::Typesupplies the real ids, so the struct becomes aStructurecarrying the type's and fields' declared UUIDs (to_value_seeded/from_value_seeded). TheTypeis normally generated straight from the Rust type with#[derive(AroraType)]— which requires an explicit#[arora(id = "…")]on the type and each field, precisely so the ids are stable rather than name hashes. Use this whenever identity must survive a rename or cross the wire. - the type-directed walk — a
Valueto and from a wire format (the arora binary buffers, or ROS 2 CDR), driven by a runtimety::low::Typeand aTypeRegistrythat resolves the types nested fields reference.
In one line: no ids ⇒ KeyValue (the names are the key); declared ids ⇒
Structure (the UUIDs are the key).
use ;
// Basic serde — no type, so a name-keyed KeyValue.
let kv = to_value.unwrap;
assert!;
// Id-based — declared UUIDs, so a Structure keyed by those ids.
let = arora_type_with_registry;
let s = to_value_seeded.unwrap;
assert!;
Writing a new wire format
A wire format is a
ValueWriter
/ ValueReader pair. You implement the primitive read/write operations and the
struct framing; the walk (write_value / read_value) drives them over a
ty::low::Type. You never match on Value variants or recurse the type
yourself — the walk does that, in the type's declared field order, and validates
the value against the type as it goes.
A writer receives each datum in turn, plus explicit struct framing:
use ;
use Uuid;
/// A minimal writer: a length-prefixed little-endian binary format.
Driving it is one call: write_value(&ty, ®istry, &value, &mut MyWriter::default()).
The reader is the mirror image, and takes the shape from the type. Struct framing on read is directed by the walk — it passes the expected id and field count — so a reader either validates them against its own framing or ignores them:
The one decision a new format makes is whether it is self-describing or positional, illustrated by the two backends already in the tree:
- self-describing — the arora buffers backend
(
arora-buffers) writes a type tag before each datum; on read it consumes that tag and validates it against the type the walk asked for.begin_struct/begin_fieldemit the id and count;enter_struct/enter_fieldread and check them. - positional — the ROS 2 CDR backend (
arora-bridge-ros2'scdrmodule) writes no framing at all: the type alone determines the layout, so the framing methods are no-ops and the reader takes each field's type from the walk.
The walk covers scalars, strings, nested structures and homogeneous arrays. A
scalar array goes through the write_*_array / read_*_array bulk methods (the
element type framed once, not re-tagged per element); an array of structures
through begin_struct_array / begin_struct_element, each element a headerless
struct body. Enumerations, options and maps extend the trait and the walk
together.
Web Bindings
The Value type is exposed to JavaScript/TypeScript via WebAssembly bindings
(published as the @semio-ai/arora-types npm package). This lets you work with
Arora values from JavaScript environments.
Using from JavaScript/TypeScript
import { Value, ValueType } from "@semio-ai/arora-types";
// Create values with explicit types
const num = new Value(ValueType.F64, 3.14);
const str = new Value(ValueType.String, "hello");
const bool = new Value(ValueType.Boolean, true);
// Get the type and value
console.log(num.type); // ValueType.F64
console.log(num.get()); // 3.14
// Auto-detect types from JavaScript values
const autoNum = Value.from(42); // Detects as F64
const autoStr = Value.from("world"); // Detects as String
const autoBool = Value.from(false); // Detects as Boolean
const autoNull = Value.from(null); // Converts to Unit
// Arrays
const numArr = new Value(ValueType.ArrayF64, [1.0, 2.0, 3.0]);
const mixedArr = Value.from([42, "text", true]); // ArrayValue
// Key-value objects
const obj = Value.from({ name: "Alice", age: 30 });
console.log(obj.type); // ValueType.KeyValue
console.log(obj.get()); // { name: "Alice", age: 30 }
// Mutable values with type checking
const val = new Value(ValueType.I32, 10);
val.set(20); // OK
val.set("x"); // Error: type mismatch
Type mapping
| Rust Type | WASM ValueType |
JavaScript Type | Notes |
|---|---|---|---|
() |
Unit |
null |
|
bool |
Boolean |
boolean |
|
u8, u16, u32, u64 |
U8, U16, U32, U64 |
number |
Range validated |
i8, i16, i32, i64 |
I8, I16, I32, I64 |
number |
Range validated |
f32, f64 |
F32, F64 |
number |
Default for auto-detection |
String |
String |
string |
|
Option<T> |
Option |
T | null |
|
Vec<T> |
Array* |
T[] |
Typed arrays |
Value[] |
ArrayValue |
any[] |
Mixed-type arrays |
KeyValue |
KeyValue |
object |
Plain objects |
Structure |
Structure |
object |
With id and fields |
Enumeration |
Enumeration |
object |
With id, variant_id, value |
Uuid |
Uuid |
string |
UUID string |
Building and testing the bindings
# Build the WASM module (creates a pkg/ directory for wasm32-unknown-unknown)
# Run the JS integration tests against the locally built pkg/
The integration tests verify that all ValueType values are exposed, that value
construction/retrieval works for every primitive type, that integer range and
set() type checks hold, and that arrays, auto-detection and KeyValue objects
behave as expected.
License
MIT.