You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Valor: A Multi-Target, Transport-Agnostic Runtime for Modular Code Execution
Valor is a Rust runtime designed to run arbitrary code organized in a modular way, independent of the transport layer. It can be compiled for multiple targets, including server-side applications, WebAssembly (WASM/WASI), and embedded systems.
Design
Module Registry
Valor maintains a static, thread-safe registry of modules. Each module contains a collection of methods, along with arbitrary metadata in the form of extensions. This design allows for organized and manageable execution of code in different environments.
Attribute Macros
Valor provides three attribute macros: valor::module, valor::method, and valor::extensions. These macros are used to define modules and their associated methods and extensions.
valor::module: Defines a module. The module contains a collection of methods and metadata.
valor::method: Marks functions as methods of the containing module.
valor::extensions: Provides arbitrary metadata for methods or modules.
Module and Method Structures
Modules and methods in Valor are represented by the Module and Method structs, respectively. Both structs contain a name and a set of extensions. The Method struct also contains a function that can be called to execute the method.
Example Usage
Here's an example of how to define a module and its methods using Valor:
In this test, we create a Module, add it to the registry, and then verify that it was correctly added.
Future Work
The design of Valor allows for further expansion and adaptation to different use cases. Future plans include additional attribute macros for more granular control over methods, an expanded registry that can manage modules across multiple servers and applications, and potential integrations with different transport layers. Stay tuned for updates!
The text was updated successfully, but these errors were encountered:
Valor: A Multi-Target, Transport-Agnostic Runtime for Modular Code Execution
Valor is a Rust runtime designed to run arbitrary code organized in a modular way, independent of the transport layer. It can be compiled for multiple targets, including server-side applications, WebAssembly (WASM/WASI), and embedded systems.
Design
Module Registry
Valor maintains a static, thread-safe registry of modules. Each module contains a collection of methods, along with arbitrary metadata in the form of extensions. This design allows for organized and manageable execution of code in different environments.
Attribute Macros
Valor provides three attribute macros:
valor::module
,valor::method
, andvalor::extensions
. These macros are used to define modules and their associated methods and extensions.valor::module
: Defines a module. The module contains a collection of methods and metadata.valor::method
: Marks functions as methods of the containing module.valor::extensions
: Provides arbitrary metadata for methods or modules.Module and Method Structures
Modules and methods in Valor are represented by the
Module
andMethod
structs, respectively. Both structs contain a name and a set of extensions. TheMethod
struct also contains a function that can be called to execute the method.Example Usage
Here's an example of how to define a module and its methods using Valor:
In this test, we create a Module, add it to the registry, and then verify that it was correctly added.
Future Work
The design of Valor allows for further expansion and adaptation to different use cases. Future plans include additional attribute macros for more granular control over methods, an expanded registry that can manage modules across multiple servers and applications, and potential integrations with different transport layers. Stay tuned for updates!
The text was updated successfully, but these errors were encountered: