2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-16 01:03:42 +02:00
|
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
|
|
// (found in the LICENSE.Apache file in the root directory).
|
2013-10-16 23:59:46 +02:00
|
|
|
//
|
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.
|
|
|
|
|
2017-01-04 03:17:12 +01:00
|
|
|
#include "rocksdb/status.h"
|
2011-03-18 23:37:00 +01:00
|
|
|
#include <stdio.h>
|
2017-01-04 03:17:12 +01:00
|
|
|
#include <cstring>
|
2011-03-18 23:37:00 +01:00
|
|
|
#include "port/port.h"
|
|
|
|
|
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) {
|
2017-01-04 03:17:12 +01:00
|
|
|
char* const result =
|
|
|
|
new char[std::strlen(state) + 1]; // +1 for the null terminator
|
|
|
|
std::strcpy(result, state);
|
2011-05-21 04:17:43 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2016-09-07 21:37:45 +02:00
|
|
|
Status::Status(Code _code, SubCode _subcode, const Slice& msg, const Slice& msg2)
|
|
|
|
: code_(_code), subcode_(_subcode) {
|
2014-11-06 20:14:28 +01:00
|
|
|
assert(code_ != kOk);
|
2016-09-07 21:37:45 +02:00
|
|
|
assert(subcode_ != kMaxSubCode);
|
2017-01-04 03:17:12 +01:00
|
|
|
const size_t len1 = msg.size();
|
|
|
|
const size_t len2 = msg2.size();
|
|
|
|
const size_t size = len1 + (len2 ? (2 + len2) : 0);
|
|
|
|
char* const result = new char[size + 1]; // +1 for null terminator
|
|
|
|
memcpy(result, msg.data(), len1);
|
2011-05-21 04:17:43 +02:00
|
|
|
if (len2) {
|
2017-01-04 03:17:12 +01:00
|
|
|
result[len1] = ':';
|
|
|
|
result[len1 + 1] = ' ';
|
|
|
|
memcpy(result + len1 + 2, msg2.data(), len2);
|
2011-03-18 23:37:00 +01:00
|
|
|
}
|
2017-01-04 03:17:12 +01:00
|
|
|
result[size] = '\0'; // null terminator for C style string
|
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;
|
Pessimistic Transactions
Summary:
Initial implementation of Pessimistic Transactions. This diff contains the api changes discussed in D38913. This diff is pretty large, so let me know if people would prefer to meet up to discuss it.
MyRocks folks: please take a look at the API in include/rocksdb/utilities/transaction[_db].h and let me know if you have any issues.
Also, you'll notice a couple of TODOs in the implementation of RollbackToSavePoint(). After chatting with Siying, I'm going to send out a separate diff for an alternate implementation of this feature that implements the rollback inside of WriteBatch/WriteBatchWithIndex. We can then decide which route is preferable.
Next, I'm planning on doing some perf testing and then integrating this diff into MongoRocks for further testing.
Test Plan: Unit tests, db_bench parallel testing.
Reviewers: igor, rven, sdong, yhchiang, yoshinorim
Reviewed By: sdong
Subscribers: hermanlee4, maykov, spetrunia, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D40869
2015-05-26 02:37:33 +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;
|
2015-05-29 23:36:35 +02:00
|
|
|
case kBusy:
|
|
|
|
type = "Resource busy: ";
|
|
|
|
break;
|
2015-07-31 05:31:36 +02:00
|
|
|
case kExpired:
|
|
|
|
type = "Operation expired: ";
|
|
|
|
break;
|
|
|
|
case kTryAgain:
|
|
|
|
type = "Operation failed. Try again.: ";
|
|
|
|
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);
|
2015-08-15 01:45:05 +02:00
|
|
|
if (subcode_ != kNone) {
|
|
|
|
uint32_t index = static_cast<int32_t>(subcode_);
|
|
|
|
assert(sizeof(msgs) > index);
|
|
|
|
result.append(msgs[index]);
|
|
|
|
}
|
|
|
|
|
2013-12-26 22:49:04 +01:00
|
|
|
if (state_ != nullptr) {
|
2017-01-04 03:17:12 +01:00
|
|
|
result.append(state_);
|
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
|