220 lines
7.8 KiB
C++
220 lines
7.8 KiB
C++
// Licensed to the Apache Software Foundation (ASF) under one
|
|
// or more contributor license agreements. See the NOTICE file
|
|
// distributed with this work for additional information
|
|
// regarding copyright ownership. The ASF licenses this file
|
|
// to you under the Apache License, Version 2.0 (the
|
|
// "License"); you may not use this file except in compliance
|
|
// with the License. You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing,
|
|
// software distributed under the License is distributed on an
|
|
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
// KIND, either express or implied. See the License for the
|
|
// specific language governing permissions and limitations
|
|
// under the License.
|
|
//
|
|
// A brpc based redis-server. Currently just implement set and
|
|
// get, but it's sufficient that you can get the idea how to
|
|
// implement brpc::RedisCommandHandler.
|
|
|
|
#include <brpc/server.h>
|
|
#include <brpc/redis.h>
|
|
#include <butil/crc32c.h>
|
|
#include <butil/strings/string_split.h>
|
|
#include <gflags/gflags.h>
|
|
#include <memory>
|
|
#include <unordered_map>
|
|
|
|
#include <butil/time.h>
|
|
|
|
DEFINE_int32(port, 6379, "TCP Port of this server");
|
|
|
|
class AuthSession : public brpc::Destroyable {
|
|
public:
|
|
explicit AuthSession(const std::string& user_name, const std::string& password)
|
|
: _user_name(user_name), _password(password) {}
|
|
|
|
void Destroy() override {
|
|
delete this;
|
|
}
|
|
|
|
const std::string _user_name;
|
|
const std::string _password;
|
|
};
|
|
|
|
class RedisServiceImpl : public brpc::RedisService {
|
|
public:
|
|
RedisServiceImpl() {
|
|
_user_password["db1"] = "123456";
|
|
_user_password["db2"] = "123456";
|
|
_db_map["db1"].resize(kHashSlotNum);
|
|
_db_map["db2"].resize(kHashSlotNum);
|
|
}
|
|
|
|
bool Set(const std::string& db_name, const std::string& key, const std::string& value) {
|
|
int slot = butil::crc32c::Value(key.c_str(), key.size()) % kHashSlotNum;
|
|
_mutex[slot].lock();
|
|
auto& kv = _db_map[db_name];
|
|
kv[slot][key] = value;
|
|
_mutex[slot].unlock();
|
|
return true;
|
|
}
|
|
|
|
bool Auth(const std::string& db_name, const std::string& password) {
|
|
if (_user_password.find(db_name) == _user_password.end()) {
|
|
return false;
|
|
} else {
|
|
if (_user_password[db_name] != password) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool Get(const std::string& db_name, const std::string& key, std::string* value) {
|
|
int slot = butil::crc32c::Value(key.c_str(), key.size()) % kHashSlotNum;
|
|
_mutex[slot].lock();
|
|
auto& kv = _db_map[db_name];
|
|
auto it = kv[slot].find(key);
|
|
if (it == kv[slot].end()) {
|
|
_mutex[slot].unlock();
|
|
return false;
|
|
}
|
|
*value = it->second;
|
|
_mutex[slot].unlock();
|
|
return true;
|
|
}
|
|
|
|
private:
|
|
const static int kHashSlotNum = 32;
|
|
typedef std::unordered_map<std::string, std::string> KVStore;
|
|
std::unordered_map<std::string, std::vector<KVStore>> _db_map;
|
|
std::unordered_map<std::string, std::string> _user_password;
|
|
butil::Mutex _mutex[kHashSlotNum];
|
|
};
|
|
|
|
class GetCommandHandler : public brpc::RedisCommandHandler {
|
|
public:
|
|
explicit GetCommandHandler(RedisServiceImpl* rsimpl)
|
|
: _rsimpl(rsimpl) {}
|
|
|
|
brpc::RedisCommandHandlerResult Run(brpc::RedisConnContext* ctx,
|
|
const std::vector<butil::StringPiece>& args,
|
|
brpc::RedisReply* output,
|
|
bool /*flush_batched*/) override {
|
|
|
|
AuthSession* session = static_cast<AuthSession*>(ctx->get_session());
|
|
if (session == nullptr) {
|
|
output->FormatError("No auth session");
|
|
return brpc::REDIS_CMD_HANDLED;
|
|
}
|
|
if (session->_user_name.empty()) {
|
|
output->FormatError("No user name");
|
|
return brpc::REDIS_CMD_HANDLED;
|
|
}
|
|
if (args.size() != 2ul) {
|
|
output->FormatError("Expect 1 arg for 'get', actually %lu", args.size()-1);
|
|
return brpc::REDIS_CMD_HANDLED;
|
|
}
|
|
const std::string key(args[1].data(), args[1].size());
|
|
std::string value;
|
|
if (_rsimpl->Get(session->_user_name, key, &value)) {
|
|
output->SetString(value);
|
|
} else {
|
|
output->SetNullString();
|
|
}
|
|
return brpc::REDIS_CMD_HANDLED;
|
|
}
|
|
|
|
private:
|
|
RedisServiceImpl* _rsimpl;
|
|
};
|
|
|
|
class SetCommandHandler : public brpc::RedisCommandHandler {
|
|
public:
|
|
explicit SetCommandHandler(RedisServiceImpl* rsimpl)
|
|
: _rsimpl(rsimpl) {}
|
|
|
|
brpc::RedisCommandHandlerResult Run(brpc::RedisConnContext* ctx,
|
|
const std::vector<butil::StringPiece>& args,
|
|
brpc::RedisReply* output,
|
|
bool /*flush_batched*/) override {
|
|
AuthSession* session = static_cast<AuthSession*>(ctx->get_session());
|
|
if (session == nullptr) {
|
|
output->FormatError("No auth session");
|
|
return brpc::REDIS_CMD_HANDLED;
|
|
}
|
|
if (session->_user_name.empty()) {
|
|
output->FormatError("No user name");
|
|
return brpc::REDIS_CMD_HANDLED;
|
|
}
|
|
if (args.size() != 3ul) {
|
|
output->FormatError("Expect 2 args for 'set', actually %lu", args.size()-1);
|
|
return brpc::REDIS_CMD_HANDLED;
|
|
}
|
|
const std::string key(args[1].data(), args[1].size());
|
|
const std::string value(args[2].data(), args[2].size());
|
|
_rsimpl->Set(session->_user_name, key, value);
|
|
output->SetStatus("OK");
|
|
return brpc::REDIS_CMD_HANDLED;
|
|
}
|
|
|
|
private:
|
|
RedisServiceImpl* _rsimpl;
|
|
};
|
|
|
|
|
|
|
|
class AuthCommandHandler : public brpc::RedisCommandHandler {
|
|
public:
|
|
explicit AuthCommandHandler(RedisServiceImpl* rsimpl)
|
|
: _rsimpl(rsimpl) {}
|
|
brpc::RedisCommandHandlerResult Run(brpc::RedisConnContext* ctx,
|
|
const std::vector<butil::StringPiece>& args,
|
|
brpc::RedisReply* output,
|
|
bool /*flush_batched*/) override {
|
|
if (args.size() != 3ul) {
|
|
output->FormatError("Expect 2 args for 'auth', actually %lu", args.size()-1);
|
|
return brpc::REDIS_CMD_HANDLED;
|
|
}
|
|
|
|
const std::string db_name(args[1].data(), args[1].size());
|
|
const std::string password(args[2].data(), args[2].size());
|
|
|
|
if (_rsimpl->Auth(db_name, password)) {
|
|
output->SetStatus("OK");
|
|
auto auth_session = new AuthSession(db_name, password);
|
|
ctx->reset_session(auth_session);
|
|
} else {
|
|
output->FormatError("Invalid password for database '%s'", db_name.c_str());
|
|
}
|
|
return brpc::REDIS_CMD_HANDLED;
|
|
}
|
|
|
|
private:
|
|
RedisServiceImpl* _rsimpl;
|
|
};
|
|
|
|
int main(int argc, char* argv[]) {
|
|
google::ParseCommandLineFlags(&argc, &argv, true);
|
|
RedisServiceImpl *rsimpl = new RedisServiceImpl;
|
|
auto get_handler =std::unique_ptr<GetCommandHandler>(new GetCommandHandler(rsimpl));
|
|
auto set_handler =std::unique_ptr<SetCommandHandler>( new SetCommandHandler(rsimpl));
|
|
auto auth_handler = std::unique_ptr<AuthCommandHandler>(new AuthCommandHandler(rsimpl));
|
|
rsimpl->AddCommandHandler("get", get_handler.get());
|
|
rsimpl->AddCommandHandler("set", set_handler.get());
|
|
rsimpl->AddCommandHandler("auth", auth_handler.get());
|
|
|
|
brpc::Server server;
|
|
brpc::ServerOptions server_options;
|
|
server_options.redis_service = rsimpl;
|
|
if (server.Start(FLAGS_port, &server_options) != 0) {
|
|
LOG(ERROR) << "Fail to start server";
|
|
return -1;
|
|
}
|
|
server.RunUntilAskedToQuit();
|
|
return 0;
|
|
}
|