com.simiacryptus.util.binary.Interval Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-util Show documentation
Show all versions of java-util Show documentation
Miscellaneous Utilities (Pure Java)
/*
* Copyright (c) 2018 by Andrew Charneski.
*
* The author 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 com.simiacryptus.util.binary;
/**
* The type Interval.
*/
public class Interval {
/**
* The Start.
*/
public final long start;
/**
* The Max.
*/
public final long max;
/**
* The Length.
*/
public final long length;
/**
* Instantiates a new Interval.
*
* @param start the start
* @param length the length
* @param max the max
*/
public Interval(long start, long length, long max) {
super();
if (0 >= max) throw new IllegalArgumentException();
if (0 > start || max <= start) throw new IllegalArgumentException();
if (0 >= length) throw new IllegalArgumentException();
if (max < start + length) throw new IllegalArgumentException();
this.start = start;
this.max = max;
this.length = length;
}
/**
* End long.
*
* @return the long
*/
public long end() {
return start + length;
}
/**
* To bits bits.
*
* @return the bits
*/
public Bits toBits() {
int peekBits = (int) Math.ceil(Math.log(max) / Math.log(2)) + 4;
Bits startBits = Bits.divide(start, max, peekBits).padRight(peekBits);
Bits endBits = Bits.divide(end(), max, peekBits).padRight(peekBits);
for (int i = 0; i < peekBits; i++) {
long a = startBits.range(0, i).toLong();
long b = endBits.range(0, i).toLong();
if (b - a > 1) {
Bits bits = new Bits(a + 1, i);
assert (Bits.ZERO.equals(bits.range(0, 1)));
return bits.range(1);
}
}
throw new RuntimeException();
}
@Override
public String toString() {
final StringBuffer sb = new StringBuffer("Interval{");
sb.append("start=").append(start);
sb.append(", length=").append(length);
sb.append(", max=").append(max);
sb.append('}');
return sb.toString();
}
}