zenoh_keyexpr/keyexpr_tree/traits/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
//
// Copyright (c) 2023 ZettaScale Technology
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License 2.0 which is available at
// http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
// which is available at https://www.apache.org/licenses/LICENSE-2.0.
//
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
//
// Contributors:
// ZettaScale Zenoh Team, <zenoh@zettascale.tech>
//
use alloc::boxed::Box;
use crate::{keyexpr, OwnedKeyExpr};
pub mod default_impls;
/// The basic immutable methods of all KeTrees.
pub trait IKeyExprTree<'a, Weight> {
/// The type of a given node in the KeTree.
///
/// The methods of nodes are exposed in the [`IKeyExprTreeNode`] and [`IKeyExprTreeNodeMut`] traits
type Node: IKeyExprTreeNodeMut<Weight>;
/// Accesses the node at `key` if it exists, treating KEs as if they were completely verbatim keys.
///
/// Returns `None` if `key` is not present in the KeTree.
fn node(&'a self, key: &keyexpr) -> Option<&'a Self::Node>;
/// Returns a reference to the weight of the node at `key` if it exists.
fn weight_at(&'a self, key: &keyexpr) -> Option<&'a Weight> {
self.node(key)
.and_then(<Self::Node as IKeyExprTreeNode<Weight>>::weight)
}
type TreeIterItem;
type TreeIter: Iterator<Item = Self::TreeIterItem>;
/// Iterates over the whole tree, including nodes with no weight.
///
/// [`IKeyExprTree::key_value_pairs`] provides an iterator over all key-value pairs in the tree.
fn tree_iter(&'a self) -> Self::TreeIter;
/// Iterates through weighted nodes, yielding their KE and Weight.
#[allow(clippy::type_complexity)]
fn key_value_pairs(
&'a self,
) -> core::iter::FilterMap<
Self::TreeIter,
fn(Self::TreeIterItem) -> Option<(OwnedKeyExpr, &'a Weight)>,
>
where
Self::TreeIterItem: AsNode<Box<Self::Node>>,
{
self.tree_iter().filter_map(|node| {
unsafe {
core::mem::transmute::<Option<&Weight>, Option<&Weight>>(node.as_node().weight())
}
.map(|w| (node.as_node().keyexpr(), w))
})
}
type IntersectionItem;
type Intersection: Iterator<Item = Self::IntersectionItem>;
/// Iterates over all nodes of the tree whose KE intersects with the given `key`.
///
/// Note that nodes without a `Weight` will also be yielded by the iterator.
///
/// You can obtain an iterator over key-value pairs using `iter.filter_map(|node| node.weight.map(|w| (node.keyexpr(), w)))`,
/// keep in mind that the full keyexpr of nodes is not stored in them by default, but computed using the tree:
/// if you need to get a node's key often, inserting its keyexpr in the `Weight` could be a good idea.
fn intersecting_nodes(&'a self, key: &'a keyexpr) -> Self::Intersection;
/// Returns an iterator over the KEs contained in the tree that intersect with `key`
fn intersecting_keys(
&'a self,
key: &'a keyexpr,
) -> Keys<Self::Intersection, Self::IntersectionItem>
where
Self::IntersectionItem: AsNode<Self::Node>,
Self::Node: IKeyExprTreeNode<Weight>,
{
self.intersecting_nodes(key)
.filter_map(filter_map_weighted_node_to_key)
}
type InclusionItem;
type Inclusion: Iterator<Item = Self::InclusionItem>;
/// Iterates over all nodes of the tree whose KE is included by the given `key`.
///
/// Note that nodes without a `Weight` will also be yielded by the iterator.
///
/// You can obtain an iterator over key-value pairs using `iter.filter_map(|node| node.weight.map(|w| (node.keyexpr(), w)))`,
/// keep in mind that the full keyexpr of nodes is not stored in them by default, but computed using the tree:
/// if you need to get a node's key often, inserting its keyexpr in the `Weight` could be a good idea.
fn included_nodes(&'a self, key: &'a keyexpr) -> Self::Inclusion;
/// Returns an iterator over the KEs contained in the tree that are included by `key`
fn included_keys(&'a self, key: &'a keyexpr) -> Keys<Self::Inclusion, Self::InclusionItem>
where
Self::InclusionItem: AsNode<Self::Node>,
Self::Node: IKeyExprTreeNode<Weight>,
{
self.included_nodes(key)
.filter_map(filter_map_weighted_node_to_key)
}
type IncluderItem;
type Includer: Iterator<Item = Self::IncluderItem>;
/// Iterates over all nodes of the tree whose KE includes the given `key`.
///
/// Note that nodes without a `Weight` will also be yielded by the iterator.
///
/// You can obtain an iterator over key-value pairs using `iter.filter_map(|node| node.weight.map(|w| (node.keyexpr(), w)))`,
/// keep in mind that the full keyexpr of nodes is not stored in them by default, but computed using the tree:
/// if you need to get a node's key often, inserting its keyexpr in the `Weight` could be a good idea.
fn nodes_including(&'a self, key: &'a keyexpr) -> Self::Includer;
/// Returns an iterator over the KEs contained in the tree that include `key`
fn keys_including(&'a self, key: &'a keyexpr) -> Keys<Self::Includer, Self::IncluderItem>
where
Self::IncluderItem: AsNode<Self::Node>,
Self::Node: IKeyExprTreeNode<Weight>,
{
self.nodes_including(key)
.filter_map(filter_map_weighted_node_to_key)
}
}
/// The basic mutable methods of all KeTrees.
pub trait IKeyExprTreeMut<'a, Weight>: IKeyExprTree<'a, Weight> {
/// Mutably accesses the node at `key` if it exists, treating KEs as if they were completely verbatim keys.
///
/// Returns `None` if `key` is not present. Use [`IKeyExprTreeMut::node_mut_or_create`] if you wish to construct the node if it doesn't exist.
fn node_mut<'b>(&'b mut self, key: &keyexpr) -> Option<&'b mut Self::Node>;
/// Returns a mutable reference to the weight of the node at `key`.
fn weight_at_mut(&'a mut self, key: &keyexpr) -> Option<&'a mut Weight> {
self.node_mut(key)
.and_then(<Self::Node as IKeyExprTreeNodeMut<Weight>>::weight_mut)
}
/// Mutably accesses the node at `key`, creating it if necessary.
fn node_mut_or_create<'b>(&'b mut self, key: &keyexpr) -> &'b mut Self::Node;
/// Inserts a weight at `key`, returning the previous weight if it existed.
fn insert(&mut self, key: &keyexpr, weight: Weight) -> Option<Weight> {
self.node_mut_or_create(key).insert_weight(weight)
}
/// Clears the weight of the node at `key`, but doesn't actually destroy the node.
///
/// To actually destroy nodes, [`IKeyExprTreeMut::prune_where`] or [`IKeyExprTreeMut::prune`] must be called.
fn remove(&mut self, key: &keyexpr) -> Option<Weight>;
type TreeIterItemMut;
type TreeIterMut: Iterator<Item = Self::TreeIterItemMut>;
/// Iterates over the whole tree, including nodes with no weight.
fn tree_iter_mut(&'a mut self) -> Self::TreeIterMut;
type IntersectionItemMut;
type IntersectionMut: Iterator<Item = Self::IntersectionItemMut>;
/// Iterates over all nodes of the tree whose KE intersects with the given `key`.
///
/// Note that nodes without a `Weight` will also be yielded by the iterator.
fn intersecting_nodes_mut(&'a mut self, key: &'a keyexpr) -> Self::IntersectionMut;
type InclusionItemMut;
type InclusionMut: Iterator<Item = Self::InclusionItemMut>;
/// Iterates over all nodes of the tree whose KE is included by the given `key`.
///
/// Note that nodes without a `Weight` will also be yielded by the iterator.
fn included_nodes_mut(&'a mut self, key: &'a keyexpr) -> Self::InclusionMut;
type IncluderItemMut;
type IncluderMut: Iterator<Item = Self::IncluderItemMut>;
/// Iterates over all nodes of the tree whose KE includes the given `key`.
///
/// Note that nodes without a `Weight` will also be yielded by the iterator.
fn nodes_including_mut(&'a mut self, key: &'a keyexpr) -> Self::IncluderMut;
/// Prunes node from the tree where the predicate returns `true`.
///
/// Note that nodes that still have children will not be pruned.
fn prune_where<F: FnMut(&mut Self::Node) -> bool>(&mut self, predicate: F);
/// Prunes empty nodes from the tree, unless they have at least one non-empty descendent.
fn prune(&mut self) {
self.prune_where(|node| node.weight().is_none())
}
}
/// The basic operations of a KeTree when a Token is necessary to access data.
pub trait ITokenKeyExprTree<'a, Weight, Token> {
/// An immutable guard to a node of the tree.
type Node: IKeyExprTreeNode<Weight>;
// A mutable guard to a node of the tree.
type NodeMut: IKeyExprTreeNodeMut<Weight>;
/// Accesses the node at `key` if it exists, treating KEs as if they were completely verbatim keys.
///
/// Returns `None` if `key` is not present in the KeTree.
fn node(&'a self, token: &'a Token, key: &keyexpr) -> Option<Self::Node>;
/// Mutably accesses the node at `key` if it exists, treating KEs as if they were completely verbatim keys.
///
/// Returns `None` if `key` is not present. Use [`IKeyExprTreeMut::node_mut_or_create`] if you wish to construct the node if it doesn't exist.
fn node_mut(&'a self, token: &'a mut Token, key: &keyexpr) -> Option<Self::NodeMut>;
/// Mutably accesses the node at `key`, creating it if necessary.
fn node_or_create(&'a self, token: &'a mut Token, key: &keyexpr) -> Self::NodeMut;
/// Inserts a weight at `key`, returning the previous weight if it existed.
fn insert(&'a self, token: &'a mut Token, at: &keyexpr, weight: Weight) -> Option<Weight> {
self.node_or_create(token, at).insert_weight(weight)
}
/// Clears the weight of the node at `key`, but doesn't actually destroy the node.
///
/// To actually destroy nodes, [`ITokenKeyExprTree::prune_where`] or [`ITokenKeyExprTree::prune`] must be called.
fn remove(&'a mut self, token: &'a mut Token, key: &keyexpr) -> Option<Weight> {
self.node_mut(token, key)
.and_then(|mut node| node.take_weight())
}
type TreeIterItem;
type TreeIter: Iterator<Item = Self::TreeIterItem>;
/// Iterates over the whole tree, including nodes with no weight.
fn tree_iter(&'a self, token: &'a Token) -> Self::TreeIter;
type TreeIterItemMut;
type TreeIterMut: Iterator<Item = Self::TreeIterItemMut>;
/// Iterates over the whole tree, including nodes with no weight.
fn tree_iter_mut(&'a self, token: &'a mut Token) -> Self::TreeIterMut;
type IntersectionItem;
type Intersection: Iterator<Item = Self::IntersectionItem>;
/// Iterates over all nodes of the tree whose KE intersects with the given `key`.
///
/// Note that nodes without a `Weight` will also be yielded by the iterator.
///
/// You can obtain an iterator over key-value pairs using `iter.filter_map(|node| node.weight.map(|w| (node.keyexpr(), w)))`,
/// keep in mind that the full keyexpr of nodes is not stored in them by default, but computed using the tree:
/// if you need to get a node's key often, inserting its keyexpr in the `Weight` could be a good idea.
fn intersecting_nodes(&'a self, token: &'a Token, key: &'a keyexpr) -> Self::Intersection;
/// Returns an iterator over the KEs contained in the tree that intersect with `key`
fn intersecting_keys(
&'a self,
token: &'a Token,
key: &'a keyexpr,
) -> Keys<Self::Intersection, Self::IntersectionItem>
where
Self::IntersectionItem: AsNode<Self::Node>,
Self::Node: IKeyExprTreeNode<Weight>,
{
self.intersecting_nodes(token, key)
.filter_map(filter_map_weighted_node_to_key)
}
type IntersectionItemMut;
type IntersectionMut: Iterator<Item = Self::IntersectionItemMut>;
/// Iterates over all nodes of the tree whose KE intersects with the given `key`.
///
/// Note that nodes without a `Weight` will also be yielded by the iterator.
fn intersecting_nodes_mut(
&'a self,
token: &'a mut Token,
key: &'a keyexpr,
) -> Self::IntersectionMut;
type InclusionItem;
type Inclusion: Iterator<Item = Self::InclusionItem>;
/// Iterates over all nodes of the tree whose KE is included by the given `key`.
///
/// Note that nodes without a `Weight` will also be yielded by the iterator.
fn included_nodes(&'a self, token: &'a Token, key: &'a keyexpr) -> Self::Inclusion;
/// Returns an iterator over the KEs contained in the tree that are included by `key`
fn included_keys(
&'a self,
token: &'a Token,
key: &'a keyexpr,
) -> Keys<Self::Inclusion, Self::InclusionItem>
where
Self::InclusionItem: AsNode<Self::Node>,
Self::Node: IKeyExprTreeNode<Weight>,
{
self.included_nodes(token, key)
.filter_map(filter_map_weighted_node_to_key)
}
type InclusionItemMut;
type InclusionMut: Iterator<Item = Self::InclusionItemMut>;
/// Iterates over all nodes of the tree whose KE is included by the given `key`.
///
/// Note that nodes without a `Weight` will also be yielded by the iterator.
fn included_nodes_mut(&'a self, token: &'a mut Token, key: &'a keyexpr) -> Self::InclusionMut;
type IncluderItem;
type Includer: Iterator<Item = Self::IncluderItem>;
/// Iterates over all nodes of the tree whose KE includes the given `key`.
///
/// Note that nodes without a `Weight` will also be yielded by the iterator.
fn nodes_including(&'a self, token: &'a Token, key: &'a keyexpr) -> Self::Includer;
/// Returns an iterator over the KEs contained in the tree that include `key`
fn keys_including(
&'a self,
token: &'a Token,
key: &'a keyexpr,
) -> Keys<Self::Includer, Self::IncluderItem>
where
Self::IncluderItem: AsNode<Self::Node>,
Self::Node: IKeyExprTreeNode<Weight>,
{
self.nodes_including(token, key)
.filter_map(filter_map_weighted_node_to_key)
}
type IncluderItemMut;
type IncluderMut: Iterator<Item = Self::IncluderItemMut>;
/// Iterates over all nodes of the tree whose KE includes the given `key`.
///
/// Note that nodes without a `Weight` will also be yielded by the iterator.
fn nodes_including_mut(&'a self, token: &'a mut Token, key: &'a keyexpr) -> Self::IncluderMut;
type PruneNode: IKeyExprTreeNodeMut<Weight>;
fn prune_where<F: FnMut(&mut Self::PruneNode) -> bool>(&self, token: &mut Token, predicate: F);
fn prune(&self, token: &mut Token) {
self.prune_where(token, |node| node.weight().is_none())
}
}
/// The non-mutating methods of a KeTree node.
pub trait IKeyExprTreeNode<Weight>: UIKeyExprTreeNode<Weight> {
/// Access the parent node if it exists (the node isn't the first chunk of a key-expression).
fn parent(&self) -> Option<&Self::Parent> {
unsafe { self.__parent() }
}
/// Compute this node's full key expression.
///
/// Note that KeTrees don't normally store each node's full key expression.
/// If you need to repeatedly access a node's full key expression, it is suggested
/// to store that key expression as part of the node's `Weight` (it's optional value).
fn keyexpr(&self) -> OwnedKeyExpr {
unsafe { self.__keyexpr() }
}
/// Access the node's weight (or value).
///
/// Weights can be assigned to a node through many of [`IKeyExprTreeNodeMut`]'s methods, as well as through [`IKeyExprTreeMut::insert`].
///
/// Nodes may not have a value in any of the following cases:
/// - The node is a parent to other nodes, but was never assigned a weight itself (or that weight has been removed).
/// - The node is a leaf of the KeTree whose value was [`IKeyExprTreeMut::remove`]d, but [`IKeyExprTreeMut::prune`] hasn't been called yet.
fn weight(&self) -> Option<&Weight> {
unsafe { self.__weight() }
}
/// Access a node's children.
fn children(&self) -> &Self::Children {
unsafe { self.__children() }
}
}
#[doc(hidden)]
pub trait UIKeyExprTreeNode<Weight> {
type Parent;
unsafe fn __parent(&self) -> Option<&Self::Parent>;
unsafe fn __keyexpr(&self) -> OwnedKeyExpr;
unsafe fn __weight(&self) -> Option<&Weight>;
type Child;
type Children: IChildren<Self::Child>;
unsafe fn __children(&self) -> &Self::Children;
}
/// The mutating methods of a KeTree node.
pub trait IKeyExprTreeNodeMut<Weight>: IKeyExprTreeNode<Weight> {
/// Mutably access the parent node if it exists (the node isn't the first chunk of a key-expression).
fn parent_mut(&mut self) -> Option<&mut Self::Parent>;
/// Mutably access the node's weight.
fn weight_mut(&mut self) -> Option<&mut Weight>;
/// Remove the node's weight.
fn take_weight(&mut self) -> Option<Weight>;
/// Assign a weight to the node, returning the previous weight if the node had one.
fn insert_weight(&mut self, weight: Weight) -> Option<Weight>;
/// Mutably access the node's children.
fn children_mut(&mut self) -> &mut Self::Children;
}
/// Nodes from a token-locked tree need a token to obtain read/write permissions.
///
/// This trait allows tokenizing a node, allowing to use [`IKeyExprTreeNode`] and [`IKeyExprTreeNodeMut`]'s methods on it.
pub trait ITokenKeyExprTreeNode<'a, Weight, Token> {
type Tokenized: IKeyExprTreeNode<Weight>;
/// Wrap the node with the an immutable reference to the token to allow immutable access to its contents.
fn tokenize(&'a self, token: &'a Token) -> Self::Tokenized;
type TokenizedMut: IKeyExprTreeNodeMut<Weight>;
/// Wrap the node with a mutable reference to the token to allow mutable access to its contents
fn tokenize_mut(&'a self, token: &'a mut Token) -> Self::TokenizedMut;
}
impl<'a, T: 'a, Weight, Token: 'a> ITokenKeyExprTreeNode<'a, Weight, Token> for T
where
(&'a T, &'a Token): IKeyExprTreeNode<Weight>,
(&'a T, &'a mut Token): IKeyExprTreeNodeMut<Weight>,
{
type Tokenized = (&'a T, &'a Token);
fn tokenize(&'a self, token: &'a Token) -> Self::Tokenized {
(self, token)
}
type TokenizedMut = (&'a T, &'a mut Token);
fn tokenize_mut(&'a self, token: &'a mut Token) -> Self::TokenizedMut {
(self, token)
}
}
/// Provides a data-structure to store children to the KeTree.
pub trait IChildrenProvider<T> {
type Assoc: Default + 'static;
}
pub trait IChildren<T: ?Sized> {
type Node: HasChunk + AsNode<T> + AsNodeMut<T>;
fn len(&self) -> usize;
fn is_empty(&self) -> bool {
self.len() == 0
}
fn child_at<'a>(&'a self, chunk: &keyexpr) -> Option<&'a Self::Node>;
fn child_at_mut<'a>(&'a mut self, chunk: &keyexpr) -> Option<&'a mut Self::Node>;
type Entry<'a, 'b>: IEntry<'a, 'b, T>
where
Self: 'a,
'a: 'b,
T: 'b;
fn remove(&mut self, chunk: &keyexpr) -> Option<Self::Node>;
fn entry<'a, 'b>(&'a mut self, chunk: &'b keyexpr) -> Self::Entry<'a, 'b>
where
Self: 'a + 'b,
T: 'b;
type Iter<'a>: Iterator<Item = &'a Self::Node>
where
Self: 'a,
Self::Node: 'a;
fn children<'a>(&'a self) -> Self::Iter<'a>
where
Self: 'a;
type IterMut<'a>: Iterator<Item = &'a mut Self::Node>
where
Self: 'a,
Self::Node: 'a;
fn children_mut<'a>(&'a mut self) -> Self::IterMut<'a>
where
Self: 'a;
type Intersection<'a>: Iterator<Item = &'a Self::Node>
where
Self: 'a,
Self::Node: 'a;
fn intersection<'a>(&'a self, key: &'a keyexpr) -> Self::Intersection<'a>;
type IntersectionMut<'a>: Iterator<Item = &'a mut Self::Node>
where
Self: 'a,
Self::Node: 'a;
fn intersection_mut<'a>(&'a mut self, key: &'a keyexpr) -> Self::IntersectionMut<'a>;
type Inclusion<'a>: Iterator<Item = &'a Self::Node>
where
Self: 'a,
Self::Node: 'a;
fn inclusion<'a>(&'a self, key: &'a keyexpr) -> Self::Inclusion<'a>;
type InclusionMut<'a>: Iterator<Item = &'a mut Self::Node>
where
Self: 'a,
Self::Node: 'a;
fn inclusion_mut<'a>(&'a mut self, key: &'a keyexpr) -> Self::InclusionMut<'a>;
fn filter_out<F: FnMut(&mut T) -> bool>(&mut self, predicate: &mut F);
}
pub trait IEntry<'a, 'b, T: ?Sized> {
fn get_or_insert_with<F: FnOnce(&'b keyexpr) -> T>(self, f: F) -> &'a mut T;
}
pub trait HasChunk {
fn chunk(&self) -> &keyexpr;
}
pub trait AsNode<T: ?Sized> {
fn as_node(&self) -> &T;
}
pub trait AsNodeMut<T: ?Sized>: AsNode<T> {
fn as_node_mut(&mut self) -> &mut T;
}
type Keys<I, Item> = core::iter::FilterMap<I, fn(Item) -> Option<OwnedKeyExpr>>;
fn filter_map_weighted_node_to_key<N: IKeyExprTreeNode<W>, I: AsNode<N>, W>(
item: I,
) -> Option<OwnedKeyExpr> {
let node: &N = item.as_node();
node.weight().is_some().then(|| node.keyexpr())
}