blob: e51ee99f7fcdda231466e62fc304d4903609560b [file] [log] [blame]
/*
* Copyright 2009-2010 by The Regents of the University of California
* 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 from
*
* 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 edu.uci.ics.hyracks.storage.am.btree.frames;
import edu.uci.ics.hyracks.dataflow.common.data.accessors.ITupleReference;
import edu.uci.ics.hyracks.storage.am.common.api.ITreeIndexTupleReference;
import edu.uci.ics.hyracks.storage.am.common.frames.AbstractSlotManager;
import edu.uci.ics.hyracks.storage.am.common.ophelpers.FindTupleMode;
import edu.uci.ics.hyracks.storage.am.common.ophelpers.FindTupleNoExactMatchPolicy;
import edu.uci.ics.hyracks.storage.am.common.ophelpers.MultiComparator;
public class OrderedSlotManager extends AbstractSlotManager {
@Override
public int findTupleIndex(ITupleReference searchKey, ITreeIndexTupleReference frameTuple, MultiComparator multiCmp,
FindTupleMode mode, FindTupleNoExactMatchPolicy matchPolicy) {
if (frame.getTupleCount() <= 0) {
return GREATEST_KEY_INDICATOR;
}
int mid;
int begin = 0;
int end = frame.getTupleCount() - 1;
while (begin <= end) {
mid = (begin + end) / 2;
frameTuple.resetByTupleIndex(frame, mid);
int cmp = multiCmp.compare(searchKey, frameTuple);
if (cmp < 0) {
end = mid - 1;
} else if (cmp > 0) {
begin = mid + 1;
} else {
if (mode == FindTupleMode.EXCLUSIVE) {
if (matchPolicy == FindTupleNoExactMatchPolicy.HIGHER_KEY) {
begin = mid + 1;
} else {
end = mid - 1;
}
} else {
if (mode == FindTupleMode.EXCLUSIVE_ERROR_IF_EXISTS) {
return ERROR_INDICATOR;
} else {
return mid;
}
}
}
}
if (mode == FindTupleMode.EXACT) {
return ERROR_INDICATOR;
}
if (matchPolicy == FindTupleNoExactMatchPolicy.HIGHER_KEY) {
if (begin > frame.getTupleCount() - 1) {
return GREATEST_KEY_INDICATOR;
}
frameTuple.resetByTupleIndex(frame, begin);
if (multiCmp.compare(searchKey, frameTuple) < 0) {
return begin;
} else {
return GREATEST_KEY_INDICATOR;
}
} else {
if (end < 0) {
return GREATEST_KEY_INDICATOR;
}
frameTuple.resetByTupleIndex(frame, end);
if (multiCmp.compare(searchKey, frameTuple) > 0) {
return end;
} else {
return GREATEST_KEY_INDICATOR;
}
}
}
@Override
public int insertSlot(int tupleIndex, int tupleOff) {
int slotOff = getSlotOff(tupleIndex);
if (tupleIndex == GREATEST_KEY_INDICATOR) {
slotOff = getSlotEndOff() - slotSize;
setSlot(slotOff, tupleOff);
return slotOff;
} else {
int slotEndOff = getSlotEndOff();
int length = (slotOff - slotEndOff) + slotSize;
System.arraycopy(frame.getBuffer().array(), slotEndOff, frame.getBuffer().array(), slotEndOff - slotSize,
length);
setSlot(slotOff, tupleOff);
return slotOff;
}
}
}