Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(450)

Side by Side Diff: components/rappor/bloom_filter.cc

Issue 49753002: RAPPOR implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: BrowserProcess member Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include <string>
6
7 #include "base/logging.h"
8 #include "components/rappor/bloom_filter.h"
9 #include "third_party/smhasher/src/MurmurHash3.h"
10
11 namespace {
12
13 // NOTE: These were just generated from /dev/urandom. May be unecessary
14 // for murmur hash, or may be better to select carefully to help the
15 // hash function distribute its inputs.
16 const uint32_t hashSeedCount = 20;
jwd 2013/12/16 17:04:03 Use constant naming style kConstantName.
Steven Holte 2013/12/16 23:02:16 Done.
17 const uint32_t mockHashSeeds[hashSeedCount] = {
jwd 2013/12/16 17:04:03 Dito.
jwd 2013/12/16 17:04:03 This could use a better name I think. The current
Steven Holte 2013/12/16 23:02:16 Done.
18 0xd123957d, 0x6752fc9b, 0xcb6a0102, 0x1a82ea95, 0x55cb27bd,
19 0x0d23a17e, 0xbfb2beac, 0xbabca478, 0x6d0b103c, 0x5e98bc37,
20 0xe73ccb9d, 0xe60c1150, 0xa5f070a8, 0x91cc68c2, 0x12c919ff,
21 0xfec1d371, 0x01b6bf4c, 0xbbe5cf2b, 0x6bd30801, 0x292956d3};
22
23 inline uint32_t MurmurHash3String(const std::string& str, uint32_t seed) {
jwd 2013/12/16 17:04:03 Usually, only simple accessors are asked to be inl
Steven Holte 2013/12/16 23:02:16 Done.
24 uint32_t output = 0;
25 MurmurHash3_x86_32(str.data(), str.size(), seed, &output);
26 return output;
27 }
28
29 } // namespace
30
31 namespace rappor {
32
33 BloomFilter::BloomFilter(uint32_t bytes_size, uint32_t hash_count)
34 : bytes_(bytes_size), hash_count_(hash_count) {
35 DCHECK(hash_count < hashSeedCount);
36 }
37
38 void BloomFilter::Add(const std::string& str) {
39 for (size_t j = 0; j < hash_count_; ++j) {
40 uint32_t index = MurmurHash3String(str, mockHashSeeds[j]);
41 uint32_t byte_index = (index / 8) % bytes_.size();
42 uint32_t bit_index = index % 8;
43 bytes_[byte_index] |= 1 << bit_index;
44 }
45 }
46
47 void BloomFilter::Add(const std::vector<std::string>& strings) {
48 for (size_t i = 0, len = strings.size(); i < len; ++i)
49 Add(strings[i]);
50 }
51
52 const ByteVector& BloomFilter::bytes() const { return bytes_; }
53
54 uint32_t BloomFilter::hash_count() const { return hash_count_; }
55
56 } // namespace rappor
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698