Autonomy Software C++ 24.5.1
Welcome to the Autonomy Software repository of the Mars Rover Design Team (MRDT) at Missouri University of Science and Technology (Missouri S&T)! API reference contains the source code and other resources for the development of the autonomy software for our Mars rover. The Autonomy Software project aims to compete in the University Rover Challenge (URC) by demonstrating advanced autonomous capabilities and robust navigation algorithms.
Loading...
Searching...
No Matches
duckdb::ColumnSegmentTree Class Reference
Inheritance diagram for duckdb::ColumnSegmentTree:
Collaboration diagram for duckdb::ColumnSegmentTree:

Additional Inherited Members

- Public Member Functions inherited from duckdb::SegmentTree< ColumnSegment >
 SegmentTree (idx_t base_row_id=0)
 
SegmentLock Lock () const
 
bool IsEmpty (SegmentLock &l) const
 
optional_ptr< SegmentNode< ColumnSegment > > GetRootSegment () const
 Gets a pointer to the first segment. Useful for scans.
 
optional_ptr< SegmentNode< ColumnSegment > > GetRootSegment (SegmentLock &l) const
 
vector< unique_ptr< SegmentNode< ColumnSegment > > > MoveSegments (SegmentLock &l)
 Obtains ownership of the data of the segment tree.
 
vector< unique_ptr< SegmentNode< ColumnSegment > > > MoveSegments ()
 
vector< unique_ptr< SegmentNode< ColumnSegment > > > & ReferenceLoadedSegmentsMutable (SegmentLock &l)
 
idx_t GetSegmentCount () const
 
idx_t GetSegmentCount (SegmentLock &l) const
 
optional_ptr< SegmentNode< ColumnSegment > > GetSegmentByIndex (int64_t index) const
 Gets a pointer to the nth segment. Negative numbers start from the back.
 
optional_ptr< SegmentNode< ColumnSegment > > GetSegmentByIndex (SegmentLock &l, int64_t index) const
 
optional_ptr< SegmentNode< ColumnSegment > > GetNextSegment (SegmentNode< ColumnSegment > &node) const
 Gets the next segment.
 
optional_ptr< SegmentNode< ColumnSegment > > GetNextSegment (SegmentLock &l, SegmentNode< ColumnSegment > &node) const
 
optional_ptr< SegmentNode< ColumnSegment > > GetLastSegment (SegmentLock &l) const
 Gets a pointer to the last segment. Useful for appends.
 
optional_ptr< SegmentNode< ColumnSegment > > GetSegment (idx_t row_number) const
 Gets a pointer to a specific column segment for the given row.
 
optional_ptr< SegmentNode< ColumnSegment > > GetSegment (SegmentLock &l, idx_t row_number) const
 
void AppendSegment (shared_ptr< ColumnSegment > segment)
 
void AppendSegment (SegmentLock &l, shared_ptr< ColumnSegment > segment)
 
void AppendSegment (SegmentLock &l, shared_ptr< ColumnSegment > segment, idx_t row_start)
 
bool HasSegment (SegmentNode< ColumnSegment > &segment) const
 Debug method, check whether the segment is in the segment tree.
 
bool HasSegment (SegmentLock &, SegmentNode< ColumnSegment > &segment) const
 
void EraseSegments (SegmentLock &l, idx_t segment_start)
 Erase all segments after a specific segment.
 
idx_t GetSegmentIndex (SegmentLock &l, idx_t row_number) const
 Get the segment index of the column segment for the given row.
 
bool TryGetSegmentIndex (SegmentLock &l, idx_t row_number, idx_t &result) const
 
void Verify (SegmentLock &) const
 
void Verify ()
 
idx_t GetBaseRowId () const
 
SegmentIterationHelper Segments () const
 
SegmentIterationHelper Segments (SegmentLock &l) const
 
SegmentNodeIterationHelper SegmentNodes () const
 
SegmentNodeIterationHelper SegmentNodes (SegmentLock &l) const
 
- Protected Member Functions inherited from duckdb::SegmentTree< ColumnSegment >
virtual shared_ptr< ColumnSegmentLoadSegment () const
 Load the next segment - only used when lazily loading.
 
optional_ptr< SegmentNode< ColumnSegment > > GetRootSegmentInternal () const
 
- Protected Attributes inherited from duckdb::SegmentTree< ColumnSegment >
atomic< bool > finished_loading
 

The documentation for this class was generated from the following file: