
metrics_influxdb.misc.Miscellaneous Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metrics-influxdb Show documentation
Show all versions of metrics-influxdb Show documentation
A reporter for metrics which announces measurements to an InfluxDB server.
The newest version!
package metrics_influxdb.misc;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
import java.nio.charset.Charset;
import java.util.Objects;
public class Miscellaneous {
public static Charset UTF8 = Charset.forName("UTF-8");
public static String escape(String name, char... toEscape) {
String result = name;
for (char c : toEscape) {
result = result.replace(Character.toString(c), "\\" + c);
}
return result;
}
public static String urlEncode(String s) throws UnsupportedEncodingException {
return URLEncoder.encode(s, UTF8.name());
}
public static String readFrom(InputStream is) throws IOException {
try (InputStreamReader isr = new InputStreamReader(is, UTF8)) {
StringBuffer sb = new StringBuffer();
char[] buffer = new char[2048];
int read;
while ((read = isr.read(buffer, 0, 2048)) != -1) {
sb.append(buffer, 0, read);
}
return sb.toString();
}
}
/**
* Checks that given string is not empty (null check is also performed)
* @param s the string to check
* @throws IllegalArgumentException if the string is empty
* @throws NullPointerException if the string is null
*/
public static void requireNotEmpty(String s) {
requireNotEmptyParameter(s, "string");
}
/**
* Checks that given string is not empty (null check is also performed)
* @param s the string to check
* @param parameter the name of the parameter to be used in error messages
* @throws IllegalArgumentException if the string is empty
* @throws NullPointerException if the string is null
*/
public static void requireNotEmptyParameter(String s, String parameter) {
Objects.requireNonNull(s, "given " + parameter + " cannot be null");
if ("".equals(s.trim())) {
throw new IllegalArgumentException("given " + parameter + " cannot be empty");
}
}
/**
* Checks that given string is not empty (null check is also performed)
* @param s the string to check
* @param message the message to use in case it is empty
* @throws IllegalArgumentException if the string is empty
* @throws NullPointerException if the string is null
*/
public static void requireNotEmpty(String s, String message) {
Objects.requireNonNull(s);
if ("".equals(s.trim())) {
throw new IllegalArgumentException(message);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy