us.fatehi.utility.UtilityLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of schemacrawler Show documentation
Show all versions of schemacrawler Show documentation
SchemaCrawler is an open-source Java API that makes working with database metadata as easy as working with plain old Java objects. SchemaCrawler is also a database schema discovery and comprehension, and schema documentation tool. You can search for database schema objects using regular expressions, and output the schema and data in a readable text format. The output is designed to be diff-ed against other database schemas.
/*
========================================================================
SchemaCrawler
http://www.schemacrawler.com
Copyright (c) 2000-2024, Sualeh Fatehi .
All rights reserved.
------------------------------------------------------------------------
SchemaCrawler 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.
SchemaCrawler and the accompanying materials are made available under
the terms of the Eclipse Public License v1.0, GNU General Public License
v3 or GNU Lesser General Public License v3.
You may elect to redistribute this code under any of these licenses.
The Eclipse Public License is available at:
http://www.eclipse.org/legal/epl-v10.html
The GNU General Public License v3 and the GNU Lesser General Public
License v3 are available at:
http://www.gnu.org/licenses/
========================================================================
*/
package us.fatehi.utility;
import static java.util.Objects.requireNonNull;
import static us.fatehi.utility.Utility.join;
import java.io.File;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.SQLWarning;
import java.sql.Statement;
import java.util.Arrays;
import java.util.Iterator;
import java.util.Map.Entry;
import java.util.SortedMap;
import java.util.StringJoiner;
import java.util.TreeMap;
import java.util.logging.Level;
import java.util.logging.Logger;
public final class UtilityLogger {
private final Logger logger;
public UtilityLogger(final Logger logger) {
this.logger = requireNonNull(logger, "No logger provided");
}
public void logFatalStackTrace(final Throwable t) {
if (t == null || !logger.isLoggable(Level.SEVERE)) {
return;
}
logger.log(Level.SEVERE, t.getMessage(), t);
}
public void logSafeArguments(final String[] args) {
if (args == null || !logger.isLoggable(Level.INFO)) {
return;
}
final String passwordRedacted = "";
final StringJoiner argsList = new StringJoiner(System.lineSeparator());
for (final Iterator iterator = Arrays.asList(args).iterator(); iterator.hasNext(); ) {
final String arg = iterator.next();
if (arg == null) {
continue;
} else if (arg.matches("--password.*=.*")) {
argsList.add(passwordRedacted);
} else if (arg.startsWith("--password")) {
argsList.add(passwordRedacted);
if (iterator.hasNext()) {
// Skip over the password
iterator.next();
}
} else {
argsList.add(arg);
}
}
logger.log(Level.INFO, String.format("Command line: %n%s", argsList.toString()));
}
public void logSQLWarnings(final ResultSet resultSet) {
if ((resultSet == null) || !logger.isLoggable(Level.INFO)) {
return;
}
try {
logSQLWarnings(resultSet.getWarnings());
resultSet.clearWarnings();
} catch (final SQLException e) {
// NOTE: Do not show exception while logging warnings
logger.log(Level.WARNING, "Could not log SQL warnings for result set");
}
}
public void logSQLWarnings(final Statement statement) {
if ((statement == null) || !logger.isLoggable(Level.INFO)) {
return;
}
try {
logSQLWarnings(statement.getWarnings());
statement.clearWarnings();
} catch (final SQLException e) {
// NOTE: Do not show exception while logging warnings
logger.log(Level.WARNING, "Could not log SQL warnings for statement");
}
}
public void logSystemClasspath() {
if (!logger.isLoggable(Level.CONFIG)) {
return;
}
logger.log(
Level.CONFIG,
String.format("Classpath: %n%s", printPath(System.getProperty("java.class.path"))));
logger.log(
Level.CONFIG,
String.format("LD_LIBRARY_PATH: %n%s", printPath(System.getenv("LD_LIBRARY_PATH"))));
}
public void logSystemProperties() {
if (!logger.isLoggable(Level.CONFIG)) {
return;
}
final SortedMap systemProperties = new TreeMap<>();
for (final Entry