|
|
YOUR FEEDBACK
Did you read today's front page stories & breaking news?
SOA World Conference
Virtualization Conference $50 Savings Expire June 24, 2008... – Register Today!
SYS-CON.TV SYS-CON.TV WEBCASTS |
MXDJ TOP LINKS YOU MUST CLICK ON ! Developer Viewpoint
A Runtime Integration Approach to Application Development
Plug-in Integrator Pattern
May. 23, 2008 02:30 PM
Digg This!
Page 2 of 4
« previous page
next page »
The heart of the Plug-in Integrator Pattern is the configurator (the configuration file is shown in Figure 1), which contains the definition of the “Container” that needs to load components as a “plug-in component” with individual “initialization parameters” and a “message hookup” declaration of each plug-in components as shown in Figure 1. Any component that needs to be plugged-in to the container should implement the plug-in interface exposed by the “Container”. Each plug-in component has its own implementation for “incoming message” and “outgoing message,” but expose these messages with proper callback functions and message definitions so at runtime “message hookups” can be performed as described in the configurator. Moreover, the “incoming message” and “outgoing message” documentation should be done in the API level, which is a good programming practice anyway! After the configuration file is written, it depends on these public APIs to initialize and integrate the components. Especially in Flex, making the container plug-in a generic interface like mx.Core.IUIComponent provides an open solution where any Flex container can be made to implement this pattern with ease to load and manage a hoard of different components at runtime. Only one thing to note here is that the container has to be plug-in integration-enabled to make this pattern work and this can only be achieved when the integrator hookup is implemented to the container at compile time. Advantages of
the Plug-in Integrator Pattern
These are the direct advantages of using this pattern:
Key Concepts of
the Plug-in Integrator
The Container
The container is responsible for plug-in components implementing the container’s plug-in interface. In Flex, a container can be implemented either by subclassing or embedding any standard Flex containers such as mx:TabNavigator or mx:ViewStack etc. The Plug-in
Interface The Component
The component is the implementation of the plug-in interface, which can be readily loaded as plug-ins in the container. If we go with the case of mx.core.IUIComponent as the plug-in interface, any Flex UI component is an implementation of a IUIComponent and can be used as a plug-in component, but depending on the container interface definition it’s possible to allow only stated interface implementations to be used as plug-in components. To make components plugged in to the container at runtime, these components are wrapped up in Flex modules that are used by the integrator to load these components in the container. These components are then initialized and hooked up with internal messaging among themselves according to the configurator settings. The Configurator
This is the repository where the container’s configuration information is stored. This includes plug-in information for containers with detailed initialization and messaging hookup information for all the individual plug-in components. The configurator may be implemented as relational database tables or a simple XML file depending on the implementation needs. The XML schema that describes the basic structure of the configurator can be found in Annexure-A, but the crucial types are described below:
<xs:complexType name="containerConfigurationType"> Complex
type “containerConfigurationType” defines the basic
structure to hook up plug-in integrator functionality to any container. “clazz”
attribute is the unique identifier of the container and the “plugInInterface”
refers to the plug-in interface being exposed by the container to plug-in
components. “keepStaticChildren” tells the container to keep the already-added
components or just to add components from the configurator definitions. The “pluginComponentType” complex type definition is self-explanatory. The two important attributes here are “moduleURL” and “asClass”. To load the component as an external module(runtime loading), moduleURL is used, but to load a component statically, asClass attribute is used. The moduleURL is given precedence over the asClass to enable the loading of new versions of components in the production environment. “property”
elements are a generic way to define public component-specific properties that
could be set to the component implementing the container’s plug-in interface.
<xs:complexType name="initParamType">
<xs:sequence> <xs:element name="selfFunction" type="selfFunctionType" minOccurs="0"/> </xs:sequence> <xs:attribute name="type" use="required"> <xs:simpleType> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="funcHookup"/> <xs:enumeration value="varHookup"/> </xs:restriction> </xs:simpleType> </xs:attribute> <xs:attribute name="bindToContainerProperty" type="xs:string" use="required"/> <xs:attribute name="selfpropertyName" type="xs:string"/> </xs:complexType> There are two ways to effectively plug in a component to a container:
The first case is more obvious and more extensively used but the second way is more robust and integration friendly. The “initparamType” is used mostly to hook up a container to plug-in components using the second method. This hookup can be performed in two ways: as function hookup or a variable hookup. In a function hookup any public function in the plug-in component is hooked up and bound to a container variable, while in the variable hookup it’s a variable in the plug-in component that is bound to a container variable. To ActionScript programmers, data binding is very familiar, where as for Java or any other language, data binding means depending on the state change of the source field and the destination of data binding automatically gets a property change event to reflect the change. Implementing
the container on a very specific plug-in interface works but limits the plug-in
components, which can be easily plugged in to the container, but a more generic
plug-in interface enables a wide range of components to be plugged in and
readily hooked up and bound in the runtime, enabling easy integration. <xsd:complexType name="msgMapType">
<xsd:sequence> “msgMapType” is a very important complex type that defines the mechanism to exchange messages between the individual plug-in components. This provides an easy way to integrate plug-in components to enhance and develop new functionality. Any message map element of type msgMapType has a “srcExtentionPointType” and a desination handler of type “destHandlerType”. With this approach it is possible to map a source message or callback function to a destination message or directly to any public function in the destination plug-in component. This provides a loosely coupled event-driven way to hook up plug-in components in the runtime to build functional applications. The other important complex types defined are various “functionTypes”, “objectType” and “objectRefType”. All these are self-explanatory and can be found in Annexure-1. The Integrator
This is the most important piece in the whole Plug-in Integrator Pattern. The integrator is responsible for containers to load components as plug-ins, initialize them, and maintain messaging integration points depending on the configurator details. The Integrator is responsible for making any container to load and manage components as plug-ins and integrating the plug-in components together using messaging or function callbacks. Here is the list of core duties of the integrator:
As
the integrator plugs in components to the mentioned container dependant on the
configuration details, it uses the concept of IOC (Inversion of Control) and DI
(Dependency Injection) to load new classes and make dynamic function and
messaging hookup possible.
The
integrator can be implemented in any platform and in any language such as ActionScript, JavaScript, Java, and C#. Now let’s consider a simple example where a Flex viewer/editor needs to be written to view/edit an object. Page 2 of 4 « previous page next page » LATEST FLEX STORIES & POSTS
SUBSCRIBE TO THE WORLD'S MOST POWERFUL NEWSLETTERS SUBSCRIBE TO OUR RSS FEEDS & GET YOUR SYS-CON NEWS LIVE!
|
SYS-CON FEATURED WHITEPAPERS MOST READ THIS WEEK |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||