Forked from
syslab / tapir
85 commits behind the upstream repository.
-
Irene Zhang authoredIrene Zhang authored
shardclient.cc 9.53 KiB
// -*- mode: c++; c-file-style: "k&r"; c-basic-offset: 4 -*-
// vim: set ts=4 sw=4:
/***********************************************************************
*
* store/txnstore/shardclient.h:
* Single shard transactional client interface.
*
* Copyright 2015 Irene Zhang <iyzhang@cs.washington.edu>
* Naveen Kr. Sharma <naveenks@cs.washington.edu>
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use, copy,
* modify, merge, publish, distribute, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
**********************************************************************/
#include "txnclient.h"
#include "store/common/transaction.h"
namespace spanstore {
using namespace std;
using namespace proto;
SpanClient::SpanClient(Mode mode, const string &configPath,
Transport *transport, uint64_t client_id, int
shard, int closestReplica)
: transport(transport), client_id(client_id), shard(shard)
{
ifstream configStream(configPath);
if (configStream.fail()) {
fprintf(stderr, "unable to read configuration file: %s\n",
configPath.c_str());
}
specpaxos::Configuration config(configStream);
client = new specpaxos::vr::VRClient(config, transport);
if (mode == MODE_OCC || mode == MODE_SPAN_OCC) {
if (closestReplica == -1) {
replica = client_id % config.n;
} else {
replica = closestReplica;
}
Debug("Sending unlogged to replica %i", replica);
} else {
replica = 0;
}
waiting = NULL;
blockingBegin = NULL;
}
SpanClient::~SpanClient()
{
delete client;
}
/* Sends BEGIN to a single shard indexed by i. */
void
SpanClient::Begin(uint64_t id)
{
Debug("[shard %i] BEGIN: %lu", shard, id);
// Wait for any previous pending requests.
if (blockingBegin != NULL) {
blockingBegin->GetReply();
delete blockingBegin;
blockingBegin = NULL;
}
}
/* Returns the value corresponding to the supplied key. */
void
SpanClient::Get(uint64_t id, const string &key, Promise *promise)
{
// Send the GET operation to appropriate shard.
Debug("[shard %i] Sending GET [%s]", shard, key.c_str());
// create request
string request_str;
Request request;
request.set_op(Request::GET);
request.set_txnid(id);
request.mutable_get()->set_key(key);
request.SerializeToString(&request_str);
// set to 1 second by default
int timeout = (promise != NULL) ? promise->GetTimeout() : 1000;
transport->Timer(0, [=]() {
waiting = promise;
client->InvokeUnlogged(replica,
request_str,
bind(&SpanClient::GetCallback,
this,
placeholders::_1,
placeholders::_2),
bind(&SpanClient::GetTimeout,
this),
timeout); // timeout in ms
});
}
void
SpanClient::Get(uint64_t id, const string &key,
const Timestamp ×tamp, Promise *promise)
{
// Send the GET operation to appropriate shard.
Debug("[shard %i] Sending GET [%s]", shard, key.c_str());
// create request
string request_str;
Request request;
request.set_op(Request::GET);
request.set_txnid(id);
request.mutable_get()->set_key(key);
timestamp.serialize(request.mutable_get()->mutable_timestamp());
request.SerializeToString(&request_str);
// set to 1 second by default
int timeout = (promise != NULL) ? promise->GetTimeout() : 1000;
transport->Timer(0, [=]() {
waiting = promise;
client->InvokeUnlogged(replica,
request_str,
bind(&SpanClient::GetCallback,
this,
placeholders::_1,
placeholders::_2),
bind(&SpanClient::GetTimeout,
this),
timeout); // timeout in ms
});
}
void
SpanClient::Prepare(uint64_t id, const Transaction &txn,
const Timestamp ×tamp, Promise *promise)
{
Debug("[shard %i] Sending PREPARE: %lu", shard, id);
// create prepare request
string request_str;
Request request;
request.set_op(Request::PREPARE);
request.set_txnid(id);
txn.serialize(request.mutable_prepare()->mutable_txn());
request.SerializeToString(&request_str);
transport->Timer(0, [=]() {
waiting = promise;
client->Invoke(request_str,
bind(&SpanClient::PrepareCallback,
this,
placeholders::_1,
placeholders::_2));
});
}
void
SpanClient::Commit(uint64_t id, const Transaction &txn,
uint64_t timestamp, Promise *promise)
{
Debug("[shard %i] Sending COMMIT: %lu", shard, id);
// create commit request
string request_str;
Request request;
request.set_op(Request::COMMIT);
request.set_txnid(id);
request.mutable_commit()->set_timestamp(timestamp);
request.SerializeToString(&request_str);
blockingBegin = new Promise(COMMIT_TIMEOUT);
transport->Timer(0, [=]() {
waiting = promise;
client->Invoke(request_str,
bind(&SpanClient::CommitCallback,
this,
placeholders::_1,
placeholders::_2));
});
}
/* Aborts the ongoing transaction. */
void
SpanClient::Abort(uint64_t id, const Transaction &txn, Promise *promise)
{
Debug("[shard %i] Sending ABORT: %lu", shard, id);
// create abort request
string request_str;
Request request;
request.set_op(Request::ABORT);
request.set_txnid(id);
txn.serialize(request.mutable_abort()->mutable_txn());
request.SerializeToString(&request_str);
blockingBegin = new Promise(ABORT_TIMEOUT);
transport->Timer(0, [=]() {
waiting = promise;
client->Invoke(request_str,
bind(&SpanClient::AbortCallback,
this,
placeholders::_1,
placeholders::_2));
});
}
void
SpanClient::GetTimeout()
{
if (waiting != NULL) {
Promise *w = waiting;
waiting = NULL;
w->Reply(REPLY_TIMEOUT);
}
}
/* Callback from a shard replica on get operation completion. */
void
SpanClient::GetCallback(const string &request_str, const string &reply_str)
{
/* Replies back from a shard. */
Reply reply;
reply.ParseFromString(reply_str);
Debug("[shard %i] Received GET callback [%d]", shard, reply.status());
if (waiting != NULL) {
Promise *w = waiting;
waiting = NULL;
if (reply.has_timestamp()) {
w->Reply(reply.status(), Timestamp(reply.timestamp()), reply.value());
} else {
w->Reply(reply.status(), reply.value());
}
}
}
/* Callback from a shard replica on prepare operation completion. */
void
SpanClient::PrepareCallback(const string &request_str, const string &reply_str)
{
Reply reply;
reply.ParseFromString(reply_str);
Debug("[shard %i] Received PREPARE callback [%d]", shard, reply.status());
if (waiting != NULL) {
Promise *w = waiting;
waiting = NULL;
if (reply.has_timestamp()) {
w->Reply(reply.status(), Timestamp(reply.timestamp(), 0));
} else {
w->Reply(reply.status(), Timestamp());
}
}
}
/* Callback from a shard replica on commit operation completion. */
void
SpanClient::CommitCallback(const string &request_str, const string &reply_str)
{
// COMMITs always succeed.
Reply reply;
reply.ParseFromString(reply_str);
ASSERT(reply.status() == REPLY_OK);
ASSERT(blockingBegin != NULL);
blockingBegin->Reply(0);
if (waiting != NULL) {
Promise *w = waiting;
waiting = NULL;
w->Reply(reply.status());
}
Debug("[shard %i] Received COMMIT callback [%d]", shard, reply.status());
}
/* Callback from a shard replica on abort operation completion. */
void
SpanClient::AbortCallback(const string &request_str, const string &reply_str)
{
// ABORTs always succeed.
Reply reply;
reply.ParseFromString(reply_str);
ASSERT(reply.status() == REPLY_OK);
ASSERT(blockingBegin != NULL);
blockingBegin->Reply(0);
if (waiting != NULL) {
Promise *w = waiting;
waiting = NULL;
w->Reply(reply.status());
}
Debug("[shard %i] Received ABORT callback [%d]", shard, reply.status());
}
} // namespace spanstore