use of org.apache.felix.ipojo.manipulator.metadata.annotation.visitor.stereotype.StereotypeVisitorFactory in project felix by apache.
the class MetaAnnotationBindingRegistry method createBindings.
@Override
protected List<Binding> createBindings(final Type type) {
// Parse the annotation
byte[] bytes;
try {
bytes = m_store.read(type.getInternalName().concat(".class"));
} catch (IOException e) {
// Annotation type cannot be read
m_reporter.trace("Could not read bytecode for @%s.", type.getClassName());
return emptyList();
} catch (IllegalStateException e) {
m_reporter.trace("Could not read bytecode for @%s because the bundle is not in a state allowing read " + "operations.", type.getClassName());
return emptyList();
}
AnnotationParser parser = new AnnotationParser();
AnnotationType annotationType = parser.read(bytes);
// Search meta-annotations
ChainedAnnotationDiscovery chain = new ChainedAnnotationDiscovery();
StereotypeDiscovery stereotypeDiscovery = new StereotypeDiscovery();
HandlerBindingDiscovery handlerBindingDiscovery = new HandlerBindingDiscovery();
IgnoredDiscovery ignoredDiscovery = new IgnoredDiscovery();
chain.getDiscoveries().add(stereotypeDiscovery);
chain.getDiscoveries().add(handlerBindingDiscovery);
chain.getDiscoveries().add(ignoredDiscovery);
annotationType.traverse(chain);
// Produced Bindings
List<Binding> bindings = new ArrayList<Binding>();
// @Stereotype support
if (stereotypeDiscovery.isStereotype()) {
m_reporter.trace("@Stereotype detected: @%s", type.getClassName());
Binding binding = new Binding();
binding.setAnnotationType(type);
binding.setPredicate(alwaysTrue());
binding.setFactory(new StereotypeVisitorFactory(annotationType));
bindings.add(binding);
}
// @HandlerBinding support
if (handlerBindingDiscovery.isHandlerBinding()) {
m_reporter.trace("@HandlerBinding detected: @%s", type.getClassName());
Binding binding = new Binding();
binding.setAnnotationType(type);
binding.setPredicate(alwaysTrue());
final Element element = buildElement(handlerBindingDiscovery, type);
binding.setFactory(new GenericVisitorFactory(element.getName(), element.getNameSpace()));
bindings.add(binding);
}
// Its IMPORTANT that the @Ignore is processed last since it removes existing bindings
if (ignoredDiscovery.isIgnore()) {
m_reporter.trace("@Ignore detected: @%s", type.getClassName());
Binding binding = new NullBinding(type);
bindings.clear();
bindings.add(binding);
// just in case of ...
bindings = unmodifiableList(bindings);
}
return bindings;
}
use of org.apache.felix.ipojo.manipulator.metadata.annotation.visitor.stereotype.StereotypeVisitorFactory in project felix by apache.
the class AbsBindingModuleTestCase method testStereotypeBindings.
public void testStereotypeBindings() throws Exception {
AbsBindingModule module = new AbsBindingModule() {
public void configure() {
bindStereotype(Bound.class).with(new ComponentLiteral() {
@Override
public boolean publicFactory() {
return false;
}
});
}
};
module.configure();
Iterator<Binding> i = module.iterator();
Binding one = i.next();
assertNotNull(one);
assertEquals(getType(Bound.class), one.getAnnotationType());
assertTrue(one.getFactory() instanceof StereotypeVisitorFactory);
}
use of org.apache.felix.ipojo.manipulator.metadata.annotation.visitor.stereotype.StereotypeVisitorFactory in project felix by apache.
the class MetaAnnotationBindingRegistryTestCase method testStereotypeAnnotation.
public void testStereotypeAnnotation() throws Exception {
when(store.read(anyString())).thenReturn(from(Stereotyped.class));
MetaAnnotationBindingRegistry registry = new MetaAnnotationBindingRegistry(delegate, reporter, store);
Binding binding = registry.getBindings(Type.getDescriptor(Stereotyped.class)).get(0);
assertTrue(binding.getFactory() instanceof StereotypeVisitorFactory);
}
Aggregations