blob: 555b2660a8d0d6c7300751b869e2c288c96c4c0a [file]
/*
* 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 java.lang.foreign.MemorySegment;
import org.apache.datasketches.common.MemorySegmentRequest;
/**
* For building a new QuantilesDoublesSketch Union operation.
*
* @author Lee Rhodes
*/
public class QuantilesDoublesUnionBuilder {
private int bMaxK = PreambleUtil.DEFAULT_K;
/**
* Constructor for a new QuantilesDoublesUnionBuilder. The default configuration is
* <ul>
* <li>k: 128. This produces a normalized rank error of about 1.7%</li>
* </ul>
*/
public QuantilesDoublesUnionBuilder() {}
/**
* 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.
* 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 <i>k</i>.
* @return this builder
*/
public QuantilesDoublesUnionBuilder setMaxK(final int maxK) {
ClassicUtil.checkK(maxK);
bMaxK = maxK;
return this;
}
/**
* Gets the current configured <i>maxK</i>
* @return the current configured <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 QuantilesDoublesUnion build() {
return QuantilesDoublesUnionImpl.heapInstance(bMaxK);
}
/**
* Returns a new empty Union object with the current configuration of this Builder
* and the specified backing destination MemorySegment store.
* @param dstSeg the destination MemorySegment
* @param mSegReq the MemorySegmentRequest used if the given MemorySegment needs to expand.
* Otherwise, it can be null and the default MemorySegmentRequest will be used.
* @return a Union object
*/
public QuantilesDoublesUnion build(final MemorySegment dstSeg, final MemorySegmentRequest mSegReq) {
return QuantilesDoublesUnionImpl.directInstance(bMaxK, dstSeg, mSegReq);
}
}