Class FastAggregation32
java.lang.Object
com.googlecode.javaewah32.FastAggregation32
Fast algorithms to aggregate many bitmaps. These algorithms are just given as
reference. They may not be faster than the corresponding methods in the
EWAHCompressedBitmap class.
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprivatePrivate constructor to prevent instantiation -
Method Summary
Modifier and TypeMethodDescriptionstatic EWAHCompressedBitmap32bufferedand(int bufSize, EWAHCompressedBitmap32... bitmaps) Compute the and aggregate using a temporary uncompressed bitmap.static voidbufferedandWithContainer(BitmapStorage32 container, int bufSize, EWAHCompressedBitmap32... bitmaps) Compute the and aggregate using a temporary uncompressed bitmap.static EWAHCompressedBitmap32bufferedor(int bufSize, EWAHCompressedBitmap32... bitmaps) Compute the or aggregate using a temporary uncompressed bitmap.static voidbufferedorWithContainer(BitmapStorage32 container, int bufSize, EWAHCompressedBitmap32... bitmaps) Compute the or aggregate using a temporary uncompressed bitmap.static EWAHCompressedBitmap32bufferedxor(int bufSize, EWAHCompressedBitmap32... bitmaps) Compute the xor aggregate using a temporary uncompressed bitmap.static voidbufferedxorWithContainer(BitmapStorage32 container, int bufSize, EWAHCompressedBitmap32... bitmaps) Compute the xor aggregate using a temporary uncompressed bitmap.static EWAHCompressedBitmap32or(EWAHCompressedBitmap32... bitmaps) Simple algorithm that computes the OR aggregate.static EWAHCompressedBitmap32or(Iterator<EWAHCompressedBitmap32> bitmaps) Simple algorithm that computes the OR aggregate.static voidorToContainer(BitmapStorage32 container, EWAHCompressedBitmap32... bitmaps) Uses a priority queue to compute the or aggregate.static EWAHCompressedBitmap32xor(EWAHCompressedBitmap32... bitmaps) Simple algorithm that computes the XOR aggregate.static EWAHCompressedBitmap32xor(Iterator<EWAHCompressedBitmap32> bitmaps) Simple algorithm that computes the XOR aggregate.static voidxorToContainer(BitmapStorage32 container, EWAHCompressedBitmap32... bitmaps) Uses a priority queue to compute the xor aggregate.
-
Constructor Details
-
FastAggregation32
private FastAggregation32()Private constructor to prevent instantiation
-
-
Method Details
-
bufferedand
Compute the and aggregate using a temporary uncompressed bitmap. This function does not seek to match the "sizeinbits" attributes of the input bitmaps.- Parameters:
bufSize- buffer size used during the computation in 64-bit words (per input bitmap)bitmaps- the source bitmaps- Returns:
- the or aggregate.
-
bufferedandWithContainer
public static void bufferedandWithContainer(BitmapStorage32 container, int bufSize, EWAHCompressedBitmap32... bitmaps) Compute the and aggregate using a temporary uncompressed bitmap. This function does not seek to match the "sizeinbits" attributes of the input bitmaps.- Parameters:
container- where the aggregate is writtenbufSize- buffer size used during the computation in 64-bit words (per input bitmap)bitmaps- the source bitmaps
-
bufferedor
Compute the or aggregate using a temporary uncompressed bitmap.- Parameters:
bufSize- buffer size used during the computation in 64-bit wordsbitmaps- the source bitmaps- Returns:
- the or aggregate.
-
bufferedorWithContainer
public static void bufferedorWithContainer(BitmapStorage32 container, int bufSize, EWAHCompressedBitmap32... bitmaps) Compute the or aggregate using a temporary uncompressed bitmap.- Parameters:
container- where the aggregate is writtenbufSize- buffer size used during the computation in 64-bit wordsbitmaps- the source bitmaps
-
bufferedxor
Compute the xor aggregate using a temporary uncompressed bitmap.- Parameters:
bufSize- buffer size used during the computation in 64-bit wordsbitmaps- the source bitmaps- Returns:
- the xor aggregate.
-
bufferedxorWithContainer
public static void bufferedxorWithContainer(BitmapStorage32 container, int bufSize, EWAHCompressedBitmap32... bitmaps) Compute the xor aggregate using a temporary uncompressed bitmap.- Parameters:
container- where the aggregate is writtenbufSize- buffer size used during the computation in 64-bit wordsbitmaps- the source bitmaps
-
orToContainer
Uses a priority queue to compute the or aggregate. The content of the container is overwritten. This algorithm runs in linearithmic time (O(n log n)) with respect to the number of bitmaps.- Parameters:
container- where we write the resultbitmaps- to be aggregated
-
or
Simple algorithm that computes the OR aggregate.- Parameters:
bitmaps- input bitmaps- Returns:
- new bitmap containing the aggregate
-
xor
Simple algorithm that computes the XOR aggregate.- Parameters:
bitmaps- input bitmaps- Returns:
- new bitmap containing the aggregate
-
or
Simple algorithm that computes the OR aggregate.- Parameters:
bitmaps- input bitmaps- Returns:
- new bitmap containing the aggregate
-
xor
Simple algorithm that computes the XOR aggregate.- Parameters:
bitmaps- input bitmaps- Returns:
- new bitmap containing the aggregate
-
xorToContainer
Uses a priority queue to compute the xor aggregate. The content of the container is overwritten. This algorithm runs in linearithmic time (O(n log n)) with respect to the number of bitmaps.- Parameters:
container- where we write the resultbitmaps- to be aggregated
-