1 unstable release
new 0.1.0 | Apr 4, 2025 |
---|
#152 in #identifier
Used in 68 crates
(65 directly)
15KB
94 lines
icentral-nodeid
icentral-nodeid is a Rust crate designed for precise and efficient management of node identifiers within a given range. This library provides robust interfaces for interacting with node ID ranges, mapping, and iteration, essential for distributed systems where node management is critical. It is tailored for advanced Rust developers who understand system architecture and node-based systems, such as distributed databases, cluster management, or complex event processing networks.
Overview
This crate offers a suite of interfaces:
- GetNodeIdRange: Obtain a vector representation of all node IDs within a specified range.
- GetLimitedNodeIdRange: Fetch node IDs with an optional cap on their number to facilitate optimized iteration.
- HasMapForNode: Determine if a map exists for a specified node for enhanced data management.
- MappedNodes: Retrieve nodes that have been mapped for nodes' traversal or management.
- NumNodes: Acquire the total number of nodes, supporting system analytics and monitoring.
Core Structs and Macros
- NodeIdRange: Characterizes the start and length of a node ID range. Supports length retrieval and iteration.
- NodeId: Models a single node identifier, implementable from
usize
. Provides utility methods such aszero
,bad
, andval
for flexible node ID management.
Example Usage
Here's a quick example of creating a new NodeIdRange
and iterating over it:
let range = NodeIdRange::new(0, 5);
for node in range {
println!("Node ID: {}", node);
}
Advantageous Features
- Easily generates and manipulates node ID ranges.
- Offers customizable node range limitations.
- Implements idiomatic Rust traits like
IntoIterator
for seamless integration into existing systems.
This README.md file was generated by an AI model and may not be 100% accurate; however, it should be pretty good.
This crate is in the process of being translated from c++ to rust. Currently, it still needs exhaustive testing. It is likely there currently exist many glitches which need to be fixed before proper usage. This crate is based on the original icentral program developed by Fuad Jamor. Please see the following repository for details: https://github.com/fjamour/icentral.
For progress updates, see the workspacer rust project.
Dependencies
~15–25MB
~386K SLoC