forked from krareT/pika
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpika_hyperloglog.cc
82 lines (74 loc) · 2.03 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
// 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 <vector>
#include "slash_string.h"
#include "nemo.h"
#include "pika_server.h"
#include "pika_hyperloglog.h"
extern PikaServer *g_pika_server;
void PfAddCmd::DoInitial(PikaCmdArgsType &argv, const CmdInfo* const ptr_info) {
if (!ptr_info->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() {
nemo::Status s;
bool update = false;
s = g_pika_server->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(PikaCmdArgsType &argv, const CmdInfo* const ptr_info) {
if (!ptr_info->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() {
nemo::Status s;
int value_;
s = g_pika_server->db()->PfCount(keys_, value_);
if (s.ok()) {
res_.AppendInteger(value_);
} else {
res_.SetRes(CmdRes::kErrOther, s.ToString());
}
}
void PfMergeCmd::DoInitial(PikaCmdArgsType &argv, const CmdInfo* const ptr_info) {
if (!ptr_info->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() {
nemo::Status s;
s = g_pika_server->db()->PfMerge(keys_);
if (s.ok()) {
res_.SetRes(CmdRes::kOk);
} else {
res_.SetRes(CmdRes::kErrOther, s.ToString());
}
}