| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500 |
- // Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
- // This source code is licensed under both the GPLv2 (found in the
- // COPYING file in the root directory) and Apache 2.0 License
- // (found in the LICENSE.Apache file in the root directory).
- #include "file/random_access_file_reader.h"
- #include <algorithm>
- #include "file/file_util.h"
- #include "port/port.h"
- #include "port/stack_trace.h"
- #include "rocksdb/file_system.h"
- #include "test_util/sync_point.h"
- #include "test_util/testharness.h"
- #include "test_util/testutil.h"
- #include "util/random.h"
- namespace ROCKSDB_NAMESPACE {
- class RandomAccessFileReaderTest : public testing::Test {
- public:
- void SetUp() override {
- SetupSyncPointsToMockDirectIO();
- env_ = Env::Default();
- fs_ = FileSystem::Default();
- test_dir_ = test::PerThreadDBPath("random_access_file_reader_test");
- ASSERT_OK(fs_->CreateDir(test_dir_, IOOptions(), nullptr));
- }
- void TearDown() override { EXPECT_OK(DestroyDir(env_, test_dir_)); }
- void Write(const std::string& fname, const std::string& content) {
- std::unique_ptr<FSWritableFile> f;
- ASSERT_OK(fs_->NewWritableFile(Path(fname), FileOptions(), &f, nullptr));
- ASSERT_OK(f->Append(content, IOOptions(), nullptr));
- ASSERT_OK(f->Close(IOOptions(), nullptr));
- }
- void Read(const std::string& fname, const FileOptions& opts,
- std::unique_ptr<RandomAccessFileReader>* reader) {
- std::string fpath = Path(fname);
- std::unique_ptr<FSRandomAccessFile> f;
- ASSERT_OK(fs_->NewRandomAccessFile(fpath, opts, &f, nullptr));
- reader->reset(new RandomAccessFileReader(std::move(f), fpath,
- env_->GetSystemClock().get()));
- }
- void AssertResult(const std::string& content,
- const std::vector<FSReadRequest>& reqs) {
- for (const auto& r : reqs) {
- ASSERT_OK(r.status);
- ASSERT_EQ(r.len, r.result.size());
- ASSERT_EQ(content.substr(r.offset, r.len), r.result.ToString());
- }
- }
- private:
- Env* env_;
- std::shared_ptr<FileSystem> fs_;
- std::string test_dir_;
- std::string Path(const std::string& fname) { return test_dir_ + "/" + fname; }
- };
- // Skip the following tests in lite mode since direct I/O is unsupported.
- TEST_F(RandomAccessFileReaderTest, ReadDirectIO) {
- std::string fname = "read-direct-io";
- Random rand(0);
- std::string content = rand.RandomString(kDefaultPageSize);
- Write(fname, content);
- FileOptions opts;
- opts.use_direct_reads = true;
- std::unique_ptr<RandomAccessFileReader> r;
- Read(fname, opts, &r);
- ASSERT_TRUE(r->use_direct_io());
- const size_t page_size = r->file()->GetRequiredBufferAlignment();
- size_t offset = page_size / 2;
- size_t len = page_size / 3;
- Slice result;
- AlignedBuf buf;
- for (Env::IOPriority rate_limiter_priority : {Env::IO_LOW, Env::IO_TOTAL}) {
- IOOptions io_opts;
- io_opts.rate_limiter_priority = rate_limiter_priority;
- ASSERT_OK(r->Read(io_opts, offset, len, &result, nullptr, &buf));
- ASSERT_EQ(result.ToString(), content.substr(offset, len));
- }
- }
- TEST_F(RandomAccessFileReaderTest, MultiReadDirectIO) {
- std::vector<FSReadRequest> aligned_reqs;
- ROCKSDB_NAMESPACE::SyncPoint::GetInstance()->SetCallBack(
- "RandomAccessFileReader::MultiRead:AlignedReqs", [&](void* reqs) {
- // Copy reqs, since it's allocated on stack inside MultiRead, which will
- // be deallocated after MultiRead returns.
- size_t i = 0;
- aligned_reqs.resize(
- (*reinterpret_cast<std::vector<FSReadRequest>*>(reqs)).size());
- for (auto& req :
- (*reinterpret_cast<std::vector<FSReadRequest>*>(reqs))) {
- aligned_reqs[i].offset = req.offset;
- aligned_reqs[i].len = req.len;
- aligned_reqs[i].result = req.result;
- aligned_reqs[i].status = req.status;
- aligned_reqs[i].scratch = req.scratch;
- i++;
- }
- });
- ROCKSDB_NAMESPACE::SyncPoint::GetInstance()->EnableProcessing();
- // Creates a file with 3 pages.
- std::string fname = "multi-read-direct-io";
- Random rand(0);
- std::string content = rand.RandomString(3 * kDefaultPageSize);
- Write(fname, content);
- FileOptions opts;
- opts.use_direct_reads = true;
- std::unique_ptr<RandomAccessFileReader> r;
- Read(fname, opts, &r);
- ASSERT_TRUE(r->use_direct_io());
- const size_t page_size = r->file()->GetRequiredBufferAlignment();
- {
- // Reads 2 blocks in the 1st page.
- // The results should be SharedSlices of the same underlying buffer.
- //
- // Illustration (each x is a 1/4 page)
- // First page: xxxx
- // 1st block: x
- // 2nd block: xx
- FSReadRequest r0;
- r0.offset = 0;
- r0.len = page_size / 4;
- r0.scratch = nullptr;
- FSReadRequest r1;
- r1.offset = page_size / 2;
- r1.len = page_size / 2;
- r1.scratch = nullptr;
- std::vector<FSReadRequest> reqs;
- reqs.push_back(std::move(r0));
- reqs.push_back(std::move(r1));
- AlignedBuf aligned_buf;
- IODebugContext dbg;
- ASSERT_OK(r->MultiRead(IOOptions(), reqs.data(), reqs.size(), &aligned_buf,
- &dbg));
- AssertResult(content, reqs);
- // Reads the first page internally.
- ASSERT_EQ(aligned_reqs.size(), 1);
- const FSReadRequest& aligned_r = aligned_reqs[0];
- ASSERT_OK(aligned_r.status);
- ASSERT_EQ(aligned_r.offset, 0);
- ASSERT_EQ(aligned_r.len, page_size);
- }
- {
- // Reads 3 blocks:
- // 1st block in the 1st page;
- // 2nd block from the middle of the 1st page to the middle of the 2nd page;
- // 3rd block in the 2nd page.
- // The results should be SharedSlices of the same underlying buffer.
- //
- // Illustration (each x is a 1/4 page)
- // 2 pages: xxxxxxxx
- // 1st block: x
- // 2nd block: xxxx
- // 3rd block: x
- FSReadRequest r0;
- r0.offset = 0;
- r0.len = page_size / 4;
- r0.scratch = nullptr;
- FSReadRequest r1;
- r1.offset = page_size / 2;
- r1.len = page_size;
- r1.scratch = nullptr;
- FSReadRequest r2;
- r2.offset = 2 * page_size - page_size / 4;
- r2.len = page_size / 4;
- r2.scratch = nullptr;
- std::vector<FSReadRequest> reqs;
- reqs.push_back(std::move(r0));
- reqs.push_back(std::move(r1));
- reqs.push_back(std::move(r2));
- AlignedBuf aligned_buf;
- IODebugContext dbg;
- ASSERT_OK(r->MultiRead(IOOptions(), reqs.data(), reqs.size(), &aligned_buf,
- &dbg));
- AssertResult(content, reqs);
- // Reads the first two pages in one request internally.
- ASSERT_EQ(aligned_reqs.size(), 1);
- const FSReadRequest& aligned_r = aligned_reqs[0];
- ASSERT_OK(aligned_r.status);
- ASSERT_EQ(aligned_r.offset, 0);
- ASSERT_EQ(aligned_r.len, 2 * page_size);
- }
- {
- // Reads 3 blocks:
- // 1st block in the middle of the 1st page;
- // 2nd block in the middle of the 2nd page;
- // 3rd block in the middle of the 3rd page.
- // The results should be SharedSlices of the same underlying buffer.
- //
- // Illustration (each x is a 1/4 page)
- // 3 pages: xxxxxxxxxxxx
- // 1st block: xx
- // 2nd block: xx
- // 3rd block: xx
- FSReadRequest r0;
- r0.offset = page_size / 4;
- r0.len = page_size / 2;
- r0.scratch = nullptr;
- FSReadRequest r1;
- r1.offset = page_size + page_size / 4;
- r1.len = page_size / 2;
- r1.scratch = nullptr;
- FSReadRequest r2;
- r2.offset = 2 * page_size + page_size / 4;
- r2.len = page_size / 2;
- r2.scratch = nullptr;
- std::vector<FSReadRequest> reqs;
- reqs.push_back(std::move(r0));
- reqs.push_back(std::move(r1));
- reqs.push_back(std::move(r2));
- AlignedBuf aligned_buf;
- IODebugContext dbg;
- ASSERT_OK(r->MultiRead(IOOptions(), reqs.data(), reqs.size(), &aligned_buf,
- &dbg));
- AssertResult(content, reqs);
- // Reads the first 3 pages in one request internally.
- ASSERT_EQ(aligned_reqs.size(), 1);
- const FSReadRequest& aligned_r = aligned_reqs[0];
- ASSERT_OK(aligned_r.status);
- ASSERT_EQ(aligned_r.offset, 0);
- ASSERT_EQ(aligned_r.len, 3 * page_size);
- }
- {
- // Reads 2 blocks:
- // 1st block in the middle of the 1st page;
- // 2nd block in the middle of the 3rd page.
- // The results are two different buffers.
- //
- // Illustration (each x is a 1/4 page)
- // 3 pages: xxxxxxxxxxxx
- // 1st block: xx
- // 2nd block: xx
- FSReadRequest r0;
- r0.offset = page_size / 4;
- r0.len = page_size / 2;
- r0.scratch = nullptr;
- FSReadRequest r1;
- r1.offset = 2 * page_size + page_size / 4;
- r1.len = page_size / 2;
- r1.scratch = nullptr;
- std::vector<FSReadRequest> reqs;
- reqs.push_back(std::move(r0));
- reqs.push_back(std::move(r1));
- AlignedBuf aligned_buf;
- IODebugContext dbg;
- ASSERT_OK(r->MultiRead(IOOptions(), reqs.data(), reqs.size(), &aligned_buf,
- &dbg));
- AssertResult(content, reqs);
- // Reads the 1st and 3rd pages in two requests internally.
- ASSERT_EQ(aligned_reqs.size(), 2);
- const FSReadRequest& aligned_r0 = aligned_reqs[0];
- const FSReadRequest& aligned_r1 = aligned_reqs[1];
- ASSERT_OK(aligned_r0.status);
- ASSERT_EQ(aligned_r0.offset, 0);
- ASSERT_EQ(aligned_r0.len, page_size);
- ASSERT_OK(aligned_r1.status);
- ASSERT_EQ(aligned_r1.offset, 2 * page_size);
- ASSERT_EQ(aligned_r1.len, page_size);
- }
- ROCKSDB_NAMESPACE::SyncPoint::GetInstance()->DisableProcessing();
- ROCKSDB_NAMESPACE::SyncPoint::GetInstance()->ClearAllCallBacks();
- }
- TEST(FSReadRequest, Align) {
- FSReadRequest r;
- r.offset = 2000;
- r.len = 2000;
- r.scratch = nullptr;
- ASSERT_OK(r.status);
- FSReadRequest aligned_r = Align(r, 1024);
- ASSERT_OK(r.status);
- ASSERT_OK(aligned_r.status);
- ASSERT_EQ(aligned_r.offset, 1024);
- ASSERT_EQ(aligned_r.len, 3072);
- }
- TEST(FSReadRequest, TryMerge) {
- // reverse means merging dest into src.
- for (bool reverse : {true, false}) {
- {
- // dest: [ ]
- // src: [ ]
- FSReadRequest dest;
- dest.offset = 0;
- dest.len = 10;
- dest.scratch = nullptr;
- ASSERT_OK(dest.status);
- FSReadRequest src;
- src.offset = 15;
- src.len = 10;
- src.scratch = nullptr;
- ASSERT_OK(src.status);
- if (reverse) {
- std::swap(dest, src);
- }
- ASSERT_FALSE(TryMerge(&dest, src));
- ASSERT_OK(dest.status);
- ASSERT_OK(src.status);
- }
- {
- // dest: [ ]
- // src: [ ]
- FSReadRequest dest;
- dest.offset = 0;
- dest.len = 10;
- dest.scratch = nullptr;
- ASSERT_OK(dest.status);
- FSReadRequest src;
- src.offset = 10;
- src.len = 10;
- src.scratch = nullptr;
- ASSERT_OK(src.status);
- if (reverse) {
- std::swap(dest, src);
- }
- ASSERT_TRUE(TryMerge(&dest, src));
- ASSERT_EQ(dest.offset, 0);
- ASSERT_EQ(dest.len, 20);
- ASSERT_OK(dest.status);
- ASSERT_OK(src.status);
- }
- {
- // dest: [ ]
- // src: [ ]
- FSReadRequest dest;
- dest.offset = 0;
- dest.len = 10;
- dest.scratch = nullptr;
- ASSERT_OK(dest.status);
- FSReadRequest src;
- src.offset = 5;
- src.len = 10;
- src.scratch = nullptr;
- ASSERT_OK(src.status);
- if (reverse) {
- std::swap(dest, src);
- }
- ASSERT_TRUE(TryMerge(&dest, src));
- ASSERT_EQ(dest.offset, 0);
- ASSERT_EQ(dest.len, 15);
- ASSERT_OK(dest.status);
- ASSERT_OK(src.status);
- }
- {
- // dest: [ ]
- // src: [ ]
- FSReadRequest dest;
- dest.offset = 0;
- dest.len = 10;
- dest.scratch = nullptr;
- ASSERT_OK(dest.status);
- FSReadRequest src;
- src.offset = 5;
- src.len = 5;
- src.scratch = nullptr;
- ASSERT_OK(src.status);
- if (reverse) {
- std::swap(dest, src);
- }
- ASSERT_TRUE(TryMerge(&dest, src));
- ASSERT_EQ(dest.offset, 0);
- ASSERT_EQ(dest.len, 10);
- ASSERT_OK(dest.status);
- ASSERT_OK(src.status);
- }
- {
- // dest: [ ]
- // src: [ ]
- FSReadRequest dest;
- dest.offset = 0;
- dest.len = 10;
- dest.scratch = nullptr;
- ASSERT_OK(dest.status);
- FSReadRequest src;
- src.offset = 5;
- src.len = 1;
- src.scratch = nullptr;
- ASSERT_OK(src.status);
- if (reverse) {
- std::swap(dest, src);
- }
- ASSERT_TRUE(TryMerge(&dest, src));
- ASSERT_EQ(dest.offset, 0);
- ASSERT_EQ(dest.len, 10);
- ASSERT_OK(dest.status);
- ASSERT_OK(src.status);
- }
- {
- // dest: [ ]
- // src: [ ]
- FSReadRequest dest;
- dest.offset = 0;
- dest.len = 10;
- dest.scratch = nullptr;
- ASSERT_OK(dest.status);
- FSReadRequest src;
- src.offset = 0;
- src.len = 10;
- src.scratch = nullptr;
- ASSERT_OK(src.status);
- if (reverse) {
- std::swap(dest, src);
- }
- ASSERT_TRUE(TryMerge(&dest, src));
- ASSERT_EQ(dest.offset, 0);
- ASSERT_EQ(dest.len, 10);
- ASSERT_OK(dest.status);
- ASSERT_OK(src.status);
- }
- {
- // dest: [ ]
- // src: [ ]
- FSReadRequest dest;
- dest.offset = 0;
- dest.len = 10;
- dest.scratch = nullptr;
- ASSERT_OK(dest.status);
- FSReadRequest src;
- src.offset = 0;
- src.len = 5;
- src.scratch = nullptr;
- ASSERT_OK(src.status);
- if (reverse) {
- std::swap(dest, src);
- }
- ASSERT_TRUE(TryMerge(&dest, src));
- ASSERT_EQ(dest.offset, 0);
- ASSERT_EQ(dest.len, 10);
- ASSERT_OK(dest.status);
- ASSERT_OK(src.status);
- }
- }
- }
- } // namespace ROCKSDB_NAMESPACE
- int main(int argc, char** argv) {
- ROCKSDB_NAMESPACE::port::InstallStackTraceHandler();
- ::testing::InitGoogleTest(&argc, argv);
- return RUN_ALL_TESTS();
- }
|