com.yammer.metrics.stats.CodableUniformSample.java Source code

Java tutorial

Introduction

Here is the source code for com.yammer.metrics.stats.CodableUniformSample.java

Source

/*
 * 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 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 com.yammer.metrics.stats;

import com.addthis.codec.annotations.FieldConfig;

import com.google.common.primitives.Longs;

/**
 * A codable version of Sample from CodaHales metrics project
 * <p/>
 * https://github.com/codahale/metrics/blob/master/metrics-core/src/main/java/com/yammer/metrics/stats/Sample.java
 */
public class CodableUniformSample implements Sample {

    private static final int BITS_PER_LONG = 63;

    @FieldConfig(codable = true)
    private long count = 0;
    @FieldConfig(codable = true)
    private int reservoirSize;
    @FieldConfig(codable = true)
    private long[] values;

    public CodableUniformSample init(int reservoirSize) {
        this.reservoirSize = reservoirSize;
        values = new long[reservoirSize];
        clear();
        return this;
    }

    @Override
    public int size() {
        final long c = count;
        if (c > values.length) {
            return values.length;
        }
        return (int) c;
    }

    @Override
    public void clear() {
        for (int i = 0; i < values.length; i++) {
            values[i] = 0;
        }
        count = 0;
    }

    @Override
    public void update(long value) {
        final long c = ++count;
        if (c <= values.length) {
            values[(int) c - 1] = value;
        } else {
            final long r = nextLong(c);
            if (r < values.length) {
                values[(int) r] = value;
            }
        }
    }

    /**
     * Get a pseudo-random long uniformly between 0 and n-1. Stolen from
     * {@link java.util.Random#nextInt()}.
     *
     * @param n the bound
     * @return a value select randomly from the range {@code [0..n)}.
     */
    private static long nextLong(long n) {
        long bits;
        long val;
        do {
            bits = ThreadLocalRandom.current().nextLong() & (~(1L << BITS_PER_LONG));
            val = bits % n;
        } while (bits - val + (n - 1) < 0L);
        return val;
    }

    @Override
    public Snapshot getSnapshot() {
        return new Snapshot(Longs.asList(values));
    }
}