View/Hide Sitemap Inline ...

Monitoring Component Events

A ComponentMonitor if injected into DefultPicoContainer allows for certain events to be monitored for the whole container. These are:

Refer to the API documentation for ComponentMonitor.

Using a ComponentMonitor is quite easy, you pass it into the constructor of DefaultPicoContainer. It will also be passed to child containers:

parent = new DefaultPicoContainer(new MyComponentMonitor()); child = parent.makeChildContainer(); // will use the same monitor impl. … public class MyComponentMonitor implements ComponentMonitor { // etc }h2. Making your own ComponentMonitor implementation

Return Values

Instantiating returns a Constructor. An implementor of ComponentMonitor can choose to return a different Constructor reference. This is one way that implementations can be replaced or decorated (AOP style) with additional/changed functionality.

noComponentFound returns an Object (default of null in most cases). An implementor can choose to return an instance instead. That instance should be of a type that makes sense to the component that was being sought. The getComponent(..) would have otherwise failed, but this hypothetical ComponentMonitor intercepted that failure and provided something that makes sense.

General rules

  1. ComponentMonitor can generally be chained together. Meaning you can use them in combination.
  2. Most have NullComponentMonitor (see below) as their end stop.
  3. Any method on ComponentMonitor is open for interpretation. That means they can throw exceptions as well as return different values, making them modify PicoContainer’s behavior.

Supplied ComponentMonitor implementations

Logging or text-centric varieties of ComponentMonitor

The PicoContainer team are ideologically opposed to a forced choice of logging framework. If you’re hell bent on logging, chose from a ComponentMonitor implementation below:

NullComponentMonitor

NullComponentMonitor is PicoContainer’s default ComponentMonitor. It generally fits the NullObject pattern, but it does add behavior. Specifically if it encounters a lifecycleInvocationFailed(..) method invocation, it throws a PicoLifecycleException in response. If you use something other than NullComponentMonitor (bear in mind the default ‘end stop’ for most others is also NullComponentMonitor) then you could change the way PicoContainer responds to components it cannot start, stop of dispose of.

LifecycleComponentMonitor

LifecycleComponentMonitor is a ComponentMonitor that stores life-cycle failures and rethrows them later if rethrowLifecycleFailuresException() is called.

DotDependencyGraphComponentMonitor (Gems)

DotDependencyGraphComponentMonitor is a ComponentMonitor that makes a dot graph for instantiations of components. You would use it to visualize a graph of the injections in a container or tree of PicoContainers after they have run for some time. Call getClassDependencyGraph() on the monitor instance when you are ready to retrieve the Dot representation. See the Graphviz website for applications that can read the .dot format and visualize.

Prefuse (Gems)

In a similar way to the DotDependencyGraph above a visualization using Prefuse is possible by coupling a PrefuseDependencyGraph instance to a ComponentDependencyMonitor one. Call getGraph() to retrieve the graph for use with Prefuse

Composers

ComposingMonitor is an implementation of the Monitor design that works specifically in conjunction with noComponentFound(..) to allow greater collaboration in the supply of components for the purposes of injection. By definition it is only going to work if the type or object key that’s required is missing from the container.

MutablePicoContainer pico = new DefaultPicoContainer(new ComposingMonitor( /* varargs of composer instances */)); If more than one is specified in the varargs above, then the first in the list to actually return non-null will be used. It is also possible for a fallback component monitor to be specified:

ComponentMonitor otherCM = ... 
MutablePicoContainer pico = new DefaultPicoContainer(new ComposingMonitor(otherCM, /* varargs of composer instances */));

See Regex Composer

Future work

Implementations that: