/** * NOTE: This copyright does *not* cover user programs that use HQ * program services by normal system calls through the application * program interfaces provided as part of the Hyperic Plug-in Development * Kit or the Hyperic Client Development Kit - this is merely considered * normal use of the program, and does *not* fall under the heading of * "derived work". * * Copyright (C) [2009-2010], VMware, Inc. * This file is part of HQ. * * HQ is free software; you can redistribute it and/or modify * it under the terms version 2 of the GNU General Public License as * published by the Free Software Foundation. This program is distributed * in the hope that it will be useful, but WITHOUT ANY WARRANTY; without * even the implied warranty of MERCHANTABILITY or FITNESS FOR A * PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA. * */ package org.hyperic.hq.measurement.server.session; import java.util.Collection; import java.util.List; import java.util.Map; import org.hyperic.hq.product.MetricValue; public interface MetricDataCache { /** * Add MetricValues to the cache. This method checks the timestamp of * each MetricValue to be added to ensure it's not an older data point than * what is already cached. * * @param data The list of DataPoint objects representing each MetricValue. * @return The list of DataPoint objects added to the cache. Any DataPoints * older than what is already cached will NOT be contained in this * list. */ Collection<DataPoint> bulkAdd(List<DataPoint> data); /** * Get a MetricValue from the cache. * * @param mid The measurement id. * @param timestamp The beginning of the cache window. * @return The MetricValue from the cache, or null if the element is not * found, or the item in the cache is stale. */ MetricValue get(Integer mid, long timestamp); /** * Remove a MetricValue from cache * @param mid The measurement id to remove. */ void remove(Integer mid); /** * Add a MetricValue to the cache. This method checks the timestamp of * the MetricValue to be added to ensure it's not an older data point than * what is already cached. * * Each invocation of this method is synchronized internally, so consider * using the {@link #bulkAdd(List) bulk add} for batch updates to the cache. * * @param mid The measurement id. * @param mval The MetricValue to store. * @return true if the MetricValue was added to the cache, false otherwise. */ boolean add(Integer mid, MetricValue mval); /** * Get {@link MetricValue}s from the cache within the specified time range, from timestamp * to currentTimeMillis. * * @param mids {@link List} of {@link Integer}s representing MeasurementIds. * @param timestamp the start of the time range (inclusive) in millis. * @return {@link Map} of {@link Integer} of measurementIds to {@link MetricValue} * from the cache. If the mid does not exist or the timestamp of value is out of the * specified window the returned Map will not include any representation of the mid. */ Map<Integer,MetricValue> getAll(List<Integer> mids, long timestamp); }