blob: f32ccd030e18d6254e5a0804001e1c5585bf522d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2013 QNX Software Systems
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* QNX Software Systems (Alena Laskavaia) - initial API and implementation
* Sergey Prigogin (Google)
*******************************************************************************/
package org.eclipse.cdt.codan.internal.core;
import java.util.HashMap;
import java.util.Map;
import org.eclipse.cdt.codan.core.model.ICheckerInvocationContext;
import org.eclipse.cdt.codan.core.model.ICodanDisposable;
import org.eclipse.core.resources.IResource;
/**
* Implementation of ICheckerInvocationContext.
* This class is thread-safe.
*/
public class CheckerInvocationContext implements ICheckerInvocationContext {
private final IResource resource;
private final Map<Class<?>, Object> objectStorage;
/**
* @param resource the resource this context is associated with.
*/
public CheckerInvocationContext(IResource resource) {
this.resource = resource;
objectStorage = new HashMap<>();
}
@Override
public IResource getResource() {
return resource;
}
@Override
@SuppressWarnings("unchecked")
public synchronized <T> T get(Class<T> objectClass) {
T object = (T) objectStorage.get(objectClass);
if (object != null)
return object;
for (Map.Entry<Class<?>, Object> entry : objectStorage.entrySet()) {
if (objectClass.isAssignableFrom(entry.getKey()))
return (T) entry.getValue();
}
return null;
}
@Override
public synchronized <T extends ICodanDisposable> void add(T object) {
Object old = objectStorage.put(object.getClass(), object);
if (old != null && object != old) {
objectStorage.put(old.getClass(), old); // Restore old value.
throw new IllegalArgumentException();
}
}
@Override
public void dispose() {
for (Map.Entry<Class<?>, Object> entry : objectStorage.entrySet()) {
Object obj = entry.getValue();
if (obj instanceof ICodanDisposable) {
((ICodanDisposable) obj).dispose();
}
}
objectStorage.clear();
}
}