#include "orc-rt/Session.h"
namespace orc_rt {
Session::~Session() { waitForShutdown(); }
void Session::shutdown(OnShutdownCompleteFn OnShutdownComplete) {
{
std::scoped_lock<std::mutex> Lock(M);
if (SI) {
SI->OnCompletes.push_back(std::move(OnShutdownComplete));
return;
}
SI = std::make_unique<ShutdownInfo>();
SI->OnCompletes.push_back(std::move(OnShutdownComplete));
std::swap(SI->ResourceMgrs, ResourceMgrs);
}
shutdownNext(Error::success());
}
void Session::waitForShutdown() {
shutdown([]() {});
std::unique_lock<std::mutex> Lock(M);
SI->CompleteCV.wait(Lock, [&]() { return SI->Complete; });
}
void Session::shutdownNext(Error Err) {
if (Err)
reportError(std::move(Err));
if (SI->ResourceMgrs.empty())
return shutdownComplete();
auto NextRM = std::move(SI->ResourceMgrs.back());
SI->ResourceMgrs.pop_back();
NextRM->shutdown([this](Error Err) { shutdownNext(std::move(Err)); });
}
void Session::shutdownComplete() {
std::unique_ptr<TaskDispatcher> TmpDispatcher;
{
std::lock_guard<std::mutex> Lock(M);
TmpDispatcher = std::move(Dispatcher);
}
TmpDispatcher->shutdown();
for (auto &OnShutdownComplete : SI->OnCompletes)
OnShutdownComplete();
{
std::lock_guard<std::mutex> Lock(M);
SI->Complete = true;
}
SI->CompleteCV.notify_all();
}
}