|
@@ -1,8 +1,12 @@
|
|
|
use smallvec::SmallVec;
|
|
|
|
|
|
-use super::*;
|
|
|
+use crate::entry::{ItemEntry, XEntry};
|
|
|
+use crate::lock::XLock;
|
|
|
+use crate::mark::XMark;
|
|
|
+use crate::node::{Height, ReadOnly, ReadWrite, XNode};
|
|
|
+use crate::xarray::{XArray, MAX_HEIGHT, SLOT_SIZE};
|
|
|
use core::marker::PhantomData;
|
|
|
-use core::ops::{Deref, DerefMut};
|
|
|
+use core::ops::Deref;
|
|
|
|
|
|
/// CursorState represents the current state of the cursor. Currently, there are two possible states:
|
|
|
/// 1. inactive: the state where the cursor is not positioned on any node.
|
|
@@ -55,18 +59,21 @@ impl<'a, I: ItemEntry, L: XLock, Operation> CursorState<'a, I, L, Operation> {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-/// A `Cursor` can traverse in the `XArray` and have a target `XEntry` to operate, which is stored in the `index` of `XArray`.
|
|
|
-/// `Cursor` can be only created by an `XArray`, and will hold its immutable reference, and can only perform read-only operations
|
|
|
+/// A `Cursor` can traverse in the `XArray` and have a target `XEntry` to operate,
|
|
|
+/// which is stored in the `index` of `XArray`. `Cursor` can be only created by an `XArray`,
|
|
|
+/// and will hold its immutable reference, and can only perform read-only operations
|
|
|
/// for the corresponding `XArray`.
|
|
|
///
|
|
|
-/// When creating a cursor, it will immediately traverses to touch the target XEntry in the XArray. If the cursor cannot reach to the node
|
|
|
-/// that can operate the target XEntry, its state will set to `Inactive`. A Cursor can reset its target index.
|
|
|
-/// Once it do this, it will also immediately traverses to touch the target XEntry. A Cursor can also perform `next()` to quickly operate the
|
|
|
-/// XEntry at the next index. If the Cursor perform reset or next and then have a target index that is not able to touch,
|
|
|
+/// When creating a cursor, it will immediately traverses to touch the target XEntry in the XArray.
|
|
|
+/// If the cursor cannot reach to the node that can operate the target XEntry, its state will set to `Inactive`.
|
|
|
+/// A Cursor can reset its target index. Once it do this, it will also immediately traverses to touch the target XEntry.
|
|
|
+/// A Cursor can also perform `next()` to quickly operate the XEntry at the next index.
|
|
|
+/// If the Cursor perform reset or next and then have a target index that is not able to touch,
|
|
|
/// the Cursor's state will also set to `Inactive`.
|
|
|
///
|
|
|
-/// Hence, at any given moment when no operation is being performed, a cursor will be positioned on the XNode and be ready to operate its target XEntry.
|
|
|
-/// If not, it means that the cursor is not able to touch the target `XEntry`.
|
|
|
+/// Hence, at any given moment when no operation is being performed, a cursor will be positioned on
|
|
|
+/// the XNode and be ready to operate its target XEntry. If not, it means that the cursor is not able
|
|
|
+/// to touch the target `XEntry`.
|
|
|
///
|
|
|
/// The cursor will also record all nodes passed from the head node to the target position in `passed_node`,
|
|
|
/// thereby assisting it in performing some operations that involve searching upwards.
|
|
@@ -76,7 +83,7 @@ pub struct Cursor<'a, I, L, M>
|
|
|
where
|
|
|
I: ItemEntry,
|
|
|
L: XLock,
|
|
|
- M: ValidMark,
|
|
|
+ M: Into<XMark>,
|
|
|
{
|
|
|
/// The `XArray` the cursor located in.
|
|
|
xa: &'a XArray<I, L, M>,
|
|
@@ -91,7 +98,7 @@ where
|
|
|
_marker: PhantomData<I>,
|
|
|
}
|
|
|
|
|
|
-impl<'a, I: ItemEntry, L: XLock, M: ValidMark> Cursor<'a, I, L, M> {
|
|
|
+impl<'a, I: ItemEntry, L: XLock, M: Into<XMark>> Cursor<'a, I, L, M> {
|
|
|
/// Create an `Cursor` to perform read related operations on the `XArray`.
|
|
|
pub(super) fn new(xa: &'a XArray<I, L, M>, index: u64) -> Self {
|
|
|
let mut cursor = Self {
|
|
@@ -106,19 +113,26 @@ impl<'a, I: ItemEntry, L: XLock, M: ValidMark> Cursor<'a, I, L, M> {
|
|
|
cursor
|
|
|
}
|
|
|
|
|
|
+ /// Get a reference to current operated entry of the Cursor.
|
|
|
+ fn ref_operated_entry(&self) -> Option<&'a XEntry<I, L>> {
|
|
|
+ // SAFETY: The lifetime of the reference to the operated XEntry is `'a`,
|
|
|
+ // during which there will not be another mut reference to the belonged xarray,
|
|
|
+ // nor will there be any modification operations on the XNode where it resides.
|
|
|
+ self.state
|
|
|
+ .node_info()
|
|
|
+ .map(|info| unsafe { info.0.ref_node_entry(info.1) })
|
|
|
+ }
|
|
|
+
|
|
|
/// Move the `Cursor` to the `XNode`, and update the cursor's state based on its target index.
|
|
|
/// Return a reference to the `XEntry` within the slots of the current XNode that needs to be operated on.
|
|
|
fn move_to(&mut self, node: &'a XNode<I, L, ReadOnly>) -> &'a XEntry<I, L> {
|
|
|
- let (current_entry, offset) = {
|
|
|
- let offset = node.entry_offset(self.index);
|
|
|
- let current_entry = node.ref_node_entry(offset);
|
|
|
- (current_entry, offset)
|
|
|
- };
|
|
|
+ let offset = node.entry_offset(self.index);
|
|
|
self.state.arrive_node(node, offset);
|
|
|
- current_entry
|
|
|
+ self.ref_operated_entry().unwrap()
|
|
|
}
|
|
|
|
|
|
- /// Reset the target index of the Cursor. Once set, it will immediately attempt to move the Cursor to touch the target XEntry.
|
|
|
+ /// Reset the target index of the Cursor. Once set, it will immediately attempt to move the Cursor
|
|
|
+ /// to touch the target XEntry.
|
|
|
pub fn reset_to(&mut self, index: u64) {
|
|
|
self.init();
|
|
|
self.index = index;
|
|
@@ -126,8 +140,8 @@ impl<'a, I: ItemEntry, L: XLock, M: ValidMark> Cursor<'a, I, L, M> {
|
|
|
}
|
|
|
|
|
|
/// Move the target index of the cursor to index + 1.
|
|
|
- /// If the target index's corresponding XEntry is not within the current XNode, the cursor will move to touch the target XEntry.
|
|
|
- /// If the move fails, the cursor's state will be set to `Inactive`.
|
|
|
+ /// If the target index's corresponding XEntry is not within the current XNode, the cursor will
|
|
|
+ /// move to touch the target XEntry. If the move fails, the cursor's state will be set to `Inactive`.
|
|
|
pub fn next(&mut self) {
|
|
|
// TODO: overflow;
|
|
|
self.index += 1;
|
|
@@ -155,7 +169,7 @@ impl<'a, I: ItemEntry, L: XLock, M: ValidMark> Cursor<'a, I, L, M> {
|
|
|
self.state.arrive_node(current_node, operation_offset);
|
|
|
|
|
|
while !current_node.is_leaf() {
|
|
|
- let next_entry = current_node.ref_node_entry(operation_offset);
|
|
|
+ let next_entry = self.ref_operated_entry().unwrap();
|
|
|
if !next_entry.is_node() {
|
|
|
self.init();
|
|
|
return;
|
|
@@ -164,17 +178,17 @@ impl<'a, I: ItemEntry, L: XLock, M: ValidMark> Cursor<'a, I, L, M> {
|
|
|
let next_node = next_entry.as_node().unwrap();
|
|
|
self.ancestors.push(current_node);
|
|
|
self.move_to(next_node);
|
|
|
- (current_node, operation_offset) = self.state.node_info().unwrap();
|
|
|
+ current_node = next_node;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
/// Judge if the target item is marked with the input `mark`.
|
|
|
/// If target item does not exist, the function will return `None`.
|
|
|
- pub fn is_marked(&mut self, mark: M) -> Option<bool> {
|
|
|
+ pub fn is_marked(&self, mark: M) -> bool {
|
|
|
if let Some((current_node, operation_offset)) = self.state.node_info() {
|
|
|
- Some(current_node.is_marked(operation_offset, mark.index()))
|
|
|
+ current_node.is_marked(operation_offset, mark.into().index())
|
|
|
} else {
|
|
|
- None
|
|
|
+ false
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -182,10 +196,11 @@ impl<'a, I: ItemEntry, L: XLock, M: ValidMark> Cursor<'a, I, L, M> {
|
|
|
///
|
|
|
/// Returns a reference to the `XEntry` at the target index if succeed.
|
|
|
/// If the cursor cannot reach to the target index, the method will return `None`.
|
|
|
- pub fn load(&mut self) -> Option<&'a I> {
|
|
|
- if let Some((current_node, operation_offset)) = self.state.node_info() {
|
|
|
- let entry = current_node.ref_node_entry(operation_offset);
|
|
|
+ pub fn load(&self) -> Option<&'a I> {
|
|
|
+ if let Some(entry) = self.ref_operated_entry() {
|
|
|
if entry.is_item() {
|
|
|
+ // SAFETY: If the XEntry is an item entry, its memory layout is guaranteed
|
|
|
+ // to be exactly the same as that of I.
|
|
|
return Some(unsafe { &*(entry as *const XEntry<I, L> as *const I) });
|
|
|
}
|
|
|
}
|
|
@@ -198,8 +213,7 @@ impl<'a, I: ItemEntry, L: XLock, M: ValidMark> Cursor<'a, I, L, M> {
|
|
|
/// If can not touch the target entry, the function will return `None`.
|
|
|
fn traverse_to_target(&mut self) -> Option<&'a XEntry<I, L>> {
|
|
|
if self.is_arrived() {
|
|
|
- let (current_node, operation_offset) = self.state.node_info().unwrap();
|
|
|
- return Some(current_node.ref_node_entry(operation_offset));
|
|
|
+ return self.ref_operated_entry();
|
|
|
}
|
|
|
|
|
|
let max_index = self.xa.max_index();
|
|
@@ -208,8 +222,8 @@ impl<'a, I: ItemEntry, L: XLock, M: ValidMark> Cursor<'a, I, L, M> {
|
|
|
}
|
|
|
self.move_to(self.xa.head().as_node().unwrap());
|
|
|
|
|
|
- let (mut current_node, operation_offset) = self.state.node_info().unwrap();
|
|
|
- let mut operated_entry = current_node.ref_node_entry(operation_offset);
|
|
|
+ let (mut current_node, _) = self.state.node_info().unwrap();
|
|
|
+ let mut operated_entry = self.ref_operated_entry().unwrap();
|
|
|
while !current_node.is_leaf() {
|
|
|
if !operated_entry.is_node() {
|
|
|
self.init();
|
|
@@ -230,46 +244,59 @@ impl<'a, I: ItemEntry, L: XLock, M: ValidMark> Cursor<'a, I, L, M> {
|
|
|
}
|
|
|
|
|
|
/// Return the target index of the cursor.
|
|
|
- pub fn index(&mut self) -> u64 {
|
|
|
+ pub fn index(&self) -> u64 {
|
|
|
self.index
|
|
|
}
|
|
|
|
|
|
/// Determine whether the cursor arrive at the node that can operate target entry.
|
|
|
- /// It can only be used before or after traversing. Since the cursor will only either not yet started or has already reached the target node
|
|
|
- /// when not in a traversal, it is reasonable to determine whether the cursor has reached its destination node by checking if the cursor is positioned on a node.
|
|
|
- pub fn is_arrived(&mut self) -> bool {
|
|
|
+ /// It can only be used before or after traversing. Since the cursor will only either
|
|
|
+ /// not yet started or has already reached the target node when not in a traversal,
|
|
|
+ /// it is reasonable to determine whether the cursor has reached its destination node
|
|
|
+ /// by checking if the cursor is positioned on a node.
|
|
|
+ pub fn is_arrived(&self) -> bool {
|
|
|
self.state.is_at_node()
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-/// A `CursorMut` can traverse in the `XArray` and have a target `XEntry` to operate, which is stored in the `index` of `XArray`.
|
|
|
-/// `CursorMut` can be only created by an `XArray`, and will hold its mutable reference, and can perform read and write operations
|
|
|
+/// A `CursorMut` can traverse in the `XArray` and have a target `XEntry` to operate,
|
|
|
+/// which is stored in the `index` of `XArray`. `CursorMut` can be only created by an `XArray`,
|
|
|
+/// and will hold its mutable reference, and can perform read and write operations
|
|
|
/// for the corresponding `XArray`.
|
|
|
///
|
|
|
-/// When creating a `CursorMut`, it will immediately traverses to touch the target XEntry in the XArray. If the `CursorMut` cannot reach to the node
|
|
|
-/// that can operate the target XEntry, its state will set to `Inactive`. A `CursorMut` can reset its target index.
|
|
|
-/// Once it do this, it will also immediately traverses to touch the target XEntry. A `CursorMut` can also perform `next()` to quickly operate the
|
|
|
-/// XEntry at the next index. If the `CursorMut` perform reset or next and then have a target index that is not able to touch,
|
|
|
-/// the `CursorMut`'s state will also set to `Inactive`.
|
|
|
+/// When creating a `CursorMut`, it will immediately traverses to touch the target XEntry in the XArray.
|
|
|
+/// If the `CursorMut` cannot reach to the node that can operate the target XEntry,
|
|
|
+/// its state will set to `Inactive`. A `CursorMut` can reset its target index.
|
|
|
+/// Once it do this, it will also immediately traverses to touch the target XEntry.
|
|
|
+/// A `CursorMut` can also perform `next()` to quickly operate the XEntry at the next index.
|
|
|
+/// If the `CursorMut` perform reset or next and then have a target index that is not able to touch,
|
|
|
+/// the `CursorMut`'s state will also set to `Inactive`.
|
|
|
///
|
|
|
-/// Hence, at any given moment when no operation is being performed, a `CursorMut` will be positioned on the XNode and be ready to operate its target XEntry.
|
|
|
-/// If not, it means that the `CursorMut` is not able to touch the target `XEntry`. For this situation, the `CursorMut`
|
|
|
+/// When CursorMut performs `reset_to()` and `next()` methods and moves its index,
|
|
|
+/// the CursorMut will no longer be exclusive.
|
|
|
+///
|
|
|
+/// Hence, at any given moment when no operation is being performed, a `CursorMut` will be
|
|
|
+/// positioned on the XNode and be ready to operate its target XEntry. If not, it means that the `CursorMut`
|
|
|
+/// is not able to touch the target `XEntry`. For this situation, the `CursorMut`
|
|
|
/// can invoke `store` method which will expand the XArray to guarantee to reach the target position.
|
|
|
///
|
|
|
-/// The `CursorMut` will also record all nodes passed from the head node to the target position in passed_node,
|
|
|
-/// thereby assisting it in performing some operations that involve searching upwards.
|
|
|
+/// The `CursorMut` will also record all nodes passed from the head node to the target position
|
|
|
+/// in passed_node, thereby assisting it in performing some operations that involve searching upwards.
|
|
|
///
|
|
|
-/// **Features for COW (Copy-On-Write).** The CursorMut guarantees that if it is exclusive, all nodes it traverses during the process are exclusively owned by the current XArray.
|
|
|
-/// If it finds that the node it is about to access is shared with another XArray due to a COW clone, it will trigger a COW to copy and create an exclusive node for access.
|
|
|
-/// Additionally, since it holds a mutable reference to the current XArray, it will not conflict with any other cursors on the XArray.
|
|
|
-/// CursorMut is set to exclusive when a modification is about to be performed
|
|
|
+/// **Features for COW (Copy-On-Write).** The CursorMut guarantees that if it is exclusive,
|
|
|
+/// all nodes it traverses during the process are exclusively owned by the current XArray.
|
|
|
+/// If it finds that the node it is about to access is shared with another XArray due to a COW clone,
|
|
|
+/// it will trigger a COW to copy and create an exclusive node for access. Additionally,
|
|
|
+/// since it holds a mutable reference to the current XArray, it will not conflict with
|
|
|
+/// any other cursors on the XArray. CursorMut is set to exclusive when a modification
|
|
|
+/// is about to be performed
|
|
|
///
|
|
|
-/// When a CursorMut doing write operation on XArray, it should not be affected by other CursorMuts or affect other Cursors.
|
|
|
+/// When a CursorMut doing write operation on XArray, it should not be affected by other CursorMuts
|
|
|
+/// or affect other Cursors.
|
|
|
pub struct CursorMut<'a, I, L, M>
|
|
|
where
|
|
|
I: ItemEntry,
|
|
|
L: XLock,
|
|
|
- M: ValidMark,
|
|
|
+ M: Into<XMark>,
|
|
|
{
|
|
|
/// The `XArray` the cursor located in.
|
|
|
xa: &'a mut XArray<I, L, M>,
|
|
@@ -286,7 +313,7 @@ where
|
|
|
_marker: PhantomData<I>,
|
|
|
}
|
|
|
|
|
|
-impl<'a, I: ItemEntry, L: XLock, M: ValidMark> CursorMut<'a, I, L, M> {
|
|
|
+impl<'a, I: ItemEntry, L: XLock, M: Into<XMark>> CursorMut<'a, I, L, M> {
|
|
|
/// Create an `CursorMut` to perform read and write operations on the `XArray`.
|
|
|
pub(super) fn new(xa: &'a mut XArray<I, L, M>, index: u64) -> Self {
|
|
|
let mut cursor = Self {
|
|
@@ -302,26 +329,66 @@ impl<'a, I: ItemEntry, L: XLock, M: ValidMark> CursorMut<'a, I, L, M> {
|
|
|
cursor
|
|
|
}
|
|
|
|
|
|
+ /// Get a reference to current operated entry of the CursorMut.
|
|
|
+ fn ref_operated_entry(&self) -> Option<&XEntry<I, L>> {
|
|
|
+ // SAFETY: The lifetime of the reference to the operated XEntry is equal to `&self`.
|
|
|
+ // Hence when the reference existing there will not be other mutable operation in current `CursorMut`,
|
|
|
+ // nor will there be any modification operations on the XNode where it resides.
|
|
|
+ self.state
|
|
|
+ .node_info()
|
|
|
+ .map(|info| unsafe { info.0.ref_node_entry(self.is_exclusive, info.1) })
|
|
|
+ }
|
|
|
+
|
|
|
+ /// Reborrow the target node with a longer lifetime `'a`.
|
|
|
+ ///
|
|
|
+ /// # Safety
|
|
|
+ ///
|
|
|
+ /// Users must ensure when this reborrowed reference exists, its corresponding XNode will not be removed.
|
|
|
+ pub(super) unsafe fn reborrow_node<Operation>(
|
|
|
+ &self,
|
|
|
+ node: &XNode<I, L, Operation>,
|
|
|
+ ) -> &'a XNode<I, L, Operation> {
|
|
|
+ &*(node as *const XNode<I, L, Operation>)
|
|
|
+ }
|
|
|
+
|
|
|
/// Move the `CursorMut` to the `XNode`, and update the cursor's state based on its target index.
|
|
|
/// Return a reference to the `XEntry` within the slots of the current XNode that needs to be operated on next.
|
|
|
- fn move_to(&mut self, node: &'a XNode<I, L, ReadWrite>) -> &'a XEntry<I, L> {
|
|
|
- let (current_entry, offset) = {
|
|
|
- let offset = node.entry_offset(self.index);
|
|
|
- let current_entry = node.ref_node_entry(self.is_exclusive, offset);
|
|
|
- (current_entry, offset)
|
|
|
- };
|
|
|
+ fn move_to(&mut self, node: &'a XNode<I, L, ReadWrite>) -> &XEntry<I, L> {
|
|
|
+ let offset = node.entry_offset(self.index);
|
|
|
self.state.arrive_node(node, offset);
|
|
|
- current_entry
|
|
|
+ self.ref_operated_entry().unwrap()
|
|
|
+ }
|
|
|
+
|
|
|
+ /// Initialize the Cursor to its initial state.
|
|
|
+ pub fn init(&mut self) {
|
|
|
+ self.state = CursorState::default();
|
|
|
+ self.ancestors = SmallVec::new();
|
|
|
+ self.is_exclusive = false;
|
|
|
}
|
|
|
|
|
|
- /// Reset the target index of the Cursor. Once set, it will immediately attempt to move the Cursor to touch the target XEntry.
|
|
|
+ /// Reset the target index of the Cursor. Once set, it will immediately attempt to move the
|
|
|
+ /// Cursor to touch the target XEntry.
|
|
|
pub fn reset_to(&mut self, index: u64) {
|
|
|
self.init();
|
|
|
self.index = index;
|
|
|
- self.is_exclusive = false;
|
|
|
self.traverse_to_target();
|
|
|
}
|
|
|
|
|
|
+ /// Load the `XEntry` at the current cursor index within the `XArray`.
|
|
|
+ ///
|
|
|
+ /// Returns a reference to the `XEntry` at the target index if succeed.
|
|
|
+ /// If the cursor cannot reach to the target index, the method will return `None`.
|
|
|
+ pub fn load(&self) -> Option<&I> {
|
|
|
+ if let Some(entry) = self.ref_operated_entry() {
|
|
|
+ if entry.is_item() {
|
|
|
+ // SAFETY: If the XEntry is an item entry, its memory layout is guaranteed
|
|
|
+ // to be exactly the same as that of I.
|
|
|
+ return Some(unsafe { &*(entry as *const XEntry<I, L> as *const I) });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ None
|
|
|
+ }
|
|
|
+
|
|
|
/// Stores the provided `XEntry` in the `XArray` at the position indicated by the current cursor index.
|
|
|
///
|
|
|
/// If the provided entry is the same as the current entry at the cursor position,
|
|
@@ -340,11 +407,13 @@ impl<'a, I: ItemEntry, L: XLock, M: ValidMark> CursorMut<'a, I, L, M> {
|
|
|
}
|
|
|
|
|
|
/// Move the target index of the cursor to index + 1.
|
|
|
- /// If the target index's corresponding XEntry is not within the current XNode, the cursor will move to touch the target XEntry.
|
|
|
- /// If the move fails, the cursor's state will be set to `Inactive`.
|
|
|
+ /// If the target index's corresponding XEntry is not within the current XNode, the cursor
|
|
|
+ /// will move to touch the target XEntry. If the move fails, the cursor's state will be
|
|
|
+ /// set to `Inactive`.
|
|
|
pub fn next(&mut self) {
|
|
|
// TODO: overflow;
|
|
|
self.index += 1;
|
|
|
+ self.is_exclusive = false;
|
|
|
if !self.is_arrived() {
|
|
|
return;
|
|
|
}
|
|
@@ -369,40 +438,44 @@ impl<'a, I: ItemEntry, L: XLock, M: ValidMark> CursorMut<'a, I, L, M> {
|
|
|
self.state.arrive_node(current_node, operation_offset);
|
|
|
|
|
|
while !current_node.is_leaf() {
|
|
|
- let next_entry = current_node.ref_node_entry(self.is_exclusive, operation_offset);
|
|
|
+ self.ancestors.push(current_node);
|
|
|
+ let next_entry = self.ref_operated_entry().unwrap();
|
|
|
if !next_entry.is_node() {
|
|
|
self.init();
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- let next_node = next_entry.as_node_mut().unwrap();
|
|
|
- self.ancestors.push(current_node);
|
|
|
+ // SAFETY: Cursor will move to the `next_node` and the current XNode will not be
|
|
|
+ // removed within this function.
|
|
|
+ let next_node = unsafe { self.reborrow_node(next_entry.as_node_mut().unwrap()) };
|
|
|
self.move_to(next_node);
|
|
|
- (current_node, operation_offset) = self.state.node_info().unwrap();
|
|
|
+ (current_node, _) = self.state.node_info().unwrap();
|
|
|
}
|
|
|
}
|
|
|
|
|
|
/// Mark the item at the target index in the `XArray` with the input `mark`.
|
|
|
/// If the item does not exist, return an Error.
|
|
|
///
|
|
|
- /// This operation will also mark all nodes along the path from the head node to the target node with the input `mark`,
|
|
|
- /// because a marked intermediate node should be equivalent to having a child node that is marked.
|
|
|
+ /// This operation will also mark all nodes along the path from the head node to the target node
|
|
|
+ /// with the input `mark`, because a marked intermediate node should be equivalent to
|
|
|
+ /// having a child node that is marked.
|
|
|
pub fn set_mark(&mut self, mark: M) -> Result<(), ()> {
|
|
|
self.ensure_exclusive_before_modify();
|
|
|
if let Some((current_node, operation_offset)) = self.state.node_info() {
|
|
|
- let item_entry = current_node.ref_node_entry(self.is_exclusive, operation_offset);
|
|
|
+ let item_entry = self.ref_operated_entry().unwrap();
|
|
|
if item_entry.is_null() {
|
|
|
return Err(());
|
|
|
}
|
|
|
|
|
|
- current_node.set_mark(operation_offset, mark.index());
|
|
|
+ let mark_index = mark.into().index();
|
|
|
+ current_node.set_mark(operation_offset, mark_index);
|
|
|
|
|
|
let mut offset_in_parent = current_node.offset_in_parent();
|
|
|
for ancestor in self.ancestors.iter().rev() {
|
|
|
- if ancestor.is_marked(offset_in_parent, mark.index()) {
|
|
|
+ if ancestor.is_marked(offset_in_parent, mark_index) {
|
|
|
break;
|
|
|
}
|
|
|
- ancestor.set_mark(offset_in_parent, mark.index());
|
|
|
+ ancestor.set_mark(offset_in_parent, mark_index);
|
|
|
offset_in_parent = ancestor.offset_in_parent();
|
|
|
}
|
|
|
Ok(())
|
|
@@ -414,23 +487,24 @@ impl<'a, I: ItemEntry, L: XLock, M: ValidMark> CursorMut<'a, I, L, M> {
|
|
|
/// Unset the input `mark` for the item at the target index in the `XArray`.
|
|
|
/// If the item does not exist, return an Error.
|
|
|
///
|
|
|
- /// This operation will also unset the input `mark` for all nodes along the path from the head node to the target node
|
|
|
- /// if the input `mark` have not marked any of their children.
|
|
|
+ /// This operation will also unset the input `mark` for all nodes along the path from the head node
|
|
|
+ /// to the target node if the input `mark` have not marked any of their children.
|
|
|
pub fn unset_mark(&mut self, mark: M) -> Result<(), ()> {
|
|
|
self.ensure_exclusive_before_modify();
|
|
|
if let Some((current_node, operation_offset)) = self.state.node_info() {
|
|
|
- let item_entry = current_node.ref_node_entry(self.is_exclusive, operation_offset);
|
|
|
+ let item_entry = self.ref_operated_entry().unwrap();
|
|
|
if item_entry.is_null() {
|
|
|
return Err(());
|
|
|
}
|
|
|
|
|
|
- current_node.unset_mark(operation_offset, mark.index());
|
|
|
+ let mark_index = mark.into().index();
|
|
|
+ current_node.unset_mark(operation_offset, mark_index);
|
|
|
|
|
|
- if current_node.is_mark_clear(mark.index()) {
|
|
|
+ if current_node.is_mark_clear(mark_index) {
|
|
|
let mut offset_in_parent = current_node.offset_in_parent();
|
|
|
for ancestor in self.ancestors.iter().rev() {
|
|
|
- ancestor.unset_mark(offset_in_parent, mark.index());
|
|
|
- if !ancestor.is_mark_clear(mark.index()) {
|
|
|
+ ancestor.unset_mark(offset_in_parent, mark_index);
|
|
|
+ if !ancestor.is_mark_clear(mark_index) {
|
|
|
break;
|
|
|
}
|
|
|
|
|
@@ -460,33 +534,39 @@ impl<'a, I: ItemEntry, L: XLock, M: ValidMark> CursorMut<'a, I, L, M> {
|
|
|
/// It then returns the reference to the `XEntry` stored in the slot corresponding to the target index.
|
|
|
/// A target operated XEntry must be an item entry.
|
|
|
/// If can not touch the target entry, the function will return `None`.
|
|
|
- fn traverse_to_target(&mut self) -> Option<&'a XEntry<I, L>> {
|
|
|
+ fn traverse_to_target(&mut self) -> Option<&XEntry<I, L>> {
|
|
|
if self.is_arrived() {
|
|
|
- let (current_node, operation_offset) = self.state.node_info().unwrap();
|
|
|
- return Some(current_node.ref_node_entry(self.is_exclusive, operation_offset));
|
|
|
+ return self.ref_operated_entry();
|
|
|
}
|
|
|
|
|
|
let max_index = self.xa.max_index();
|
|
|
if max_index < self.index || max_index == 0 {
|
|
|
return None;
|
|
|
}
|
|
|
- let head = self.xa.head_mut(self.is_exclusive).as_node_mut().unwrap();
|
|
|
- self.move_to(head);
|
|
|
|
|
|
- let (mut current_node, operation_offset) = self.state.node_info().unwrap();
|
|
|
- let mut operated_entry = current_node.ref_node_entry(self.is_exclusive, operation_offset);
|
|
|
+ if self.is_exclusive {
|
|
|
+ self.xa.ensure_head_exclusive();
|
|
|
+ }
|
|
|
+
|
|
|
+ let head = self.xa.head().as_node_mut().unwrap();
|
|
|
+ // SAFETY: Cursor will move to the `head` and the head will not be
|
|
|
+ // removed within this function.
|
|
|
+ self.move_to(unsafe { self.reborrow_node(head) });
|
|
|
+
|
|
|
+ let (mut current_node, _) = self.state.node_info().unwrap();
|
|
|
while !current_node.is_leaf() {
|
|
|
+ self.ancestors.push(current_node);
|
|
|
+ let operated_entry = self.ref_operated_entry().unwrap();
|
|
|
if !operated_entry.is_node() {
|
|
|
self.init();
|
|
|
return None;
|
|
|
}
|
|
|
-
|
|
|
- self.ancestors.push(current_node);
|
|
|
-
|
|
|
- current_node = operated_entry.as_node_mut().unwrap();
|
|
|
- operated_entry = self.move_to(current_node);
|
|
|
+ // SAFETY: Cursor will move to the `current_node` and it will not be
|
|
|
+ // removed within this function.
|
|
|
+ current_node = unsafe { self.reborrow_node(operated_entry.as_node_mut().unwrap()) };
|
|
|
+ self.move_to(current_node);
|
|
|
}
|
|
|
- Some(operated_entry)
|
|
|
+ self.ref_operated_entry()
|
|
|
}
|
|
|
|
|
|
/// Traverse the XArray and move to the node that can operate the target entry.
|
|
@@ -497,45 +577,53 @@ impl<'a, I: ItemEntry, L: XLock, M: ValidMark> CursorMut<'a, I, L, M> {
|
|
|
///
|
|
|
/// It then returns the reference to the `XEntry` stored in the slot corresponding to the target index.
|
|
|
/// A target operated XEntry must be an item entry.
|
|
|
- fn expand_and_traverse_to_target(&mut self) -> &'a XEntry<I, L> {
|
|
|
+ fn expand_and_traverse_to_target(&mut self) -> &XEntry<I, L> {
|
|
|
if self.is_arrived() {
|
|
|
- let (current_node, operation_offset) = self.state.node_info().unwrap();
|
|
|
- return current_node.ref_node_entry(self.is_exclusive, operation_offset);
|
|
|
+ return self.ref_operated_entry().unwrap();
|
|
|
}
|
|
|
|
|
|
self.expand_height();
|
|
|
- let head_ref = self.xa.head_mut(self.is_exclusive).as_node_mut().unwrap();
|
|
|
- self.move_to(head_ref);
|
|
|
|
|
|
- let (mut current_node, operation_offset) = self.state.node_info().unwrap();
|
|
|
- let mut operated_entry = current_node.ref_node_entry(self.is_exclusive, operation_offset);
|
|
|
+ if self.is_exclusive {
|
|
|
+ self.xa.ensure_head_exclusive();
|
|
|
+ }
|
|
|
+
|
|
|
+ let head = self.xa.head().as_node_mut().unwrap();
|
|
|
+ // SAFETY: Cursor will move to the `head` and the head will not be
|
|
|
+ // removed within this function.
|
|
|
+ self.move_to(unsafe { self.reborrow_node(head) });
|
|
|
+
|
|
|
+ let (mut current_node, _) = self.state.node_info().unwrap();
|
|
|
while !current_node.is_leaf() {
|
|
|
+ self.ancestors.push(current_node);
|
|
|
+ let mut operated_entry = self.ref_operated_entry().unwrap();
|
|
|
let current_height = current_node.height();
|
|
|
|
|
|
if !operated_entry.is_node() {
|
|
|
- let new_entry = {
|
|
|
- let (current_node, operation_offset) = self.state.node_info().unwrap();
|
|
|
- let new_owned_entry =
|
|
|
- self.alloc_node(Height::new(*current_height - 1), operation_offset);
|
|
|
- let _ = current_node.set_entry(operation_offset, new_owned_entry);
|
|
|
- current_node.ref_node_entry(self.is_exclusive, operation_offset)
|
|
|
- };
|
|
|
- operated_entry = new_entry;
|
|
|
+ let (current_node, operation_offset) = self.state.node_info().unwrap();
|
|
|
+ let new_owned_entry =
|
|
|
+ self.alloc_node(Height::new(*current_height - 1), operation_offset);
|
|
|
+ let _ = current_node.set_entry(operation_offset, new_owned_entry);
|
|
|
+ // SAFETY: The cursor will move towards the subtree of the current_node,
|
|
|
+ // and no further modifications will be made to the current_node within the current function.
|
|
|
+ operated_entry =
|
|
|
+ unsafe { current_node.ref_node_entry(self.is_exclusive, operation_offset) };
|
|
|
}
|
|
|
+ // SAFETY: Cursor will move to the `current_node` and it will not be
|
|
|
+ // removed within this function.
|
|
|
+ current_node = unsafe { self.reborrow_node(operated_entry.as_node_mut().unwrap()) };
|
|
|
|
|
|
- self.ancestors.push(current_node);
|
|
|
-
|
|
|
- current_node = operated_entry.as_node_mut().unwrap();
|
|
|
- operated_entry = self.move_to(current_node);
|
|
|
+ self.move_to(current_node);
|
|
|
}
|
|
|
- operated_entry
|
|
|
+ self.ref_operated_entry().unwrap()
|
|
|
}
|
|
|
|
|
|
- /// Increase the number of heights for XArray to expand its capacity, allowing it to accommodate the target index,
|
|
|
- /// and returns the height of the final head node.
|
|
|
+ /// Increase the number of heights for XArray to expand its capacity, allowing it to accommodate
|
|
|
+ /// the target index, and returns the height of the final head node.
|
|
|
///
|
|
|
- /// If the head node of the XArray does not exist, allocate a new head node of appropriate height directly.
|
|
|
- /// Otherwise, if needed, repeatedly insert new nodes on top of the current head node to serve as the new head.
|
|
|
+ /// If the head node of the XArray does not exist, allocate a new head node of appropriate height
|
|
|
+ /// directly. Otherwise, if needed, repeatedly insert new nodes on top of the current head node to
|
|
|
+ /// serve as the new head.
|
|
|
fn expand_height(&mut self) -> Height {
|
|
|
if self.xa.head().is_null() {
|
|
|
let mut head_height = Height::new(1);
|
|
@@ -548,7 +636,10 @@ impl<'a, I: ItemEntry, L: XLock, M: ValidMark> CursorMut<'a, I, L, M> {
|
|
|
} else {
|
|
|
loop {
|
|
|
let head_height = {
|
|
|
- let head = self.xa.head_mut(self.is_exclusive).as_node().unwrap();
|
|
|
+ if self.is_exclusive {
|
|
|
+ self.xa.ensure_head_exclusive();
|
|
|
+ }
|
|
|
+ let head = self.xa.head().as_node().unwrap();
|
|
|
head.height()
|
|
|
};
|
|
|
|
|
@@ -559,7 +650,7 @@ impl<'a, I: ItemEntry, L: XLock, M: ValidMark> CursorMut<'a, I, L, M> {
|
|
|
let new_node_entry = self.alloc_node(Height::new(*head_height + 1), 0);
|
|
|
let old_head_entry = self.xa.set_head(new_node_entry);
|
|
|
let old_head = old_head_entry.as_node_mut().unwrap();
|
|
|
- let new_head = self.xa.head_mut(self.is_exclusive).as_node_mut().unwrap();
|
|
|
+ let new_head = self.xa.head().as_node_mut().unwrap();
|
|
|
for i in 0..3 {
|
|
|
if !old_head.mark(i).is_clear() {
|
|
|
new_head.set_mark(0, i);
|
|
@@ -577,26 +668,55 @@ impl<'a, I: ItemEntry, L: XLock, M: ValidMark> CursorMut<'a, I, L, M> {
|
|
|
}
|
|
|
|
|
|
fn ensure_exclusive_before_modify(&mut self) {
|
|
|
- if !self.is_exclusive {
|
|
|
+ if self.is_exclusive {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ if !self.is_arrived() {
|
|
|
self.is_exclusive = true;
|
|
|
- if self.is_arrived() {
|
|
|
- self.init();
|
|
|
- self.traverse_to_target();
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ if self.xa.head().node_strong_count().unwrap() > 1 {
|
|
|
+ self.init();
|
|
|
+ self.is_exclusive = true;
|
|
|
+ self.traverse_to_target();
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ let mut new_ancestors: SmallVec<[&'a XNode<I, L, ReadWrite>; MAX_HEIGHT]> = SmallVec::new();
|
|
|
+ for ancestor in self.ancestors.iter() {
|
|
|
+ let offset = ancestor.entry_offset(self.index);
|
|
|
+ // SAFETY: The process involves descending from the top within the current ancestors to find the first shared node,
|
|
|
+ // without modifying the contents of the XNode.
|
|
|
+ let entry = unsafe { ancestor.ref_node_entry(false, offset) };
|
|
|
+ if entry.node_strong_count().unwrap() > 1 {
|
|
|
+ self.move_to(ancestor);
|
|
|
+ break;
|
|
|
}
|
|
|
+ new_ancestors.push(*ancestor);
|
|
|
+ }
|
|
|
+ self.ancestors = new_ancestors;
|
|
|
+
|
|
|
+ let (mut current_node, _) = self.state.node_info().unwrap();
|
|
|
+ self.is_exclusive = true;
|
|
|
+ while !current_node.is_leaf() {
|
|
|
+ // SAFETY: Cursor will move to the `next_node` and it will not be
|
|
|
+ // removed within this function.
|
|
|
+ let next_node = unsafe {
|
|
|
+ self.reborrow_node(self.ref_operated_entry().unwrap().as_node_mut().unwrap())
|
|
|
+ };
|
|
|
+ self.ancestors.push(current_node);
|
|
|
+ self.move_to(next_node);
|
|
|
+ current_node = next_node;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-impl<'a, I: ItemEntry, L: XLock, M: ValidMark> Deref for CursorMut<'a, I, L, M> {
|
|
|
+impl<'a, I: ItemEntry, L: XLock, M: Into<XMark>> Deref for CursorMut<'a, I, L, M> {
|
|
|
type Target = Cursor<'a, I, L, M>;
|
|
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
unsafe { &*(self as *const CursorMut<'a, I, L, M> as *const Cursor<'a, I, L, M>) }
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
-impl<'a, I: ItemEntry, L: XLock, M: ValidMark> DerefMut for CursorMut<'a, I, L, M> {
|
|
|
- fn deref_mut(&mut self) -> &mut Self::Target {
|
|
|
- unsafe { &mut *(self as *const CursorMut<'a, I, L, M> as *mut Cursor<'a, I, L, M>) }
|
|
|
- }
|
|
|
-}
|