"container/deps/requirements.dev.txt" did not exist on "6a0e67ed781497289d2f12c156f723ebf874b8aa"
inactive.rs 32.2 KB
Newer Older
Ryan Olson's avatar
Ryan Olson committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

Ryan Olson's avatar
Ryan Olson committed
16
17
18
use std::sync::atomic::AtomicU64;

use crate::block_manager::block::{locality::LocalityProvider, BlockState};
Ryan Olson's avatar
Ryan Olson committed
19
20

use super::*;
Ryan Olson's avatar
Ryan Olson committed
21
22
use priority_key::PriorityKey;

Ryan Olson's avatar
Ryan Olson committed
23
24
25
use tracing::instrument;

#[derive(Default)]
Ryan Olson's avatar
Ryan Olson committed
26
pub struct InactiveBlockPool<S: Storage, L: LocalityProvider, M: BlockMetadata> {
27
    // Direct lookup by sequence_hash.
Ryan Olson's avatar
Ryan Olson committed
28
    lookup_map: HashMap<SequenceHash, Block<S, L, M>>,
Ryan Olson's avatar
Ryan Olson committed
29

Ryan Olson's avatar
Ryan Olson committed
30
31
    // Ordered by timestamp (oldest first)
    priority_set: BTreeSet<PriorityKey<M>>,
Ryan Olson's avatar
Ryan Olson committed
32
33

    // Fully Uninitialized
Ryan Olson's avatar
Ryan Olson committed
34
    uninitialized_set: VecDeque<Block<S, L, M>>,
Ryan Olson's avatar
Ryan Olson committed
35
36
37
38

    // Return Tick
    return_tick: u64,

Ryan Olson's avatar
Ryan Olson committed
39
40
41
42
43
    // Total blocks counter
    total_blocks: Arc<AtomicU64>,

    // Inactive blocks
    available_blocks: Arc<AtomicU64>,
Ryan Olson's avatar
Ryan Olson committed
44
45
}

Ryan Olson's avatar
Ryan Olson committed
46
impl<S: Storage, L: LocalityProvider, M: BlockMetadata> InactiveBlockPool<S, L, M> {
Ryan Olson's avatar
Ryan Olson committed
47
48
49
50
51
52
53
54
    /// Creates a new, empty [`InactiveBlockPool`].
    ///
    /// # Returns
    ///
    /// A new instance of [`InactiveBlockPool`].
    pub(crate) fn new() -> Self {
        Self {
            lookup_map: HashMap::new(),
Ryan Olson's avatar
Ryan Olson committed
55
            priority_set: BTreeSet::new(),
Ryan Olson's avatar
Ryan Olson committed
56
57
            uninitialized_set: VecDeque::new(),
            return_tick: 0,
Ryan Olson's avatar
Ryan Olson committed
58
59
            total_blocks: Arc::new(AtomicU64::new(0)),
            available_blocks: Arc::new(AtomicU64::new(0)),
Ryan Olson's avatar
Ryan Olson committed
60
61
62
        }
    }

Ryan Olson's avatar
Ryan Olson committed
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
    /// Returns a counter for the number of available blocks.
    ///
    /// # Returns
    ///
    /// A counter for the number of available blocks as an [`Arc<AtomicU64>`].
    pub fn available_blocks_counter(&self) -> Arc<AtomicU64> {
        self.available_blocks.clone()
    }

    /// Returns a counter for the total number of blocks.
    ///
    /// # Returns
    ///
    /// A counter for the total number of blocks as an [`Arc<AtomicU64>`].
    pub fn total_blocks_counter(&self) -> Arc<AtomicU64> {
        self.total_blocks.clone()
    }

Ryan Olson's avatar
Ryan Olson committed
81
82
83
84
85
86
    /// Returns the total number of blocks managed by this pool (both available and acquired).
    ///
    /// # Returns
    ///
    /// The total block count as a [`u64`].
    pub fn total_blocks(&self) -> u64 {
Ryan Olson's avatar
Ryan Olson committed
87
        self.total_blocks.load(Ordering::Relaxed)
Ryan Olson's avatar
Ryan Olson committed
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
    }

    /// Returns the number of blocks currently available in the pool.
    ///
    /// This is calculated dynamically based on the blocks in the [`uninitialized_set`]
    /// and the [`lookup_map`].
    ///
    /// # Returns
    ///
    /// The available block count as a [`u64`].
    pub fn available_blocks(&self) -> u64 {
        self.uninitialized_set.len() as u64 + self.lookup_map.len() as u64
    }

    /// Inserts a block into the pool using its sequence hash for potential reuse.
    ///
    /// If an entry with the same sequence hash already exists in the [`lookup_map`]
105
106
    /// the block is reset and moved to the [`uninitialized_set`].
    /// Otherwise, the block is added to the [`lookup_map`].
Ryan Olson's avatar
Ryan Olson committed
107
108
109
110
111
112
    ///
    /// # Arguments
    ///
    /// * `block` - The block to insert ([`Block<T, M>`]).
    /// * `sequence_hash` - The sequence hash associated with the block's content ([`SequenceHash`]).
    #[instrument(level = "trace", skip(self, block), fields(sequence_hash = ?sequence_hash))]
Ryan Olson's avatar
Ryan Olson committed
113
    fn insert_with_sequence_hash(&mut self, block: Block<S, L, M>, sequence_hash: SequenceHash) {
Ryan Olson's avatar
Ryan Olson committed
114
        let priority_key = PriorityKey::new(block.metadata().clone(), sequence_hash);
Ryan Olson's avatar
Ryan Olson committed
115
        if self.priority_set.contains(&priority_key) {
116
            tracing::trace!("multiple entries with the same sequence hash, resetting block and inserting into uninitialized set");
Ryan Olson's avatar
Ryan Olson committed
117
118
119
120
            let mut block = block;
            block.reset();
            self.uninitialized_set.push_back(block);
        } else {
121
122
            tracing::trace!("inserting block to map and priority set");

Ryan Olson's avatar
Ryan Olson committed
123
            self.priority_set.insert(priority_key);
124
            self.lookup_map.insert(sequence_hash, block);
Ryan Olson's avatar
Ryan Olson committed
125
126
127
128
129
130
131
132
133
134
135
136
137
138
        }
    }

    /// Internal helper to insert a block into the appropriate internal collection
    /// based on its current state.
    ///
    /// - [`BlockState::Reset`], [`BlockState::Partial`], [`BlockState::Complete`] states result in the block being reset and added
    ///   to the `uninitialized_set`.
    /// - [`BlockState::Registered`] state results in the block being added via [`insert_with_sequence_hash`].
    ///
    /// # Arguments
    ///
    /// * `block` - The block to insert ([`Block<S, M>`]).
    #[instrument(level = "trace", skip(self, block), fields(block_state = ?block.state()))]
Ryan Olson's avatar
Ryan Olson committed
139
    fn insert(&mut self, block: Block<S, L, M>) {
Ryan Olson's avatar
Ryan Olson committed
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
        tracing::trace!("Inserting block into available pool");

        // If we already have an entry for this sequence hash or the block is reset,
        // we need to move it to the uninitialized set
        match block.state() {
            BlockState::Reset => {
                self.uninitialized_set.push_back(block);
            }
            BlockState::Partial(_) => {
                let mut block = block;
                block.reset();
                self.uninitialized_set.push_back(block);
            }
            BlockState::Complete(_) => {
                let mut block = block;
                block.reset();
                self.uninitialized_set.push_back(block);
            }
158
            BlockState::Registered(state, _) => {
Ryan Olson's avatar
Ryan Olson committed
159
160
161
162
                let sequence_hash = state.sequence_hash();
                self.insert_with_sequence_hash(block, sequence_hash);
            }
        }
Ryan Olson's avatar
Ryan Olson committed
163
164

        self.available_blocks.fetch_add(1, Ordering::Relaxed);
Ryan Olson's avatar
Ryan Olson committed
165
166
167
168
169
170
171
172
173
174
    }

    /// Adds multiple blocks to the pool.
    ///
    /// Each block is reset before being inserted. The total block count is updated.
    ///
    /// # Arguments
    ///
    /// * `blocks` - A vector of blocks ([`Block<T, M>`]) to add.
    #[instrument(level = "debug", skip(self, blocks))]
Ryan Olson's avatar
Ryan Olson committed
175
    pub fn add_blocks(&mut self, blocks: Vec<Block<S, L, M>>) {
Ryan Olson's avatar
Ryan Olson committed
176
177
178
179
180
181
182
183
184
        let count = blocks.len();
        tracing::debug!(count, "Adding blocks to pool");

        for (i, mut block) in blocks.into_iter().enumerate() {
            tracing::trace!(current = i + 1, total = count, "Processing block");
            block.reset();
            self.insert(block);
        }

Ryan Olson's avatar
Ryan Olson committed
185
        self.total_blocks.fetch_add(count as u64, Ordering::Relaxed);
Ryan Olson's avatar
Ryan Olson committed
186
187
188
189
190
191
192
193
194
195
    }

    /// Adds multiple blocks to the pool.
    ///
    /// The state of the blocks are not reset.
    ///
    /// # Arguments
    ///
    /// * `blocks` - A vector of blocks ([`Block<T, M>`]) to add.
    #[instrument(level = "debug", skip(self, blocks))]
Ryan Olson's avatar
Ryan Olson committed
196
    pub fn add_blocks_with_state(&mut self, blocks: Vec<Block<S, L, M>>) {
Ryan Olson's avatar
Ryan Olson committed
197
198
        let count = blocks.len();
        tracing::debug!(count, "Adding blocks to pool");
Ryan Olson's avatar
Ryan Olson committed
199
        self.total_blocks.fetch_add(count as u64, Ordering::Relaxed);
Ryan Olson's avatar
Ryan Olson committed
200
201
202
203
204
205
206
207
208
209
210
211
212
        // self.available_blocks += count as u64;
        self.return_blocks(blocks);
    }

    /// Returns a single block to the pool.
    ///
    /// Increments the internal return tick, updates the block's metadata,
    /// and inserts the block back into the appropriate internal collection.
    ///
    /// # Arguments
    ///
    /// * `block` - The block ([`Block<S, M>`]) to return.
    #[instrument(level = "debug", skip(self, block))]
Ryan Olson's avatar
Ryan Olson committed
213
    pub fn return_block(&mut self, mut block: Block<S, L, M>) {
Ryan Olson's avatar
Ryan Olson committed
214
215
216
217
218
219
220
221
222
223
224
225
226
227
        // increment the return tick
        self.return_tick += 1;

        // update the metadata
        block.metadata_on_returned(self.return_tick);

        // insert the block into the pool
        self.insert(block);

        // self.available_blocks += 1;
    }

    /// Returns multiple blocks to the pool.
    ///
228
    /// Iterates through the blocks in order and calls
Ryan Olson's avatar
Ryan Olson committed
229
230
231
232
233
234
    /// `return_block` for each one.
    ///
    /// # Arguments
    ///
    /// * `blocks` - A vector of blocks ([`Block<T, M>`]) to return.
    #[instrument(level = "debug", skip(self, blocks))]
Ryan Olson's avatar
Ryan Olson committed
235
    pub fn return_blocks(&mut self, blocks: Vec<Block<S, L, M>>) {
Ryan Olson's avatar
Ryan Olson committed
236
237
238
        let count = blocks.len();
        tracing::debug!(count, "Returning blocks to pool");
        // return the block to the pool from tail to head
239
        for (i, block) in blocks.into_iter().enumerate() {
Ryan Olson's avatar
Ryan Olson committed
240
241
242
243
244
245
246
            tracing::trace!(current = i + 1, total = count, "Returning block");
            // Note: return_block has its own instrumentation
            self.return_block(block);
        }
    }

    /// Attempts to remove and return a block associated with the given sequence hash
Ryan Olson's avatar
Ryan Olson committed
247
    /// from the [`lookup_map`] and [`priority_set`].
Ryan Olson's avatar
Ryan Olson committed
248
249
250
251
252
253
254
255
256
    ///
    /// # Arguments
    ///
    /// * `sequence_hash` - The sequence hash ([`SequenceHash`]) of the block to take.
    ///
    /// # Returns
    ///
    /// An [`Option<Block<S, M>>`] containing the block if found, otherwise `None`.
    #[instrument(level = "trace", skip(self), fields(sequence_hash = ?sequence_hash))]
Ryan Olson's avatar
Ryan Olson committed
257
    fn take_with_sequence_hash(&mut self, sequence_hash: SequenceHash) -> Option<Block<S, L, M>> {
Ryan Olson's avatar
Ryan Olson committed
258
259
        match self.lookup_map.remove(&sequence_hash) {
            Some(block) => {
Ryan Olson's avatar
Ryan Olson committed
260
261
262
263
                // Remove from priority set.
                let priority_key = PriorityKey::new(block.metadata().clone(), sequence_hash);
                // Remove from priority set, if it exists.
                self.priority_set.remove(&priority_key);
264

Ryan Olson's avatar
Ryan Olson committed
265
                self.available_blocks.fetch_sub(1, Ordering::Relaxed);
Ryan Olson's avatar
Ryan Olson committed
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
                Some(block)
            }
            None => None,
        }
    }

    /// Attempts to find and take a block matching the given sequence hash.
    ///
    /// This is a convenience wrapper around `take_with_sequence_hash`.
    ///
    /// # Arguments
    ///
    /// * `sequence_hash` - The sequence hash ([`SequenceHash`]) to match.
    ///
    /// # Returns
    ///
    /// An [`Option<Block<S, M>>`] containing the block if found, otherwise `None`.
    #[instrument(level = "debug", skip(self), fields(sequence_hash = ?sequence_hash))]
Ryan Olson's avatar
Ryan Olson committed
284
    pub fn match_sequence_hash(&mut self, sequence_hash: SequenceHash) -> Option<Block<S, L, M>> {
Ryan Olson's avatar
Ryan Olson committed
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
        self.take_with_sequence_hash(sequence_hash)
    }

    /// Attempts to find and take multiple blocks matching a sequence of hashes.
    ///
    /// Iterates through the provided hashes and takes blocks using `take_with_sequence_hash`.
    /// Stops if a hash is not found.
    ///
    /// # Arguments
    ///
    /// * `sequence_hashes` - A vector of sequence hashes ([`SequenceHash`]) to match.
    ///
    /// # Returns
    ///
    /// A vector containing the blocks ([`Block<T, M>`]) that were successfully matched and taken.
    /// The vector may be shorter than `sequence_hashes` if not all hashes were found.
    #[instrument(level = "debug", skip(self, sequence_hashes), fields(num_hashes = sequence_hashes.len()))]
    pub fn match_sequence_hashes(
        &mut self,
        sequence_hashes: Vec<SequenceHash>,
Ryan Olson's avatar
Ryan Olson committed
305
    ) -> Vec<Block<S, L, M>> {
Ryan Olson's avatar
Ryan Olson committed
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
        let total_hashes = sequence_hashes.len();
        let mut matched_blocks = Vec::with_capacity(total_hashes);

        for (i, hash) in sequence_hashes.into_iter().enumerate() {
            tracing::trace!(current = i + 1, total = total_hashes, sequence_hash = ?hash, "Attempting to match sequence hash");
            // Note: take_with_sequence_hash has its own instrumentation
            if let Some(block) = self.take_with_sequence_hash(hash) {
                tracing::trace!(current = i + 1, total = total_hashes, sequence_hash = ?hash, "Matched sequence hash");
                matched_blocks.push(block);
            } else {
                tracing::trace!(current = i + 1, total = total_hashes, sequence_hash = ?hash, "Sequence hash not found, stopping match");
                break;
            }
        }

        matched_blocks
    }

    /// Attempts to find and take multiple blocks matching a sequence of `TokenBlock`s.
    ///
    /// Extracts sequence hashes from the [`TokenBlock`]s and calls [`take_with_sequence_hash`].
    /// Stops if a hash is not found.
    ///
    /// # Arguments
    ///
    /// * `token_blocks` - A slice of [`TokenBlock`]s to match.
    ///
    /// # Returns
    ///
    /// A vector containing the blocks ([`Block<T, M>`]) that were successfully matched and taken.
    /// The vector may be shorter than `token_blocks` if not all corresponding hashes were found.
    #[instrument(level = "debug", skip(self, token_blocks), fields(num_token_blocks = token_blocks.len()))]
Ryan Olson's avatar
Ryan Olson committed
338
    pub fn match_token_blocks(&mut self, token_blocks: &[TokenBlock]) -> Vec<Block<S, L, M>> {
Ryan Olson's avatar
Ryan Olson committed
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
        let total_blocks = token_blocks.len();
        let mut matched_blocks = Vec::with_capacity(total_blocks);

        tracing::debug!("Attempting to match {} token blocks", total_blocks);

        for (i, token_block) in token_blocks.iter().enumerate() {
            let sequence_hash = token_block.sequence_hash();
            tracing::trace!(sequence_hash = ?sequence_hash, "Attempting to match token block hash {}/{}", i + 1, total_blocks);
            if let Some(block) = self.take_with_sequence_hash(sequence_hash) {
                tracing::trace!(sequence_hash = ?sequence_hash, "Matched token block hash");
                matched_blocks.push(block);
            } else {
                tracing::trace!(sequence_hash = ?sequence_hash, "Token block hash not found, stopping match");
                break;
            }
        }

        tracing::debug!(
            "Matched {} of {} token blocks",
            matched_blocks.len(),
            total_blocks
        );

        matched_blocks
    }

    /// Acquires a single free block from the pool.
    ///
    /// Prioritizes blocks from the [`uninitialized_set`] first, then takes the
    /// lowest priority block from the [`priority_set`] (and [`lookup_map`]).
    /// If a block is taken from the priority set, it is reset.
    ///
    /// # Returns
    ///
    /// An [`Option<Block<T, M>>`] containing a free block if available, otherwise `None`.
    ///
    /// # Panics
    ///
    /// This function can panic if there is an inconsistency between the [`priority_set`]
    /// and [`lookup_map`] (i.e., a key exists in the set but not the map). This indicates
    /// a bug in the pool's internal logic.
    #[instrument(level = "debug", skip(self))]
Ryan Olson's avatar
Ryan Olson committed
381
    pub fn acquire_free_block(&mut self) -> Option<Block<S, L, M>> {
Ryan Olson's avatar
Ryan Olson committed
382
383
384
385
386
387
        // First try uninitialized blocks - these are often part of sequences
        // that have been arranged in the correct order
        if let Some(mut block) = self.uninitialized_set.pop_front() {
            tracing::trace!("Acquired uninitialized block");
            self.return_tick += 1;
            block.metadata_on_acquired(self.return_tick);
Ryan Olson's avatar
Ryan Olson committed
388
            self.available_blocks.fetch_sub(1, Ordering::Relaxed);
Ryan Olson's avatar
Ryan Olson committed
389
390
391
            return Some(block);
        }

Ryan Olson's avatar
Ryan Olson committed
392
        // if we have blocks in the priority set, pop the first (it's sorted by priority)
Ryan Olson's avatar
Ryan Olson committed
393
        // a fatal error will occur if the block is not found in the lookup map
Ryan Olson's avatar
Ryan Olson committed
394
        if let Some(key) = self.priority_set.pop_first() {
Ryan Olson's avatar
Ryan Olson committed
395
396
397
398
399
400
            tracing::trace!("Acquired priority/registered block map; resetting block");
            match self.lookup_map.remove(&key.sequence_hash()) {
                Some(mut block) => {
                    block.reset();
                    self.return_tick += 1;
                    block.metadata_on_acquired(self.return_tick);
Ryan Olson's avatar
Ryan Olson committed
401
                    self.available_blocks.fetch_sub(1, Ordering::Relaxed);
Ryan Olson's avatar
Ryan Olson committed
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
                    Some(block)
                }
                None => {
                    panic!(
                        "Block from priority set not found in lookup map! Inconsistency detected."
                    );
                }
            }
        } else {
            // No blocks available in either set
            None
        }
    }

    /// Acquires a specified number of free blocks from the pool.
    ///
    /// Checks if enough blocks are available and then calls [`acquire_free_block`] repeatedly.
    ///
    /// # Arguments
    ///
    /// * `count` - The number of free blocks to acquire.
    ///
    /// # Returns
    ///
    /// A [`Result`] containing:
    /// - `Ok(Vec<Block<T, M>>)`: A vector of the acquired blocks if successful.
    /// - `Err(BlockPoolError::InsufficientBlocksAvailable)`: If the requested number
    ///   of blocks is not available, or if an inconsistency occurred during acquisition.
    ///
    /// # Panics
    ///
    /// This function can panic if [`acquire_free_block`] panics due to internal inconsistencies.
    #[instrument(level = "debug", skip(self))]
    pub fn acquire_free_blocks(
        &mut self,
        count: usize,
Ryan Olson's avatar
Ryan Olson committed
438
    ) -> Result<Vec<Block<S, L, M>>, BlockPoolError> {
Ryan Olson's avatar
Ryan Olson committed
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
        if count == 0 {
            return Ok(Vec::new());
        }

        let mut blocks = Vec::with_capacity(count);

        let available_now = self.uninitialized_set.len() + self.lookup_map.len();
        tracing::debug!(
            available_now,
            requested = count,
            "Attempting to acquire free blocks"
        );

        if count > available_now {
            tracing::debug!(
                available_now,
                requested = count,
                "Insufficient blocks available"
            );
            return Err(BlockPoolError::NotEnoughBlocksAvailable(
                count,
                available_now,
            ));
        }

        for i in 0..count {
            tracing::trace!(current = i + 1, total = count, "Acquiring free block");
            // Directly call the logic in acquire_free_block
            // Note: acquire_free_block has its own instrumentation
            if let Some(block) = self.acquire_free_block() {
                blocks.push(block);
            } else {
                // This should not happen if the initial check passed and there are no concurrent modifications.
                // If it does, it indicates an inconsistency or a logic error.
                tracing::error!(
                    requested = count,
                    acquired = blocks.len(),
                    available_at_start = available_now,
                    current_available = self.uninitialized_set.len() + self.lookup_map.len(),
                    "Insufficient blocks during acquisition loop despite initial check."
                );
                // Return the blocks acquired so far, or handle as an error.
                // For now, we break and return what we have, but decrementing 'available_blocks'
                // needs to account for the actual number acquired.
                // Consider returning an error or panicking in debug.
                break;
            }
        }

        let acquired_count = blocks.len();
        tracing::debug!(
            acquired_count,
            requested = count,
            "Finished acquiring blocks"
        );

        // Check if we got the requested number of blocks
        if acquired_count != count {
            // This path is taken if the loop broke early due to unexpected `None` from acquire_free_block
            // Return an error indicating partial success or failure
            // Depending on the desired behavior, you might return the partial list
            // or a more specific error.
            // For consistency with the original check, let's return an error if count wasn't met.
            return Err(BlockPoolError::NotEnoughBlocksAvailable(
                count,
                blocks.len(),
            ));
        }

        Ok(blocks)
    }
Ryan Olson's avatar
Ryan Olson committed
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541

    /// Resets the pool to its initial state.
    ///
    /// This function will acquire all blocks, which will reset their state, then return them.
    ///
    /// A [`Result`] containing `Ok(())` if the reset was successful, otherwise an error.
    pub fn reset(&mut self) -> Result<(), BlockPoolError> {
        let total_blocks = self.total_blocks.load(Ordering::Relaxed);
        let available_blocks = self.available_blocks.load(Ordering::Relaxed);

        if total_blocks != available_blocks {
            return Err(BlockPoolError::ResetError(format!(
                "total blocks: {}, available blocks: {}",
                total_blocks, available_blocks
            )));
        }

        let blocks = self.acquire_free_blocks(total_blocks as usize)?;

        for block in blocks.into_iter() {
            self.return_block(block);
        }

        Ok(())
    }

    /// Returns the [`PoolStatus`] of the pool.
    pub fn status(&self) -> (usize, usize) {
        let inactive_blocks = self.priority_set.len();
        let empty_blocks = self.uninitialized_set.len();
        (inactive_blocks, empty_blocks)
    }
Ryan Olson's avatar
Ryan Olson committed
542
543
544
545
546
547
}

#[cfg(test)]
pub(crate) mod tests {
    use crate::{
        block_manager::{
Ryan Olson's avatar
Ryan Olson committed
548
549
550
551
            block::{
                locality::Local, registry::BlockRegistry, state::CompleteState, Blocks,
                PrivateBlockExt,
            },
Ryan Olson's avatar
Ryan Olson committed
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
            events::NullEventManager,
            layout::{BlockLayout, FullyContiguous, LayoutConfigBuilder},
            storage::tests::{NullDeviceAllocator, NullDeviceStorage},
        },
        tokens::{Token, Tokens},
    };

    use super::*;

    #[derive(Debug, Default, Clone, Copy, PartialEq, Eq, Ord, PartialOrd)]
    pub struct TestMetadata {
        priority: u32,
        returned_tick: u64,
        acquired_tick: u64,
    }

    impl BlockMetadata for TestMetadata {
        fn on_acquired(&mut self, tick: u64) {
            self.acquired_tick = tick;
        }

        fn on_returned(&mut self, tick: u64) {
            self.returned_tick = tick;
        }

        fn reset_metadata(&mut self) {
            self.priority = 0;
        }
580
581
582
583

        fn offload_priority(&self) -> Option<u64> {
            Some(self.priority as u64)
        }
Ryan Olson's avatar
Ryan Olson committed
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
    }

    type TestPriorityKey = PriorityKey<TestMetadata>;

    fn make_priority_key(
        priority: u32,
        returned_tick: u64,
        sequence_hash: SequenceHash,
    ) -> TestPriorityKey {
        TestPriorityKey::new(
            TestMetadata {
                priority,
                returned_tick,
                acquired_tick: 0,
            },
            sequence_hash,
        )
    }

    #[test]
    fn test_priority_key_ord() {
        let mut map = BTreeSet::new();

        let hash1 = SequenceHash::from(1u64);
        let hash2 = SequenceHash::from(2u64);
        let hash3 = SequenceHash::from(3u64);

        map.insert(make_priority_key(0, 2, hash1));
        map.insert(make_priority_key(1, 1, hash2));
        map.insert(make_priority_key(0, 3, hash3));

        // Test popping from the map to verify ordering
        let first_key = map.pop_first().unwrap();
        assert_eq!(first_key.metadata().priority, 0);
        assert_eq!(first_key.metadata().returned_tick, 2);
        assert_eq!(first_key.sequence_hash(), hash1);

        let second_key = map.pop_first().unwrap();
        assert_eq!(second_key.metadata().priority, 0);
        assert_eq!(second_key.metadata().returned_tick, 3);
        assert_eq!(second_key.sequence_hash(), hash3);

        let third_key = map.pop_first().unwrap();
        assert_eq!(third_key.metadata().priority, 1);
        assert_eq!(third_key.metadata().returned_tick, 1);
        assert_eq!(third_key.sequence_hash(), hash2);

        // Map should now be empty
        assert!(map.is_empty());
    }

    // Helper function to create a sequence of tokens
    pub fn create_token_sequence(values: &[u32]) -> Tokens {
        let tokens: Vec<Token> = values.iter().map(|&v| Token::from(v)).collect();
        Tokens::from(tokens)
    }

    /// Creates a block collection with the given number of blocks.
    pub fn create_block_collection(
        num_blocks: usize,
    ) -> Blocks<impl BlockLayout<StorageType = NullDeviceStorage>, TestMetadata> {
        let config = LayoutConfigBuilder::default()
            .num_blocks(num_blocks)
            .num_layers(61)
648
            .outer_dim(1)
Ryan Olson's avatar
Ryan Olson committed
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
            .page_size(16)
            .inner_dim(576)
            .build()
            .unwrap();

        let layout = FullyContiguous::allocate(config, &NullDeviceAllocator)
            .expect("Failed to allocate layout/storage");

        Blocks::<_, TestMetadata>::new(layout, 42, 0).unwrap()
    }

    /// Creates a vector of Blocks from a token sequence and block size.
    /// Each block is initialized to the Complete state and then Registered.
    pub fn create_blocks(
        tokens: Tokens,
664
        block_size: u32,
665
        async_runtime: Handle,
Ryan Olson's avatar
Ryan Olson committed
666
    ) -> Vec<Block<NullDeviceStorage, Local, TestMetadata>> {
Ryan Olson's avatar
Ryan Olson committed
667
668
669
670
671
672
673
674
675
676
677
        let (token_blocks, _partial_token_block) =
            tokens.into_sequence(block_size, None).into_parts();
        let num_blocks = token_blocks.len();

        if num_blocks == 0 {
            return Vec::new();
        }

        let mut blocks = create_block_collection(num_blocks).into_blocks().unwrap();

        let event_manager = NullEventManager::new();
678
679
        let mut registry =
            BlockRegistry::new(event_manager, GlobalRegistry::default(), async_runtime);
Ryan Olson's avatar
Ryan Olson committed
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696

        // Iterate through the generated TokenBlocks and the template Blocks,
        // setting the state and registering each one.
        for (block, token_block) in blocks.iter_mut().zip(token_blocks.into_iter()) {
            assert!(block.state().is_reset()); // Start with empty blocks
            block.update_state(BlockState::Complete(CompleteState::new(token_block)));
            block
                .register(&mut registry)
                .expect("Failed to register block in test helper");
            assert!(block.state().is_registered()); // Ensure registration worked
        }

        blocks
    }

    pub fn create_block_pool(
        num_blocks: usize,
Ryan Olson's avatar
Ryan Olson committed
697
    ) -> InactiveBlockPool<NullDeviceStorage, Local, TestMetadata> {
Ryan Olson's avatar
Ryan Olson committed
698
699
700
701
702
703
704
705
706
        let mut pool = InactiveBlockPool::new();
        let blocks = create_block_collection(num_blocks).into_blocks().unwrap();
        pool.add_blocks(blocks);

        pool
    }

    pub fn acquire_blocks(
        tokens: Tokens,
707
        block_size: u32,
Ryan Olson's avatar
Ryan Olson committed
708
        pool: &mut InactiveBlockPool<NullDeviceStorage, Local, TestMetadata>,
709
        async_runtime: Handle,
Ryan Olson's avatar
Ryan Olson committed
710
    ) -> (Vec<Block<NullDeviceStorage, Local, TestMetadata>>, usize) {
Ryan Olson's avatar
Ryan Olson committed
711
712
713
714
715
716
717
718
719
720
721
        let (mut token_blocks, _partial_token_block) =
            tokens.into_sequence(block_size, None).into_parts();

        let total_complete_blocks = token_blocks.len();

        // this will match the token_blocks to any matching blocks in the inactive pool
        // these blocks have the same sequence hash as the token_blocks, thus no updates are needed
        let mut matched_blocks = pool.match_token_blocks(&token_blocks);
        let matched_block_count = matched_blocks.len();

        let event_manager = NullEventManager::new();
722
723
        let mut registry =
            BlockRegistry::new(event_manager, GlobalRegistry::default(), async_runtime);
Ryan Olson's avatar
Ryan Olson committed
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762

        // all matched blocks should be in the complete or registered state
        for block in &mut matched_blocks {
            assert!(block.state().is_registered());
        }

        // drain the matched blocks from the token_blocks
        token_blocks.drain(0..matched_block_count);

        assert_eq!(
            token_blocks.len() + matched_blocks.len(),
            total_complete_blocks
        );

        // try to acquire the remaining blocks
        let mut unmatched_blocks = pool.acquire_free_blocks(token_blocks.len()).unwrap();

        assert_eq!(unmatched_blocks.len(), token_blocks.len());

        for unmatched in &unmatched_blocks {
            assert!(unmatched.state().is_reset());
        }

        for (unmatched, token_block) in unmatched_blocks.iter_mut().zip(token_blocks.into_iter()) {
            assert!(unmatched.state().is_reset());
            unmatched.update_state(BlockState::Complete(CompleteState::new(token_block)));
            unmatched.register(&mut registry).unwrap();
            assert!(unmatched.state().is_registered());
        }

        let mut blocks = matched_blocks;
        blocks.extend(unmatched_blocks);
        (blocks, matched_block_count)
    }

    #[test]
    fn test_block_pool_lifecycle() {
        dynamo_runtime::logging::init();

763
764
        let async_runtime = tokio::runtime::Runtime::new().unwrap();

765
        const PAGE_SIZE: u32 = 2;
Ryan Olson's avatar
Ryan Olson committed
766
767
768
769
770
771
772
773
774
775
776
777
778
779

        let mut pool = create_block_pool(10);
        assert_eq!(pool.total_blocks(), 10);
        assert_eq!(pool.available_blocks(), 10);

        let blocks = pool.acquire_free_blocks(10).unwrap();
        assert_eq!(blocks.len(), 10);
        assert_eq!(pool.total_blocks(), 10);
        assert_eq!(pool.available_blocks(), 0);

        pool.return_blocks(blocks);

        assert_eq!(pool.total_blocks(), 10);
        assert_eq!(pool.available_blocks(), 10);
Ryan Olson's avatar
Ryan Olson committed
780
781
782
783
        assert_eq!(
            pool.available_blocks_counter().load(Ordering::Relaxed),
            pool.available_blocks()
        );
Ryan Olson's avatar
Ryan Olson committed
784
785
786

        let tokens = create_token_sequence(&[1, 2, 3, 4]);

787
788
789
790
791
792
        let (blocks, matched_block_count) = acquire_blocks(
            tokens.clone(),
            PAGE_SIZE,
            &mut pool,
            async_runtime.handle().clone(),
        );
Ryan Olson's avatar
Ryan Olson committed
793
794
795
        assert_eq!(blocks.len(), 2);
        assert_eq!(matched_block_count, 0);
        assert_eq!(pool.available_blocks(), 8);
Ryan Olson's avatar
Ryan Olson committed
796
797
798
799
        assert_eq!(
            pool.available_blocks_counter().load(Ordering::Relaxed),
            pool.available_blocks()
        );
Ryan Olson's avatar
Ryan Olson committed
800
801
802
803
804

        pool.return_blocks(blocks);

        assert_eq!(pool.total_blocks(), 10);
        assert_eq!(pool.available_blocks(), 10);
Ryan Olson's avatar
Ryan Olson committed
805
806
807
808
        assert_eq!(
            pool.available_blocks_counter().load(Ordering::Relaxed),
            pool.available_blocks()
        );
Ryan Olson's avatar
Ryan Olson committed
809

810
811
812
813
814
815
        let (blocks, matched_block_count) = acquire_blocks(
            tokens.clone(),
            PAGE_SIZE,
            &mut pool,
            async_runtime.handle().clone(),
        );
Ryan Olson's avatar
Ryan Olson committed
816
817
818
        assert_eq!(blocks.len(), 2);
        assert_eq!(matched_block_count, 2);
        assert_eq!(pool.available_blocks(), 8);
Ryan Olson's avatar
Ryan Olson committed
819
820
821
822
        assert_eq!(
            pool.available_blocks_counter().load(Ordering::Relaxed),
            pool.available_blocks()
        );
Ryan Olson's avatar
Ryan Olson committed
823
824
825
826
827

        pool.return_blocks(blocks);

        assert_eq!(pool.total_blocks(), 10);
        assert_eq!(pool.available_blocks(), 10);
Ryan Olson's avatar
Ryan Olson committed
828
829
830
831
        assert_eq!(
            pool.available_blocks_counter().load(Ordering::Relaxed),
            pool.available_blocks()
        );
Ryan Olson's avatar
Ryan Olson committed
832
833
834
835
836
837
838
839
840
841
842

        let blocks = pool.acquire_free_blocks(10).unwrap();
        for block in &blocks {
            assert!(block.state().is_reset());
        }
    }

    #[test]
    fn test_basic_sequence_matching() {
        let mut pool = InactiveBlockPool::new();

843
844
        let async_runtime = tokio::runtime::Runtime::new().unwrap();

Ryan Olson's avatar
Ryan Olson committed
845
846
        // Create a sequence of 4 tokens split into blocks of 2
        let sequence = create_token_sequence(&[1, 2, 3, 4]);
847
        let blocks = create_blocks(sequence, 2, async_runtime.handle().clone());
Ryan Olson's avatar
Ryan Olson committed
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
        assert_eq!(blocks.len(), 2);

        // Match the blocks in sequence
        let hashes: Vec<_> = blocks
            .iter()
            .map(|b| {
                b.sequence_hash()
                    .expect("Block should have a sequence hash in this test")
            })
            .collect();

        // Insert blocks into pool
        pool.add_blocks_with_state(blocks);

        assert_eq!(pool.total_blocks(), 2);
        assert_eq!(pool.available_blocks(), 2);
Ryan Olson's avatar
Ryan Olson committed
864
865
866
867
        assert_eq!(
            pool.available_blocks_counter().load(Ordering::Relaxed),
            pool.available_blocks()
        );
Ryan Olson's avatar
Ryan Olson committed
868
869
870
871
872
873
874

        // Match the blocks in sequence
        let matched = pool.match_sequence_hashes(hashes.clone());
        assert_eq!(matched.len(), 2);

        assert_eq!(pool.total_blocks(), 2);
        assert_eq!(pool.available_blocks(), 0);
Ryan Olson's avatar
Ryan Olson committed
875
876
877
878
        assert_eq!(
            pool.available_blocks_counter().load(Ordering::Relaxed),
            pool.available_blocks()
        );
Ryan Olson's avatar
Ryan Olson committed
879
880
881
882
883
884
885
886
887
888

        // Validate the blocks are in the correct order and match the sequence hashes
        assert_eq!(matched[0].sequence_hash().unwrap(), hashes[0]);
        assert_eq!(matched[1].sequence_hash().unwrap(), hashes[1]);

        // Return blocks in reverse order (tail to root)
        pool.return_blocks(matched);

        assert_eq!(pool.total_blocks(), 2);
        assert_eq!(pool.available_blocks(), 2);
Ryan Olson's avatar
Ryan Olson committed
889
890
891
892
        assert_eq!(
            pool.available_blocks_counter().load(Ordering::Relaxed),
            pool.available_blocks()
        );
Ryan Olson's avatar
Ryan Olson committed
893
894
    }
}