blob: 795f4c8e2ae71d20ac4c12a541aec53aa89d595e [file] [log] [blame]
/*
* Copyright 2000-2014 JetBrains s.r.o.
*
* 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.
*/
package com.intellij.vcs.log.newgraph.utils.impl;
import com.intellij.vcs.log.newgraph.utils.IntToIntMap;
public abstract class AbstractIntToIntMap implements IntToIntMap {
@Override
public int getShortIndex(int longIndex) {
if (longIndex < 0 || longIndex >= longSize())
throw new IndexOutOfBoundsException("LongSize is: " + longSize() + ", but longIndex: " + longIndex);
if (shortSize() == 0 || getLongIndex(0) > longIndex)
return 0;
int a = 0;
int b = shortSize() - 1;
while (b > a + 1) {
int middle = (a + b) / 2;
if (getLongIndex(middle) <= longIndex) {
a = middle;
} else {
b = middle;
}
}
return getLongIndex(b) <= longIndex ? b : a;
}
}