2012-08-02 01:17:43 +02:00
|
|
|
/**
|
|
|
|
* Thrift server that supports operations on the
|
|
|
|
* Facebook TAO Graph database
|
|
|
|
* @author Dhruba Borthakur (dhruba@gmail.com)
|
|
|
|
* Copyright 2012 Facebook
|
|
|
|
*/
|
|
|
|
#ifndef THRIFT_LEVELDB_ASSOC_SERVER_H_
|
|
|
|
#define THRIFT_LEVELDB_ASSOC_SERVER_H_
|
|
|
|
|
|
|
|
#include <AssocService.h>
|
|
|
|
#include <leveldb_types.h>
|
|
|
|
#include "openhandles.h"
|
|
|
|
#include "server_options.h"
|
|
|
|
|
|
|
|
#include "leveldb/db.h"
|
|
|
|
#include "leveldb/write_batch.h"
|
|
|
|
#include "util/testharness.h"
|
2012-10-04 01:35:53 +02:00
|
|
|
#include "port/port.h"
|
|
|
|
#include "util/mutexlock.h"
|
|
|
|
#include "util/murmurhash.h"
|
2012-08-02 01:17:43 +02:00
|
|
|
|
|
|
|
using namespace apache::thrift;
|
|
|
|
using namespace apache::thrift::protocol;
|
|
|
|
using namespace apache::thrift::transport;
|
|
|
|
using namespace apache::thrift::server;
|
|
|
|
|
|
|
|
using boost::shared_ptr;
|
|
|
|
|
|
|
|
using namespace ::Tleveldb;
|
|
|
|
|
|
|
|
//
|
|
|
|
// These are the service methods that processes Association Data.
|
2012-08-02 23:09:13 +02:00
|
|
|
// Native types are stored in big-endian format, i.e. first bytes
|
|
|
|
// have most significant bits.
|
2012-08-02 01:17:43 +02:00
|
|
|
|
|
|
|
class AssocServiceHandler : virtual public AssocServiceIf {
|
|
|
|
public:
|
|
|
|
|
|
|
|
AssocServiceHandler(OpenHandles* openhandles) {
|
|
|
|
openhandles_ = openhandles;
|
2012-10-04 01:35:53 +02:00
|
|
|
woptions_sync_.sync = true;
|
2012-08-02 01:17:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int64_t taoAssocPut(const Text& tableName, int64_t assocType, int64_t id1,
|
|
|
|
int64_t id2, int64_t id1Type, int64_t id2Type,
|
|
|
|
int64_t timestamp, AssocVisibility visibility,
|
|
|
|
bool update_count, int64_t dataVersion, const Text& data,
|
|
|
|
const Text& wormhole_comment) {
|
|
|
|
leveldb::DB* db = openhandles_->get(tableName, NULL);
|
|
|
|
if (db == NULL) {
|
|
|
|
return Code::kNotFound;
|
|
|
|
}
|
|
|
|
int64_t ret = assocPutInternal(tableName,
|
|
|
|
db, assocType, id1, id2, id1Type, id2Type,
|
|
|
|
timestamp, visibility, update_count, dataVersion,
|
|
|
|
data, wormhole_comment);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int64_t taoAssocDelete(const Text& tableName, int64_t assocType, int64_t id1,
|
|
|
|
int64_t id2, AssocVisibility visibility, bool update_count,
|
|
|
|
const Text& wormhole_comment) {
|
2012-09-28 10:08:23 +02:00
|
|
|
leveldb::DB* db = openhandles_->get(tableName, NULL);
|
|
|
|
if (db == NULL) {
|
|
|
|
return Code::kNotFound;
|
|
|
|
}
|
|
|
|
return assocDeleteInternal(tableName, db, assocType, id1, id2, visibility,
|
|
|
|
update_count, wormhole_comment);
|
2012-08-02 02:28:35 +02:00
|
|
|
return 0;
|
2012-08-02 01:17:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void taoAssocRangeGet(std::vector<TaoAssocGetResult> & _return,
|
|
|
|
const Text& tableName, int64_t assocType, int64_t id1,
|
|
|
|
int64_t start_time, int64_t end_time, int64_t offset,
|
|
|
|
int64_t limit) {
|
2012-08-03 09:27:48 +02:00
|
|
|
leveldb::DB* db = openhandles_->get(tableName, NULL);
|
|
|
|
if (db == NULL) {
|
|
|
|
throw generate_exception(tableName, Code::kNotFound,
|
|
|
|
"taoAssocRangeGet: Unable to open database " ,
|
|
|
|
assocType, id1, 0, 0, 0, 0, Tleveldb::UNUSED1);
|
|
|
|
}
|
|
|
|
assocRangeGetBytimeInternal(_return, tableName, db, assocType, id1,
|
|
|
|
start_time, end_time, offset, limit);
|
2012-08-02 01:17:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void taoAssocGet(std::vector<TaoAssocGetResult> & _return,
|
|
|
|
const Text& tableName, int64_t assocType, int64_t id1,
|
|
|
|
const std::vector<int64_t> & id2s) {
|
|
|
|
leveldb::DB* db = openhandles_->get(tableName, NULL);
|
|
|
|
if (db == NULL) {
|
|
|
|
throw generate_exception(tableName, Code::kNotFound,
|
2012-08-03 09:27:48 +02:00
|
|
|
"taoAssocGet:Unable to open database " ,
|
2012-08-02 01:17:43 +02:00
|
|
|
assocType, id1, 0, 0, 0, 0, Tleveldb::UNUSED1);
|
|
|
|
}
|
2012-08-03 09:27:48 +02:00
|
|
|
assocGetInternal(_return, tableName, db, assocType, id1, id2s);
|
2012-08-02 01:17:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int64_t taoAssocCount(const Text& tableName, int64_t assocType, int64_t id1) {
|
|
|
|
leveldb::DB* db = openhandles_->get(tableName, NULL);
|
|
|
|
if (db == NULL) {
|
|
|
|
return Code::kNotFound;
|
|
|
|
}
|
2012-08-03 09:27:48 +02:00
|
|
|
return assocCountInternal(tableName, db, assocType, id1);
|
2012-08-02 01:17:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
OpenHandles* openhandles_;
|
2012-09-28 10:08:23 +02:00
|
|
|
leveldb::ReadOptions roptions_;
|
2012-10-04 01:35:53 +02:00
|
|
|
leveldb::WriteOptions woptions_; // write with no sync
|
|
|
|
leveldb::WriteOptions woptions_sync_; // write with sync
|
2012-08-02 01:17:43 +02:00
|
|
|
|
2012-08-03 09:27:48 +02:00
|
|
|
// the maximum values returned in a rangeget/multiget call.
|
|
|
|
const static unsigned int MAX_RANGE_SIZE = 10000;
|
|
|
|
|
2012-10-04 01:35:53 +02:00
|
|
|
// the seed for murmur hash (copied from Hadoop)
|
|
|
|
const static unsigned int HASHSEED = 0x5bd1e995;
|
|
|
|
|
|
|
|
// A bunch of rowlocks, sharded over the entire rowkey range
|
|
|
|
// Each rowkey is deterministically mapped to one of these locks.
|
|
|
|
leveldb::port::RWMutex rowlocks_[1000];
|
|
|
|
|
|
|
|
// A helper method that hashes the row key to a lock
|
|
|
|
leveldb::port::RWMutex* findRowLock(char* str, int size) {
|
|
|
|
int index = MurmurHash(str, size, HASHSEED) % sizeof(rowlocks_);
|
|
|
|
return &rowlocks_[index];
|
|
|
|
}
|
|
|
|
|
2012-08-02 01:17:43 +02:00
|
|
|
//
|
2012-08-03 09:27:48 +02:00
|
|
|
// Inserts an assoc
|
|
|
|
// If update_count, returns the updated count of the assoc.
|
2012-09-28 10:08:23 +02:00
|
|
|
// If !update_count, return zero.
|
|
|
|
// On failure, throws exception
|
2012-08-02 01:17:43 +02:00
|
|
|
//
|
2012-08-03 09:27:48 +02:00
|
|
|
int64_t assocPutInternal(const Text& tableName, leveldb::DB* db,
|
2012-08-02 01:17:43 +02:00
|
|
|
int64_t assocType, int64_t id1,
|
|
|
|
int64_t id2, int64_t id1Type, int64_t id2Type,
|
|
|
|
int64_t ts, AssocVisibility vis,
|
|
|
|
bool update_count, int64_t dataVersion, const Text& data,
|
|
|
|
const Text& wormhole_comment) {
|
2012-09-28 10:08:23 +02:00
|
|
|
leveldb::WriteBatch batch;
|
2012-08-03 09:27:48 +02:00
|
|
|
ts = convertTime(ts); // change time to numberofmillis till MAXLONG
|
2012-08-02 01:17:43 +02:00
|
|
|
|
|
|
|
// create the payload for this assoc
|
2012-08-02 23:09:13 +02:00
|
|
|
int payloadsize = sizeof(id1Type) + sizeof(id2Type) + sizeof(dataVersion) +
|
|
|
|
sizeof(int32_t) + // store the data size
|
|
|
|
sizeof(int32_t) + // store the wormhole comment size
|
|
|
|
data.size() + wormhole_comment.size();
|
2012-08-02 01:17:43 +02:00
|
|
|
std::string payload;
|
|
|
|
payload.reserve(payloadsize);
|
|
|
|
payload.resize(payloadsize);
|
|
|
|
makePayload(&payload[0], id1Type, id2Type, dataVersion, data,
|
|
|
|
wormhole_comment);
|
|
|
|
|
|
|
|
int64_t count = 0;
|
|
|
|
int64_t oldts;
|
|
|
|
int8_t oldvis;
|
|
|
|
bool newassoc = false; // is this assoc new or an overwrite
|
2012-09-28 10:08:23 +02:00
|
|
|
leveldb::Status status;
|
|
|
|
std::string value;
|
2012-08-02 01:17:43 +02:00
|
|
|
|
2012-09-28 10:08:23 +02:00
|
|
|
// create RowKey for 'c'
|
|
|
|
int maxkeysize = sizeof(id1) + sizeof(assocType) + 1;
|
|
|
|
std::string dummy1;
|
|
|
|
dummy1.reserve(maxkeysize);
|
|
|
|
dummy1.resize(maxkeysize);
|
|
|
|
char* keybuf = &dummy1[0];
|
|
|
|
int rowkeysize = makeRowKey(keybuf, id1, assocType);
|
|
|
|
int keysize = appendRowKeyForCount(rowkeysize, keybuf);
|
2012-08-02 01:17:43 +02:00
|
|
|
leveldb::Slice ckey(keybuf, keysize);
|
|
|
|
|
2012-10-04 01:35:53 +02:00
|
|
|
// find the row lock
|
|
|
|
leveldb::port::RWMutex* rowlock = findRowLock(keybuf, rowkeysize);
|
|
|
|
{
|
|
|
|
// acquire the row lock
|
|
|
|
leveldb::WriteLock l(rowlock);
|
|
|
|
|
|
|
|
// Scan 'c' to get $count if $update_count == true
|
|
|
|
if (update_count) {
|
|
|
|
status = db->Get(roptions_, ckey, &value);
|
|
|
|
if (status.IsNotFound()) {
|
|
|
|
// nothing to do
|
|
|
|
} else if (!status.ok() || (value.size() != sizeof(int64_t))) {
|
|
|
|
throw generate_exception(tableName, Code::kNotFound,
|
|
|
|
"AssocPut Unable to extract count ",
|
|
|
|
assocType, id1, id2, id1Type, id2Type, ts, vis);
|
|
|
|
} else {
|
|
|
|
extract_int64(&count, (char *)value.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Scan 'm'$id2 to get $ts and $vis
|
|
|
|
maxkeysize = sizeof(id1) + sizeof(assocType) + 1 + sizeof(id2);
|
|
|
|
std::string dummy2;
|
|
|
|
dummy2.reserve(maxkeysize);
|
|
|
|
dummy2.resize(maxkeysize);
|
|
|
|
keybuf = &dummy2[0];
|
|
|
|
rowkeysize = makeRowKey(keybuf, id1, assocType);
|
|
|
|
keysize = appendRowKeyForMeta(rowkeysize, keybuf, id2);
|
|
|
|
leveldb::Slice mkey(keybuf, keysize);
|
|
|
|
status = db->Get(roptions_, mkey, &value);
|
2012-08-02 01:17:43 +02:00
|
|
|
if (status.IsNotFound()) {
|
2012-10-04 01:35:53 +02:00
|
|
|
newassoc = true;
|
|
|
|
oldvis = UNUSED1;
|
|
|
|
} else if (!status.ok() ||
|
|
|
|
(value.size() != sizeof(int64_t) + sizeof(int8_t))) {
|
2012-08-02 01:17:43 +02:00
|
|
|
throw generate_exception(tableName, Code::kNotFound,
|
2012-10-04 01:35:53 +02:00
|
|
|
"AssocPut Unable to extract m$id2 ",
|
|
|
|
assocType, id1, id2, id1Type, id2Type, ts, vis);
|
2012-08-02 01:17:43 +02:00
|
|
|
}
|
|
|
|
|
2012-10-04 01:35:53 +02:00
|
|
|
// make the key 'p'$old_ts$id2
|
|
|
|
maxkeysize = sizeof(id1) + sizeof(assocType) + 1 +
|
|
|
|
sizeof(ts) + sizeof(id2);
|
|
|
|
std::string dummy3;
|
|
|
|
dummy3.reserve(maxkeysize);
|
|
|
|
dummy3.resize(maxkeysize);
|
|
|
|
keybuf = &dummy3[0];
|
|
|
|
rowkeysize = makeRowKey(keybuf, id1, assocType);
|
|
|
|
|
|
|
|
// if ts != oldts, then delete 'p'$old_ts$id2
|
|
|
|
if (!newassoc) {
|
|
|
|
extractTsVisString(&oldts, &oldvis, (char *)value.c_str());
|
|
|
|
keysize = appendRowKeyForPayload(rowkeysize, keybuf, oldts, id2);
|
|
|
|
leveldb::Slice pkey(keybuf, keysize);
|
|
|
|
if (ts != oldts) {
|
|
|
|
batch.Delete(pkey);
|
|
|
|
}
|
|
|
|
}
|
2012-08-02 01:17:43 +02:00
|
|
|
|
2012-10-04 01:35:53 +02:00
|
|
|
// store in m$id2 the value of $ts$vis
|
|
|
|
std::string myvalue;
|
|
|
|
myvalue.reserve(sizeof(int64_t) + sizeof(int8_t));
|
|
|
|
myvalue.resize(sizeof(int64_t) + sizeof(int8_t));
|
|
|
|
makeTsVisString(&myvalue[0], ts, vis);
|
|
|
|
leveldb::Slice sl(myvalue);
|
|
|
|
batch.Put(mkey, leveldb::Slice(myvalue));
|
|
|
|
|
|
|
|
// store in p$ts$id2 the payload
|
|
|
|
keybuf = &dummy3[0];
|
|
|
|
keysize = appendRowKeyForPayload(rowkeysize, keybuf, ts, id2);
|
|
|
|
leveldb::Slice pkeynew(keybuf, keysize);
|
|
|
|
batch.Put(pkeynew, leveldb::Slice(payload));
|
|
|
|
|
|
|
|
// increment count
|
|
|
|
if (update_count && (newassoc || oldvis != VISIBLE)) {
|
|
|
|
assert(count >= 0);
|
|
|
|
count++;
|
|
|
|
myvalue.reserve(sizeof(int64_t));
|
|
|
|
myvalue.resize(sizeof(int64_t));
|
|
|
|
makeCountString(&myvalue[0], count);
|
|
|
|
batch.Put(ckey, leveldb::Slice(myvalue));
|
2012-08-02 01:17:43 +02:00
|
|
|
}
|
|
|
|
|
2012-10-04 01:35:53 +02:00
|
|
|
// We do a write here without sync. This writes it to the
|
|
|
|
// transaction log but does not sync it. It also makes these
|
|
|
|
// changes readable by other threads.
|
|
|
|
status = db->Write(woptions_, &batch);
|
|
|
|
if (!status.ok()) {
|
|
|
|
throw generate_exception(tableName, Code::kNotFound,
|
|
|
|
"AssocPut Unable to batch write ",
|
|
|
|
assocType, id1, id2, id1Type, id2Type, ts, vis);
|
|
|
|
}
|
|
|
|
} // release rowlock
|
|
|
|
|
|
|
|
// Do a sync to the transaction log without holding the rowlock.
|
|
|
|
// This improves updates for hotrows. The disadvantage is that
|
|
|
|
// uncommiitted reads might be read by other threads, but that
|
|
|
|
// should be ok.
|
|
|
|
batch.Clear();
|
|
|
|
status = db->Write(woptions_sync_, &batch);
|
2012-09-28 10:08:23 +02:00
|
|
|
if (!status.ok()) {
|
|
|
|
throw generate_exception(tableName, Code::kNotFound,
|
2012-10-04 01:35:53 +02:00
|
|
|
"AssocPut Unable to batch sync write ",
|
|
|
|
assocType, id1, id2, id1Type, id2Type, ts, vis);
|
2012-08-02 01:17:43 +02:00
|
|
|
}
|
|
|
|
if (update_count) {
|
|
|
|
assert(count > 0);
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-09-28 10:08:23 +02:00
|
|
|
//
|
|
|
|
// Deletes an assoc
|
|
|
|
// If count changes return 1, else returns zero
|
|
|
|
// On failure, thrws exception
|
|
|
|
//
|
|
|
|
int64_t assocDeleteInternal(const Text& tableName, leveldb::DB* db,
|
|
|
|
int64_t assocType, int64_t id1,
|
|
|
|
int64_t id2, AssocVisibility vis,
|
|
|
|
bool update_count, const Text& wormhole_comment) {
|
|
|
|
leveldb::WriteBatch batch;
|
2012-10-04 01:35:53 +02:00
|
|
|
int return_value = 0;
|
2012-09-28 10:08:23 +02:00
|
|
|
int64_t count = 0;
|
|
|
|
int64_t oldts;
|
|
|
|
int8_t oldvis;
|
|
|
|
std::string value;
|
|
|
|
|
|
|
|
// make a key for count
|
|
|
|
int maxkeysize = sizeof(id1) + sizeof(assocType) + 1;
|
|
|
|
std::string dummy;
|
|
|
|
dummy.reserve(maxkeysize);
|
|
|
|
dummy.resize(maxkeysize);
|
|
|
|
char* keybuf = &dummy[0];
|
|
|
|
int rowkeysize = makeRowKey(keybuf, id1, assocType);
|
|
|
|
leveldb::Status status;
|
|
|
|
int keysize = appendRowKeyForCount(rowkeysize, keybuf);
|
|
|
|
leveldb::Slice ckey(keybuf, keysize);
|
|
|
|
|
2012-10-04 01:35:53 +02:00
|
|
|
// find the row lock
|
|
|
|
leveldb::port::RWMutex* rowlock = findRowLock(keybuf, rowkeysize);
|
|
|
|
{
|
|
|
|
// acquire the row lock
|
|
|
|
leveldb::WriteLock l(rowlock);
|
|
|
|
|
|
|
|
// Scan 'c' to get $count if $update_count == true
|
|
|
|
if (update_count) {
|
|
|
|
status = db->Get(roptions_, ckey, &value);
|
|
|
|
if (status.IsNotFound()) {
|
|
|
|
throw generate_exception(tableName, Code::kNotFound,
|
|
|
|
"assocDelete: Unable to find count ",
|
|
|
|
assocType, id1, id2, 0, 0, 0, vis);
|
|
|
|
} else if (!status.ok() || (value.size() != sizeof(int64_t))) {
|
|
|
|
throw generate_exception(tableName, Code::kNotFound,
|
|
|
|
"assocDelete: Unable to extract count ",
|
|
|
|
assocType, id1, id2, 0, 0, 0, vis);
|
|
|
|
} else {
|
|
|
|
extract_int64(&count, (char *)value.c_str());
|
|
|
|
}
|
2012-09-28 10:08:23 +02:00
|
|
|
}
|
|
|
|
|
2012-10-04 01:35:53 +02:00
|
|
|
// Scan 'm'$id2 to get $ts and $vis
|
|
|
|
maxkeysize = sizeof(id1) + sizeof(assocType) + 1 + sizeof(id2);
|
|
|
|
std::string dummy2;
|
|
|
|
dummy2.reserve(maxkeysize);
|
|
|
|
dummy2.resize(maxkeysize);
|
|
|
|
keybuf = &dummy2[0];
|
|
|
|
rowkeysize = makeRowKey(keybuf, id1, assocType);
|
|
|
|
keysize = appendRowKeyForMeta(rowkeysize, keybuf, id2);
|
|
|
|
leveldb::Slice mkey(keybuf, keysize);
|
|
|
|
status = db->Get(roptions_, mkey, &value);
|
2012-09-28 10:08:23 +02:00
|
|
|
if (status.IsNotFound()) {
|
|
|
|
throw generate_exception(tableName, Code::kNotFound,
|
2012-10-04 01:35:53 +02:00
|
|
|
"assocDelete Unable to find column m ",
|
|
|
|
assocType, id1, id2, 0, 0, 0, vis);
|
2012-09-28 10:08:23 +02:00
|
|
|
} else if (!status.ok() ||
|
|
|
|
(value.size() != sizeof(int64_t) + sizeof(int8_t))) {
|
|
|
|
throw generate_exception(tableName, Code::kNotFound,
|
2012-10-04 01:35:53 +02:00
|
|
|
"assocDelete Unable to extract m$id2 ",
|
|
|
|
assocType, id1, id2, 0, 0, 0, vis);
|
2012-09-28 10:08:23 +02:00
|
|
|
}
|
2012-10-04 01:35:53 +02:00
|
|
|
extractTsVisString(&oldts, &oldvis, (char *)value.c_str());
|
2012-09-28 10:08:23 +02:00
|
|
|
|
2012-10-04 01:35:53 +02:00
|
|
|
// Create d'$id2
|
|
|
|
maxkeysize = sizeof(id1) + sizeof(assocType) + 1 + sizeof(id2);
|
|
|
|
std::string dummy3;
|
|
|
|
dummy3.reserve(maxkeysize);
|
|
|
|
dummy3.resize(maxkeysize);
|
|
|
|
keybuf = &dummy3[0];
|
|
|
|
rowkeysize = makeRowKey(keybuf, id1, assocType);
|
|
|
|
keysize = appendRowKeyForDelete(rowkeysize, keybuf, id2);
|
|
|
|
leveldb::Slice dkey(keybuf, keysize);
|
|
|
|
|
|
|
|
// create key for 'p'
|
|
|
|
maxkeysize = sizeof(id1) + sizeof(assocType) + 1 +
|
|
|
|
sizeof(oldts) + sizeof(id2);
|
|
|
|
std::string dummy4;
|
|
|
|
dummy4.reserve(maxkeysize);
|
|
|
|
dummy4.resize(maxkeysize);
|
|
|
|
keybuf = &dummy4[0];
|
|
|
|
rowkeysize = makeRowKey(keybuf, id1, assocType);
|
|
|
|
keysize = appendRowKeyForPayload(rowkeysize, keybuf, oldts, id2);
|
|
|
|
leveldb::Slice pkey(keybuf, keysize);
|
|
|
|
|
|
|
|
// if this is a hard delete, then delete all columns
|
|
|
|
if (vis == AssocVisibility::HARD_DELETE) {
|
|
|
|
batch.Delete(ckey);
|
|
|
|
batch.Delete(mkey);
|
|
|
|
batch.Delete(dkey);
|
|
|
|
batch.Delete(pkey);
|
|
|
|
} else if (vis == AssocVisibility::DELETED) {
|
|
|
|
if (oldvis != AssocVisibility::DELETED) {
|
|
|
|
// change vis in m$id2
|
|
|
|
std::string mvalue;
|
|
|
|
mvalue.reserve(sizeof(int64_t) + sizeof(int8_t));
|
|
|
|
mvalue.resize(sizeof(int64_t) + sizeof(int8_t));
|
|
|
|
makeTsVisString(&mvalue[0], oldts, vis);
|
|
|
|
batch.Put(mkey, leveldb::Slice(mvalue));
|
|
|
|
}
|
|
|
|
|
|
|
|
// scan p$tsid2 to get payload
|
|
|
|
// do we need to modify payload with new wormhole comments?
|
|
|
|
std::string pvalue;
|
|
|
|
status = db->Get(roptions_, pkey, &pvalue);
|
|
|
|
if (status.IsNotFound()) {
|
|
|
|
throw generate_exception(tableName, Code::kNotFound,
|
|
|
|
"assocDelete Unable to find p ",
|
|
|
|
assocType, id1, id2, 0, 0, oldts, vis);
|
|
|
|
} else if (!status.ok() ||
|
|
|
|
(value.size() != sizeof(int64_t) + sizeof(int8_t))) {
|
|
|
|
throw generate_exception(tableName, Code::kNotFound,
|
|
|
|
"assocDelete Unable to extract p ",
|
|
|
|
assocType, id1, id2, 0, 0, oldts, vis);
|
|
|
|
}
|
|
|
|
|
|
|
|
// store payload in d$id2
|
|
|
|
batch.Put(dkey, leveldb::Slice(pvalue));
|
|
|
|
|
|
|
|
// delete p$ts$id2
|
|
|
|
batch.Delete(pkey);
|
|
|
|
}
|
|
|
|
if (update_count && oldvis == AssocVisibility::VISIBLE) {
|
|
|
|
return_value = 1;
|
|
|
|
assert(count >= 1);
|
|
|
|
count--;
|
|
|
|
std::string myvalue;
|
|
|
|
myvalue.reserve(sizeof(int64_t));
|
|
|
|
myvalue.resize(sizeof(int64_t));
|
|
|
|
makeCountString(&myvalue[0], count);
|
|
|
|
batch.Put(ckey, leveldb::Slice(myvalue));
|
|
|
|
}
|
|
|
|
status = db->Write(woptions_, &batch); // write with no sync
|
|
|
|
if (!status.ok()) {
|
|
|
|
throw generate_exception(tableName, Code::kNotFound,
|
|
|
|
"assocDelete Unable to Batch Write ",
|
|
|
|
assocType, id1, id2, 0, 0, oldts, vis);
|
|
|
|
}
|
|
|
|
} // release rowlock
|
2012-09-28 10:08:23 +02:00
|
|
|
|
2012-10-04 01:35:53 +02:00
|
|
|
// Do a sync write after releasing the rowlock. This
|
|
|
|
// improves performance for hotrow updates.
|
|
|
|
batch.Clear();
|
|
|
|
status = db->Write(woptions_sync_, &batch);
|
2012-09-28 10:08:23 +02:00
|
|
|
if (!status.ok()) {
|
|
|
|
throw generate_exception(tableName, Code::kNotFound,
|
2012-10-04 01:35:53 +02:00
|
|
|
"assocDelete Unable to Batch sync Write ",
|
2012-09-28 10:08:23 +02:00
|
|
|
assocType, id1, id2, 0, 0, oldts, vis);
|
2012-10-04 01:35:53 +02:00
|
|
|
}
|
2012-09-28 10:08:23 +02:00
|
|
|
if (update_count) {
|
|
|
|
assert(count >= 0);
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
2012-08-03 09:27:48 +02:00
|
|
|
int64_t assocCountInternal(const Text& tableName, leveldb::DB* db,
|
2012-08-02 01:17:43 +02:00
|
|
|
int64_t assocType, int64_t id1) {
|
|
|
|
// create key to query
|
|
|
|
int maxkeysize = sizeof(id1) + sizeof(assocType) + 1;
|
|
|
|
std::string dummy;
|
|
|
|
dummy.reserve(maxkeysize);
|
|
|
|
dummy.resize(maxkeysize);
|
|
|
|
char* keybuf = &dummy[0];
|
|
|
|
int rowkeysize = makeRowKey(keybuf, id1, assocType);
|
|
|
|
int keysize = appendRowKeyForCount(rowkeysize, keybuf); // column 'c'
|
|
|
|
leveldb::Slice ckey(keybuf, keysize);
|
|
|
|
|
2012-10-04 01:35:53 +02:00
|
|
|
// Query database to find value
|
2012-08-02 01:17:43 +02:00
|
|
|
leveldb::Status status;
|
|
|
|
std::string value;
|
|
|
|
int64_t count;
|
2012-09-28 10:08:23 +02:00
|
|
|
status = db->Get(roptions_, ckey, &value);
|
2012-08-02 01:17:43 +02:00
|
|
|
|
|
|
|
// parse results retrieved from database
|
|
|
|
if (status.IsNotFound()) {
|
|
|
|
return 0; // non existant assoc
|
|
|
|
} else if (!status.ok()) {
|
|
|
|
throw generate_exception(tableName, Code::kNotFound,
|
2012-09-28 10:08:23 +02:00
|
|
|
"assocCountInternal Unable to find count ",
|
2012-08-02 01:17:43 +02:00
|
|
|
assocType, id1, 0, 0, 0, 0, Tleveldb::UNUSED1);
|
|
|
|
}
|
|
|
|
if (value.size() != sizeof(int64_t)) {
|
2012-08-02 02:28:35 +02:00
|
|
|
printf("expected %ld got %ld\n", sizeof(int64_t), value.size());
|
2012-08-02 01:17:43 +02:00
|
|
|
throw generate_exception(tableName, Code::kNotFound,
|
2012-09-28 10:08:23 +02:00
|
|
|
"assocCountInternal Bad sizes for count ",
|
2012-08-02 01:17:43 +02:00
|
|
|
assocType, id1, 0, 0, 0, 0, Tleveldb::UNUSED1);
|
|
|
|
}
|
|
|
|
extract_int64(&count, (char *)value.c_str());
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2012-08-03 09:27:48 +02:00
|
|
|
void assocRangeGetBytimeInternal(std::vector<TaoAssocGetResult> & _return,
|
|
|
|
const Text& tableName, leveldb::DB* db,
|
|
|
|
int64_t assocType, int64_t id1,
|
|
|
|
int64_t start_time, int64_t end_time, int64_t offset,
|
|
|
|
int64_t limit) {
|
|
|
|
if (start_time < end_time) {
|
|
|
|
throw generate_exception(tableName, Code::kNotFound,
|
|
|
|
"assocRangeGetBytimeInternal:Bad starttime and endtime\n",
|
|
|
|
assocType, id1, 0, 0, 0, 0, Tleveldb::UNUSED1);
|
|
|
|
}
|
|
|
|
|
|
|
|
int64_t ts, id2;
|
|
|
|
std::string wormhole;
|
|
|
|
|
|
|
|
// convert times to time-till-LONGMAX
|
|
|
|
int64_t startTime = convertTime(start_time);
|
|
|
|
int64_t endTime = convertTime(end_time);
|
|
|
|
|
|
|
|
// create max key to query
|
|
|
|
int maxkeysize = sizeof(id1) + sizeof(assocType) + 1 + sizeof(ts) +
|
|
|
|
sizeof(id2);
|
|
|
|
std::string dummy;
|
|
|
|
dummy.reserve(maxkeysize);
|
|
|
|
dummy.resize(maxkeysize);
|
|
|
|
|
|
|
|
// create rowkey
|
|
|
|
char* keybuf = &dummy[0];
|
|
|
|
int rowkeysize = makeRowKey(keybuf, id1, assocType);
|
|
|
|
|
|
|
|
// Position scan at 'p'$ts$id2 where ts = startTime and id2 = 0
|
|
|
|
id2 = 0;
|
|
|
|
int keysize = appendRowKeyForPayload(rowkeysize, keybuf, startTime, id2);
|
|
|
|
leveldb::Slice pkey(keybuf, keysize);
|
2012-10-04 01:35:53 +02:00
|
|
|
leveldb::Iterator* iter = db->NewIterator(roptions_);
|
2012-08-03 09:27:48 +02:00
|
|
|
|
|
|
|
for (iter->Seek(pkey); iter->Valid() && limit > 0 ; iter->Next()) {
|
|
|
|
// skip over records that the caller is not interested in
|
|
|
|
if (offset > 0) {
|
|
|
|
offset--;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
ASSERT_GE(iter->key().size_, (unsigned int)rowkeysize);
|
|
|
|
|
|
|
|
// extract the timestamp and id1 from the key
|
|
|
|
extractRowKeyP(&ts, &id2, rowkeysize, (char*)(iter->key().data_));
|
|
|
|
ASSERT_GE(ts, startTime);
|
|
|
|
if (ts > endTime) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// allocate a new slot in the result set.
|
|
|
|
_return.resize(_return.size() + 1);
|
|
|
|
TaoAssocGetResult* result = &_return.back();
|
|
|
|
|
|
|
|
// Fill up new element in result set.
|
|
|
|
result->id2 = id2;
|
|
|
|
result->time = convertTime(ts);
|
|
|
|
extractPayload((char*)iter->value().data_, &result->id1Type,
|
|
|
|
&result->id2Type,
|
|
|
|
&result->dataVersion, result->data, wormhole);
|
|
|
|
limit--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void assocGetInternal(std::vector<TaoAssocGetResult> & _return,
|
2012-08-02 01:17:43 +02:00
|
|
|
const Text& tableName,
|
|
|
|
leveldb::DB* db,
|
|
|
|
int64_t assocType, int64_t id1,
|
|
|
|
const std::vector<int64_t> & id2s) {
|
|
|
|
int64_t ts, id2;
|
2012-08-02 23:09:13 +02:00
|
|
|
|
2012-08-03 09:27:48 +02:00
|
|
|
if (id2s.size() > MAX_RANGE_SIZE) {
|
2012-08-02 23:09:13 +02:00
|
|
|
throw generate_exception(tableName, Code::kNotFound,
|
2012-09-28 10:08:23 +02:00
|
|
|
"assocGetInternal Ids2 cannot be gteater than 10K.",
|
2012-08-02 23:09:13 +02:00
|
|
|
assocType, id1, 0, 0, 0, 0, Tleveldb::UNUSED1);
|
|
|
|
}
|
|
|
|
// allocate the entire result buffer.
|
|
|
|
_return.reserve(id2s.size());
|
|
|
|
|
2012-08-02 01:17:43 +02:00
|
|
|
// create max key to query
|
|
|
|
int maxkeysize = sizeof(id1) + sizeof(assocType) + 1 + sizeof(ts) +
|
|
|
|
sizeof(id2);
|
|
|
|
std::string dummy;
|
|
|
|
dummy.reserve(maxkeysize);
|
|
|
|
dummy.resize(maxkeysize);
|
|
|
|
|
|
|
|
// create rowkey
|
|
|
|
char* keybuf = &dummy[0];
|
|
|
|
int rowkeysize = makeRowKey(keybuf, id1, assocType);
|
2012-10-04 01:35:53 +02:00
|
|
|
leveldb::Iterator* iter = db->NewIterator(roptions_);
|
2012-08-02 01:17:43 +02:00
|
|
|
|
2012-08-02 02:28:35 +02:00
|
|
|
for (unsigned int index = 0; index < id2s.size(); index++) {
|
2012-08-02 23:09:13 +02:00
|
|
|
int64_t ts;
|
|
|
|
int8_t oldvis;
|
|
|
|
leveldb::Status status;
|
2012-10-04 01:35:53 +02:00
|
|
|
std::string wormhole;
|
2012-08-02 01:17:43 +02:00
|
|
|
|
|
|
|
// query column 'm'$id2
|
2012-08-02 23:09:13 +02:00
|
|
|
id2 = id2s[index];
|
2012-08-02 01:17:43 +02:00
|
|
|
int keysize = appendRowKeyForMeta(rowkeysize, keybuf, id2);
|
|
|
|
leveldb::Slice ckey(keybuf, keysize);
|
2012-10-04 01:35:53 +02:00
|
|
|
iter->Seek(ckey);
|
|
|
|
if (!iter->Valid()) {
|
|
|
|
throw generate_exception(tableName, Code::kNotFound,
|
|
|
|
"Unable to find m$id2 ",
|
|
|
|
assocType, id1, id2, 0, 0, 0, Tleveldb::UNUSED1);
|
|
|
|
}
|
|
|
|
if (ckey != iter->key()) {
|
2012-08-02 01:17:43 +02:00
|
|
|
continue; // non existant assoc
|
2012-10-04 01:35:53 +02:00
|
|
|
}
|
|
|
|
leveldb::Slice value = iter->value();
|
|
|
|
if (value.size() != sizeof(int64_t) + sizeof(int8_t)) {
|
2012-08-02 01:17:43 +02:00
|
|
|
throw generate_exception(tableName, Code::kNotFound,
|
|
|
|
"Unable to find m$id2 ",
|
|
|
|
assocType, id1, id2, 0, 0, 0, Tleveldb::UNUSED1);
|
|
|
|
}
|
2012-08-02 23:09:13 +02:00
|
|
|
|
2012-10-04 01:35:53 +02:00
|
|
|
extractTsVisString(&ts, &oldvis, (char*)value.data_);
|
2012-08-02 01:17:43 +02:00
|
|
|
if(oldvis != AssocVisibility::VISIBLE) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
ASSERT_NE(ts, 0);
|
|
|
|
|
|
|
|
// this assoc is visible, scan 'p'$ts$id2 to retrieve payload.
|
|
|
|
keysize = appendRowKeyForPayload(rowkeysize, keybuf, ts, id2);
|
|
|
|
leveldb::Slice pkey(keybuf, keysize);
|
2012-10-04 01:35:53 +02:00
|
|
|
iter->Seek(pkey);
|
|
|
|
if (!iter->Valid() || (pkey != iter->key())) {
|
2012-08-02 01:17:43 +02:00
|
|
|
throw generate_exception(tableName, Code::kNotFound,
|
2012-10-04 01:35:53 +02:00
|
|
|
"Unable to find p$ts$id2 ",
|
|
|
|
assocType, id1, id2, 0, 0, ts, Tleveldb::UNUSED1);
|
2012-08-02 01:17:43 +02:00
|
|
|
}
|
|
|
|
|
2012-08-02 23:09:13 +02:00
|
|
|
// allocate a new slot in the result set.
|
|
|
|
_return.resize(_return.size() + 1);
|
|
|
|
TaoAssocGetResult* result = &_return.back();
|
2012-08-02 01:17:43 +02:00
|
|
|
|
2012-08-02 23:09:13 +02:00
|
|
|
// Fill up new element in result set.
|
|
|
|
result->id2 = id2;
|
2012-08-03 09:27:48 +02:00
|
|
|
result->time = convertTime(ts);
|
2012-10-04 01:35:53 +02:00
|
|
|
extractPayload((char *)iter->value().data_, &result->id1Type,
|
2012-08-02 23:09:13 +02:00
|
|
|
&result->id2Type,
|
|
|
|
&result->dataVersion, result->data, wormhole);
|
2012-08-02 01:17:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// fill the row key and returns the size of the key
|
|
|
|
inline int makeRowKey(char* dest, int64_t id1, int64_t assocType) {
|
|
|
|
dest = copy_int64_switch_endian(dest, id1);
|
|
|
|
dest = copy_int64_switch_endian(dest, assocType);
|
|
|
|
return sizeof(id1) + sizeof(assocType);
|
|
|
|
}
|
|
|
|
|
|
|
|
// fill the row key +'c' and returns the size of the key
|
|
|
|
inline int appendRowKeyForCount(int rowkeysize, char* dest) {
|
|
|
|
dest += rowkeysize;
|
|
|
|
*dest = 'c';
|
|
|
|
return rowkeysize + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// fill the row key +'p' + $ts$id2 and returns the size of the key
|
|
|
|
inline int appendRowKeyForPayload(int rowkeysize, char* dest,
|
|
|
|
int64_t ts, int64_t id2) {
|
|
|
|
dest += rowkeysize;
|
|
|
|
*dest++ = 'p';
|
|
|
|
dest = copy_int64_switch_endian(dest, ts);
|
|
|
|
dest = copy_int64_switch_endian(dest, id2);
|
|
|
|
return rowkeysize + sizeof(ts) + sizeof(id2) + 1;
|
|
|
|
}
|
2012-08-03 09:27:48 +02:00
|
|
|
|
|
|
|
// extract the timestamp and id2 from the key p$ts$id2
|
|
|
|
inline void extractRowKeyP(int64_t* ts, int64_t* id,
|
|
|
|
int rowkeysize, char* src) {
|
|
|
|
src += rowkeysize; // skip over the rowkey
|
|
|
|
ASSERT_EQ(*src, 'p');
|
|
|
|
src++;
|
|
|
|
extract_int64(ts, src); src += sizeof(*ts);
|
|
|
|
extract_int64(id, src); src += sizeof(*id);
|
|
|
|
}
|
|
|
|
|
2012-08-02 01:17:43 +02:00
|
|
|
// fill the row key +'m' + id2 and returns the size of the key
|
|
|
|
inline int appendRowKeyForMeta(int rowkeysize, char* dest,
|
|
|
|
int64_t id2) {
|
|
|
|
dest += rowkeysize;
|
|
|
|
*dest++ = 'm';
|
|
|
|
dest = copy_int64_switch_endian(dest, id2);
|
|
|
|
return rowkeysize + sizeof(id2) + 1;
|
|
|
|
}
|
|
|
|
|
2012-09-28 10:08:23 +02:00
|
|
|
// fill the row key +'d' + id2 and returns the size of the key
|
|
|
|
inline int appendRowKeyForDelete(int rowkeysize, char* dest,
|
|
|
|
int64_t id2) {
|
|
|
|
dest += rowkeysize;
|
|
|
|
*dest++ = 'd';
|
|
|
|
dest = copy_int64_switch_endian(dest, id2);
|
|
|
|
return rowkeysize + sizeof(id2) + 1;
|
|
|
|
}
|
|
|
|
|
2012-08-02 01:17:43 +02:00
|
|
|
// encode id1Type, id2Type, dataversion, etc into the payload
|
2012-08-02 23:09:13 +02:00
|
|
|
void makePayload(char* dest, int64_t id1Type, int64_t id2Type,
|
2012-08-02 01:17:43 +02:00
|
|
|
int64_t dataVersion, const Text& data,
|
|
|
|
const Text& wormhole_comment) {
|
2012-08-02 23:09:13 +02:00
|
|
|
int32_t datasize = data.size();
|
|
|
|
int32_t wormhole_commentsize = wormhole_comment.size();
|
|
|
|
|
2012-08-02 01:17:43 +02:00
|
|
|
dest = copy_int64_switch_endian(dest, id1Type);
|
|
|
|
dest = copy_int64_switch_endian(dest, id2Type);
|
|
|
|
dest = copy_int64_switch_endian(dest, dataVersion);
|
2012-08-02 23:09:13 +02:00
|
|
|
dest = copy_int32(dest, datasize);
|
|
|
|
dest = copy_int32(dest, wormhole_commentsize);
|
2012-08-02 01:17:43 +02:00
|
|
|
memcpy(dest, data.data(), data.size());
|
|
|
|
dest += data.size();
|
|
|
|
memcpy(dest, wormhole_comment.data(), wormhole_comment.size());
|
|
|
|
dest += wormhole_comment.size();
|
|
|
|
}
|
|
|
|
|
2012-08-02 23:09:13 +02:00
|
|
|
// extract id1Type, id2Type, dataversion, etc from payload
|
|
|
|
void extractPayload(char* dest, int64_t* id1Type, int64_t* id2Type,
|
|
|
|
int64_t* dataVersion, Text& data,
|
|
|
|
Text& wormhole_comment) {
|
|
|
|
int32_t datasize, wormsize;
|
|
|
|
extract_int64(id1Type, dest); dest += sizeof(*id1Type);
|
|
|
|
extract_int64(id2Type, dest); dest += sizeof(*id2Type);
|
|
|
|
extract_int64(dataVersion, dest); dest += sizeof(*dataVersion);
|
|
|
|
extract_int32(&datasize, dest); dest += sizeof(datasize);
|
|
|
|
extract_int32(&wormsize, dest); dest += sizeof(wormsize);
|
|
|
|
|
|
|
|
data.assign(dest, datasize); dest += datasize;
|
|
|
|
wormhole_comment.assign(dest, wormsize); dest += wormsize;
|
|
|
|
}
|
|
|
|
|
2012-08-02 01:17:43 +02:00
|
|
|
// fill the timestamp and visibility
|
|
|
|
inline void makeTsVisString(char* dest, int64_t ts, int8_t vis) {
|
|
|
|
dest = copy_int64_switch_endian(dest, ts);
|
|
|
|
*dest = vis;
|
|
|
|
}
|
|
|
|
|
|
|
|
// extracts the timestamp and visibility from a byte stream
|
|
|
|
inline void extractTsVisString(int64_t* ts, int8_t* vis, char* src) {
|
|
|
|
extract_int64(ts, src);
|
|
|
|
extract_int8(vis, src + sizeof(*ts));
|
|
|
|
}
|
|
|
|
|
|
|
|
// fill the count value
|
|
|
|
inline void makeCountString(char* dest, int64_t count) {
|
|
|
|
dest = copy_int64_switch_endian(dest, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Switch endianess of the id and copy it to dest.
|
|
|
|
// Returns the updated destination address
|
|
|
|
//
|
|
|
|
inline char* copy_int64_switch_endian(char* dest, int64_t id) {
|
|
|
|
char* src = (char *)&id + sizeof(id) - 1;
|
2012-08-02 02:28:35 +02:00
|
|
|
for (unsigned int i = 0; i < sizeof(id); i++) {
|
2012-08-02 01:17:43 +02:00
|
|
|
*dest++ = *src--;
|
|
|
|
}
|
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
|
|
|
// extracts a int64 type from the char stream. Swaps endianness.
|
|
|
|
inline void extract_int64(int64_t* dest, char* src) {
|
2012-08-02 23:09:13 +02:00
|
|
|
char* d = (char *)dest;
|
2012-08-02 01:17:43 +02:00
|
|
|
src += sizeof(int64_t) - 1;
|
2012-08-02 02:28:35 +02:00
|
|
|
for (unsigned int i = 0; i < sizeof(uint64_t); i++) {
|
2012-08-02 23:09:13 +02:00
|
|
|
*d++ = *src--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// copy a 4 byte quantity to byte stream. swap endianess.
|
|
|
|
//
|
|
|
|
inline char* copy_int32(char* dest, int32_t id) {
|
|
|
|
char* src = (char *)&id + sizeof(id) - 1;
|
|
|
|
for (unsigned int i = 0; i < sizeof(id); i++) {
|
2012-08-02 01:17:43 +02:00
|
|
|
*dest++ = *src--;
|
|
|
|
}
|
2012-08-02 23:09:13 +02:00
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
|
|
|
// extract a 4 byte quantity from a byte stream
|
|
|
|
inline void extract_int32(int32_t* dest, char* src) {
|
|
|
|
char* d = (char *)dest;
|
|
|
|
src += sizeof(int32_t) - 1;
|
|
|
|
for (unsigned int i = 0; i < sizeof(*dest); i++) {
|
|
|
|
*d++ = *src--;
|
|
|
|
}
|
2012-08-02 01:17:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// extracts a 1 byte integer from the char stream.
|
|
|
|
inline void extract_int8(int8_t* dest, char* src) {
|
|
|
|
*dest = *(int8_t *)src;
|
|
|
|
}
|
|
|
|
|
2012-08-03 09:27:48 +02:00
|
|
|
// convert a timestamp from an ever-increasing number to
|
|
|
|
// a decreasing number. All stored timestamps in this database
|
|
|
|
// are MAXLONG - timestamp. Thus, a backward-scan in time
|
|
|
|
// is converted to a forward scan in the database.
|
|
|
|
inline int64_t convertTime(int64_t ts) {
|
|
|
|
return LONG_MAX - ts;
|
|
|
|
}
|
|
|
|
|
2012-08-02 01:17:43 +02:00
|
|
|
|
|
|
|
// generate an exception message
|
|
|
|
LeveldbException generate_exception(const Text& tableName,
|
|
|
|
Code errorCode, const char* message,
|
|
|
|
int64_t assocType, int64_t id1,
|
|
|
|
int64_t id2, int64_t id1Type, int64_t id2Type,
|
|
|
|
int64_t ts, AssocVisibility vis) {
|
|
|
|
char result[1024];
|
|
|
|
sprintf(result,
|
2012-08-02 02:28:35 +02:00
|
|
|
"id1=%ld assocType=%ld id2=%ld id1Type=%ld id2Type=%ld ts=%ld vis=%d ",
|
2012-08-02 01:17:43 +02:00
|
|
|
id1, assocType, id2, id1Type, id2Type, ts, vis);
|
|
|
|
fprintf(stderr, "assoc_server error table %s: %s errorCode=%d %s",
|
|
|
|
tableName.c_str(), message, errorCode, result);
|
|
|
|
|
|
|
|
LeveldbException e;
|
|
|
|
e.errorCode = errorCode;
|
|
|
|
e.message = message;
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // THRIFT_LEVELDB_ASSOC_SERVER_H_
|