blob: fa8f7dbeb257a7d90ae84916be1b510a51334883 [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;
/**
* For building a new DoublesSketch Union operation.
*
* @author Lee Rhodes
*/
public class DoublesUnionBuilder {
private int bMaxK = PreambleUtil.DEFAULT_K;
/**
* Constructor for a new DoublesUnionBuilder. The default configuration is
* <ul>
* <li>k: 128. This produces a normalized rank error of about 1.7%</li>
* <li>Memory: null</li>
* </ul>
*/
public DoublesUnionBuilder() {}
/**
* Sets the parameter <i>masK</i> that determines the maximum size of the sketch that
* results from a union and its accuracy.
* @param maxK determines the accuracy and size of the union and is a maximum value.
* The effective <i>k</i> can be smaller due to unions with smaller <i>k</i> sketches.
* It is recommended that <i>maxK</i> be a power of 2 to enable unioning of sketches with
* different values of <i>k</i>.
* @return this builder
*/
public DoublesUnionBuilder setMaxK(final int maxK) {
Util.checkK(maxK);
bMaxK = maxK;
return this;
}
/**
* Gets the current configured value of <i>maxK</i>
* @return the current configured value of <i>maxK</i>
*/
public int getMaxK() {
return bMaxK;
}
/**
* Returns a new empty Union object with the current configuration of this Builder.
* @return a Union object
*/
public DoublesUnion build() {
return DoublesUnionImpl.heapInstance(bMaxK);
}
/**
* Returns a new empty Union object with the current configuration of this Builder
* and the specified backing destination Memory store.
* @param dstMem the destination memory
* @return a Union object
*/
public DoublesUnion build(final WritableMemory dstMem) {
return DoublesUnionImpl.directInstance(bMaxK, dstMem);
}
/**
* Returns a Heap Union object that has been initialized with the data from the given sketch.
* @param sketch A DoublesSketch to be used as a source of data only and will not be modified.
* @return a DoublesUnion object
* @deprecated v2.0.0. Moved to DoublesUnion
*/
@Deprecated
public static DoublesUnion heapify(final DoublesSketch sketch) {
return DoublesUnionImpl.heapifyInstance(sketch);
}
/**
* Returns a Heap Union object that has been initialized with the data from the given memory
* image of a sketch.
*
* @param srcMem A memory image of a DoublesSketch to be used as a source of data,
* but will not be modified.
* @return a Union object
* @deprecated v2.0.0. Moved to DoublesUnion
*/
@Deprecated
public static DoublesUnion heapify(final Memory srcMem) {
return DoublesUnionImpl.heapifyInstance(srcMem);
}
/**
* Returns a read-only Union object that wraps off-heap data of the given memory image of
* a sketch. The data structures of the Union remain off-heap.
*
* @param mem A memory region to be used as the data structure for the sketch
* and will be modified.
* @return a Union object
* @deprecated v2.0.0. Moved to DoublesUnion
*/
@Deprecated
public static DoublesUnion wrap(final Memory mem) {
return DoublesUnionImplR.wrapInstance(mem);
}
/**
* Returns an updatable Union object that wraps off-heap data of the given memory image of
* a sketch. The data structures of the Union remain off-heap.
*
* @param mem A memory region to be used as the data structure for the sketch
* and will be modified.
* @return a Union object
* @deprecated v2.0.0. Moved to DoublesUnion
*/
@Deprecated
public static DoublesUnion wrap(final WritableMemory mem) {
return DoublesUnionImpl.wrapInstance(mem);
}
}