sapling/eden/fs/inodes/InodeError.cpp
Victor Zverovich 639073cdd0 Make errnoStr return std::string instead of fbstring
Summary:
The result of `errnoStr` is often converted to `std::string` so returning `fbstring` adds an extra copy. Make it return `std::string` instead. This will also allow removing dependency between `String.h` and `FBString.h`.

(Note: this ignores all push blocking failures!)

Reviewed By: yfeldblum

Differential Revision: D20195395

fbshipit-source-id: 0dc65f1566911156be3fcb715dd105c58f2a8822
2020-03-10 10:50:44 -07:00

66 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 (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