
com.cloudbees.syslog.integration.jul.util.LevelHelper Maven / Gradle / Ivy
/*
* Copyright (c) 2010-2013 the original author or authors
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*
*/
package com.cloudbees.syslog.integration.jul.util;
import com.cloudbees.syslog.Severity;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import java.util.*;
import java.util.logging.Level;
/**
* @author Cyrille Le Clerc
*/
public class LevelHelper {
public final static List levels = Collections.unmodifiableList(Arrays.asList(Level.OFF, Level.SEVERE, Level.WARNING, Level.INFO, Level.CONFIG,
Level.FINE, Level.FINER, Level.FINEST, Level.ALL));
public final static Map levelsByName;
public final static Map levelsByValue;
private final static Map julLevelToSyslogSeverity;
static {
Map levelsByNameMap = new HashMap();
Map levelsByValueMap = new HashMap();
for (Level level : levels) {
levelsByNameMap.put(level.getName(), level);
levelsByValueMap.put(level.intValue(), level);
}
levelsByName = Collections.unmodifiableMap(levelsByNameMap);
levelsByValue = Collections.unmodifiableMap(levelsByValueMap);
julLevelToSyslogSeverity = Collections.unmodifiableMap(new HashMap() {
{
put(Level.CONFIG, Severity.INFORMATIONAL);
put(Level.FINE, Severity.DEBUG);
put(Level.FINER, Severity.DEBUG);
put(Level.FINEST, Severity.DEBUG);
put(Level.INFO, Severity.INFORMATIONAL);
put(Level.SEVERE, Severity.ERROR);
put(Level.WARNING, Severity.WARNING);
}
});
}
/**
* Simplification: use delegate to {@link Level#parse(String)} even if the behavior is slightly different for localized log levels.
*
* @param name {@code null} or empty returns {@code null}
* @return
*/
@Nullable
public static Level findLevel(@Nullable String name) {
if(name == null || name.isEmpty())
return null;
return Level.parse(name);
}
@Nullable
public static Severity toSeverity(@Nullable Level level) {
return julLevelToSyslogSeverity.get(level);
}
/**
* Compare on {@link java.util.logging.Level#intValue()}
*/
public static Comparator comparator() {
return new Comparator() {
@Override
public int compare(Level l1, Level l2) {
return Integer.compare(l1.intValue(), l2.intValue());
}
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy