|
| 1 | +package org.apache.solr.search.facet; |
| 2 | + |
| 3 | +import org.apache.solr.common.util.SimpleOrderedMap; |
| 4 | +import org.roaringbitmap.RoaringBitmap; |
| 5 | + |
| 6 | +/** |
| 7 | + * Counts frequencies of ordinal values using Roaring Bitmaps. |
| 8 | + */ |
| 9 | +public class BitmapFrequencyCounter { |
| 10 | + private final RoaringBitmap[] bitmaps; |
| 11 | + private RoaringBitmap overflow; |
| 12 | + |
| 13 | + /** |
| 14 | + * Constructs a new frequency counter. The maximum countable frequency will be given by {@code (2^size)-1}. |
| 15 | + * |
| 16 | + * @param size The maximum size of the frequencies list |
| 17 | + */ |
| 18 | + public BitmapFrequencyCounter(int size) { |
| 19 | + this.bitmaps = new RoaringBitmap[size]; |
| 20 | + } |
| 21 | + |
| 22 | + /** |
| 23 | + * An array of bitmaps encoding frequencies of values: the frequency of a value x is given by the sum of {@code 2^i} |
| 24 | + * for all values of {@code i} where {@code bitmaps[i].contains(x)}. |
| 25 | + * |
| 26 | + * @return The encoded frequencies |
| 27 | + */ |
| 28 | + public RoaringBitmap[] getBitmaps() { |
| 29 | + return this.bitmaps; |
| 30 | + } |
| 31 | + |
| 32 | + /** |
| 33 | + * The overflow set of all values with {@code frequency >= 2^(bitmaps.length)}. |
| 34 | + * |
| 35 | + * @return The overflow set |
| 36 | + */ |
| 37 | + public RoaringBitmap getOverflow() { |
| 38 | + return this.overflow; |
| 39 | + } |
| 40 | + |
| 41 | + /** |
| 42 | + * Adds one occurrence of the given value to the counter. |
| 43 | + * |
| 44 | + * @param value The value to add |
| 45 | + */ |
| 46 | + public void add(int value) { |
| 47 | + // This is just binary addition x+1=y - we carry the value till we find an empty column |
| 48 | + for (int i = 0; i < bitmaps.length; i++) { |
| 49 | + RoaringBitmap bitmap = bitmaps[i]; |
| 50 | + if (bitmap == null) { |
| 51 | + bitmap = bitmaps[i] = new RoaringBitmap(); |
| 52 | + } |
| 53 | + |
| 54 | + if (!bitmap.contains(value)) { |
| 55 | + bitmap.add(value); |
| 56 | + return; |
| 57 | + } |
| 58 | + |
| 59 | + bitmap.remove(value); |
| 60 | + } |
| 61 | + |
| 62 | + // If we reach this point, the frequency of this value is >= 2^(bitmaps.length) |
| 63 | + |
| 64 | + if (overflow == null) { |
| 65 | + overflow = new RoaringBitmap(); |
| 66 | + } |
| 67 | + |
| 68 | + overflow.add(value); |
| 69 | + } |
| 70 | + |
| 71 | + /** |
| 72 | + * Serializes the counter. |
| 73 | + * |
| 74 | + * @return The serialized data |
| 75 | + */ |
| 76 | + public SimpleOrderedMap<Object> serialize() { |
| 77 | + SimpleOrderedMap<Object> serialized = new SimpleOrderedMap<>(); |
| 78 | + |
| 79 | + byte[][] serializedBitmaps = new byte[bitmaps.length][]; |
| 80 | + |
| 81 | + int i = 0; |
| 82 | + while (i < bitmaps.length) { |
| 83 | + RoaringBitmap bitmap = bitmaps[i]; |
| 84 | + if (bitmap == null) { |
| 85 | + break; |
| 86 | + } |
| 87 | + |
| 88 | + bitmap.runOptimize(); |
| 89 | + serializedBitmaps[i] = BitmapUtil.bitmapToBytes(bitmap); |
| 90 | + |
| 91 | + i++; |
| 92 | + } |
| 93 | + |
| 94 | + if (i > 0) { |
| 95 | + serialized.add("bitmaps", serializedBitmaps); |
| 96 | + } |
| 97 | + |
| 98 | + if (overflow != null) { |
| 99 | + overflow.runOptimize(); |
| 100 | + serialized.add("overflow", BitmapUtil.bitmapToBytes(overflow)); |
| 101 | + } |
| 102 | + |
| 103 | + return serialized; |
| 104 | + } |
| 105 | + |
| 106 | + /** |
| 107 | + * Populates the counter from the given serialized data. |
| 108 | + * |
| 109 | + * The counter must be fresh (with no values previously added), and have the same size as the counter from which the |
| 110 | + * serialized data was generated. |
| 111 | + * |
| 112 | + * @param serialized The serialized data |
| 113 | + */ |
| 114 | + public void deserialize(SimpleOrderedMap<Object> serialized) { |
| 115 | + byte[][] serializedBitmaps = (byte[][]) serialized.get("bitmaps"); |
| 116 | + if (serializedBitmaps != null) { |
| 117 | + for (int i = 0; i < bitmaps.length; i++) { |
| 118 | + bitmaps[i] = BitmapUtil.bytesToBitmap(serializedBitmaps[i]); |
| 119 | + } |
| 120 | + } |
| 121 | + |
| 122 | + byte[] overflow = (byte[]) serialized.get("overflow"); |
| 123 | + if (overflow != null) { |
| 124 | + this.overflow = BitmapUtil.bytesToBitmap(overflow); |
| 125 | + } else { |
| 126 | + this.overflow = null; |
| 127 | + } |
| 128 | + } |
| 129 | + |
| 130 | + /** |
| 131 | + * Merges this counter with another (in-place). |
| 132 | + * |
| 133 | + * The other counter must have the same size as this counter. After this operation, the returned counter will contain |
| 134 | + * the values from both counters with their frequencies added together, and references to either of the original |
| 135 | + * counters should be discarded (since either may now be invalid, and one will have been modified and returned). |
| 136 | + * |
| 137 | + * @param other The counter to merge in |
| 138 | + * @return The merged counter |
| 139 | + */ |
| 140 | + public BitmapFrequencyCounter merge(BitmapFrequencyCounter other) { |
| 141 | + // The algorithm here is a ripple-carry adder in two dimensions, built from half-adders that are adapted from the |
| 142 | + // standard (where s is the sum, and c the carried value): |
| 143 | + // |
| 144 | + // s = x xor y |
| 145 | + // c = x and y |
| 146 | + // |
| 147 | + // to: |
| 148 | + // |
| 149 | + // s = x xor y |
| 150 | + // c = y andnot s |
| 151 | + // |
| 152 | + // which allows in-place modification of bitmaps (x modified into s, y modified into c). |
| 153 | + |
| 154 | + RoaringBitmap c; |
| 155 | + |
| 156 | + int i = 0; |
| 157 | + |
| 158 | + RoaringBitmap x = bitmaps[i]; |
| 159 | + RoaringBitmap y = other.bitmaps[i]; |
| 160 | + if (x == null) { |
| 161 | + return other; |
| 162 | + } else if (y == null) { |
| 163 | + return this; |
| 164 | + } |
| 165 | + |
| 166 | + x.xor(y); // x2 = x1 xor y1 |
| 167 | + y.andNot(x); // y2 = y1 andnot x2 |
| 168 | + |
| 169 | + c = y; // c1 = y2 |
| 170 | + |
| 171 | + i++; |
| 172 | + |
| 173 | + while (i < bitmaps.length) { |
| 174 | + x = bitmaps[i]; |
| 175 | + y = other.bitmaps[i]; |
| 176 | + if (x == null || y == null) { |
| 177 | + break; |
| 178 | + } |
| 179 | + |
| 180 | + x.xor(y); // x2 = x1 xor y1 |
| 181 | + y.andNot(x); // y2 = y1 andnot x2 |
| 182 | + x.xor(c); // x3 = x2 xor c1 |
| 183 | + |
| 184 | + c.andNot(x); // c2 = c1 andnot x3 |
| 185 | + c.or(y); // c3 = c2 or y2 |
| 186 | + |
| 187 | + i++; |
| 188 | + } |
| 189 | + |
| 190 | + while (i < bitmaps.length) { |
| 191 | + x = bitmaps[i]; |
| 192 | + if (x == null) { |
| 193 | + break; |
| 194 | + } |
| 195 | + |
| 196 | + x.xor(c); // x2 = x1 xor c1 |
| 197 | + c.andNot(x); // c2 = c1 andnot x2 |
| 198 | + |
| 199 | + i++; |
| 200 | + } |
| 201 | + |
| 202 | + while (i < bitmaps.length) { |
| 203 | + x = other.bitmaps[i]; |
| 204 | + if (x == null) { |
| 205 | + break; |
| 206 | + } |
| 207 | + |
| 208 | + x.xor(c); // x2 = x1 xor c1 |
| 209 | + c.andNot(x); // c2 = c1 andnot x2 |
| 210 | + |
| 211 | + bitmaps[i] = x; |
| 212 | + |
| 213 | + i++; |
| 214 | + } |
| 215 | + |
| 216 | + if (i == bitmaps.length) { |
| 217 | + if (overflow == null) { |
| 218 | + overflow = c; |
| 219 | + } else { |
| 220 | + overflow.or(c); |
| 221 | + } |
| 222 | + } |
| 223 | + |
| 224 | + return this; |
| 225 | + } |
| 226 | +} |
0 commit comments