All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yahoo.sketches.tuple.DirectArrayOfDoublesSketchIterator Maven / Gradle / Ivy

There is a newer version: 0.13.4
Show newest version
/*
 * Copyright 2015-16, Yahoo! Inc.
 * Licensed under the terms of the Apache License 2.0. See LICENSE file at the project root for terms.
 */

package com.yahoo.sketches.tuple;

import com.yahoo.memory.Memory;

/**
 * Iterator over the off-heap, Direct tuple sketch of type ArrayOfDoubles (compact or hash table).
 * 

This implementation uses data in a given Memory that is owned and managed by the caller. * This Memory can be off-heap, which if managed properly will greatly reduce the need for * the JVM to perform garbage collection.

*/ final class DirectArrayOfDoublesSketchIterator implements ArrayOfDoublesSketchIterator { private Memory mem_; private int offset_; private int numEntries_; private int numValues_; private int i_; private static final int SIZE_OF_KEY_BYTES = 8; private static final int SIZE_OF_VALUE_BYTES = 8; DirectArrayOfDoublesSketchIterator(final Memory mem, final int offset, final int numEntries, final int numValues) { mem_ = mem; offset_ = offset; numEntries_ = numEntries; numValues_ = numValues; i_ = -1; } @Override public boolean next() { i_++; while (i_ < numEntries_) { if (mem_.getLong(offset_ + SIZE_OF_KEY_BYTES * i_) != 0) { return true; } i_++; } return false; } @Override public long getKey() { return mem_.getLong(offset_ + SIZE_OF_KEY_BYTES * i_); } @Override public double[] getValues() { if (numValues_ == 1) { return new double[] { mem_.getDouble(offset_ + SIZE_OF_KEY_BYTES * numEntries_ + SIZE_OF_VALUE_BYTES * i_) }; } final double[] array = new double[numValues_]; mem_.getDoubleArray(offset_ + SIZE_OF_KEY_BYTES * numEntries_ + SIZE_OF_VALUE_BYTES * i_ * numValues_, array, 0, numValues_); return array; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy