closeOnDestruction_(closeOnDestruction),
fd_(-1),
path_(generateUniquePath(std::move(dir), namePrefix)) {
- fd_ = open(path_.c_str(), O_RDWR | O_CREAT | O_EXCL, 0666);
+ fd_ = open(path_.string().c_str(), O_RDWR | O_CREAT | O_EXCL, 0666);
checkUnixError(fd_, "open failed");
if (scope_ == Scope::UNLINK_IMMEDIATELY) {
}
ChangeToTempDir::ChangeToTempDir() : initialPath_(fs::current_path()) {
- std::string p = dir_.path().native();
+ std::string p = dir_.path().string();
::chdir(p.c_str());
}
ChangeToTempDir::~ChangeToTempDir() {
- std::string p = initialPath_.native();
+ std::string p = initialPath_.string();
::chdir(p.c_str());
}
oldFDCopy_ = dup(fd_);
PCHECK(oldFDCopy_ != -1) << "Could not copy FD " << fd_;
- int file_fd = open(file_.path().c_str(), O_WRONLY|O_CREAT, 0600);
+ int file_fd = open(file_.path().string().c_str(), O_WRONLY|O_CREAT, 0600);
PCHECK(dup2(file_fd, fd_) != -1) << "Could not replace FD " << fd_
<< " with " << file_fd;
PCHECK(close(file_fd) != -1) << "Could not close " << file_fd;
std::string CaptureFD::read() {
std::string contents;
- std::string filename = file_.path().native();
+ std::string filename = file_.path().string();
PCHECK(folly::readFile(filename.c_str(), contents));
return contents;
}
std::string CaptureFD::readIncremental() {
- std::string filename = file_.path().native();
+ std::string filename = file_.path().string();
// Yes, I know that I could just keep the file open instead. So sue me.
folly::File f(openNoInt(filename.c_str(), O_RDONLY), true);
auto size = lseek(f.fd(), 0, SEEK_END) - readOffset_;