sapling/eden/fs/notifications/Notifications.cpp
Xavier Deguillard a810f38e6b notifications: support Windows
Summary:
On Windows, /bin/sh doesn't exist. To spawn a command in a shell, we need to
use Powershell.

Reviewed By: genevievehelsel

Differential Revision: D24864355

fbshipit-source-id: 3bcf630a90e644a31ff9db8fea9891476cad641d
2020-11-11 09:37:56 -08:00

73 lines
1.8 KiB
C++

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
#include "eden/fs/notifications/Notifications.h"
#include <folly/futures/Future.h>
#include "eden/fs/config/EdenConfig.h"
#include "eden/fs/config/ReloadableConfig.h"
#include "eden/fs/utils/SpawnedProcess.h"
#include "eden/fs/utils/SystemError.h"
namespace facebook {
namespace eden {
bool Notifications::canShowNotification() {
auto now = std::chrono::steady_clock::now();
auto last = lastShown_.wlock();
if (*last) {
auto expiry = last->value() +
config_.getEdenConfig()->notificationInterval.getValue();
if (now < expiry) {
return false;
}
}
return true;
}
namespace {
bool isGenericConnectivityError(const std::exception& err) {
int errnum = EIO;
if (auto* sys = dynamic_cast<const std::system_error*>(&err)) {
if (isErrnoError(*sys)) {
errnum = sys->code().value();
}
} else if (auto* timeout = dynamic_cast<const folly::FutureTimeout*>(&err)) {
errnum = ETIMEDOUT;
}
return errnum == EIO || errnum == ETIMEDOUT;
}
} // namespace
void Notifications::showGenericErrorNotification(const std::exception& err) {
if (!isGenericConnectivityError(err)) {
return;
}
if (!canShowNotification()) {
return;
}
*lastShown_.wlock() = std::chrono::steady_clock::now();
std::vector<std::string> args;
if (folly::kIsWindows) {
args.emplace_back("powershell");
args.emplace_back("-NoProfile");
args.emplace_back("-Command");
} else {
args.emplace_back("/bin/sh");
args.emplace_back("-c");
}
args.emplace_back(
config_.getEdenConfig()->genericErrorNotificationCommand.getValue());
SpawnedProcess(args).detach();
}
} // namespace eden
} // namespace facebook