Small tweaks and bugfixes for Issue 18 and 19.

Slight tweak to the no-overlap optimization: only push to
level 2 to reduce the amount of wasted space when the same
small key range is being repeatedly overwritten.

Fix for Issue 18: Avoid failure on Windows by avoiding
deletion of lock file until the end of DestroyDB().

Fix for Issue 19: Disregard sequence numbers when checking for 
overlap in sstable ranges. This fixes issue 19: when writing 
the same key over and over again, we would generate a sequence 
of sstables that were never merged together since their sequence
numbers were disjoint.

Don't ignore map/unmap error checks.

Miscellaneous fixes for small problems Sanjay found while diagnosing
issue/9 and issue/16 (corruption_testr failures).
- log::Reader reports the record type when it finds an unexpected type.
- log::Reader no longer reports an error when it encounters an expected
  zero record regardless of the setting of the "checksum" flag.
- Added a missing forward declaration.
- Documented a side-effects of larger write buffer sizes
  (longer recovery time).



git-svn-id: https://leveldb.googlecode.com/svn/trunk@37 62dab493-f737-651d-591e-8d6aee1b9529
main
gabor@google.com 14 years ago
parent ed154f6dc4
commit 6699c7ebe6
  1. 2
      db/corruption_test.cc
  2. 19
      db/db_impl.cc
  3. 23
      db/db_test.cc
  4. 8
      db/dbformat.h
  5. 15
      db/log_reader.cc
  6. 19
      db/version_set.cc
  7. 12
      db/version_set.h
  8. 21
      db/version_set_test.cc
  9. 2
      db/write_batch_internal.h
  10. 2
      include/leveldb/options.h
  11. 61
      util/env_posix.cc

@ -295,7 +295,7 @@ TEST(CorruptionTest, CompactionInputError) {
Build(10); Build(10);
DBImpl* dbi = reinterpret_cast<DBImpl*>(db_); DBImpl* dbi = reinterpret_cast<DBImpl*>(db_);
dbi->TEST_CompactMemTable(); dbi->TEST_CompactMemTable();
const int last = config::kNumLevels - 1; const int last = config::kMaxMemCompactLevel;
ASSERT_EQ(1, Property("leveldb.num-files-at-level" + NumberToString(last))); ASSERT_EQ(1, Property("leveldb.num-files-at-level" + NumberToString(last)));
Corrupt(kTableFile, 100, 1); Corrupt(kTableFile, 100, 1);

@ -456,10 +456,13 @@ Status DBImpl::WriteLevel0Table(MemTable* mem, VersionEdit* edit,
// should not be added to the manifest. // should not be added to the manifest.
int level = 0; int level = 0;
if (s.ok() && meta.file_size > 0) { if (s.ok() && meta.file_size > 0) {
if (base != NULL && !base->OverlapInLevel(0, meta.smallest, meta.largest)) { const Slice min_user_key = meta.smallest.user_key();
// Push to largest level we can without causing overlaps const Slice max_user_key = meta.largest.user_key();
while (level + 1 < config::kNumLevels && if (base != NULL && !base->OverlapInLevel(0, min_user_key, max_user_key)) {
!base->OverlapInLevel(level + 1, meta.smallest, meta.largest)) { // Push the new sstable to a higher level if possible to reduce
// expensive manifest file ops.
while (level < config::kMaxMemCompactLevel &&
!base->OverlapInLevel(level + 1, min_user_key, max_user_key)) {
level++; level++;
} }
} }
@ -1276,12 +1279,14 @@ Status DestroyDB(const std::string& dbname, const Options& options) {
} }
FileLock* lock; FileLock* lock;
Status result = env->LockFile(LockFileName(dbname), &lock); const std::string lockname = LockFileName(dbname);
Status result = env->LockFile(lockname, &lock);
if (result.ok()) { if (result.ok()) {
uint64_t number; uint64_t number;
FileType type; FileType type;
for (size_t i = 0; i < filenames.size(); i++) { for (size_t i = 0; i < filenames.size(); i++) {
if (ParseFileName(filenames[i], &number, &type)) { if (ParseFileName(filenames[i], &number, &type) &&
filenames[i] != lockname) { // Lock file will be deleted at end
Status del = env->DeleteFile(dbname + "/" + filenames[i]); Status del = env->DeleteFile(dbname + "/" + filenames[i]);
if (result.ok() && !del.ok()) { if (result.ok() && !del.ok()) {
result = del; result = del;
@ -1289,7 +1294,7 @@ Status DestroyDB(const std::string& dbname, const Options& options) {
} }
} }
env->UnlockFile(lock); // Ignore error since state is already gone env->UnlockFile(lock); // Ignore error since state is already gone
env->DeleteFile(LockFileName(dbname)); env->DeleteFile(lockname);
env->DeleteDir(dbname); // Ignore error in case dir contains other files env->DeleteDir(dbname); // Ignore error in case dir contains other files
} }
return result; return result;

@ -650,6 +650,25 @@ TEST(DBTest, CompactionsGenerateMultipleFiles) {
} }
} }
TEST(DBTest, RepeatedWritesToSameKey) {
Options options;
options.env = env_;
options.write_buffer_size = 100000; // Small write buffer
Reopen(&options);
// We must have at most one file per level except for level-0,
// which may have up to kL0_StopWritesTrigger files.
const int kMaxFiles = config::kNumLevels + config::kL0_StopWritesTrigger;
Random rnd(301);
std::string value = RandomString(&rnd, 2 * options.write_buffer_size);
for (int i = 0; i < 5 * kMaxFiles; i++) {
Put("key", value);
ASSERT_LE(TotalTableFiles(), kMaxFiles);
fprintf(stderr, "after %d: %d files\n", int(i+1), TotalTableFiles());
}
}
TEST(DBTest, SparseMerge) { TEST(DBTest, SparseMerge) {
Options options; Options options;
options.compression = kNoCompression; options.compression = kNoCompression;
@ -863,7 +882,7 @@ TEST(DBTest, HiddenValuesAreRemoved) {
TEST(DBTest, DeletionMarkers1) { TEST(DBTest, DeletionMarkers1) {
Put("foo", "v1"); Put("foo", "v1");
ASSERT_OK(dbfull()->TEST_CompactMemTable()); ASSERT_OK(dbfull()->TEST_CompactMemTable());
const int last = config::kNumLevels - 1; const int last = config::kMaxMemCompactLevel;
ASSERT_EQ(NumTableFilesAtLevel(last), 1); // foo => v1 is now in last level ASSERT_EQ(NumTableFilesAtLevel(last), 1); // foo => v1 is now in last level
// Place a table at level last-1 to prevent merging with preceding mutation // Place a table at level last-1 to prevent merging with preceding mutation
@ -891,7 +910,7 @@ TEST(DBTest, DeletionMarkers1) {
TEST(DBTest, DeletionMarkers2) { TEST(DBTest, DeletionMarkers2) {
Put("foo", "v1"); Put("foo", "v1");
ASSERT_OK(dbfull()->TEST_CompactMemTable()); ASSERT_OK(dbfull()->TEST_CompactMemTable());
const int last = config::kNumLevels - 1; const int last = config::kMaxMemCompactLevel;
ASSERT_EQ(NumTableFilesAtLevel(last), 1); // foo => v1 is now in last level ASSERT_EQ(NumTableFilesAtLevel(last), 1); // foo => v1 is now in last level
// Place a table at level last-1 to prevent merging with preceding mutation // Place a table at level last-1 to prevent merging with preceding mutation

@ -29,6 +29,14 @@ static const int kL0_SlowdownWritesTrigger = 8;
// Maximum number of level-0 files. We stop writes at this point. // Maximum number of level-0 files. We stop writes at this point.
static const int kL0_StopWritesTrigger = 12; static const int kL0_StopWritesTrigger = 12;
// Maximum level to which a new compacted memtable is pushed if it
// does not create overlap. We try to push to level 2 to avoid the
// relatively expensive level 0=>1 compactions and to avoid some
// expensive manifest file operations. We do not push all the way to
// the largest level since that can generate a lot of wasted disk
// space if the same key space is being repeatedly overwritten.
static const int kMaxMemCompactLevel = 2;
} }
class InternalKey; class InternalKey;

@ -4,6 +4,7 @@
#include "db/log_reader.h" #include "db/log_reader.h"
#include <stdio.h>
#include "leveldb/env.h" #include "leveldb/env.h"
#include "util/coding.h" #include "util/coding.h"
#include "util/crc32c.h" #include "util/crc32c.h"
@ -72,7 +73,8 @@ bool Reader::ReadRecord(Slice* record, std::string* scratch) {
Slice fragment; Slice fragment;
while (true) { while (true) {
uint64_t physical_record_offset = end_of_buffer_offset_ - buffer_.size(); uint64_t physical_record_offset = end_of_buffer_offset_ - buffer_.size();
switch (ReadPhysicalRecord(&fragment)) { const unsigned int record_type = ReadPhysicalRecord(&fragment);
switch (record_type) {
case kFullType: case kFullType:
if (in_fragmented_record) { if (in_fragmented_record) {
// Handle bug in earlier versions of log::Writer where // Handle bug in earlier versions of log::Writer where
@ -144,15 +146,18 @@ bool Reader::ReadRecord(Slice* record, std::string* scratch) {
} }
break; break;
default: default: {
char buf[40];
snprintf(buf, sizeof(buf), "unknown record type %u", record_type);
ReportCorruption( ReportCorruption(
(fragment.size() + (in_fragmented_record ? scratch->size() : 0)), (fragment.size() + (in_fragmented_record ? scratch->size() : 0)),
"unknown record type"); buf);
in_fragmented_record = false; in_fragmented_record = false;
scratch->clear(); scratch->clear();
break; break;
} }
} }
}
return false; return false;
} }
@ -212,8 +217,6 @@ unsigned int Reader::ReadPhysicalRecord(Slice* result) {
return kBadRecord; return kBadRecord;
} }
// Check crc
if (checksum_) {
if (type == kZeroType && length == 0) { if (type == kZeroType && length == 0) {
// Skip zero length record without reporting any drops since // Skip zero length record without reporting any drops since
// such records are produced by the mmap based writing code in // such records are produced by the mmap based writing code in
@ -222,6 +225,8 @@ unsigned int Reader::ReadPhysicalRecord(Slice* result) {
return kBadRecord; return kBadRecord;
} }
// Check crc
if (checksum_) {
uint32_t expected_crc = crc32c::Unmask(DecodeFixed32(header)); uint32_t expected_crc = crc32c::Unmask(DecodeFixed32(header));
uint32_t actual_crc = crc32c::Value(header + 6, 1 + length); uint32_t actual_crc = crc32c::Value(header + 6, 1 + length);
if (actual_crc != expected_crc) { if (actual_crc != expected_crc) {

@ -99,11 +99,14 @@ int FindFile(const InternalKeyComparator& icmp,
bool SomeFileOverlapsRange( bool SomeFileOverlapsRange(
const InternalKeyComparator& icmp, const InternalKeyComparator& icmp,
const std::vector<FileMetaData*>& files, const std::vector<FileMetaData*>& files,
const InternalKey& smallest, const Slice& smallest_user_key,
const InternalKey& largest) { const Slice& largest_user_key) {
const int index = FindFile(icmp, files, smallest.Encode()); // Find the earliest possible internal key for smallest_user_key
InternalKey small(smallest_user_key, kMaxSequenceNumber, kValueTypeForSeek);
const int index = FindFile(icmp, files, small.Encode());
return ((index < files.size()) && return ((index < files.size()) &&
icmp.Compare(largest, files[index]->smallest) >= 0); icmp.user_comparator()->Compare(
largest_user_key, files[index]->smallest.user_key()) >= 0);
} }
// An internal iterator. For a given version/level pair, yields // An internal iterator. For a given version/level pair, yields
@ -353,9 +356,11 @@ void Version::Unref() {
} }
bool Version::OverlapInLevel(int level, bool Version::OverlapInLevel(int level,
const InternalKey& smallest, const Slice& smallest_user_key,
const InternalKey& largest) { const Slice& largest_user_key) {
return SomeFileOverlapsRange(vset_->icmp_, files_[level], smallest, largest); return SomeFileOverlapsRange(vset_->icmp_, files_[level],
smallest_user_key,
largest_user_key);
} }
std::string Version::DebugString() const { std::string Version::DebugString() const {

@ -42,13 +42,13 @@ extern int FindFile(const InternalKeyComparator& icmp,
const std::vector<FileMetaData*>& files, const std::vector<FileMetaData*>& files,
const Slice& key); const Slice& key);
// Returns true iff some file in "files" overlaps some part of // Returns true iff some file in "files" overlaps the user key range
// [smallest,largest]. // [smallest,largest].
extern bool SomeFileOverlapsRange( extern bool SomeFileOverlapsRange(
const InternalKeyComparator& icmp, const InternalKeyComparator& icmp,
const std::vector<FileMetaData*>& files, const std::vector<FileMetaData*>& files,
const InternalKey& smallest, const Slice& smallest_user_key,
const InternalKey& largest); const Slice& largest_user_key);
class Version { class Version {
public: public:
@ -78,10 +78,10 @@ class Version {
void Unref(); void Unref();
// Returns true iff some file in the specified level overlaps // Returns true iff some file in the specified level overlaps
// some part of [smallest,largest]. // some part of [smallest_user_key,largest_user_key].
bool OverlapInLevel(int level, bool OverlapInLevel(int level,
const InternalKey& smallest, const Slice& smallest_user_key,
const InternalKey& largest); const Slice& largest_user_key);
int NumFiles(int level) const { return files_[level].size(); } int NumFiles(int level) const { return files_[level].size(); }

@ -19,11 +19,13 @@ class FindFileTest {
} }
} }
void Add(const char* smallest, const char* largest) { void Add(const char* smallest, const char* largest,
SequenceNumber smallest_seq = 100,
SequenceNumber largest_seq = 100) {
FileMetaData* f = new FileMetaData; FileMetaData* f = new FileMetaData;
f->number = files_.size() + 1; f->number = files_.size() + 1;
f->smallest = InternalKey(smallest, 100, kTypeValue); f->smallest = InternalKey(smallest, smallest_seq, kTypeValue);
f->largest = InternalKey(largest, 100, kTypeValue); f->largest = InternalKey(largest, largest_seq, kTypeValue);
files_.push_back(f); files_.push_back(f);
} }
@ -34,10 +36,8 @@ class FindFileTest {
} }
bool Overlaps(const char* smallest, const char* largest) { bool Overlaps(const char* smallest, const char* largest) {
InternalKey s(smallest, 100, kTypeValue);
InternalKey l(largest, 100, kTypeValue);
InternalKeyComparator cmp(BytewiseComparator()); InternalKeyComparator cmp(BytewiseComparator());
return SomeFileOverlapsRange(cmp, files_, s, l); return SomeFileOverlapsRange(cmp, files_, smallest, largest);
} }
}; };
@ -108,6 +108,15 @@ TEST(FindFileTest, Multiple) {
ASSERT_TRUE(Overlaps("450", "500")); ASSERT_TRUE(Overlaps("450", "500"));
} }
TEST(FindFileTest, OverlapSequenceChecks) {
Add("200", "200", 5000, 3000);
ASSERT_TRUE(! Overlaps("199", "199"));
ASSERT_TRUE(! Overlaps("201", "300"));
ASSERT_TRUE(Overlaps("200", "200"));
ASSERT_TRUE(Overlaps("190", "200"));
ASSERT_TRUE(Overlaps("200", "210"));
}
} }
int main(int argc, char** argv) { int main(int argc, char** argv) {

@ -9,6 +9,8 @@
namespace leveldb { namespace leveldb {
class MemTable;
// WriteBatchInternal provides static methods for manipulating a // WriteBatchInternal provides static methods for manipulating a
// WriteBatch that we don't want in the public WriteBatch interface. // WriteBatch that we don't want in the public WriteBatch interface.
class WriteBatchInternal { class WriteBatchInternal {

@ -75,6 +75,8 @@ struct Options {
// Larger values increase performance, especially during bulk loads. // Larger values increase performance, especially during bulk loads.
// Up to two write buffers may be held in memory at the same time, // Up to two write buffers may be held in memory at the same time,
// so you may wish to adjust this parameter to control memory usage. // so you may wish to adjust this parameter to control memory usage.
// Also, a larger write buffer will result in a longer recovery time
// the next time the database is opened.
// //
// Default: 4MB // Default: 4MB
size_t write_buffer_size; size_t write_buffer_size;

@ -28,6 +28,10 @@ namespace leveldb {
namespace { namespace {
static Status IOError(const std::string& context, int err_number) {
return Status::IOError(context, strerror(err_number));
}
class PosixSequentialFile: public SequentialFile { class PosixSequentialFile: public SequentialFile {
private: private:
std::string filename_; std::string filename_;
@ -47,7 +51,7 @@ class PosixSequentialFile: public SequentialFile {
// We leave status as ok if we hit the end of the file // We leave status as ok if we hit the end of the file
} else { } else {
// A partial read with an error: return a non-ok status // A partial read with an error: return a non-ok status
s = Status::IOError(filename_, strerror(errno)); s = IOError(filename_, errno);
} }
} }
return s; return s;
@ -55,7 +59,7 @@ class PosixSequentialFile: public SequentialFile {
virtual Status Skip(uint64_t n) { virtual Status Skip(uint64_t n) {
if (fseek(file_, n, SEEK_CUR)) { if (fseek(file_, n, SEEK_CUR)) {
return Status::IOError(filename_, strerror(errno)); return IOError(filename_, errno);
} }
return Status::OK(); return Status::OK();
} }
@ -78,7 +82,7 @@ class PosixRandomAccessFile: public RandomAccessFile {
*result = Slice(scratch, (r < 0) ? 0 : r); *result = Slice(scratch, (r < 0) ? 0 : r);
if (r < 0) { if (r < 0) {
// An error: return a non-ok status // An error: return a non-ok status
s = Status::IOError(filename_, strerror(errno)); s = IOError(filename_, errno);
} }
return s; return s;
} }
@ -114,13 +118,16 @@ class PosixMmapFile : public WritableFile {
return s; return s;
} }
void UnmapCurrentRegion() { bool UnmapCurrentRegion() {
bool result = true;
if (base_ != NULL) { if (base_ != NULL) {
if (last_sync_ < limit_) { if (last_sync_ < limit_) {
// Defer syncing this data until next Sync() call, if any // Defer syncing this data until next Sync() call, if any
pending_sync_ = true; pending_sync_ = true;
} }
munmap(base_, limit_ - base_); if (munmap(base_, limit_ - base_) != 0) {
result = false;
}
file_offset_ += limit_ - base_; file_offset_ += limit_ - base_;
base_ = NULL; base_ = NULL;
limit_ = NULL; limit_ = NULL;
@ -132,6 +139,7 @@ class PosixMmapFile : public WritableFile {
map_size_ *= 2; map_size_ *= 2;
} }
} }
return result;
} }
bool MapNewRegion() { bool MapNewRegion() {
@ -181,8 +189,10 @@ class PosixMmapFile : public WritableFile {
assert(dst_ <= limit_); assert(dst_ <= limit_);
size_t avail = limit_ - dst_; size_t avail = limit_ - dst_;
if (avail == 0) { if (avail == 0) {
UnmapCurrentRegion(); if (!UnmapCurrentRegion() ||
MapNewRegion(); !MapNewRegion()) {
return IOError(filename_, errno);
}
} }
size_t n = (left <= avail) ? left : avail; size_t n = (left <= avail) ? left : avail;
@ -197,17 +207,18 @@ class PosixMmapFile : public WritableFile {
virtual Status Close() { virtual Status Close() {
Status s; Status s;
size_t unused = limit_ - dst_; size_t unused = limit_ - dst_;
UnmapCurrentRegion(); if (!UnmapCurrentRegion()) {
if (unused > 0) { s = IOError(filename_, errno);
} else if (unused > 0) {
// Trim the extra space at the end of the file // Trim the extra space at the end of the file
if (ftruncate(fd_, file_offset_ - unused) < 0) { if (ftruncate(fd_, file_offset_ - unused) < 0) {
s = Status::IOError(filename_, strerror(errno)); s = IOError(filename_, errno);
} }
} }
if (close(fd_) < 0) { if (close(fd_) < 0) {
if (s.ok()) { if (s.ok()) {
s = Status::IOError(filename_, strerror(errno)); s = IOError(filename_, errno);
} }
} }
@ -228,7 +239,7 @@ class PosixMmapFile : public WritableFile {
// Some unmapped data was not synced // Some unmapped data was not synced
pending_sync_ = false; pending_sync_ = false;
if (fdatasync(fd_) < 0) { if (fdatasync(fd_) < 0) {
s = Status::IOError(filename_, strerror(errno)); s = IOError(filename_, errno);
} }
} }
@ -239,7 +250,7 @@ class PosixMmapFile : public WritableFile {
size_t p2 = TruncateToPageBoundary(dst_ - base_ - 1); size_t p2 = TruncateToPageBoundary(dst_ - base_ - 1);
last_sync_ = dst_; last_sync_ = dst_;
if (msync(base_ + p1, p2 - p1 + page_size_, MS_SYNC) < 0) { if (msync(base_ + p1, p2 - p1 + page_size_, MS_SYNC) < 0) {
s = Status::IOError(filename_, strerror(errno)); s = IOError(filename_, errno);
} }
} }
@ -276,7 +287,7 @@ class PosixEnv : public Env {
FILE* f = fopen(fname.c_str(), "r"); FILE* f = fopen(fname.c_str(), "r");
if (f == NULL) { if (f == NULL) {
*result = NULL; *result = NULL;
return Status::IOError(fname, strerror(errno)); return IOError(fname, errno);
} else { } else {
*result = new PosixSequentialFile(fname, f); *result = new PosixSequentialFile(fname, f);
return Status::OK(); return Status::OK();
@ -288,7 +299,7 @@ class PosixEnv : public Env {
int fd = open(fname.c_str(), O_RDONLY); int fd = open(fname.c_str(), O_RDONLY);
if (fd < 0) { if (fd < 0) {
*result = NULL; *result = NULL;
return Status::IOError(fname, strerror(errno)); return IOError(fname, errno);
} }
*result = new PosixRandomAccessFile(fname, fd); *result = new PosixRandomAccessFile(fname, fd);
return Status::OK(); return Status::OK();
@ -300,7 +311,7 @@ class PosixEnv : public Env {
const int fd = open(fname.c_str(), O_CREAT | O_RDWR | O_TRUNC, 0644); const int fd = open(fname.c_str(), O_CREAT | O_RDWR | O_TRUNC, 0644);
if (fd < 0) { if (fd < 0) {
*result = NULL; *result = NULL;
s = Status::IOError(fname, strerror(errno)); s = IOError(fname, errno);
} else { } else {
*result = new PosixMmapFile(fname, fd, page_size_); *result = new PosixMmapFile(fname, fd, page_size_);
} }
@ -316,7 +327,7 @@ class PosixEnv : public Env {
result->clear(); result->clear();
DIR* d = opendir(dir.c_str()); DIR* d = opendir(dir.c_str());
if (d == NULL) { if (d == NULL) {
return Status::IOError(dir, strerror(errno)); return IOError(dir, errno);
} }
struct dirent* entry; struct dirent* entry;
while ((entry = readdir(d)) != NULL) { while ((entry = readdir(d)) != NULL) {
@ -329,7 +340,7 @@ class PosixEnv : public Env {
virtual Status DeleteFile(const std::string& fname) { virtual Status DeleteFile(const std::string& fname) {
Status result; Status result;
if (unlink(fname.c_str()) != 0) { if (unlink(fname.c_str()) != 0) {
result = Status::IOError(fname, strerror(errno)); result = IOError(fname, errno);
} }
return result; return result;
}; };
@ -337,7 +348,7 @@ class PosixEnv : public Env {
virtual Status CreateDir(const std::string& name) { virtual Status CreateDir(const std::string& name) {
Status result; Status result;
if (mkdir(name.c_str(), 0755) != 0) { if (mkdir(name.c_str(), 0755) != 0) {
result = Status::IOError(name, strerror(errno)); result = IOError(name, errno);
} }
return result; return result;
}; };
@ -345,7 +356,7 @@ class PosixEnv : public Env {
virtual Status DeleteDir(const std::string& name) { virtual Status DeleteDir(const std::string& name) {
Status result; Status result;
if (rmdir(name.c_str()) != 0) { if (rmdir(name.c_str()) != 0) {
result = Status::IOError(name, strerror(errno)); result = IOError(name, errno);
} }
return result; return result;
}; };
@ -355,7 +366,7 @@ class PosixEnv : public Env {
struct stat sbuf; struct stat sbuf;
if (stat(fname.c_str(), &sbuf) != 0) { if (stat(fname.c_str(), &sbuf) != 0) {
*size = 0; *size = 0;
s = Status::IOError(fname, strerror(errno)); s = IOError(fname, errno);
} else { } else {
*size = sbuf.st_size; *size = sbuf.st_size;
} }
@ -365,7 +376,7 @@ class PosixEnv : public Env {
virtual Status RenameFile(const std::string& src, const std::string& target) { virtual Status RenameFile(const std::string& src, const std::string& target) {
Status result; Status result;
if (rename(src.c_str(), target.c_str()) != 0) { if (rename(src.c_str(), target.c_str()) != 0) {
result = Status::IOError(src, strerror(errno)); result = IOError(src, errno);
} }
return result; return result;
} }
@ -375,9 +386,9 @@ class PosixEnv : public Env {
Status result; Status result;
int fd = open(fname.c_str(), O_RDWR | O_CREAT, 0644); int fd = open(fname.c_str(), O_RDWR | O_CREAT, 0644);
if (fd < 0) { if (fd < 0) {
result = Status::IOError(fname, strerror(errno)); result = IOError(fname, errno);
} else if (LockOrUnlock(fd, true) == -1) { } else if (LockOrUnlock(fd, true) == -1) {
result = Status::IOError("lock " + fname, strerror(errno)); result = IOError("lock " + fname, errno);
close(fd); close(fd);
} else { } else {
PosixFileLock* my_lock = new PosixFileLock; PosixFileLock* my_lock = new PosixFileLock;
@ -391,7 +402,7 @@ class PosixEnv : public Env {
PosixFileLock* my_lock = reinterpret_cast<PosixFileLock*>(lock); PosixFileLock* my_lock = reinterpret_cast<PosixFileLock*>(lock);
Status result; Status result;
if (LockOrUnlock(my_lock->fd_, false) == -1) { if (LockOrUnlock(my_lock->fd_, false) == -1) {
result = Status::IOError(strerror(errno)); result = IOError("unlock", errno);
} }
close(my_lock->fd_); close(my_lock->fd_);
delete my_lock; delete my_lock;

Loading…
Cancel
Save