blob: 3983e57326740d82c7e188049d7140abb9881e96 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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 org.apache.datasketches.quantiles;
import org.apache.datasketches.memory.Memory;
import org.apache.datasketches.memory.WritableMemory;
/**
* @author Jon Malkin
*/
public abstract class UpdateDoublesSketch extends DoublesSketch {
UpdateDoublesSketch(final int k) {
super(k);
}
/**
* Wrap this sketch around the given non-compact Memory image of a DoublesSketch.
*
* @param srcMem the given Memory image of a DoublesSketch that may have data,
* @return a sketch that wraps the given srcMem
*/
public static UpdateDoublesSketch wrap(final WritableMemory srcMem) {
return DirectUpdateDoublesSketch.wrapInstance(srcMem);
}
/**
* Updates this sketch with the given double data item
*
* @param dataItem an item from a stream of items. NaNs are ignored.
*/
public abstract void update(double dataItem);
/**
* Resets this sketch to the empty state, but retains the original value of k.
*/
public abstract void reset();
public static UpdateDoublesSketch heapify(final Memory srcMem) {
return HeapUpdateDoublesSketch.heapifyInstance(srcMem);
}
/**
* @return a CompactDoublesSketch of this class
*/
public CompactDoublesSketch compact() {
return compact(null);
}
/**
* Returns a compact version of this sketch. If passing in a Memory object, the compact sketch
* will use that direct memory; otherwise, an on-heap sketch will be returned.
* @param dstMem An optional target memory to hold the sketch.
* @return A compact version of this sketch
*/
public CompactDoublesSketch compact(final WritableMemory dstMem) {
if (dstMem == null) {
return HeapCompactDoublesSketch.createFromUpdateSketch(this);
}
return DirectCompactDoublesSketch.createFromUpdateSketch(this, dstMem);
}
@Override
boolean isCompact() {
return false;
}
//Puts
/**
* Puts the min value
*
* @param minValue the given min value
*/
abstract void putMinValue(double minValue);
/**
* Puts the max value
*
* @param maxValue the given max value
*/
abstract void putMaxValue(double maxValue);
/**
* Puts the value of <i>n</i>
*
* @param n the given value of <i>n</i>
*/
abstract void putN(long n);
/**
* Puts the combined, non-compact buffer.
*
* @param combinedBuffer the combined buffer array
*/
abstract void putCombinedBuffer(double[] combinedBuffer);
/**
* Puts the base buffer count
*
* @param baseBufCount the given base buffer count
*/
abstract void putBaseBufferCount(int baseBufCount);
/**
* Puts the bit pattern
*
* @param bitPattern the given bit pattern
*/
abstract void putBitPattern(long bitPattern);
/**
* Grows the combined buffer to the given spaceNeeded
*
* @param currentSpace the current allocated space
* @param spaceNeeded the space needed
* @return the enlarged combined buffer with data from the original combined buffer.
*/
abstract double[] growCombinedBuffer(int currentSpace, int spaceNeeded);
}