ninja.utils.SwissKnife Maven / Gradle / Ivy
/**
* Copyright (C) the original author or authors.
*
* 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 ninja.utils;
import com.google.common.base.CaseFormat;
import org.apache.commons.configuration.ConfigurationException;
import org.apache.commons.configuration.PropertiesConfiguration;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* A helper class that contains a lot of random stuff that helps to get things
* done.
*
* @author ra
*
*/
public class SwissKnife {
private static final Logger logger = LoggerFactory.getLogger(SwissKnife.class);
/**
* This is important: We load stuff as UTF-8.
*
* We are using in the default Apache Commons loading mechanism.
*
* With two little tweaks: 1. We don't accept any delimimter by default 2.
* We are reading in UTF-8
*
* More about that:
* http://commons.apache.org/configuration/userguide/howto_filebased
* .html#Loading
*
* From the docs: - If the combination from base path and file name is a
* full URL that points to an existing file, this URL will be used to load
* the file. - If the combination from base path and file name is an
* absolute file name and this file exists, it will be loaded. - If the
* combination from base path and file name is a relative file path that
* points to an existing file, this file will be loaded. - If a file with
* the specified name exists in the user's home directory, this file will be
* loaded. - Otherwise the file name is interpreted as a resource name, and
* it is checked whether the data file can be loaded from the classpath.
*
* @param fileOrUrlOrClasspathUrl Location of the file. Can be on file
* system, or on the classpath. Will both work.
* @return A PropertiesConfiguration or null if there were problems getting
* it.
*/
public static PropertiesConfiguration loadConfigurationInUtf8(String fileOrUrlOrClasspathUrl) {
PropertiesConfiguration propertiesConfiguration = new PropertiesConfiguration();
propertiesConfiguration.setEncoding(NinjaConstant.UTF_8);
propertiesConfiguration.setDelimiterParsingDisabled(true);
propertiesConfiguration.setFileName(fileOrUrlOrClasspathUrl);
propertiesConfiguration.getLayout().setSingleLine(NinjaConstant.applicationSecret, true);
try {
propertiesConfiguration.load(fileOrUrlOrClasspathUrl);
} catch (ConfigurationException e) {
logger.info("Could not load file " + fileOrUrlOrClasspathUrl
+ " (not a bad thing necessarily, but I am returing null)");
return null;
}
return propertiesConfiguration;
}
/**
* Returns the lower class name. Eg. A class named MyObject will become
* "myObject".
*
* @param object Object for which to return the lowerCamelCaseName
* @return the lowerCamelCaseName of the Object
*/
public static String getRealClassNameLowerCamelCase(Object object) {
return CaseFormat.UPPER_CAMEL.to(CaseFormat.LOWER_CAMEL, object.getClass().getSimpleName());
}
/**
* Used to check whether a class exists on the classpath.
*
* @param nameWithPackage for instance com.example.conf.GloablFilters
* @param instanceToGetClassloaderFrom usually "this" if you call this method.
* @return true if class exists, false if not.
*/
public static boolean doesClassExist(String nameWithPackage, Object instanceToGetClassloaderFrom) {
boolean exists = false;
try {
Class.forName(nameWithPackage, false, instanceToGetClassloaderFrom.getClass().getClassLoader());
exists = true;
} catch (ClassNotFoundException e) {
exists = false;
}
return exists;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy