blob: 482b8eb2f23501529e4ab798f269cc4014974bfa [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2013 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.core.internal.runtime;
import java.util.HashSet;
import java.util.Set;
import org.eclipse.core.runtime.*;
import org.eclipse.equinox.log.*;
import org.osgi.framework.Bundle;
import org.osgi.service.log.LogEntry;
/**
*
*/
public class Log implements ILog, SynchronousLogListener, LogFilter {
final Bundle bundle;
private final Logger logger;
private final Set<ILogListener> logListeners = new HashSet<ILogListener>(5);
public Log(Bundle plugin, Logger logger) {
if (plugin == null)
throw new IllegalArgumentException("Logging bundle must not be null."); //$NON-NLS-1$
this.bundle = plugin;
this.logger = logger;
}
/**
* Adds the given log listener to this log. Subsequently the log listener will
* receive notification of all log events passing through this log.
*
* @see Platform#addLogListener(ILogListener)
*/
public void addLogListener(ILogListener listener) {
synchronized (logListeners) {
logListeners.add(listener);
}
}
/**
* Returns the plug-in with which this log is associated.
*/
public Bundle getBundle() {
return bundle;
}
/**
* Logs the given status. The status is distributed to the log listeners
* installed on this log and then to the log listeners installed on the platform.
*
* @see Plugin#getLog()
*/
public void log(final IStatus status) {
// Log to the logger
logger.log(PlatformLogWriter.getLog(status), PlatformLogWriter.getLevel(status), status.getMessage(), status.getException());
}
/**
* Removes the given log listener to this log. Subsequently the log listener will
* no longer receive notification of log events passing through this log.
*
* @see Platform#removeLogListener(ILogListener)
*/
public void removeLogListener(ILogListener listener) {
synchronized (logListeners) {
logListeners.remove(listener);
}
}
public void logged(LogEntry entry) {
logToListeners(PlatformLogWriter.convertToStatus(entry));
}
private void logToListeners(final IStatus status) {
// create array to avoid concurrent access
ILogListener[] listeners;
synchronized (logListeners) {
listeners = logListeners.toArray(new ILogListener[logListeners.size()]);
}
for (int i = 0; i < listeners.length; i++) {
final ILogListener listener = listeners[i];
ISafeRunnable code = new ISafeRunnable() {
public void run() throws Exception {
listener.logging(status, bundle.getSymbolicName());
}
public void handleException(Throwable e) {
//Ignore
}
};
SafeRunner.run(code);
}
}
public boolean isLoggable(Bundle loggingBundle, String loggerName, int logLevel) {
return PlatformLogWriter.EQUINOX_LOGGER_NAME.equals(loggerName) && bundle.getBundleId() == loggingBundle.getBundleId();
}
}