2011-05-11 22:27:48 +00:00
|
|
|
#include <dht_persistent_store/PersistentStore.h>
|
|
|
|
#include <protocol/TBinaryProtocol.h>
|
|
|
|
#include <transport/TServerSocket.h>
|
|
|
|
#include <transport/TBufferTransports.h>
|
|
|
|
|
|
|
|
using namespace ::apache::thrift;
|
|
|
|
using namespace ::apache::thrift::protocol;
|
|
|
|
using namespace ::apache::thrift::transport;
|
|
|
|
|
|
|
|
using namespace sherpa;
|
|
|
|
using boost::shared_ptr;
|
|
|
|
|
|
|
|
class LSMServerHandler : virtual public PersistentStoreIf {
|
|
|
|
public:
|
|
|
|
LSMServerHandler(int argc, char **argv);
|
|
|
|
ResponseCode::type ping();
|
2011-06-08 23:58:29 +00:00
|
|
|
ResponseCode::type shutdown();
|
2011-05-11 22:27:48 +00:00
|
|
|
ResponseCode::type addDatabase(const std::string& databaseName);
|
|
|
|
ResponseCode::type dropDatabase(const std::string& databaseName);
|
|
|
|
void listDatabases(StringListResponse& _return);
|
|
|
|
void scan(RecordListResponse& _return, const std::string& databaseName, const ScanOrder::type order,
|
|
|
|
const std::string& startKey, const bool startKeyIncluded,
|
|
|
|
const std::string& endKey, const bool endKeyIncluded,
|
|
|
|
const int32_t maxRecords, const int32_t maxBytes);
|
|
|
|
void get(BinaryResponse& _return, const std::string& databaseName, const std::string& recordName);
|
|
|
|
ResponseCode::type insert(const std::string& databaseName, const std::string& recordName, const std::string& recordBody);
|
|
|
|
ResponseCode::type insertMany(const std::string& databaseName, const std::vector<Record> & records);
|
|
|
|
ResponseCode::type update(const std::string& databaseName, const std::string& recordName, const std::string& recordBody);
|
|
|
|
ResponseCode::type remove(const std::string& databaseName, const std::string& recordName);
|
|
|
|
|
|
|
|
private:
|
2011-05-12 00:30:02 +00:00
|
|
|
ResponseCode::type insert(datatuple* tuple);
|
|
|
|
uint32_t getDatabaseId(const std::string& databaseName);
|
2011-05-12 20:41:18 +00:00
|
|
|
uint32_t nextDatabaseId();
|
2011-05-12 00:30:02 +00:00
|
|
|
datatuple* get(uint32_t databaseId, const std::string& recordName);
|
|
|
|
datatuple* get(datatuple* tuple);
|
|
|
|
datatuple* buildTuple(uint32_t databaseId, const std::string& recordName);
|
|
|
|
datatuple* buildTuple(uint32_t databaseId, const std::string& recordName, const std::string& recordBody);
|
|
|
|
datatuple* buildTuple(uint32_t databaseId, const std::string& recordName, const void* body, uint32_t bodySize);
|
2011-05-12 20:41:18 +00:00
|
|
|
void initNextDatabaseId();
|
2011-06-09 01:43:46 +00:00
|
|
|
logtable* ltable_;
|
2011-05-12 00:30:02 +00:00
|
|
|
uint32_t nextDatabaseId_;
|
2011-05-12 20:41:18 +00:00
|
|
|
pthread_mutex_t mutex_;
|
2011-05-11 22:27:48 +00:00
|
|
|
};
|