2013-10-16 23:59:46 +02:00
|
|
|
// Copyright (c) 2013, Facebook, Inc. All rights reserved.
|
|
|
|
// This source code is licensed under the BSD-style license found in the
|
|
|
|
// LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
// of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
//
|
2011-03-18 23:37:00 +01:00
|
|
|
// 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 <stdio.h>
|
|
|
|
#include "port/port.h"
|
2013-08-23 17:38:13 +02:00
|
|
|
#include "rocksdb/status.h"
|
2011-03-18 23:37:00 +01:00
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
namespace rocksdb {
|
2011-03-18 23:37:00 +01:00
|
|
|
|
2011-05-21 04:17:43 +02:00
|
|
|
const char* Status::CopyState(const char* state) {
|
|
|
|
uint32_t size;
|
|
|
|
memcpy(&size, state, sizeof(size));
|
2013-12-26 22:49:04 +01:00
|
|
|
char* result = new char[size + 4];
|
|
|
|
memcpy(result, state, size + 4);
|
2011-05-21 04:17:43 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2014-11-06 20:14:28 +01:00
|
|
|
Status::Status(Code _code, const Slice& msg, const Slice& msg2) : code_(_code) {
|
|
|
|
assert(code_ != kOk);
|
2014-11-11 22:47:22 +01:00
|
|
|
const uint32_t len1 = static_cast<uint32_t>(msg.size());
|
|
|
|
const uint32_t len2 = static_cast<uint32_t>(msg2.size());
|
2011-05-21 04:17:43 +02:00
|
|
|
const uint32_t size = len1 + (len2 ? (2 + len2) : 0);
|
2013-12-26 22:49:04 +01:00
|
|
|
char* result = new char[size + 4];
|
2011-05-21 04:17:43 +02:00
|
|
|
memcpy(result, &size, sizeof(size));
|
2013-12-26 22:49:04 +01:00
|
|
|
memcpy(result + 4, msg.data(), len1);
|
2011-05-21 04:17:43 +02:00
|
|
|
if (len2) {
|
2013-12-26 22:49:04 +01:00
|
|
|
result[4 + len1] = ':';
|
|
|
|
result[5 + len1] = ' ';
|
|
|
|
memcpy(result + 6 + len1, msg2.data(), len2);
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
2011-05-21 04:17:43 +02:00
|
|
|
state_ = result;
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string Status::ToString() const {
|
2013-12-26 22:49:04 +01:00
|
|
|
char tmp[30];
|
|
|
|
const char* type;
|
|
|
|
switch (code_) {
|
|
|
|
case kOk:
|
|
|
|
return "OK";
|
|
|
|
case kNotFound:
|
|
|
|
type = "NotFound: ";
|
|
|
|
break;
|
|
|
|
case kCorruption:
|
|
|
|
type = "Corruption: ";
|
|
|
|
break;
|
|
|
|
case kNotSupported:
|
|
|
|
type = "Not implemented: ";
|
|
|
|
break;
|
|
|
|
case kInvalidArgument:
|
|
|
|
type = "Invalid argument: ";
|
|
|
|
break;
|
|
|
|
case kIOError:
|
|
|
|
type = "IO error: ";
|
|
|
|
break;
|
|
|
|
case kMergeInProgress:
|
2014-02-12 20:42:54 +01:00
|
|
|
type = "Merge in progress: ";
|
|
|
|
break;
|
|
|
|
case kIncomplete:
|
|
|
|
type = "Result incomplete: ";
|
|
|
|
break;
|
|
|
|
case kShutdownInProgress:
|
|
|
|
type = "Shutdown in progress: ";
|
2013-12-26 22:49:04 +01:00
|
|
|
break;
|
2014-07-04 00:47:02 +02:00
|
|
|
case kTimedOut:
|
|
|
|
type = "Operation timed out: ";
|
|
|
|
break;
|
CompactFiles, EventListener and GetDatabaseMetaData
Summary:
This diff adds three sets of APIs to RocksDB.
= GetColumnFamilyMetaData =
* This APIs allow users to obtain the current state of a RocksDB instance on one column family.
* See GetColumnFamilyMetaData in include/rocksdb/db.h
= EventListener =
* A virtual class that allows users to implement a set of
call-back functions which will be called when specific
events of a RocksDB instance happens.
* To register EventListener, simply insert an EventListener to ColumnFamilyOptions::listeners
= CompactFiles =
* CompactFiles API inputs a set of file numbers and an output level, and RocksDB
will try to compact those files into the specified level.
= Example =
* Example code can be found in example/compact_files_example.cc, which implements
a simple external compactor using EventListener, GetColumnFamilyMetaData, and
CompactFiles API.
Test Plan:
listener_test
compactor_test
example/compact_files_example
export ROCKSDB_TESTS=CompactFiles
db_test
export ROCKSDB_TESTS=MetaData
db_test
Reviewers: ljin, igor, rven, sdong
Reviewed By: sdong
Subscribers: MarkCallaghan, dhruba, leveldb
Differential Revision: https://reviews.facebook.net/D24705
2014-11-07 23:45:18 +01:00
|
|
|
case kAborted:
|
|
|
|
type = "Operation aborted: ";
|
|
|
|
break;
|
2013-12-26 22:49:04 +01:00
|
|
|
default:
|
|
|
|
snprintf(tmp, sizeof(tmp), "Unknown code(%d): ",
|
|
|
|
static_cast<int>(code()));
|
|
|
|
type = tmp;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
std::string result(type);
|
|
|
|
if (state_ != nullptr) {
|
2011-05-21 04:17:43 +02:00
|
|
|
uint32_t length;
|
|
|
|
memcpy(&length, state_, sizeof(length));
|
2013-12-26 22:49:04 +01:00
|
|
|
result.append(state_ + 4, length);
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
2013-12-26 22:49:04 +01:00
|
|
|
return result;
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
} // namespace rocksdb
|