forked from OpenAtomFoundation/pika
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pika_hyperloglog.cc
85 lines (78 loc) · 2.29 KB
/
pika_hyperloglog.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// Copyright (c) 2015-present, Qihoo, Inc. All rights reserved.
// This source code is licensed under the BSD-style license found in the
// LICENSE file in the root directory of this source tree. An additional grant
// of patent rights can be found in the PATENTS file in the same directory.
#include "include/pika_hyperloglog.h"
void PfAddCmd::DoInitial() {
if (!CheckArg(argv_.size())) {
res_.SetRes(CmdRes::kWrongNum, kCmdNamePfAdd);
return;
}
if (argv_.size() > 1) {
key_ = argv_[1];
size_t pos = 2;
while (pos < argv_.size()) {
values_.push_back(argv_[pos++]);
}
}
}
void PfAddCmd::Do(std::shared_ptr<Slot> slot) {
bool update = false;
rocksdb::Status s = slot->db()->PfAdd(key_, values_, &update);
if (s.ok() && update) {
res_.AppendInteger(1);
} else if (s.ok() && !update) {
res_.AppendInteger(0);
} else {
res_.SetRes(CmdRes::kErrOther, s.ToString());
}
}
void PfCountCmd::DoInitial() {
if (!CheckArg(argv_.size())) {
res_.SetRes(CmdRes::kWrongNum, kCmdNamePfCount);
return;
}
size_t pos = 1;
while (pos < argv_.size()) {
keys_.push_back(argv_[pos++]);
}
}
void PfCountCmd::Do(std::shared_ptr<Slot> slot) {
int64_t value_ = 0;
rocksdb::Status s = slot->db()->PfCount(keys_, &value_);
if (s.ok()) {
res_.AppendInteger(value_);
} else {
res_.SetRes(CmdRes::kErrOther, s.ToString());
}
}
void PfMergeCmd::DoInitial() {
if (!CheckArg(argv_.size())) {
res_.SetRes(CmdRes::kWrongNum, kCmdNamePfMerge);
return;
}
size_t pos = 1;
while (pos < argv_.size()) {
keys_.push_back(argv_[pos++]);
}
}
void PfMergeCmd::Do(std::shared_ptr<Slot> slot) {
rocksdb::Status s = slot->db()->PfMerge(keys_, value_to_dest_);
if (s.ok()) {
res_.SetRes(CmdRes::kOk);
} else {
res_.SetRes(CmdRes::kErrOther, s.ToString());
}
}
void PfMergeCmd::DoBinlog(const std::shared_ptr<SyncMasterSlot>& slot) {
PikaCmdArgsType set_args;
//used "set" instead of "SET" to distinguish the binlog of SetCmd
set_args.emplace_back("set");
set_args.emplace_back(keys_[0]);
set_args.emplace_back(value_to_dest_);
set_cmd_->Initial(set_args, db_name_);
set_cmd_->SetConn(GetConn());
set_cmd_->SetResp(resp_.lock());
//value of this binlog might be strange, it's an string with size of 128KB
set_cmd_->DoBinlog(slot);
}