blob: a4b824261f4eed68d4a6a4979bf771630ed6ba6e [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <blobfs/allocator.h>
#include <unittest/unittest.h>
#include "utils.h"
namespace blobfs {
// Create a block and node map of the requested size, update the superblock of
// the |space_manager|, and create an allocator from this provided info.
bool InitializeAllocator(size_t blocks, size_t nodes, MockSpaceManager* space_manager,
fbl::unique_ptr<Allocator>* out) {
BEGIN_HELPER;
RawBitmap block_map;
ASSERT_EQ(ZX_OK, block_map.Reset(blocks));
fzl::ResizeableVmoMapper node_map;
ASSERT_EQ(ZX_OK, node_map.CreateAndMap(nodes * kBlobfsBlockSize, "node map"));
space_manager->MutableInfo().inode_count = nodes;
space_manager->MutableInfo().data_block_count = blocks;
*out = fbl::make_unique<Allocator>(space_manager, std::move(block_map), std::move(node_map));
(*out)->SetLogging(false);
END_HELPER;
}
// Force the allocator to become maximally fragmented by allocating
// every-other block within up to |blocks|.
bool ForceFragmentation(Allocator* allocator, size_t blocks) {
BEGIN_HELPER;
fbl::Vector<ReservedExtent> extents[blocks];
for (size_t i = 0; i < blocks; i++) {
ASSERT_EQ(ZX_OK, allocator->ReserveBlocks(1, &extents[i]));
ASSERT_EQ(1, extents[i].size());
}
for (size_t i = 0; i < blocks; i += 2) {
allocator->MarkBlocksAllocated(extents[i][0]);
}
END_HELPER;
}
// Save the extents within |in| in a non-reserved vector |out|.
void CopyExtents(const fbl::Vector<ReservedExtent>& in, fbl::Vector<Extent>* out) {
out->reserve(in.size());
for (size_t i = 0; i < in.size(); i++) {
out->push_back(in[i].extent());
}
}
// Save the nodes within |in| in a non-reserved vector |out|.
void CopyNodes(const fbl::Vector<ReservedNode>& in, fbl::Vector<uint32_t>* out) {
out->reserve(in.size());
for (size_t i = 0; i < in.size(); i++) {
out->push_back(in[i].index());
}
}
} // namespace blobfs