X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=folly%2FFile.cpp;h=379efe62eb0c650c5d06b82650635594240f4e1d;hb=320a9600f9cb11bbfd3f17dc99cb7b252132eb37;hp=1262dd1c3aaedab8616e2d45d19a9c1267147c02;hpb=218b523148612c9eda1e4e817573c2309dae71fa;p=folly.git diff --git a/folly/File.cpp b/folly/File.cpp index 1262dd1c..379efe62 100644 --- a/folly/File.cpp +++ b/folly/File.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2013 Facebook, Inc. + * Copyright 2015 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -14,9 +14,15 @@ * limitations under the License. */ -#include "folly/File.h" -#include "folly/Format.h" -#include "folly/ScopeGuard.h" +#include + +#include +#include + +#include +#include +#include +#include #include @@ -31,25 +37,24 @@ File::File() File::File(int fd, bool ownsFd) : fd_(fd) - , ownsFd_(ownsFd) -{} + , ownsFd_(ownsFd) { + CHECK_GE(fd, -1) << "fd must be -1 or non-negative"; + CHECK(fd != -1 || !ownsFd) << "cannot own -1"; +} File::File(const char* name, int flags, mode_t mode) : fd_(::open(name, flags, mode)) , ownsFd_(false) { - - if (fd_ < 0) { - throw std::system_error(errno, std::system_category(), - folly::format("open(\"{}\", {:#o}, 0{:#o}) failed", - name, flags, mode).str()); + if (fd_ == -1) { + throwSystemError(folly::format("open(\"{}\", {:#o}, 0{:#o}) failed", + name, flags, mode).fbstr()); } ownsFd_ = true; } -File::File(File&& other) +File::File(File&& other) noexcept : fd_(other.fd_) , ownsFd_(other.ownsFd_) { - other.release(); } @@ -60,28 +65,30 @@ File& File::operator=(File&& other) { } File::~File() { - closeNoThrow(); // ignore error + auto fd = fd_; + if (!closeNoThrow()) { // ignore most errors + DCHECK_NE(errno, EBADF) << "closing fd " << fd << ", it may already " + << "have been closed. Another time, this might close the wrong FD."; + } } /* static */ File File::temporary() { // make a temp file with tmpfile(), dup the fd, then return it in a File. FILE* tmpFile = tmpfile(); - if (!tmpFile) { - throw std::system_error(errno, std::system_category(), "tmpfile() failed"); - } + checkFopenError(tmpFile, "tmpfile() failed"); SCOPE_EXIT { fclose(tmpFile); }; - int fd = dup(fileno(tmpFile)); - if (fd < 0) { - throw std::system_error(errno, std::system_category(), "dup() failed"); - } + int fd = ::dup(fileno(tmpFile)); + checkUnixError(fd, "dup() failed"); return File(fd, true); } -void File::release() { +int File::release() noexcept { + int released = fd_; fd_ = -1; ownsFd_ = false; + return released; } void File::swap(File& other) { @@ -94,9 +101,20 @@ void swap(File& a, File& b) { a.swap(b); } +File File::dup() const { + if (fd_ != -1) { + int fd = ::dup(fd_); + checkUnixError(fd, "dup() failed"); + + return File(fd, true); + } + + return File(); +} + void File::close() { if (!closeNoThrow()) { - throw std::system_error(errno, std::system_category(), "close() failed"); + throwSystemError("close() failed"); } } @@ -106,4 +124,26 @@ bool File::closeNoThrow() { return r == 0; } +void File::lock() { doLock(LOCK_EX); } +bool File::try_lock() { return doTryLock(LOCK_EX); } +void File::lock_shared() { doLock(LOCK_SH); } +bool File::try_lock_shared() { return doTryLock(LOCK_SH); } + +void File::doLock(int op) { + checkUnixError(flockNoInt(fd_, op), "flock() failed (lock)"); +} + +bool File::doTryLock(int op) { + int r = flockNoInt(fd_, op | LOCK_NB); + // flock returns EWOULDBLOCK if already locked + if (r == -1 && errno == EWOULDBLOCK) return false; + checkUnixError(r, "flock() failed (try_lock)"); + return true; +} + +void File::unlock() { + checkUnixError(flockNoInt(fd_, LOCK_UN), "flock() failed (unlock)"); +} +void File::unlock_shared() { unlock(); } + } // namespace folly