Class LayeredBloomFilter
- All Implemented Interfaces:
BitMapProducer,BloomFilter,BloomFilterProducer,IndexProducer
In short, Layered Bloom filter contains several bloom filters arranged in layers.
- When membership in the filter is checked each layer in turn is checked
and if a match is found
trueis returned. - When merging each bloom filter is merged into the newest filter in the list of layers.
- When questions of cardinality are asked the cardinality of the union of the enclosed Bloom filters is used.
The net result is that the layered Bloom filter can be populated with more items than the Shape would indicate and yet still return a false positive rate in line with the Shape and not the over population.
This implementation uses a LayerManager to handle the manipulation of the layers.
- Level 0 is the oldest layer and the highest level is the newest.
- There is always at least one enclosed filter.
- The newest filter is the
targetinto which merges are performed. - Whenever the target is retrieved, or a
mergeoperation is performed the code checks if any older layers should be removed, and if so removes them. It also checks it a new layer should be added, and if so adds it and sets thetargetbefore the operation.
- Since:
- 4.5
-
Field Summary
Fields inherited from interface org.apache.commons.collections4.bloomfilter.BloomFilter
SPARSE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintGets the cardinality (number of enabled bits) of this Bloom filter.intReturns the characteristics of the filter.final voidclear()Resets the filter to its initial, unpopulated state.booleancontains(BitMapProducer bitMapProducer) Returnstrueif this filter contains the bits specified in the bit maps produced by the bitMapProducer.booleancontains(BloomFilter other) Returnstrueif this any layer contained by this filter contains the specified filter.booleancontains(BloomFilterProducer producer) Returnstrueif each filter within theproducerexits within this filter.booleanReturnstrueif this filter contains the bits specified in the hasher.booleancontains(IndexProducer indexProducer) Returnstrueif this filter contains the indices specified IndexProducer.copy()Creates a new instance of the BloomFilter with the same properties as the current one.intEstimates the number of items in the Bloom filter.intestimateUnion(BloomFilter other) Estimates the number of items in the union of this Bloom filter with the other bloom filter.int[]find(BitMapProducer bitMapProducer) Finds the layers in which the BitMapProducer is found.int[]find(BloomFilter bf) Finds the layers in which the Bloom filter is found.int[]Finds the layers in which the Hasher is found.int[]find(IndexProducer indexProducer) Finds the layers in which the IndexProducer is found.static LayeredBloomFilterCreates a fixed size layered bloom filter that adds new filters to the list, but never merges them.flatten()Create a standard (non-layered) Bloom filter by merging all of the layers.booleanforEachBitMap(LongPredicate predicate) Each bit map is passed to the predicate in order.final booleanforEachBloomFilter(Predicate<BloomFilter> bloomFilterPredicate) Processes the Bloom filters in depth order with the most recent filters first.booleanforEachIndex(IntPredicate predicate) Each index is passed to the predicate.get(int depth) Gets the Bloom filter at the specified depthfinal intgetDepth()Gets the depth of the deepest layer.final ShapegetShape()Gets the shape that was used when the filter was built.booleanisEmpty()Determines if all the bits are off.booleanmerge(BitMapProducer bitMapProducer) Merges the specified hasher into this Bloom filter.booleanmerge(BloomFilter bf) Merges the specified Bloom filter into this Bloom filter.booleanmerge(IndexProducer indexProducer) Merges the specified IndexProducer into this Bloom filter.voidnext()Forces and advance to the next layer.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.commons.collections4.bloomfilter.BitMapProducer
asBitMapArray, forEachBitMapPairMethods inherited from interface org.apache.commons.collections4.bloomfilter.BloomFilter
estimateIntersection, isFull, merge, uniqueIndicesMethods inherited from interface org.apache.commons.collections4.bloomfilter.BloomFilterProducer
asBloomFilterArray, forEachBloomFilterPairMethods inherited from interface org.apache.commons.collections4.bloomfilter.IndexProducer
asIndexArray
-
Constructor Details
-
LayeredBloomFilter
Constructor.- Parameters:
shape- the Shape of the enclosed Bloom filterslayerManager- the LayerManager to manage the layers.
-
-
Method Details
-
fixed
Creates a fixed size layered bloom filter that adds new filters to the list, but never merges them. List will never exceed maxDepth. As additional filters are added earlier filters are removed.- Parameters:
shape- The shape for the enclosed Bloom filters.maxDepth- The maximum depth of layers.- Returns:
- An empty layered Bloom filter of the specified shape and depth.
-
cardinality
Description copied from interface:BloomFilterGets the cardinality (number of enabled bits) of this Bloom filter.This is also known as the Hamming value or Hamming number.
- Specified by:
cardinalityin interfaceBloomFilter- Returns:
- the cardinality of this filter
-
characteristics
Description copied from interface:BloomFilterReturns the characteristics of the filter.Characteristics are defined as bits within the characteristics integer.
- Specified by:
characteristicsin interfaceBloomFilter- Returns:
- the characteristics for this bloom filter.
-
clear
Description copied from interface:BloomFilterResets the filter to its initial, unpopulated state.- Specified by:
clearin interfaceBloomFilter
-
contains
Description copied from interface:BloomFilterReturnstrueif this filter contains the bits specified in the bit maps produced by the bitMapProducer.- Specified by:
containsin interfaceBloomFilter- Parameters:
bitMapProducer- theBitMapProducerto provide the bit maps.- Returns:
trueif this filter is enabled for all bits specified by the bit maps
-
contains
Returnstrueif this any layer contained by this filter contains the specified filter.If the
otheris a BloomFilterProducer each filter within theotheris checked to see if it exits within this filter.- Specified by:
containsin interfaceBloomFilter- Parameters:
other- the other Bloom filter- Returns:
trueif this filter contains the other filter.
-
contains
Returnstrueif each filter within theproducerexits within this filter.- Parameters:
producer- the BloomFilterProducer that provides the filters to check for.- Returns:
trueif this filter contains all of the filters contained in theproducer.
-
contains
Description copied from interface:BloomFilterReturnstrueif this filter contains the bits specified in the hasher.Specifically this returns
trueif this filter is enabled for all bit indexes identified by thehasher. Using the bit map representations this is effectively(this AND hasher) == hasher.- Specified by:
containsin interfaceBloomFilter- Parameters:
hasher- the hasher to provide the indexes- Returns:
- true if this filter is enabled for all bits specified by the hasher
-
contains
Description copied from interface:BloomFilterReturnstrueif this filter contains the indices specified IndexProducer.Specifically this returns
trueif this filter is enabled for all bit indexes identified by theIndexProducer.- Specified by:
containsin interfaceBloomFilter- Parameters:
indexProducer- the IndexProducer to provide the indexes- Returns:
trueif this filter is enabled for all bits specified by the IndexProducer
-
copy
Description copied from interface:BloomFilterCreates a new instance of the BloomFilter with the same properties as the current one.- Specified by:
copyin interfaceBloomFilter- Returns:
- a copy of this BloomFilter
-
estimateN
Description copied from interface:BloomFilterEstimates the number of items in the Bloom filter.By default this is the rounding of the
Shape.estimateN(cardinality)calculation for the shape and cardinality of this filter.This produces an estimate roughly equivalent to the number of Hashers that have been merged into the filter by rounding the value from the calculation described in the
Shapeclass Javadoc.Note:
- if cardinality == numberOfBits, then result is Integer.MAX_VALUE.
- if cardinality > numberOfBits, then an IllegalArgumentException is thrown.
- Specified by:
estimateNin interfaceBloomFilter- Returns:
- an estimate of the number of items in the bloom filter. Will return Integer.MAX_VALUE if the estimate is larger than Integer.MAX_VALUE.
- See Also:
-
estimateUnion
Description copied from interface:BloomFilterEstimates the number of items in the union of this Bloom filter with the other bloom filter.This produces an estimate roughly equivalent to the number of unique Hashers that have been merged into either of the filters by rounding the value from the calculation described in the
Shapeclass Javadoc.estimateUnionshould only be called with Bloom filters of the same Shape. If called on Bloom filters of differing shape this method is not symmetric. Ifotherhas more bits anIllegalArgumentExceptionmay be thrown.- Specified by:
estimateUnionin interfaceBloomFilter- Parameters:
other- The other Bloom filter- Returns:
- an estimate of the number of items in the union. Will return Integer.MAX_VALUE if the estimate is larger than Integer.MAX_VALUE.
- See Also:
-
find
Finds the layers in which the BitMapProducer is found.- Parameters:
bitMapProducer- the BitMapProducer to search for.- Returns:
- an array of layer indices in which the Bloom filter is found.
-
find
Finds the layers in which the Bloom filter is found.- Parameters:
bf- the Bloom filter to search for.- Returns:
- an array of layer indices in which the Bloom filter is found.
-
find
Finds the layers in which the Hasher is found.- Parameters:
hasher- the Hasher to search for.- Returns:
- an array of layer indices in which the Bloom filter is found.
-
find
Finds the layers in which the IndexProducer is found.- Parameters:
indexProducer- the Index producer to search for.- Returns:
- an array of layer indices in which the Bloom filter is found.
-
flatten
Create a standard (non-layered) Bloom filter by merging all of the layers. If the filter is empty this method will return an empty Bloom filter.- Specified by:
flattenin interfaceBloomFilterProducer- Returns:
- the merged bloom filter.
-
forEachBitMap
Description copied from interface:BitMapProducerEach bit map is passed to the predicate in order. The predicate is applied to each bit map value, if the predicate returnsfalsethe execution is stopped,falseis returned, and no further bit maps are processed.If the producer is empty this method will return true.
Any exceptions thrown by the action are relayed to the caller.
- Specified by:
forEachBitMapin interfaceBitMapProducer- Parameters:
predicate- the function to execute- Returns:
trueif all bit maps returnedtrue,falseotherwise.
-
forEachBloomFilter
Processes the Bloom filters in depth order with the most recent filters first. Each filter is passed to the predicate in turn. The function exits on the firstfalsereturned by the predicate.- Specified by:
forEachBloomFilterin interfaceBloomFilterProducer- Parameters:
bloomFilterPredicate- the predicate to execute.- Returns:
trueif all filters passed the predicate,falseotherwise.
-
forEachIndex
Description copied from interface:IndexProducerEach index is passed to the predicate. The predicate is applied to each index value, if the predicate returnsfalsethe execution is stopped,falseis returned, and no further indices are processed.Any exceptions thrown by the action are relayed to the caller.
Indices ordering and uniqueness is not guaranteed.
- Specified by:
forEachIndexin interfaceIndexProducer- Parameters:
predicate- the action to be performed for each non-zero bit index.- Returns:
trueif all indexes return true from consumer,falseotherwise.
-
get
Gets the Bloom filter at the specified depth- Parameters:
depth- the depth of the filter to return.- Returns:
- the Bloom filter at the specified depth.
- Throws:
NoSuchElementException- if depth is not in the range [0,getDepth())
-
getDepth
Gets the depth of the deepest layer. The minimum value returned by this method is 1.- Returns:
- the depth of the deepest layer.
-
getShape
Description copied from interface:BloomFilterGets the shape that was used when the filter was built.- Specified by:
getShapein interfaceBloomFilter- Returns:
- The shape the filter was built with.
-
isEmpty
Description copied from interface:BloomFilterDetermines if all the bits are off. This is equivalent tocardinality() == 0.Note: This method is optimised for non-sparse filters. Implementers are encouraged to implement faster checks if possible.
- Specified by:
isEmptyin interfaceBloomFilter- Returns:
trueif no bits are enabled,falseotherwise.
-
merge
Description copied from interface:BloomFilterMerges the specified hasher into this Bloom filter. Specifically all bit indexes that are identified by theproducerwill be enabled in this filter.Note: This method should return
trueeven if no additional bit indexes were enabled. Afalseresult indicates that this filter may or may not contain all the indexes enabled in theproducer. This state may occur in complex Bloom filter implementations like counting Bloom filters.- Specified by:
mergein interfaceBloomFilter- Parameters:
bitMapProducer- The producer to merge.- Returns:
- true if the merge was successful
-
merge
Description copied from interface:BloomFilterMerges the specified Bloom filter into this Bloom filter.Specifically all bit indexes that are identified by the
otherwill be enabled in this filter.Note: This method should return
trueeven if no additional bit indexes were enabled. Afalseresult indicates that this filter may or may not contain theotherBloom filter. This state may occur in complex Bloom filter implementations like counting Bloom filters.- Specified by:
mergein interfaceBloomFilter- Parameters:
bf- The bloom filter to merge into this one.- Returns:
- true if the merge was successful
-
merge
Description copied from interface:BloomFilterMerges the specified IndexProducer into this Bloom filter. Specifically all bit indexes that are identified by theproducerwill be enabled in this filter.Note: This method should return
trueeven if no additional bit indexes were enabled. Afalseresult indicates that this filter may or may not contain all the indexes of theproducer. This state may occur in complex Bloom filter implementations like counting Bloom filters.- Specified by:
mergein interfaceBloomFilter- Parameters:
indexProducer- The IndexProducer to merge.- Returns:
- true if the merge was successful
-
next
Forces and advance to the next layer. Executes the same logic as when LayerManager.extendCheck returnstrue- See Also:
-