aboutsummaryrefslogtreecommitdiffstats
path: root/datarouter-prov/src/main/java/org/onap/dmaap/datarouter/provisioning/utils/RLEBitSet.java
blob: 7914c81d08b9740a92068bb1dff780a87d0d502a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
/*******************************************************************************
 * ============LICENSE_START==================================================
 * * org.onap.dmaap
 * * ===========================================================================
 * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
 * * ===========================================================================
 * * Licensed under the Apache License, Version 2.0 (the "License");
 * * you may not use this file except in compliance with the License.
 * * You may obtain a copy of the License at
 * *
 *  *      http://www.apache.org/licenses/LICENSE-2.0
 * *
 *  * Unless required by applicable law or agreed to in writing, software
 * * distributed under the License is distributed on an "AS IS" BASIS,
 * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * * See the License for the specific language governing permissions and
 * * limitations under the License.
 * * ============LICENSE_END====================================================
 * *
 * * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 * *
 ******************************************************************************/


package org.onap.dmaap.datarouter.provisioning.utils;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.SortedSet;
import java.util.TreeSet;

/**
 * This class provides operations similar to the standard Java {@link java.util.BitSet} class.
 * It is designed for bit sets where there are long runs of 1s and 0s; it is not appropriate
 * for sparsely populated bits sets.  In addition, this class uses <code>long</code>s rather
 * than <code>int</code>s to represent the indices of the bits.
 *
 * @author Robert Eby
 * @version $Id$
 */
public class RLEBitSet {
    /**
     * Used to represent a continues set of <i>nbits</i> 1 bits starting at <i>start</i>.
     */
    private class RLE implements Comparable<RLE> {
        private final long start;
        private long nbits;

        public RLE(long from, long nbits) {
            this.start = from;
            this.nbits = (nbits > 0) ? nbits : 0;
        }

        /**
         * Returns the index of the first set bit in this RLE.
         *
         * @return the index
         */
        public long firstBit() {
            return start;
        }

        /**
         * Returns the index of the last set bit in this RLE.
         *
         * @return the index
         */
        public long lastBit() {
            return start + nbits - 1;
        }

        public boolean intersects(RLE b2) {
            if (b2.lastBit() < this.firstBit())
                return false;
            if (b2.firstBit() > this.lastBit())
                return false;
            return true;
        }

        public boolean isSubset(RLE b2) {
            if (firstBit() < b2.firstBit())
                return false;
            if (firstBit() > b2.lastBit())
                return false;
            if (lastBit() < b2.firstBit())
                return false;
            if (lastBit() > b2.lastBit())
                return false;
            return true;
        }

        public RLE union(RLE b2) {
            RLE b1 = this;
            if (b1.firstBit() > b2.firstBit()) {
                b1 = b2;
                b2 = this;
            }
            long end = b1.lastBit();
            if (b2.lastBit() > b1.lastBit())
                end = b2.lastBit();
            return new RLE(b1.firstBit(), end - b1.firstBit() + 1);
        }

        /**
         * Returns the number of bits set to {@code true} in this {@code RLE}.
         *
         * @return the number of bits set to {@code true} in this {@code RLE}.
         */
        public int cardinality() {
            return (int) nbits;
        }

        @Override
        public int compareTo(RLE o) {
            if (this.equals(o))
                return 0;
            return (start < o.start) ? -1 : 1;
        }

        @Override
        public boolean equals(Object obj) {
            if (obj instanceof RLE) {
                RLE b = (RLE) obj;
                return (start == b.start) && (nbits == b.nbits);
            }
            return false;
        }

        @Override
        public int hashCode() {
            return new Long(start ^ nbits).hashCode();
        }

        @Override
        public String toString() {
            return "[" + firstBit() + ".." + lastBit() + "]";
        }
    }

    private SortedSet<RLE> bitsets;

    /**
     * Creates a new bit set. All bits are initially <code>false</code>.
     */
    public RLEBitSet() {
        bitsets = new TreeSet<>();
    }

    /**
     * Creates a new bit set, with bits set according to the value of <code>s</code>.
     *
     * @param s the initialization String
     */
    public RLEBitSet(String s) {
        bitsets = new TreeSet<>();
        set(s);
    }

    /**
     * Returns the "logical size" of this {@code RLEBitSet}: the index of the highest set bit
     * in the {@code RLEBitSet} plus one. Returns zero if the {@code RLEBitSet} contains no set bits.
     *
     * @return the logical size of this {@code RLEBitSet}
     */
    public long length() {
        if (isEmpty())
            return 0;
        return bitsets.last().lastBit() + 1;
    }

    /**
     * Returns the value of the bit with the specified index. The value is {@code true} if the bit
     * with the index bit is currently set in this BitSet; otherwise, the result is {@code false}.
     *
     * @param bit the bit index
     * @return the value of the bit with the specified index
     */
    public boolean get(long bit) {
        synchronized (bitsets) {
            for (RLE bs : bitsets) {
                if (bit >= bs.firstBit() && bit <= bs.lastBit())
                    return true;
            }
        }
        return false;
    }

    /**
     * Set one or more bits to true, based on the value of <code>s</code>.
     *
     * @param s the initialization String, which consists of a comma or space separated list of
     *          non-negative numbers and ranges.  An individual number represents the bit index to set.
     *          A range (two numbers separated by a dash) causes all bit indexes between the two numbers
     *          (inclusive) to be set.
     * @throws NumberFormatException     - if a number is incorrectly formatted
     * @throws IndexOutOfBoundsException - if an index is negative
     */
    public void set(String s) {
        s = s.trim();
        if (!s.isEmpty()) {
            for (String s2 : s.split("[, \n]+")) {
                if (s2.indexOf('-') >= 0) {
                    String[] pp = s2.split("-");
                    long f = Long.parseLong(pp[0]);
                    long t = Long.parseLong(pp[1]);
                    set(f, t + 1);
                } else
                    set(Long.parseLong(s2));
            }
        }
    }

    /**
     * Sets the bit at the specified index to {@code true}.
     *
     * @param bit a bit index
     */
    public void set(long bit) {
        set(bit, bit + 1);
    }

    /**
     * Sets the bits from the specified {@code from} (inclusive) to the
     * specified {@code to} (exclusive) to {@code true}.
     *
     * @param from index of the first bit to be set
     * @param to   index after the last bit to be set
     * @throws IndexOutOfBoundsException if {@code from} is negative,
     *                                   or {@code to} is negative,
     *                                   or {@code from} is larger than {@code to}
     */
    public void set(long from, long to) {
        checkRange(from, to);
        RLE newbits = new RLE(from, to - from);
        synchronized (bitsets) {
            for (RLE bs : bitsets) {
                if (bs.intersects(newbits)) {
                    if (!newbits.isSubset(bs)) {
                        bitsets.remove(bs);
                        bitsets.add(newbits.union(bs));
                        coalesce();
                    }
                    return;
                }
            }
            bitsets.add(newbits);
        }
        coalesce();
    }

    /**
     * Sets all of the bits in this BitSet to {@code false}.
     */
    public void clear() {
        synchronized (bitsets) {
            bitsets.clear();
        }
    }

    /**
     * Sets the bit specified by the index to {@code false}.
     *
     * @param bit the index of the bit to be cleared
     */
    public void clear(long bit) {
        clear(bit, bit + 1);
    }

    /**
     * Sets the bits from the specified {@code from} (inclusive) to the
     * specified {@code to} (exclusive) to {@code false}.
     *
     * @param from index of the first bit to be cleared
     * @param to   index after the last bit to be cleared
     * @throws IndexOutOfBoundsException if {@code from} is negative,
     *                                   or {@code to} is negative,
     *                                   or {@code from} is larger than {@code to}
     */
    public void clear(long from, long to) {
        checkRange(from, to);
        RLE newbits = new RLE(from, to - from);
        List<RLE> newranges = new ArrayList<>();
        synchronized (bitsets) {
            for (RLE bs : bitsets) {
                if (bs.intersects(newbits)) {
                    // preserve the bits that are not being cleared
                    long len = newbits.firstBit() - bs.firstBit();
                    if (len > 0)
                        newranges.add(new RLE(bs.firstBit(), len));
                    len = bs.lastBit() - newbits.lastBit();
                    if (len > 0)
                        newranges.add(new RLE(newbits.lastBit() + 1, len));
                    bs.nbits = 0;
                }
            }
            if (!newranges.isEmpty()) {
                for (RLE bs : newranges) {
                    bitsets.add(bs);
                }
            }
        }
        coalesce();
    }

    /**
     * Combine abutting RLEBitSets, and remove 0 length RLEBitSets.
     */
    private void coalesce() {
        RLE last = null;
        synchronized (bitsets) {
            Iterator<RLE> iter = bitsets.iterator();
            while (iter.hasNext()) {
                RLE bs = iter.next();
                if (last != null && (last.lastBit() + 1 == bs.firstBit())) {
                    last.nbits += bs.nbits;
                    iter.remove();
                } else if (bs.nbits == 0) {
                    iter.remove();
                } else {
                    last = bs;
                }
            }
        }
    }

    /**
     * Checks that fromIndex ... toIndex is a valid range of bit indices.
     */
    private static void checkRange(long from, long to) {
        if (from < 0)
            throw new IndexOutOfBoundsException("fromIndex < 0: " + from);
        if (to < 0)
            throw new IndexOutOfBoundsException("toIndex < 0: " + to);
        if (from > to)
            throw new IndexOutOfBoundsException("fromIndex: " + from + " > toIndex: " + to);
    }

    /**
     * Performs a logical <b>AND</b> of this target bit set with the argument bit set.
     * This bit set is modified so that each bit in it has the value {@code true} if and only if
     * it both initially had the value {@code true} and the corresponding bit in the bit set
     * argument also had the value {@code true}.
     *
     * @param set a {@code RLEBitSet}
     */
    public void and(RLEBitSet set) {
        long last = 0;
        synchronized (set.bitsets) {
            for (RLE bs : set.bitsets) {
                clear(last, bs.start);
                last = bs.start + bs.nbits;
            }
        }
        clear(last, Long.MAX_VALUE);
    }

    /**
     * Clears all of the bits in this {@code RLEBitSet} whose corresponding bit is set in
     * the specified {@code RLEBitSet}.
     *
     * @param set the {@code RLEBitSet} with which to mask this {@code RLEBitSet}
     */
    public void andNot(RLEBitSet set) {
        synchronized (set.bitsets) {
            for (RLE bs : set.bitsets) {
                clear(bs.start, bs.start + bs.nbits);
            }
        }
    }

    /**
     * Returns true if this {@code RLEBitSet} contains no bits that are set
     * to {@code true}.
     *
     * @return boolean indicating whether this {@code BitSet} is empty
     */
    public boolean isEmpty() {
        return bitsets.isEmpty();
    }

    /**
     * Returns the number of bits set to {@code true} in this {@code RLEBitSet}.
     *
     * @return the number of bits set to {@code true} in this {@code RLEBitSet}.
     */
    public int cardinality() {
        int n = 0;
        synchronized (bitsets) {
            for (RLE bs : bitsets) {
                n += bs.cardinality();
            }
        }
        return n;
    }

    /**
     * Cloning this RLEBitSet produces a new RLEBitSet that is equal to it. The clone of the
     * bit set is another bit set that has exactly the same bits set to true as this bit set.
     *
     * @return a clone of this bit set
     */
    public Object clone() {
        RLEBitSet rv = new RLEBitSet();
        synchronized (bitsets) {
            for (RLE bs : bitsets) {
                rv.bitsets.add(new RLE(bs.start, bs.nbits));
            }
        }
        return rv;
    }

    /**
     * Returns a string representation of this bit set, using the same notation as is required for
     * the String constructor. For every index for which this {@code RLEBitSet} contains a bit in
     * the set state, the decimal representation of that index is included in the result. Such
     * indices are listed in order from lowest to highest, separated by ",". Ranges of set bits are
     * indicated by <i>lobit</i>-<i>hibit</i>.
     *
     * @return the String
     */
    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        String prefix = "";
        synchronized (bitsets) {
            for (RLE bs : bitsets) {
                sb.append(prefix);
                prefix = ",";
                long s = bs.firstBit();
                long e = bs.lastBit();
                sb.append(s);
                if (s != e)
                    sb.append('-').append(e);
            }
        }
        return sb.toString();
    }

    /**
     * Return an Iterator which provides pairs of {@code Long}s representing the beginning and
     * ending index of a range of set bits in this {@code RLEBitSet}.
     *
     * @return the Iterator
     */
    public Iterator<Long[]> getRangeIterator() {
        return new Iterator<Long[]>() {
            private Iterator<RLE> i = bitsets.iterator();

            @Override
            public boolean hasNext() {
                return i.hasNext();
            }

            @Override
            public Long[] next() {
                RLE bs = i.next();
                return new Long[]{bs.firstBit(), bs.lastBit()};
            }

            @Override
            public void remove() {
                throw new UnsupportedOperationException();
            }
        };
    }
}