org.apache.jackrabbit.stats.TimeSeriesMax Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.sling.feature.analyser Show documentation
Show all versions of org.apache.sling.feature.analyser Show documentation
A feature describes an OSGi system
/*
* 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.jackrabbit.stats;
import static java.util.Arrays.fill;
import org.apache.jackrabbit.api.stats.TimeSeries;
/**
* Time series of the maximum value recorded in a period
*/
public class TimeSeriesMax implements TimeSeries {
private final MaxValue max;
private final long missingValue;
private final long[] perSecond;
private final long[] perMinute;
private final long[] perHour;
private final long[] perWeek;
/** Current second (index in {@link #perSecond}) */
private int seconds;
/** Current minute (index in {@link #perMinute}) */
private int minutes;
/** Current hour (index in {@link #perHour}) */
private int hours;
/** Current week (index in {@link #perWeek}) */
private int weeks;
public TimeSeriesMax() {
this(0);
}
public TimeSeriesMax(long missingValue) {
this.missingValue = missingValue;
max = new MaxValue(missingValue);
perSecond = newArray(60, missingValue);
perMinute = newArray(60, missingValue);
perHour = newArray(7 * 24, missingValue);
perWeek = newArray(3 * 52, missingValue);
}
private static long[] newArray(int size, long value) {
long[] array = new long[size];
fill(array, value);
return array;
}
public void recordValue(long value) {
max.setIfMaximal(value);
}
/**
* Records the number of measured values over the past second and resets
* the counter. This method should be scheduled to be called once per
* second.
*/
public synchronized void recordOneSecond() {
perSecond[seconds++] = max.getAndSetValue(missingValue);
if (seconds == perSecond.length) {
seconds = 0;
perMinute[minutes++] = max(perSecond);
}
if (minutes == perMinute.length) {
minutes = 0;
perHour[hours++] = max(perMinute);
}
if (hours == perHour.length) {
hours = 0;
perWeek[weeks++] = max(perHour);
}
if (weeks == perWeek.length) {
weeks = 0;
}
}
@Override
public long getMissingValue() {
return missingValue;
}
@Override
public synchronized long[] getValuePerSecond() {
return cyclicCopyFrom(perSecond, seconds);
}
@Override
public synchronized long[] getValuePerMinute() {
return cyclicCopyFrom(perMinute, minutes);
}
@Override
public synchronized long[] getValuePerHour() {
return cyclicCopyFrom(perHour, hours);
}
@Override
public synchronized long[] getValuePerWeek() {
return cyclicCopyFrom(perWeek, weeks);
}
/**
* Returns the maximum of all entries in the given array.
*/
private long max(long[] array) {
long max = missingValue;
for (long v : array) {
if (max == missingValue) {
max = v;
} else if (v != missingValue) {
max = Math.max(max, v);
}
}
return max;
}
/**
* Returns a copy of the given cyclical array, with the element at
* the given position as the first element of the returned array.
*
* @param array cyclical array
* @param pos position of the first element
* @return copy of the array
*/
private static long[] cyclicCopyFrom(long[] array, int pos) {
long[] reverse = new long[array.length];
for (int i = 0; i < array.length; i++) {
reverse[i] = array[(pos + i) % array.length];
}
return reverse;
}
private class MaxValue {
private long max;
public MaxValue(long max) {
this.max = max;
}
public synchronized long getAndSetValue(long value) {
long v = max;
max = value;
return v;
}
public synchronized void setIfMaximal(long value) {
if (max == missingValue) {
max = value;
} else if (value != missingValue) {
max = Math.max(max, value);
}
}
}
}