blob: 3ca79618f147494debb66fbb63ad11b42b271e99 [file] [log] [blame]
/**
* Copyright (c) 2011, Google Inc.
*
* 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 com.android.email.utils;
import android.net.Uri;
import android.util.Log;
import com.google.common.annotations.VisibleForTesting;
import java.util.List;
public class LogUtils {
private static String LOG_TAG = "Email";
/**
* Get the log tag to apply to logging.
*/
public String getLogTag() {
return LOG_TAG;
}
/**
* Priority constant for the println method; use LogUtils.v.
*/
public static final int VERBOSE = Log.VERBOSE;
/**
* Priority constant for the println method; use LogUtils.d.
*/
public static final int DEBUG = Log.DEBUG;
/**
* Priority constant for the println method; use LogUtils.i.
*/
public static final int INFO = Log.INFO;
/**
* Priority constant for the println method; use LogUtils.w.
*/
public static final int WARN = Log.WARN;
/**
* Priority constant for the println method; use LogUtils.e.
*/
public static final int ERROR = Log.ERROR;
/**
* Used to enable/disable logging that we don't want included in
* production releases.
*/
private static final int MAX_ENABLED_LOG_LEVEL = VERBOSE;
private static Boolean sDebugLoggingEnabledForTests = null;
/**
* Enable debug logging for unit tests.
*/
@VisibleForTesting
static void setDebugLoggingEnabledForTests(boolean enabled) {
sDebugLoggingEnabledForTests = Boolean.valueOf(enabled);
}
/**
* Returns true if the build configuration prevents debug logging.
*/
@VisibleForTesting
static boolean buildPreventsDebugLogging() {
return MAX_ENABLED_LOG_LEVEL > VERBOSE;
}
/**
* Returns a boolean indicating whether debug logging is enabled.
*/
private static boolean isDebugLoggingEnabled() {
if (buildPreventsDebugLogging()) {
return false;
}
if (sDebugLoggingEnabledForTests != null) {
return sDebugLoggingEnabledForTests.booleanValue();
}
return Log.isLoggable(LOG_TAG, Log.DEBUG);
}
/**
* Returns a String for the specified content provider uri. This will do
* sanitation of the uri to remove PII if debug logging is not enabled.
*/
public static String contentUriToString(Uri uri) {
if (isDebugLoggingEnabled()) {
// Debug logging has been enabled, so log the uri as is
return uri.toString();
} else {
// Debug logging is not enabled, we want to remove the email address from the uri.
List<String> pathSegments = uri.getPathSegments();
Uri.Builder builder = new Uri.Builder()
.scheme(uri.getScheme())
.authority(uri.getAuthority())
.query(uri.getQuery())
.fragment(uri.getFragment());
// This assumes that the first path segment is the account
final String account = pathSegments.get(0);
builder = builder.appendPath(String.valueOf(account.hashCode()));
for (int i = 1; i < pathSegments.size(); i++) {
builder.appendPath(pathSegments.get(i));
}
return builder.toString();
}
}
/* TODO: what is the correct behavior for base case and the Gmail case? Seems like this
* belongs in override code in UnifiedGmail.
*Converts the specified set of labels to a string, and removes any PII as necessary
* public static String labelSetToString(Set<String> labelSet) {
if (isDebugLoggingEnabled() || labelSet == null) {
return labelSet != null ? labelSet.toString() : "";
} else {
final StringBuilder builder = new StringBuilder("[");
int i = 0;
for(String label : labelSet) {
if (i > 0) {
builder.append(", ");
}
builder.append(sanitizeLabelName(label));
i++;
}
builder.append(']');
return builder.toString();
}
}
private static String sanitizeLabelName(String canonicalName) {
if (TextUtils.isEmpty(canonicalName)) {
return "";
}
if (Gmail.isSystemLabel(canonicalName)) {
return canonicalName;
}
return USER_LABEL_PREFIX + String.valueOf(canonicalName.hashCode());
}*/
/**
* Checks to see whether or not a log for the specified tag is loggable at the specified level.
*/
public static boolean isLoggable(String tag, int level) {
if (MAX_ENABLED_LOG_LEVEL > level) {
return false;
}
return Log.isLoggable(tag, level);
}
/**
* Send a {@link #VERBOSE} log message.
* @param tag Used to identify the source of a log message. It usually identifies
* the class or activity where the log call occurs.
* @param format the format string (see {@link java.util.Formatter#format})
* @param args
* the list of arguments passed to the formatter. If there are
* more arguments than required by {@code format},
* additional arguments are ignored.
*/
public static int v(String tag, String format, Object... args) {
if (isLoggable(tag, VERBOSE)) {
return Log.v(tag, String.format(format, args));
}
return 0;
}
/**
* Send a {@link #VERBOSE} log message.
* @param tag Used to identify the source of a log message. It usually identifies
* the class or activity where the log call occurs.
* @param tr An exception to log
* @param format the format string (see {@link java.util.Formatter#format})
* @param args
* the list of arguments passed to the formatter. If there are
* more arguments than required by {@code format},
* additional arguments are ignored.
*/
public static int v(String tag, Throwable tr, String format, Object... args) {
if (isLoggable(tag, VERBOSE)) {
return Log.v(tag, String.format(format, args), tr);
}
return 0;
}
/**
* Send a {@link #DEBUG} log message.
* @param tag Used to identify the source of a log message. It usually identifies
* the class or activity where the log call occurs.
* @param format the format string (see {@link java.util.Formatter#format})
* @param args
* the list of arguments passed to the formatter. If there are
* more arguments than required by {@code format},
* additional arguments are ignored.
*/
public static int d(String tag, String format, Object... args) {
if (isLoggable(tag, DEBUG)) {
return Log.d(tag, String.format(format, args));
}
return 0;
}
/**
* Send a {@link #DEBUG} log message.
* @param tag Used to identify the source of a log message. It usually identifies
* the class or activity where the log call occurs.
* @param tr An exception to log
* @param format the format string (see {@link java.util.Formatter#format})
* @param args
* the list of arguments passed to the formatter. If there are
* more arguments than required by {@code format},
* additional arguments are ignored.
*/
public static int d(String tag, Throwable tr, String format, Object... args) {
if (isLoggable(tag, DEBUG)) {
return Log.d(tag, String.format(format, args), tr);
}
return 0;
}
/**
* Send a {@link #INFO} log message.
* @param tag Used to identify the source of a log message. It usually identifies
* the class or activity where the log call occurs.
* @param format the format string (see {@link java.util.Formatter#format})
* @param args
* the list of arguments passed to the formatter. If there are
* more arguments than required by {@code format},
* additional arguments are ignored.
*/
public static int i(String tag, String format, Object... args) {
if (isLoggable(tag, INFO)) {
return Log.i(tag, String.format(format, args));
}
return 0;
}
/**
* Send a {@link #INFO} log message.
* @param tag Used to identify the source of a log message. It usually identifies
* the class or activity where the log call occurs.
* @param tr An exception to log
* @param format the format string (see {@link java.util.Formatter#format})
* @param args
* the list of arguments passed to the formatter. If there are
* more arguments than required by {@code format},
* additional arguments are ignored.
*/
public static int i(String tag, Throwable tr, String format, Object... args) {
if (isLoggable(tag, INFO)) {
return Log.i(tag, String.format(format, args), tr);
}
return 0;
}
/**
* Send a {@link #WARN} log message.
* @param tag Used to identify the source of a log message. It usually identifies
* the class or activity where the log call occurs.
* @param format the format string (see {@link java.util.Formatter#format})
* @param args
* the list of arguments passed to the formatter. If there are
* more arguments than required by {@code format},
* additional arguments are ignored.
*/
public static int w(String tag, String format, Object... args) {
if (isLoggable(tag, WARN)) {
return Log.w(tag, String.format(format, args));
}
return 0;
}
/**
* Send a {@link #WARN} log message.
* @param tag Used to identify the source of a log message. It usually identifies
* the class or activity where the log call occurs.
* @param tr An exception to log
* @param format the format string (see {@link java.util.Formatter#format})
* @param args
* the list of arguments passed to the formatter. If there are
* more arguments than required by {@code format},
* additional arguments are ignored.
*/
public static int w(String tag, Throwable tr, String format, Object... args) {
if (isLoggable(tag, WARN)) {
return Log.w(tag, String.format(format, args), tr);
}
return 0;
}
/**
* Send a {@link #ERROR} log message.
* @param tag Used to identify the source of a log message. It usually identifies
* the class or activity where the log call occurs.
* @param format the format string (see {@link java.util.Formatter#format})
* @param args
* the list of arguments passed to the formatter. If there are
* more arguments than required by {@code format},
* additional arguments are ignored.
*/
public static int e(String tag, String format, Object... args) {
if (isLoggable(tag, ERROR)) {
return Log.e(tag, String.format(format, args));
}
return 0;
}
/**
* Send a {@link #ERROR} log message.
* @param tag Used to identify the source of a log message. It usually identifies
* the class or activity where the log call occurs.
* @param tr An exception to log
* @param format the format string (see {@link java.util.Formatter#format})
* @param args
* the list of arguments passed to the formatter. If there are
* more arguments than required by {@code format},
* additional arguments are ignored.
*/
public static int e(String tag, Throwable tr, String format, Object... args) {
if (isLoggable(tag, ERROR)) {
return Log.e(tag, String.format(format, args), tr);
}
return 0;
}
/**
* What a Terrible Failure: Report a condition that should never happen.
* The error will always be logged at level ASSERT with the call stack.
* Depending on system configuration, a report may be added to the
* {@link android.os.DropBoxManager} and/or the process may be terminated
* immediately with an error dialog.
* @param tag Used to identify the source of a log message. It usually identifies
* the class or activity where the log call occurs.
* @param format the format string (see {@link java.util.Formatter#format})
* @param args
* the list of arguments passed to the formatter. If there are
* more arguments than required by {@code format},
* additional arguments are ignored.
*/
public static int wtf(String tag, String format, Object... args) {
return Log.wtf(tag, String.format(format, args));
}
/**
* What a Terrible Failure: Report a condition that should never happen.
* The error will always be logged at level ASSERT with the call stack.
* Depending on system configuration, a report may be added to the
* {@link android.os.DropBoxManager} and/or the process may be terminated
* immediately with an error dialog.
* @param tag Used to identify the source of a log message. It usually identifies
* the class or activity where the log call occurs.
* @param tr An exception to log
* @param format the format string (see {@link java.util.Formatter#format})
* @param args
* the list of arguments passed to the formatter. If there are
* more arguments than required by {@code format},
* additional arguments are ignored.
*/
public static int wtf(String tag, Throwable tr, String format, Object... args) {
return Log.wtf(tag, String.format(format, args), tr);
}
}