Dash Core  0.12.2.1
P2P Digital Currency
bloom.h
Go to the documentation of this file.
1 // Copyright (c) 2012-2015 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
5 #ifndef BITCOIN_BLOOM_H
6 #define BITCOIN_BLOOM_H
7 
8 #include "serialize.h"
9 
10 #include <vector>
11 
12 class COutPoint;
13 class CTransaction;
14 class uint256;
15 
17 static const unsigned int MAX_BLOOM_FILTER_SIZE = 36000; // bytes
18 static const unsigned int MAX_HASH_FUNCS = 50;
19 
25 {
28  // Only adds outpoints to the filter if the output is a pay-to-pubkey/pay-to-multisig script
31 };
32 
45 {
46 private:
47  std::vector<unsigned char> vData;
48  bool isFull;
49  bool isEmpty;
50  unsigned int nHashFuncs;
51  unsigned int nTweak;
52  unsigned char nFlags;
53 
54  unsigned int Hash(unsigned int nHashNum, const std::vector<unsigned char>& vDataToHash) const;
55 
56  // Private constructor for CRollingBloomFilter, no restrictions on size
57  CBloomFilter(unsigned int nElements, double nFPRate, unsigned int nTweak);
58  friend class CRollingBloomFilter;
59 
60 public:
70  CBloomFilter(unsigned int nElements, double nFPRate, unsigned int nTweak, unsigned char nFlagsIn);
71  CBloomFilter() : isFull(true), isEmpty(false), nHashFuncs(0), nTweak(0), nFlags(0) {}
72 
74 
75  template <typename Stream, typename Operation>
76  inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) {
81  }
82 
83  void insert(const std::vector<unsigned char>& vKey);
84  void insert(const COutPoint& outpoint);
85  void insert(const uint256& hash);
86 
87  bool contains(const std::vector<unsigned char>& vKey) const;
88  bool contains(const COutPoint& outpoint) const;
89  bool contains(const uint256& hash) const;
90 
91  void clear();
92  void reset(unsigned int nNewTweak);
93 
96  bool IsWithinSizeConstraints() const;
97 
99  bool IsRelevantAndUpdate(const CTransaction& tx);
100 
102  void UpdateEmptyFull();
103 };
104 
117 {
118 public:
119  // A random bloom filter calls GetRand() at creation time.
120  // Don't create global CRollingBloomFilter objects, as they may be
121  // constructed before the randomizer is properly initialized.
122  CRollingBloomFilter(unsigned int nElements, double nFPRate);
123 
124  void insert(const std::vector<unsigned char>& vKey);
125  void insert(const uint256& hash);
126  bool contains(const std::vector<unsigned char>& vKey) const;
127  bool contains(const uint256& hash) const;
128 
129  void reset();
130 
131 private:
132  unsigned int nBloomSize;
133  unsigned int nInsertions;
135 };
136 
137 
138 #endif // BITCOIN_BLOOM_H
unsigned int nHashFuncs
Definition: bloom.h:50
void insert(const std::vector< unsigned char > &vKey)
Definition: bloom.cpp:232
bloomflags
Definition: bloom.h:24
#define READWRITE(obj)
Definition: serialize.h:175
bool contains(const std::vector< unsigned char > &vKey) const
Definition: bloom.cpp:252
bool IsWithinSizeConstraints() const
Definition: bloom.cpp:131
ADD_SERIALIZE_METHODS
Definition: bloom.h:73
static const unsigned int MAX_BLOOM_FILTER_SIZE
20,000 items with fp rate < 0.1% or 10,000 items and <0.0001%
Definition: bloom.h:17
void SerializationOp(Stream &s, Operation ser_action, int nType, int nVersion)
Definition: bloom.h:76
bool contains(const std::vector< unsigned char > &vKey) const
void insert(const std::vector< unsigned char > &vKey)
bool isFull
Definition: bloom.h:48
void UpdateEmptyFull()
Checks for empty and full filters to avoid wasting cpu.
Definition: bloom.cpp:206
unsigned int nTweak
Definition: bloom.h:51
CBloomFilter()
Definition: bloom.h:71
unsigned int Hash(unsigned int nHashNum, const std::vector< unsigned char > &vDataToHash) const
Definition: bloom.cpp:55
static const unsigned int MAX_HASH_FUNCS
Definition: bloom.h:18
CRollingBloomFilter(unsigned int nElements, double nFPRate)
Definition: bloom.cpp:219
bool IsRelevantAndUpdate(const CTransaction &tx)
Also adds any outputs which match the filter to the filter (to match their spending txes) ...
Definition: bloom.cpp:136
void reset(unsigned int nNewTweak)
Definition: bloom.cpp:125
bool isEmpty
Definition: bloom.h:49
unsigned int nBloomSize
Definition: bloom.h:132
unsigned char nFlags
Definition: bloom.h:52
void clear()
Definition: bloom.cpp:118
CBloomFilter b2
Definition: bloom.h:134
std::vector< unsigned char > vData
Definition: bloom.h:47
CBloomFilter b1
Definition: bloom.h:134
unsigned int nInsertions
Definition: bloom.h:133