blob: d6a7a2b793a84a81e9267751a8e18ac24a98eb90 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 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.e4.core.internal.di;
import java.lang.reflect.Field;
import org.eclipse.e4.core.di.IInjector;
import org.eclipse.e4.core.di.InjectionException;
import org.eclipse.e4.core.di.suppliers.IObjectDescriptor;
import org.eclipse.e4.core.di.suppliers.PrimaryObjectSupplier;
public class FieldRequestor extends Requestor {
final private Field field;
public FieldRequestor(Field field, IInjector injector, PrimaryObjectSupplier primarySupplier, PrimaryObjectSupplier tempSupplier, Object requestingObject, boolean track) {
super(field, injector, primarySupplier, tempSupplier, requestingObject, track);
this.field = field;
}
public Object execute() throws InjectionException {
if (actualArgs == null)
return null; // optional field
setField(field, actualArgs[0]);
clearResolvedArgs();
return null;
}
protected IObjectDescriptor[] calcDependentObjects() {
IObjectDescriptor objectDescriptor = new ObjectDescriptor(field.getGenericType(), field.getAnnotations());
return new IObjectDescriptor[] {objectDescriptor};
}
private boolean setField(Field field, Object value) throws InjectionException {
Object userObject = getRequestingObject();
if (userObject == null)
return false;
boolean wasAccessible = true;
if (!field.isAccessible()) {
field.setAccessible(true);
wasAccessible = false;
}
try {
field.set(userObject, value);
} catch (IllegalArgumentException e) {
throw new InjectionException(e);
} catch (IllegalAccessException e) {
throw new InjectionException(e);
} finally {
if (!wasAccessible)
field.setAccessible(false);
}
return true;
}
@Override
public String toString() {
StringBuffer tmp = new StringBuffer();
Object object = getRequestingObject();
if (object != null)
tmp.append(object.getClass().getSimpleName());
tmp.append('.');
tmp.append(field.getName());
return tmp.toString();
}
}