![JAR search and dependency download from the Maven repository](/logo.png)
com.rackspacecloud.blueflood.utils.Util Maven / Gradle / Ivy
/*
* Copyright 2013 Rackspace
*
* 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.rackspacecloud.blueflood.utils;
import com.rackspacecloud.blueflood.io.Constants;
import com.rackspacecloud.blueflood.rollup.Granularity;
import org.apache.commons.codec.digest.DigestUtils;
import java.text.DecimalFormat;
import java.text.Format;
import java.util.ArrayList;
import java.util.Collection;
public class Util {
public static final String DEFAULT_DIMENSION = "default";
public static final Format DECIMAL_FORMAT = new DecimalFormat("0.00");
public static int computeShard(String s) {
return (int)Long.parseLong(DigestUtils.md5Hex(s).substring(30), 16) % Constants.NUMBER_OF_SHARDS;
}
public static Collection parseShards(String s) {
ArrayList list = new ArrayList();
if ("ALL".equalsIgnoreCase(s)) {
for (int i = 0; i < Constants.NUMBER_OF_SHARDS; i++)
list.add(i);
} else if ("NONE".equalsIgnoreCase(s)) {
return list;
} else {
for (String part : s.split(",", -1)) {
int i = Integer.parseInt(part.trim());
if (i >= Constants.NUMBER_OF_SHARDS || i < 0)
throw new NumberFormatException("Invalid shard identifier: " + part.trim());
list.add(i);
}
}
return list;
}
public static String formatStateColumnName(Granularity gran, int slot, String state) {
return String.format("%s,%d,%s", gran.name(), slot, state);
}
public static Granularity granularityFromStateCol(String s) {
String field = s.split(",", -1)[0];
for (Granularity g : Granularity.granularities())
if (g.name().startsWith(field))
return g;
return null;
}
public static int slotFromStateCol(String s) { return Integer.parseInt(s.split(",", -1)[1]); }
public static String stateFromStateCol(String s) { return s.split(",", -1)[2]; }
public static String getDimensionFromKey(String persistedMetric) {
return persistedMetric.split("\\.", -1)[0];
}
public static String getMetricFromKey(String persistedMetric) {
return persistedMetric.split("\\.", 2)[1];
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy