io.druid.collections.bitmap.WrappedImmutableBitSetBitmap Maven / Gradle / Ivy
/*
* Licensed to Metamarkets Group Inc. (Metamarkets) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. Metamarkets licenses this file
* to you 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.
*/
package io.druid.collections.bitmap;
import org.roaringbitmap.IntIterator;
import java.nio.ByteBuffer;
import java.util.BitSet;
import java.util.NoSuchElementException;
/**
* WrappedImmutableBitSetBitmap implements ImmutableBitmap for java.util.BitSet
*/
public class WrappedImmutableBitSetBitmap implements ImmutableBitmap
{
protected final BitSet bitmap;
public WrappedImmutableBitSetBitmap(BitSet bitmap)
{
this.bitmap = bitmap;
}
public WrappedImmutableBitSetBitmap()
{
this(new BitSet());
}
// WARNING: the current implementation of BitSet (1.7) copies the contents of ByteBuffer to
// on heap!
// TODO: make a new BitSet implementation which can use ByteBuffers properly.
public WrappedImmutableBitSetBitmap(ByteBuffer byteBuffer)
{
this(BitSet.valueOf(byteBuffer));
}
@Override
public IntIterator iterator()
{
return new BitSetIterator();
}
@Override
public boolean get(int value)
{
return bitmap.get(value);
}
@Override
public int size()
{
return bitmap.cardinality();
}
@Override
public byte[] toBytes()
{
return bitmap.toByteArray();
}
@Override
public int compareTo(ImmutableBitmap other)
{
// TODO: find out what this is supposed to even do
BitSet otherSet = ((WrappedImmutableBitSetBitmap) other).bitmap;
int lengthCompare = Integer.compare(otherSet.length(), bitmap.length());
if (lengthCompare != 0) {
return lengthCompare;
}
return Integer.compare(otherSet.nextSetBit(0), bitmap.nextSetBit(0));
}
@Override
public boolean isEmpty()
{
return bitmap.isEmpty();
}
@Override
public ImmutableBitmap union(ImmutableBitmap otherBitmap)
{
WrappedBitSetBitmap retval = new WrappedBitSetBitmap((BitSet) bitmap.clone());
retval.or((WrappedBitSetBitmap) otherBitmap);
return retval;
}
@Override
public ImmutableBitmap intersection(ImmutableBitmap otherBitmap)
{
WrappedBitSetBitmap retval = new WrappedBitSetBitmap((BitSet) bitmap.clone());
retval.and((WrappedBitSetBitmap) otherBitmap);
return retval;
}
@Override
public ImmutableBitmap difference(ImmutableBitmap otherBitmap)
{
WrappedBitSetBitmap retval = new WrappedBitSetBitmap((BitSet) bitmap.clone());
retval.andNot((WrappedBitSetBitmap) otherBitmap);
return retval;
}
private class BitSetIterator implements IntIterator
{
private int nextPos;
BitSetIterator()
{
nextPos = bitmap.nextSetBit(0);
}
@Override
public boolean hasNext()
{
return nextPos >= 0;
}
@Override
public int next()
{
int pos = nextPos;
if (pos < 0) {
throw new NoSuchElementException();
}
nextPos = bitmap.nextSetBit(pos + 1);
return pos;
}
@Override
public IntIterator clone()
{
BitSetIterator newIt = new BitSetIterator();
newIt.nextPos = nextPos;
return newIt;
}
}
}