sapling/eden/fs/inodes/InodeError.cpp
Chad Austin 81d18bde42 allow querying Overlay file size outside of FileInode
Summary: Allow calling into OverlayFileAccess::getFileSize from outside of FileInode.

Reviewed By: xavierd

Differential Revision: D24300035

fbshipit-source-id: 2a5fc730122a79220fd38c928b74342433c4e9f2
2020-10-23 11:16:10 -07:00

68 lines
1.7 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 "InodeError.h"
#include <folly/String.h>
#include "eden/fs/inodes/TreeInode.h"
namespace facebook {
namespace eden {
InodeError::InodeError(int errnum, TreeInodePtr inode, PathComponentPiece child)
: std::system_error(errnum, std::generic_category()),
inode_(std::move(inode)),
child_(PathComponent{child}) {}
InodeError::InodeError(
int errnum,
TreeInodePtr inode,
PathComponentPiece child,
std::string&& message)
: std::system_error(errnum, std::generic_category()),
inode_(std::move(inode)),
child_(PathComponent{child}),
message_(std::move(message)) {}
const char* InodeError::what() const noexcept {
try {
auto msg = fullMessage_.wlock();
if (msg->empty()) {
*msg = computeMessage();
}
return msg->c_str();
} catch (...) {
// Fallback value if anything goes wrong building the real message
return "<InodeError>";
}
}
std::string InodeError::computeMessage() const {
std::string path;
if (inode_) {
if (child_.has_value()) {
if (inode_->getNodeId() == kRootNodeId) {
path = child_.value().stringPiece().str();
} else {
path = inode_->getLogPath() + "/";
auto childName = child_.value().stringPiece();
path.append(childName.begin(), childName.end());
}
} else {
path = inode_->getLogPath();
}
}
if (message_.empty()) {
return path + ": " + folly::errnoStr(errnum());
}
return path + ": " + message_ + ": " + folly::errnoStr(errnum());
}
} // namespace eden
} // namespace facebook