forked from OpenAtomFoundation/pika
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpika_hyperloglog.cc
73 lines (66 loc) · 1.84 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
// 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<Partition> partition) {
bool update = false;
rocksdb::Status s = partition->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<Partition> partition) {
int64_t value_ = 0;
rocksdb::Status s = partition->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<Partition> partition) {
rocksdb::Status s = partition->db()->PfMerge(keys_);
if (s.ok()) {
res_.SetRes(CmdRes::kOk);
} else {
res_.SetRes(CmdRes::kErrOther, s.ToString());
}
}