Gavin Andresen
12 years ago
42 changed files with 2032 additions and 990 deletions
@ -0,0 +1,17 @@ |
|||||||
|
Release 1.2 2011-05-16 |
||||||
|
---------------------- |
||||||
|
|
||||||
|
Fixes for larger databases (tested up to one billion 100-byte entries, |
||||||
|
i.e., ~100GB). |
||||||
|
|
||||||
|
(1) Place hard limit on number of level-0 files. This fixes errors |
||||||
|
of the form "too many open files". |
||||||
|
|
||||||
|
(2) Fixed memtable management. Before the fix, a heavy write burst |
||||||
|
could cause unbounded memory usage. |
||||||
|
|
||||||
|
A fix for a logging bug where the reader would incorrectly complain |
||||||
|
about corruption. |
||||||
|
|
||||||
|
Allow public access to WriteBatch contents so that users can easily |
||||||
|
wrap a DB. |
@ -0,0 +1,39 @@ |
|||||||
|
# Building LevelDB On Windows |
||||||
|
|
||||||
|
## Prereqs |
||||||
|
|
||||||
|
Install the [Windows Software Development Kit version 7.1](http://www.microsoft.com/downloads/dlx/en-us/listdetailsview.aspx?FamilyID=6b6c21d2-2006-4afa-9702-529fa782d63b). |
||||||
|
|
||||||
|
Download and extract the [Snappy source distribution](http://snappy.googlecode.com/files/snappy-1.0.5.tar.gz) |
||||||
|
|
||||||
|
1. Open the "Windows SDK 7.1 Command Prompt" : |
||||||
|
Start Menu -> "Microsoft Windows SDK v7.1" > "Windows SDK 7.1 Command Prompt" |
||||||
|
2. Change the directory to the leveldb project |
||||||
|
|
||||||
|
## Building the Static lib |
||||||
|
|
||||||
|
* 32 bit Version |
||||||
|
|
||||||
|
setenv /x86 |
||||||
|
msbuild.exe /p:Configuration=Release /p:Platform=Win32 /p:Snappy=..\snappy-1.0.5 |
||||||
|
|
||||||
|
* 64 bit Version |
||||||
|
|
||||||
|
setenv /x64 |
||||||
|
msbuild.exe /p:Configuration=Release /p:Platform=x64 /p:Snappy=..\snappy-1.0.5 |
||||||
|
|
||||||
|
|
||||||
|
## Building and Running the Benchmark app |
||||||
|
|
||||||
|
* 32 bit Version |
||||||
|
|
||||||
|
setenv /x86 |
||||||
|
msbuild.exe /p:Configuration=Benchmark /p:Platform=Win32 /p:Snappy=..\snappy-1.0.5 |
||||||
|
Benchmark\leveldb.exe |
||||||
|
|
||||||
|
* 64 bit Version |
||||||
|
|
||||||
|
setenv /x64 |
||||||
|
msbuild.exe /p:Configuration=Benchmark /p:Platform=x64 /p:Snappy=..\snappy-1.0.5 |
||||||
|
x64\Benchmark\leveldb.exe |
||||||
|
|
@ -0,0 +1,238 @@ |
|||||||
|
// Copyright (c) 2012 The LevelDB Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
|
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
||||||
|
|
||||||
|
#include <stdio.h> |
||||||
|
#include "db/dbformat.h" |
||||||
|
#include "db/filename.h" |
||||||
|
#include "db/log_reader.h" |
||||||
|
#include "db/version_edit.h" |
||||||
|
#include "db/write_batch_internal.h" |
||||||
|
#include "leveldb/env.h" |
||||||
|
#include "leveldb/iterator.h" |
||||||
|
#include "leveldb/options.h" |
||||||
|
#include "leveldb/status.h" |
||||||
|
#include "leveldb/table.h" |
||||||
|
#include "leveldb/write_batch.h" |
||||||
|
#include "util/logging.h" |
||||||
|
|
||||||
|
namespace leveldb { |
||||||
|
|
||||||
|
namespace { |
||||||
|
|
||||||
|
bool GuessType(const std::string& fname, FileType* type) { |
||||||
|
size_t pos = fname.rfind('/'); |
||||||
|
std::string basename; |
||||||
|
if (pos == std::string::npos) { |
||||||
|
basename = fname; |
||||||
|
} else { |
||||||
|
basename = std::string(fname.data() + pos + 1, fname.size() - pos - 1); |
||||||
|
} |
||||||
|
uint64_t ignored; |
||||||
|
return ParseFileName(basename, &ignored, type); |
||||||
|
} |
||||||
|
|
||||||
|
// Notified when log reader encounters corruption.
|
||||||
|
class CorruptionReporter : public log::Reader::Reporter { |
||||||
|
public: |
||||||
|
virtual void Corruption(size_t bytes, const Status& status) { |
||||||
|
printf("corruption: %d bytes; %s\n", |
||||||
|
static_cast<int>(bytes), |
||||||
|
status.ToString().c_str()); |
||||||
|
} |
||||||
|
}; |
||||||
|
|
||||||
|
// Print contents of a log file. (*func)() is called on every record.
|
||||||
|
bool PrintLogContents(Env* env, const std::string& fname, |
||||||
|
void (*func)(Slice)) { |
||||||
|
SequentialFile* file; |
||||||
|
Status s = env->NewSequentialFile(fname, &file); |
||||||
|
if (!s.ok()) { |
||||||
|
fprintf(stderr, "%s\n", s.ToString().c_str()); |
||||||
|
return false; |
||||||
|
} |
||||||
|
CorruptionReporter reporter; |
||||||
|
log::Reader reader(file, &reporter, true, 0); |
||||||
|
Slice record; |
||||||
|
std::string scratch; |
||||||
|
while (reader.ReadRecord(&record, &scratch)) { |
||||||
|
printf("--- offset %llu; ", |
||||||
|
static_cast<unsigned long long>(reader.LastRecordOffset())); |
||||||
|
(*func)(record); |
||||||
|
} |
||||||
|
delete file; |
||||||
|
return true; |
||||||
|
} |
||||||
|
|
||||||
|
// Called on every item found in a WriteBatch.
|
||||||
|
class WriteBatchItemPrinter : public WriteBatch::Handler { |
||||||
|
public: |
||||||
|
uint64_t offset_; |
||||||
|
uint64_t sequence_; |
||||||
|
|
||||||
|
virtual void Put(const Slice& key, const Slice& value) { |
||||||
|
printf(" put '%s' '%s'\n", |
||||||
|
EscapeString(key).c_str(), |
||||||
|
EscapeString(value).c_str()); |
||||||
|
} |
||||||
|
virtual void Delete(const Slice& key) { |
||||||
|
printf(" del '%s'\n", |
||||||
|
EscapeString(key).c_str()); |
||||||
|
} |
||||||
|
}; |
||||||
|
|
||||||
|
|
||||||
|
// Called on every log record (each one of which is a WriteBatch)
|
||||||
|
// found in a kLogFile.
|
||||||
|
static void WriteBatchPrinter(Slice record) { |
||||||
|
if (record.size() < 12) { |
||||||
|
printf("log record length %d is too small\n", |
||||||
|
static_cast<int>(record.size())); |
||||||
|
return; |
||||||
|
} |
||||||
|
WriteBatch batch; |
||||||
|
WriteBatchInternal::SetContents(&batch, record); |
||||||
|
printf("sequence %llu\n", |
||||||
|
static_cast<unsigned long long>(WriteBatchInternal::Sequence(&batch))); |
||||||
|
WriteBatchItemPrinter batch_item_printer; |
||||||
|
Status s = batch.Iterate(&batch_item_printer); |
||||||
|
if (!s.ok()) { |
||||||
|
printf(" error: %s\n", s.ToString().c_str()); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
bool DumpLog(Env* env, const std::string& fname) { |
||||||
|
return PrintLogContents(env, fname, WriteBatchPrinter); |
||||||
|
} |
||||||
|
|
||||||
|
// Called on every log record (each one of which is a WriteBatch)
|
||||||
|
// found in a kDescriptorFile.
|
||||||
|
static void VersionEditPrinter(Slice record) { |
||||||
|
VersionEdit edit; |
||||||
|
Status s = edit.DecodeFrom(record); |
||||||
|
if (!s.ok()) { |
||||||
|
printf("%s\n", s.ToString().c_str()); |
||||||
|
return; |
||||||
|
} |
||||||
|
printf("%s", edit.DebugString().c_str()); |
||||||
|
} |
||||||
|
|
||||||
|
bool DumpDescriptor(Env* env, const std::string& fname) { |
||||||
|
return PrintLogContents(env, fname, VersionEditPrinter); |
||||||
|
} |
||||||
|
|
||||||
|
bool DumpTable(Env* env, const std::string& fname) { |
||||||
|
uint64_t file_size; |
||||||
|
RandomAccessFile* file = NULL; |
||||||
|
Table* table = NULL; |
||||||
|
Status s = env->GetFileSize(fname, &file_size); |
||||||
|
if (s.ok()) { |
||||||
|
s = env->NewRandomAccessFile(fname, &file); |
||||||
|
} |
||||||
|
if (s.ok()) { |
||||||
|
// We use the default comparator, which may or may not match the
|
||||||
|
// comparator used in this database. However this should not cause
|
||||||
|
// problems since we only use Table operations that do not require
|
||||||
|
// any comparisons. In particular, we do not call Seek or Prev.
|
||||||
|
s = Table::Open(Options(), file, file_size, &table); |
||||||
|
} |
||||||
|
if (!s.ok()) { |
||||||
|
fprintf(stderr, "%s\n", s.ToString().c_str()); |
||||||
|
delete table; |
||||||
|
delete file; |
||||||
|
return false; |
||||||
|
} |
||||||
|
|
||||||
|
ReadOptions ro; |
||||||
|
ro.fill_cache = false; |
||||||
|
Iterator* iter = table->NewIterator(ro); |
||||||
|
for (iter->SeekToFirst(); iter->Valid(); iter->Next()) { |
||||||
|
ParsedInternalKey key; |
||||||
|
if (!ParseInternalKey(iter->key(), &key)) { |
||||||
|
printf("badkey '%s' => '%s'\n", |
||||||
|
EscapeString(iter->key()).c_str(), |
||||||
|
EscapeString(iter->value()).c_str()); |
||||||
|
} else { |
||||||
|
char kbuf[20]; |
||||||
|
const char* type; |
||||||
|
if (key.type == kTypeDeletion) { |
||||||
|
type = "del"; |
||||||
|
} else if (key.type == kTypeValue) { |
||||||
|
type = "val"; |
||||||
|
} else { |
||||||
|
snprintf(kbuf, sizeof(kbuf), "%d", static_cast<int>(key.type)); |
||||||
|
type = kbuf; |
||||||
|
} |
||||||
|
printf("'%s' @ %8llu : %s => '%s'\n", |
||||||
|
EscapeString(key.user_key).c_str(), |
||||||
|
static_cast<unsigned long long>(key.sequence), |
||||||
|
type, |
||||||
|
EscapeString(iter->value()).c_str()); |
||||||
|
} |
||||||
|
} |
||||||
|
s = iter->status(); |
||||||
|
if (!s.ok()) { |
||||||
|
printf("iterator error: %s\n", s.ToString().c_str()); |
||||||
|
} |
||||||
|
|
||||||
|
delete iter; |
||||||
|
delete table; |
||||||
|
delete file; |
||||||
|
return true; |
||||||
|
} |
||||||
|
|
||||||
|
bool DumpFile(Env* env, const std::string& fname) { |
||||||
|
FileType ftype; |
||||||
|
if (!GuessType(fname, &ftype)) { |
||||||
|
fprintf(stderr, "%s: unknown file type\n", fname.c_str()); |
||||||
|
return false; |
||||||
|
} |
||||||
|
switch (ftype) { |
||||||
|
case kLogFile: return DumpLog(env, fname); |
||||||
|
case kDescriptorFile: return DumpDescriptor(env, fname); |
||||||
|
case kTableFile: return DumpTable(env, fname); |
||||||
|
|
||||||
|
default: { |
||||||
|
fprintf(stderr, "%s: not a dump-able file type\n", fname.c_str()); |
||||||
|
break; |
||||||
|
} |
||||||
|
} |
||||||
|
return false; |
||||||
|
} |
||||||
|
|
||||||
|
bool HandleDumpCommand(Env* env, char** files, int num) { |
||||||
|
bool ok = true; |
||||||
|
for (int i = 0; i < num; i++) { |
||||||
|
ok &= DumpFile(env, files[i]); |
||||||
|
} |
||||||
|
return ok; |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
} // namespace leveldb
|
||||||
|
|
||||||
|
static void Usage() { |
||||||
|
fprintf( |
||||||
|
stderr, |
||||||
|
"Usage: leveldbutil command...\n" |
||||||
|
" dump files... -- dump contents of specified files\n" |
||||||
|
); |
||||||
|
} |
||||||
|
|
||||||
|
int main(int argc, char** argv) { |
||||||
|
leveldb::Env* env = leveldb::Env::Default(); |
||||||
|
bool ok = true; |
||||||
|
if (argc < 2) { |
||||||
|
Usage(); |
||||||
|
ok = false; |
||||||
|
} else { |
||||||
|
std::string command = argv[1]; |
||||||
|
if (command == "dump") { |
||||||
|
ok = leveldb::HandleDumpCommand(env, argv+2, argc-2); |
||||||
|
} else { |
||||||
|
Usage(); |
||||||
|
ok = false; |
||||||
|
} |
||||||
|
} |
||||||
|
return (ok ? 0 : 1); |
||||||
|
} |
@ -0,0 +1,59 @@ |
|||||||
|
// Copyright (c) 2012 The LevelDB Authors. All rights reserved.
|
||||||
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
|
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
||||||
|
|
||||||
|
#ifndef STORAGE_LEVELDB_PORT_THREAD_ANNOTATIONS_H |
||||||
|
|
||||||
|
// Some environments provide custom macros to aid in static thread-safety
|
||||||
|
// analysis. Provide empty definitions of such macros unless they are already
|
||||||
|
// defined.
|
||||||
|
|
||||||
|
#ifndef EXCLUSIVE_LOCKS_REQUIRED |
||||||
|
#define EXCLUSIVE_LOCKS_REQUIRED(...) |
||||||
|
#endif |
||||||
|
|
||||||
|
#ifndef SHARED_LOCKS_REQUIRED |
||||||
|
#define SHARED_LOCKS_REQUIRED(...) |
||||||
|
#endif |
||||||
|
|
||||||
|
#ifndef LOCKS_EXCLUDED |
||||||
|
#define LOCKS_EXCLUDED(...) |
||||||
|
#endif |
||||||
|
|
||||||
|
#ifndef LOCK_RETURNED |
||||||
|
#define LOCK_RETURNED(x) |
||||||
|
#endif |
||||||
|
|
||||||
|
#ifndef LOCKABLE |
||||||
|
#define LOCKABLE |
||||||
|
#endif |
||||||
|
|
||||||
|
#ifndef SCOPED_LOCKABLE |
||||||
|
#define SCOPED_LOCKABLE |
||||||
|
#endif |
||||||
|
|
||||||
|
#ifndef EXCLUSIVE_LOCK_FUNCTION |
||||||
|
#define EXCLUSIVE_LOCK_FUNCTION(...) |
||||||
|
#endif |
||||||
|
|
||||||
|
#ifndef SHARED_LOCK_FUNCTION |
||||||
|
#define SHARED_LOCK_FUNCTION(...) |
||||||
|
#endif |
||||||
|
|
||||||
|
#ifndef EXCLUSIVE_TRYLOCK_FUNCTION |
||||||
|
#define EXCLUSIVE_TRYLOCK_FUNCTION(...) |
||||||
|
#endif |
||||||
|
|
||||||
|
#ifndef SHARED_TRYLOCK_FUNCTION |
||||||
|
#define SHARED_TRYLOCK_FUNCTION(...) |
||||||
|
#endif |
||||||
|
|
||||||
|
#ifndef UNLOCK_FUNCTION |
||||||
|
#define UNLOCK_FUNCTION(...) |
||||||
|
#endif |
||||||
|
|
||||||
|
#ifndef NO_THREAD_SAFETY_ANALYSIS |
||||||
|
#define NO_THREAD_SAFETY_ANALYSIS |
||||||
|
#endif |
||||||
|
|
||||||
|
#endif // STORAGE_LEVELDB_PORT_THREAD_ANNOTATIONS_H
|
@ -1,591 +0,0 @@ |
|||||||
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
|
|
||||||
// Use of this source code is governed by a BSD-style license that can be
|
|
||||||
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
||||||
|
|
||||||
#include <deque> |
|
||||||
|
|
||||||
#ifdef LEVELDB_PLATFORM_WINDOWS |
|
||||||
#include <windows.h> |
|
||||||
#include <errno.h> |
|
||||||
#include <fcntl.h> |
|
||||||
#include <stdio.h> |
|
||||||
#include <stdlib.h> |
|
||||||
#include <string.h> |
|
||||||
#include <sys/stat.h> |
|
||||||
#include <sys/types.h> |
|
||||||
#include <time.h> |
|
||||||
#include <io.h> |
|
||||||
#else |
|
||||||
#include <dirent.h> |
|
||||||
#include <errno.h> |
|
||||||
#include <fcntl.h> |
|
||||||
#include <pthread.h> |
|
||||||
#include <stdio.h> |
|
||||||
#include <stdlib.h> |
|
||||||
#include <string.h> |
|
||||||
#include <sys/mman.h> |
|
||||||
#include <sys/stat.h> |
|
||||||
#include <sys/time.h> |
|
||||||
#include <sys/types.h> |
|
||||||
#include <sys/param.h> |
|
||||||
#include <time.h> |
|
||||||
#include <unistd.h> |
|
||||||
#endif |
|
||||||
#if defined(LEVELDB_PLATFORM_ANDROID) |
|
||||||
#include <sys/stat.h> |
|
||||||
#endif |
|
||||||
#include "leveldb/env.h" |
|
||||||
#include "leveldb/slice.h" |
|
||||||
|
|
||||||
#ifdef LEVELDB_PLATFORM_WINDOWS |
|
||||||
#include "util/win_logger.h" |
|
||||||
#else |
|
||||||
#include "util/posix_logger.h" |
|
||||||
#endif |
|
||||||
#include "port/port.h" |
|
||||||
#include "util/logging.h" |
|
||||||
|
|
||||||
#ifdef __linux |
|
||||||
#include <sys/sysinfo.h> |
|
||||||
#include <linux/unistd.h> |
|
||||||
#endif |
|
||||||
|
|
||||||
#include <fstream> |
|
||||||
|
|
||||||
// Boost includes - see WINDOWS file to see which modules to install
|
|
||||||
#include <boost/date_time/gregorian/gregorian.hpp> |
|
||||||
#include <boost/date_time/posix_time/posix_time.hpp> |
|
||||||
#include <boost/filesystem/convenience.hpp> |
|
||||||
#include <boost/thread/once.hpp> |
|
||||||
#include <boost/thread/thread.hpp> |
|
||||||
#include <boost/bind.hpp> |
|
||||||
#include <boost/scoped_ptr.hpp> |
|
||||||
#include <boost/interprocess/sync/file_lock.hpp> |
|
||||||
#include <boost/thread/condition_variable.hpp> |
|
||||||
|
|
||||||
namespace leveldb { |
|
||||||
namespace { |
|
||||||
|
|
||||||
// returns the ID of the current process
|
|
||||||
static boost::uint32_t current_process_id(void) { |
|
||||||
#ifdef _WIN32 |
|
||||||
return static_cast<boost::uint32_t>(::GetCurrentProcessId()); |
|
||||||
#else |
|
||||||
return static_cast<boost::uint32_t>(::getpid()); |
|
||||||
#endif |
|
||||||
} |
|
||||||
|
|
||||||
// returns the ID of the current thread
|
|
||||||
static boost::uint32_t current_thread_id(void) { |
|
||||||
#ifdef _WIN32 |
|
||||||
return static_cast<boost::uint32_t>(::GetCurrentThreadId()); |
|
||||||
#else |
|
||||||
#ifdef __linux |
|
||||||
return static_cast<boost::uint32_t>(::syscall(__NR_gettid)); |
|
||||||
#else |
|
||||||
// just return the pid
|
|
||||||
return current_process_id(); |
|
||||||
#endif |
|
||||||
#endif |
|
||||||
} |
|
||||||
|
|
||||||
static char global_read_only_buf[0x8000]; |
|
||||||
|
|
||||||
class PosixSequentialFile: public SequentialFile { |
|
||||||
private: |
|
||||||
std::string filename_; |
|
||||||
FILE* file_; |
|
||||||
|
|
||||||
public: |
|
||||||
PosixSequentialFile(const std::string& fname, FILE* f) |
|
||||||
: filename_(fname), file_(f) { } |
|
||||||
virtual ~PosixSequentialFile() { fclose(file_); } |
|
||||||
|
|
||||||
virtual Status Read(size_t n, Slice* result, char* scratch) { |
|
||||||
Status s; |
|
||||||
#if defined(BSD) || defined(__MINGW32__) |
|
||||||
// fread_unlocked doesn't exist on FreeBSD or MingW
|
|
||||||
size_t r = fread(scratch, 1, n, file_); |
|
||||||
#else |
|
||||||
size_t r = fread_unlocked(scratch, 1, n, file_); |
|
||||||
#endif |
|
||||||
*result = Slice(scratch, r); |
|
||||||
if (r < n) { |
|
||||||
if (feof(file_)) { |
|
||||||
// We leave status as ok if we hit the end of the file
|
|
||||||
} else { |
|
||||||
// A partial read with an error: return a non-ok status
|
|
||||||
s = Status::IOError(filename_, strerror(errno)); |
|
||||||
} |
|
||||||
} |
|
||||||
return s; |
|
||||||
} |
|
||||||
|
|
||||||
virtual Status Skip(uint64_t n) { |
|
||||||
if (fseek(file_, n, SEEK_CUR)) { |
|
||||||
return Status::IOError(filename_, strerror(errno)); |
|
||||||
} |
|
||||||
return Status::OK(); |
|
||||||
} |
|
||||||
}; |
|
||||||
|
|
||||||
class PosixRandomAccessFile: public RandomAccessFile { |
|
||||||
private: |
|
||||||
std::string filename_; |
|
||||||
int fd_; |
|
||||||
mutable boost::mutex mu_; |
|
||||||
|
|
||||||
public: |
|
||||||
PosixRandomAccessFile(const std::string& fname, int fd) |
|
||||||
: filename_(fname), fd_(fd) { } |
|
||||||
virtual ~PosixRandomAccessFile() { close(fd_); } |
|
||||||
|
|
||||||
virtual Status Read(uint64_t offset, size_t n, Slice* result, |
|
||||||
char* scratch) const { |
|
||||||
Status s; |
|
||||||
#ifdef LEVELDB_PLATFORM_WINDOWS |
|
||||||
// no pread on Windows so we emulate it with a mutex
|
|
||||||
boost::unique_lock<boost::mutex> lock(mu_); |
|
||||||
|
|
||||||
if (::_lseeki64(fd_, offset, SEEK_SET) == -1L) { |
|
||||||
return Status::IOError(filename_, strerror(errno)); |
|
||||||
} |
|
||||||
|
|
||||||
int r = ::_read(fd_, scratch, n); |
|
||||||
*result = Slice(scratch, (r < 0) ? 0 : r); |
|
||||||
lock.unlock(); |
|
||||||
#else |
|
||||||
ssize_t r = pread(fd_, scratch, n, static_cast<off_t>(offset)); |
|
||||||
*result = Slice(scratch, (r < 0) ? 0 : r); |
|
||||||
#endif |
|
||||||
if (r < 0) { |
|
||||||
// An error: return a non-ok status
|
|
||||||
s = Status::IOError(filename_, strerror(errno)); |
|
||||||
} |
|
||||||
return s; |
|
||||||
} |
|
||||||
}; |
|
||||||
|
|
||||||
// We preallocate up to an extra megabyte and use memcpy to append new
|
|
||||||
// data to the file. This is safe since we either properly close the
|
|
||||||
// file before reading from it, or for log files, the reading code
|
|
||||||
// knows enough to skip zero suffixes.
|
|
||||||
|
|
||||||
class BoostFile : public WritableFile { |
|
||||||
|
|
||||||
public: |
|
||||||
explicit BoostFile(std::string path) : path_(path), written_(0) { |
|
||||||
Open(); |
|
||||||
} |
|
||||||
|
|
||||||
virtual ~BoostFile() { |
|
||||||
Close(); |
|
||||||
} |
|
||||||
|
|
||||||
private: |
|
||||||
void Open() { |
|
||||||
// we truncate the file as implemented in env_posix
|
|
||||||
file_.open(path_.generic_string().c_str(), |
|
||||||
std::ios_base::trunc | std::ios_base::out | std::ios_base::binary); |
|
||||||
written_ = 0; |
|
||||||
} |
|
||||||
|
|
||||||
public: |
|
||||||
virtual Status Append(const Slice& data) { |
|
||||||
Status result; |
|
||||||
file_.write(data.data(), data.size()); |
|
||||||
if (!file_.good()) { |
|
||||||
result = Status::IOError( |
|
||||||
path_.generic_string() + " Append", "cannot write"); |
|
||||||
} |
|
||||||
return result; |
|
||||||
} |
|
||||||
|
|
||||||
virtual Status Close() { |
|
||||||
Status result; |
|
||||||
|
|
||||||
try { |
|
||||||
if (file_.is_open()) { |
|
||||||
Sync(); |
|
||||||
file_.close(); |
|
||||||
} |
|
||||||
} catch (const std::exception & e) { |
|
||||||
result = Status::IOError(path_.generic_string() + " close", e.what()); |
|
||||||
} |
|
||||||
|
|
||||||
return result; |
|
||||||
} |
|
||||||
|
|
||||||
virtual Status Flush() { |
|
||||||
file_.flush(); |
|
||||||
return Status::OK(); |
|
||||||
} |
|
||||||
|
|
||||||
virtual Status Sync() { |
|
||||||
Status result; |
|
||||||
try { |
|
||||||
Flush(); |
|
||||||
} catch (const std::exception & e) { |
|
||||||
result = Status::IOError(path_.string() + " sync", e.what()); |
|
||||||
} |
|
||||||
|
|
||||||
return result; |
|
||||||
} |
|
||||||
|
|
||||||
private: |
|
||||||
boost::filesystem::path path_; |
|
||||||
boost::uint64_t written_; |
|
||||||
std::ofstream file_; |
|
||||||
}; |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class BoostFileLock : public FileLock { |
|
||||||
public: |
|
||||||
boost::interprocess::file_lock fl_; |
|
||||||
}; |
|
||||||
|
|
||||||
class PosixEnv : public Env { |
|
||||||
public: |
|
||||||
PosixEnv(); |
|
||||||
virtual ~PosixEnv() { |
|
||||||
fprintf(stderr, "Destroying Env::Default()\n"); |
|
||||||
exit(1); |
|
||||||
} |
|
||||||
|
|
||||||
virtual Status NewSequentialFile(const std::string& fname, |
|
||||||
SequentialFile** result) { |
|
||||||
FILE* f = fopen(fname.c_str(), "rb"); |
|
||||||
if (f == NULL) { |
|
||||||
*result = NULL; |
|
||||||
return Status::IOError(fname, strerror(errno)); |
|
||||||
} else { |
|
||||||
*result = new PosixSequentialFile(fname, f); |
|
||||||
return Status::OK(); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
virtual Status NewRandomAccessFile(const std::string& fname, |
|
||||||
RandomAccessFile** result) { |
|
||||||
#ifdef LEVELDB_PLATFORM_WINDOWS |
|
||||||
int fd = _open(fname.c_str(), _O_RDONLY | _O_RANDOM | _O_BINARY); |
|
||||||
#else |
|
||||||
int fd = open(fname.c_str(), O_RDONLY); |
|
||||||
#endif |
|
||||||
if (fd < 0) { |
|
||||||
*result = NULL; |
|
||||||
return Status::IOError(fname, strerror(errno)); |
|
||||||
} |
|
||||||
*result = new PosixRandomAccessFile(fname, fd); |
|
||||||
return Status::OK(); |
|
||||||
} |
|
||||||
|
|
||||||
virtual Status NewWritableFile(const std::string& fname, |
|
||||||
WritableFile** result) { |
|
||||||
Status s; |
|
||||||
try { |
|
||||||
// will create a new empty file to write to
|
|
||||||
*result = new BoostFile(fname); |
|
||||||
} |
|
||||||
catch (const std::exception & e) { |
|
||||||
s = Status::IOError(fname, e.what()); |
|
||||||
} |
|
||||||
|
|
||||||
return s; |
|
||||||
} |
|
||||||
|
|
||||||
virtual bool FileExists(const std::string& fname) { |
|
||||||
return boost::filesystem::exists(fname); |
|
||||||
} |
|
||||||
|
|
||||||
virtual Status GetChildren(const std::string& dir, |
|
||||||
std::vector<std::string>* result) { |
|
||||||
result->clear(); |
|
||||||
|
|
||||||
boost::system::error_code ec; |
|
||||||
boost::filesystem::directory_iterator current(dir, ec); |
|
||||||
if (ec != 0) { |
|
||||||
return Status::IOError(dir, ec.message()); |
|
||||||
} |
|
||||||
|
|
||||||
boost::filesystem::directory_iterator end; |
|
||||||
|
|
||||||
for(; current != end; ++current) { |
|
||||||
result->push_back(current->path().filename().generic_string()); |
|
||||||
} |
|
||||||
|
|
||||||
return Status::OK(); |
|
||||||
} |
|
||||||
|
|
||||||
virtual Status DeleteFile(const std::string& fname) { |
|
||||||
boost::system::error_code ec; |
|
||||||
|
|
||||||
boost::filesystem::remove(fname, ec); |
|
||||||
|
|
||||||
Status result; |
|
||||||
|
|
||||||
if (ec != 0) { |
|
||||||
result = Status::IOError(fname, ec.message()); |
|
||||||
} |
|
||||||
|
|
||||||
return result; |
|
||||||
} |
|
||||||
|
|
||||||
virtual Status CreateDir(const std::string& name) { |
|
||||||
Status result; |
|
||||||
|
|
||||||
if (boost::filesystem::exists(name) && |
|
||||||
boost::filesystem::is_directory(name)) { |
|
||||||
return result; |
|
||||||
} |
|
||||||
|
|
||||||
boost::system::error_code ec; |
|
||||||
|
|
||||||
if (!boost::filesystem::create_directories(name, ec)) { |
|
||||||
result = Status::IOError(name, ec.message()); |
|
||||||
} |
|
||||||
|
|
||||||
return result; |
|
||||||
}; |
|
||||||
|
|
||||||
virtual Status DeleteDir(const std::string& name) { |
|
||||||
Status result; |
|
||||||
|
|
||||||
boost::system::error_code ec; |
|
||||||
if (!boost::filesystem::remove_all(name, ec)) { |
|
||||||
result = Status::IOError(name, ec.message()); |
|
||||||
} |
|
||||||
|
|
||||||
return result; |
|
||||||
}; |
|
||||||
|
|
||||||
virtual Status GetFileSize(const std::string& fname, uint64_t* size) { |
|
||||||
boost::system::error_code ec; |
|
||||||
|
|
||||||
Status result; |
|
||||||
|
|
||||||
*size = static_cast<uint64_t>(boost::filesystem::file_size(fname, ec)); |
|
||||||
if (ec != 0) { |
|
||||||
*size = 0; |
|
||||||
result = Status::IOError(fname, ec.message()); |
|
||||||
} |
|
||||||
|
|
||||||
return result; |
|
||||||
} |
|
||||||
|
|
||||||
virtual Status RenameFile(const std::string& src, const std::string& target) { |
|
||||||
boost::system::error_code ec; |
|
||||||
|
|
||||||
boost::filesystem::rename(src, target, ec); |
|
||||||
|
|
||||||
Status result; |
|
||||||
|
|
||||||
if (ec != 0) { |
|
||||||
result = Status::IOError(src, ec.message()); |
|
||||||
} |
|
||||||
|
|
||||||
return result; |
|
||||||
} |
|
||||||
|
|
||||||
virtual Status LockFile(const std::string& fname, FileLock** lock) { |
|
||||||
*lock = NULL; |
|
||||||
|
|
||||||
Status result; |
|
||||||
|
|
||||||
try { |
|
||||||
if (!boost::filesystem::exists(fname)) { |
|
||||||
std::ofstream of(fname.c_str(), std::ios_base::trunc | std::ios_base::out); |
|
||||||
} |
|
||||||
|
|
||||||
assert(boost::filesystem::exists(fname)); |
|
||||||
|
|
||||||
boost::interprocess::file_lock fl(fname.c_str()); |
|
||||||
BoostFileLock * my_lock = new BoostFileLock(); |
|
||||||
fl.swap(my_lock->fl_); |
|
||||||
if (!my_lock->fl_.try_lock()) { |
|
||||||
return Status::IOError("database already in use: could not acquire exclusive lock"); |
|
||||||
} |
|
||||||
*lock = my_lock; |
|
||||||
} catch (const std::exception & e) { |
|
||||||
result = Status::IOError("lock " + fname, e.what()); |
|
||||||
} |
|
||||||
|
|
||||||
return result; |
|
||||||
} |
|
||||||
|
|
||||||
virtual Status UnlockFile(FileLock* lock) { |
|
||||||
|
|
||||||
Status result; |
|
||||||
|
|
||||||
try { |
|
||||||
BoostFileLock * my_lock = static_cast<BoostFileLock *>(lock); |
|
||||||
my_lock->fl_.unlock(); |
|
||||||
delete my_lock; |
|
||||||
} catch (const std::exception & e) { |
|
||||||
result = Status::IOError("unlock", e.what()); |
|
||||||
} |
|
||||||
|
|
||||||
return result; |
|
||||||
} |
|
||||||
|
|
||||||
virtual void Schedule(void (*function)(void*), void* arg); |
|
||||||
|
|
||||||
virtual void StartThread(void (*function)(void* arg), void* arg); |
|
||||||
|
|
||||||
virtual Status GetTestDirectory(std::string* result) { |
|
||||||
boost::system::error_code ec; |
|
||||||
boost::filesystem::path temp_dir = |
|
||||||
boost::filesystem::temp_directory_path(ec); |
|
||||||
if (ec != 0) { |
|
||||||
temp_dir = "tmp"; |
|
||||||
} |
|
||||||
|
|
||||||
temp_dir /= "leveldb_tests"; |
|
||||||
temp_dir /= boost::lexical_cast<std::string>(current_process_id()); |
|
||||||
|
|
||||||
// Directory may already exist
|
|
||||||
CreateDir(temp_dir.generic_string()); |
|
||||||
|
|
||||||
*result = temp_dir.generic_string(); |
|
||||||
|
|
||||||
return Status::OK(); |
|
||||||
} |
|
||||||
|
|
||||||
#ifndef LEVELDB_PLATFORM_WINDOWS |
|
||||||
static uint64_t gettid() { |
|
||||||
pthread_t tid = pthread_self(); |
|
||||||
uint64_t thread_id = 0; |
|
||||||
memcpy(&thread_id, &tid, std::min(sizeof(thread_id), sizeof(tid))); |
|
||||||
return thread_id; |
|
||||||
} |
|
||||||
#endif |
|
||||||
|
|
||||||
virtual Status NewLogger(const std::string& fname, Logger** result) { |
|
||||||
FILE* f = fopen(fname.c_str(), "wt"); |
|
||||||
if (f == NULL) { |
|
||||||
*result = NULL; |
|
||||||
return Status::IOError(fname, strerror(errno)); |
|
||||||
} else { |
|
||||||
#ifdef LEVELDB_PLATFORM_WINDOWS |
|
||||||
*result = new WinLogger(f); |
|
||||||
#else |
|
||||||
*result = new PosixLogger(f, &PosixEnv::gettid); |
|
||||||
#endif |
|
||||||
return Status::OK(); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
virtual uint64_t NowMicros() { |
|
||||||
return static_cast<uint64_t>( |
|
||||||
boost::posix_time::microsec_clock::universal_time() |
|
||||||
.time_of_day().total_microseconds()); |
|
||||||
} |
|
||||||
|
|
||||||
virtual void SleepForMicroseconds(int micros) { |
|
||||||
boost::this_thread::sleep(boost::posix_time::microseconds(micros)); |
|
||||||
} |
|
||||||
|
|
||||||
private: |
|
||||||
void PthreadCall(const char* label, int result) { |
|
||||||
if (result != 0) { |
|
||||||
fprintf(stderr, "pthread %s: %s\n", label, strerror(result)); |
|
||||||
exit(1); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
// BGThread() is the body of the background thread
|
|
||||||
void BGThread(); |
|
||||||
|
|
||||||
static void* BGThreadWrapper(void* arg) { |
|
||||||
reinterpret_cast<PosixEnv*>(arg)->BGThread(); |
|
||||||
return NULL; |
|
||||||
} |
|
||||||
|
|
||||||
boost::mutex mu_; |
|
||||||
boost::condition_variable bgsignal_; |
|
||||||
boost::scoped_ptr<boost::thread> bgthread_; |
|
||||||
|
|
||||||
// Entry per Schedule() call
|
|
||||||
struct BGItem { void* arg; void (*function)(void*); }; |
|
||||||
typedef std::deque<BGItem> BGQueue; |
|
||||||
BGQueue queue_; |
|
||||||
}; |
|
||||||
|
|
||||||
PosixEnv::PosixEnv() { } |
|
||||||
|
|
||||||
void PosixEnv::Schedule(void (*function)(void*), void* arg) { |
|
||||||
boost::unique_lock<boost::mutex> lock(mu_); |
|
||||||
|
|
||||||
// Start background thread if necessary
|
|
||||||
if (!bgthread_) { |
|
||||||
bgthread_.reset( |
|
||||||
new boost::thread(boost::bind(&PosixEnv::BGThreadWrapper, this))); |
|
||||||
} |
|
||||||
|
|
||||||
// Add to priority queue
|
|
||||||
queue_.push_back(BGItem()); |
|
||||||
queue_.back().function = function; |
|
||||||
queue_.back().arg = arg; |
|
||||||
|
|
||||||
lock.unlock(); |
|
||||||
|
|
||||||
bgsignal_.notify_one(); |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
void PosixEnv::BGThread() { |
|
||||||
while (true) { |
|
||||||
// Wait until there is an item that is ready to run
|
|
||||||
boost::unique_lock<boost::mutex> lock(mu_); |
|
||||||
|
|
||||||
while (queue_.empty()) { |
|
||||||
bgsignal_.wait(lock); |
|
||||||
} |
|
||||||
|
|
||||||
void (*function)(void*) = queue_.front().function; |
|
||||||
void* arg = queue_.front().arg; |
|
||||||
queue_.pop_front(); |
|
||||||
|
|
||||||
lock.unlock(); |
|
||||||
(*function)(arg); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
namespace { |
|
||||||
struct StartThreadState { |
|
||||||
void (*user_function)(void*); |
|
||||||
void* arg; |
|
||||||
}; |
|
||||||
} |
|
||||||
|
|
||||||
static void* StartThreadWrapper(void* arg) { |
|
||||||
StartThreadState* state = reinterpret_cast<StartThreadState*>(arg); |
|
||||||
state->user_function(state->arg); |
|
||||||
delete state; |
|
||||||
return NULL; |
|
||||||
} |
|
||||||
|
|
||||||
void PosixEnv::StartThread(void (*function)(void* arg), void* arg) { |
|
||||||
StartThreadState* state = new StartThreadState; |
|
||||||
state->user_function = function; |
|
||||||
state->arg = arg; |
|
||||||
|
|
||||||
boost::thread t(boost::bind(&StartThreadWrapper, state)); |
|
||||||
} |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
static boost::once_flag once = BOOST_ONCE_INIT; |
|
||||||
static Env* default_env; |
|
||||||
static void InitDefaultEnv() { |
|
||||||
::memset(global_read_only_buf, 0, sizeof(global_read_only_buf)); |
|
||||||
default_env = new PosixEnv; |
|
||||||
} |
|
||||||
|
|
||||||
Env* Env::Default() { |
|
||||||
boost::call_once(once, InitDefaultEnv); |
|
||||||
|
|
||||||
return default_env; |
|
||||||
} |
|
||||||
|
|
||||||
} |
|
@ -1,96 +0,0 @@ |
|||||||
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
|
|
||||||
// Use of this source code is governed by a BSD-style license that can be
|
|
||||||
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
||||||
|
|
||||||
#include "util/win_logger.h" |
|
||||||
|
|
||||||
#include <windows.h> |
|
||||||
|
|
||||||
namespace leveldb { |
|
||||||
|
|
||||||
void WinLogger::Logv(const char* format, va_list ap) { |
|
||||||
const uint64_t thread_id = static_cast<uint64_t>(::GetCurrentThreadId()); |
|
||||||
|
|
||||||
// We try twice: the first time with a fixed-size stack allocated buffer,
|
|
||||||
// and the second time with a much larger dynamically allocated buffer.
|
|
||||||
char buffer[500]; |
|
||||||
|
|
||||||
for (int iter = 0; iter < 2; iter++) { |
|
||||||
char* base; |
|
||||||
int bufsize; |
|
||||||
if (iter == 0) { |
|
||||||
bufsize = sizeof(buffer); |
|
||||||
base = buffer; |
|
||||||
} else { |
|
||||||
bufsize = 30000; |
|
||||||
base = new char[bufsize]; |
|
||||||
} |
|
||||||
|
|
||||||
char* p = base; |
|
||||||
char* limit = base + bufsize; |
|
||||||
|
|
||||||
SYSTEMTIME st; |
|
||||||
|
|
||||||
// GetSystemTime returns UTC time, we want local time!
|
|
||||||
::GetLocalTime(&st); |
|
||||||
|
|
||||||
#ifdef _MSC_VER |
|
||||||
p += _snprintf_s(p, limit - p, _TRUNCATE, |
|
||||||
"%04d/%02d/%02d-%02d:%02d:%02d.%03d %llx ", |
|
||||||
st.wYear, |
|
||||||
st.wMonth, |
|
||||||
st.wDay, |
|
||||||
st.wHour, |
|
||||||
st.wMinute, |
|
||||||
st.wSecond, |
|
||||||
st.wMilliseconds, |
|
||||||
static_cast<long long unsigned int>(thread_id)); |
|
||||||
#else |
|
||||||
#ifdef __MINGW32__ |
|
||||||
p += snprintf(p, limit - p, |
|
||||||
"%04d/%02d/%02d-%02d:%02d:%02d.%03d %llx ", |
|
||||||
st.wYear, |
|
||||||
st.wMonth, |
|
||||||
st.wDay, |
|
||||||
st.wHour, |
|
||||||
st.wMinute, |
|
||||||
st.wSecond, |
|
||||||
st.wMilliseconds, |
|
||||||
static_cast<long long unsigned int>(thread_id)); |
|
||||||
#else |
|
||||||
#error Unable to detect Windows compiler (neither _MSC_VER nor __MINGW32__ are set) |
|
||||||
#endif |
|
||||||
#endif |
|
||||||
|
|
||||||
// Print the message
|
|
||||||
if (p < limit) { |
|
||||||
va_list backup_ap = ap; |
|
||||||
p += vsnprintf(p, limit - p, format, backup_ap); |
|
||||||
va_end(backup_ap); |
|
||||||
} |
|
||||||
|
|
||||||
// Truncate to available space if necessary
|
|
||||||
if (p >= limit) { |
|
||||||
if (iter == 0) { |
|
||||||
continue; // Try again with larger buffer
|
|
||||||
} else { |
|
||||||
p = limit - 1; |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
// Add newline if necessary
|
|
||||||
if (p == base || p[-1] != '\n') { |
|
||||||
*p++ = '\n'; |
|
||||||
} |
|
||||||
|
|
||||||
assert(p <= limit); |
|
||||||
fwrite(base, 1, p - base, file_); |
|
||||||
fflush(file_); |
|
||||||
if (base != buffer) { |
|
||||||
delete[] base; |
|
||||||
} |
|
||||||
break; |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
} |
|
@ -1,28 +0,0 @@ |
|||||||
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
|
|
||||||
// Use of this source code is governed by a BSD-style license that can be
|
|
||||||
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
||||||
|
|
||||||
// Logger implementation for Windows
|
|
||||||
|
|
||||||
#ifndef STORAGE_LEVELDB_UTIL_WIN_LOGGER_H_ |
|
||||||
#define STORAGE_LEVELDB_UTIL_WIN_LOGGER_H_ |
|
||||||
|
|
||||||
#include <stdio.h> |
|
||||||
#include "leveldb/env.h" |
|
||||||
|
|
||||||
namespace leveldb { |
|
||||||
|
|
||||||
class WinLogger : public Logger { |
|
||||||
private: |
|
||||||
FILE* file_; |
|
||||||
public: |
|
||||||
explicit WinLogger(FILE* f) : file_(f) { assert(file_); } |
|
||||||
virtual ~WinLogger() { |
|
||||||
fclose(file_); |
|
||||||
} |
|
||||||
virtual void Logv(const char* format, va_list ap); |
|
||||||
|
|
||||||
}; |
|
||||||
|
|
||||||
} |
|
||||||
#endif // STORAGE_LEVELDB_UTIL_WIN_LOGGER_H_
|
|
Loading…
Reference in new issue