sapling/eden/fs/testharness/TestDispatcher.cpp
Xavier Deguillard a29d465ee8 fs: fix license header
Summary:
With Facebook having been renamed Meta Platforms, we need to change the license
headers.

Reviewed By: fanzeyi

Differential Revision: D33407812

fbshipit-source-id: b11bfbbf13a48873f0cea75f212cc7b07a68fb2e
2022-01-04 15:00:07 -08:00

71 lines
2.1 KiB
C++

/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
#ifndef _WIN32
#include "eden/fs/testharness/TestDispatcher.h"
#include <folly/Conv.h>
#include <folly/logging/xlog.h>
using std::string;
namespace facebook {
namespace eden {
ImmediateFuture<fuse_entry_out> TestDispatcher::lookup(
uint64_t requestID,
InodeNumber parent,
PathComponentPiece name,
ObjectFetchContext& /*context*/) {
XLOG(DBG5) << "received lookup " << requestID << ": parent=" << parent
<< ", name=" << name;
ImmediateFuture<fuse_entry_out> result{};
{
// Whenever we receive a lookup request just add it to the pendingLookups_
// The test harness can then respond to it later however it wants.
auto state = state_.lock();
auto emplaceResult =
state->pendingLookups.emplace(requestID, PendingLookup(parent, name));
// We expect the test code to generate unique request IDs,
// just like the kernel should.
XCHECK(emplaceResult.second) << "received duplicate request ID "
<< requestID << " from the test harness";
result = emplaceResult.first->second.promise.getSemiFuture();
}
requestReceived_.notify_all();
return result;
}
TestDispatcher::PendingLookup TestDispatcher::waitForLookup(
uint64_t requestId,
std::chrono::milliseconds timeout) {
auto state = state_.lock();
auto end_time = std::chrono::steady_clock::now() + timeout;
while (true) {
auto iter = state->pendingLookups.find(requestId);
if (iter != state->pendingLookups.end()) {
PendingLookup result(std::move(iter->second));
state->pendingLookups.erase(iter);
return result;
}
if (requestReceived_.wait_until(state.as_lock(), end_time) ==
std::cv_status::timeout) {
throw std::runtime_error(folly::to<string>(
"timed out waiting for test dispatcher to receive lookup request ",
requestId));
}
}
}
} // namespace eden
} // namespace facebook
#endif