/* * * SchemaCrawler * http://sourceforge.net/projects/schemacrawler * Copyright (c) 2000-2010, Sualeh Fatehi. * * This library is free software; you can redistribute it and/or modify it under the terms * of the GNU Lesser General Public License as published by the Free Software Foundation; * either version 2.1 of the License, or (at your option) any later version. * * This library 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License along with this * library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, MA 02111-1307, USA. * */ package sf.util; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.Reader; import java.io.UnsupportedEncodingException; import java.util.Enumeration; import java.util.logging.Handler; import java.util.logging.Level; import java.util.logging.LogManager; import java.util.logging.Logger; /** * Utility methods. * * @author Sualeh Fatehi */ public final class Utility { private static final Logger LOGGER = Logger .getLogger(Utility.class.getName()); /** * System specific line separator character. */ public static final String NEWLINE = System.getProperty("line.separator"); public static String commonPrefix(final String string1, final String string2) { final int index = indexOfDifference(string1, string2); if (index == -1) { return null; } else { return string1.substring(0, index).toLowerCase(); } } /** * Checks if the text is null or empty. * * @param text * Text to check. * @return Whether the string is blank. */ public static boolean isBlank(final String text) { final int textLength; if (text == null || (textLength = text.length()) == 0) { return true; } for (int i = 0; i < textLength; i++) { if (!Character.isWhitespace(text.charAt(i))) { return false; } } return true; } public static String readFully(final InputStream stream) { final Reader reader; try { reader = new InputStreamReader(stream, "UTF-8"); } catch (final UnsupportedEncodingException e) { LOGGER.log(Level.WARNING, e.getMessage(), e); return ""; } return readFully(reader); } /** * Reads the stream fully, and returns a byte array of data. * * @param reader * Reader to read. * @return Byte array */ public static String readFully(final Reader reader) { if (reader == null) { LOGGER.log(Level.WARNING, "Cannot read null reader"); return ""; } final StringBuilder out = new StringBuilder(); try { final char[] buffer = new char[0x10000]; int read; do { final Reader bufferedReader = new BufferedReader(reader, buffer.length); read = bufferedReader.read(buffer, 0, buffer.length); if (read > 0) { out.append(buffer, 0, read); } } while (read >= 0); } catch (final UnsupportedEncodingException e) { LOGGER.log(Level.WARNING, e.getMessage(), e); } catch (final IOException e) { LOGGER.log(Level.WARNING, "Could not read from reader", e); } finally { try { reader.close(); } catch (final IOException e) { LOGGER.log(Level.WARNING, "Could not close reader", e); } } return out.toString(); } /** * Sets the application-wide log level. * * @param logLevel * Log level to set */ public static void setApplicationLogLevel(final Level logLevel) { final LogManager logManager = LogManager.getLogManager(); for (final Enumeration<String> loggerNames = logManager.getLoggerNames(); loggerNames .hasMoreElements();) { final String loggerName = loggerNames.nextElement(); final Logger logger = logManager.getLogger(loggerName); logger.setLevel(null); final Handler[] handlers = logger.getHandlers(); for (final Handler handler: handlers) { handler.setLevel(logLevel); } } final Logger rootLogger = Logger.getLogger(""); rootLogger.setLevel(logLevel); } private static int indexOfDifference(final String string1, final String string2) { if (string1 == null || string2 == null) { return 0; } int i; for (i = 0; i < string1.length() && i < string2.length(); ++i) { if (string1.charAt(i) != string2.charAt(i)) { break; } } if (i < string2.length() || i < string1.length()) { return i; } return -1; } private Utility() { // Prevent instantiation } }