YOUR FEEDBACK
andy.mulholland wrote: intriguing !!! We have full scale 'Mashup Factories' in Chicago USA and Utrec...


2008 East
DIAMOND SPONSOR:
Data Direct
Frontiers in Data Access: The Coming Wave in Data Services
PLATINUM SPONSORS:
Red Hat
The Opening of Virtualization
Intel
Virtualization – Path to Predictive Enterprise
Green Hills
IT Security in a Hostile World
JBoss / freedom oss
Practical SOA Approach
GOLD SPONSORS:
Software AG
The Art & Science of SOA: How Governance Enables Adoption
PlateSpin
Effective Planning for Virtual Infrastructure Growth
Fujitsu
Automated Business Process Discovery & Virtualization Service
Ceedo
Workspace Virtualization
Click For 2007 West
Event Webcasts

2008 East
PLATINUM SPONSORS:
Appcelerator
Think Fast: Accelerate AJAX Development with Appcelerator
GOLD SPONSORS:
DreamFace Interactive
The Ultimate Framework for Creating Personalized Web 2.0 Mashups
ICEsoft
AJAX and Social Computing for the Enterprise
Kaazing
Enterprise Comet: Real–Time, Real–Time, or Real–Time Web 2.0?
Nexaweb
Now Playing: Desktop Apps in the Browser!
Sun
jMaki as an AJAX Mashup Framework
POWER PANELS:
The Business Value
of RIAs
What Lies Beyond AJAX?
KEYNOTES:
Douglas Crockford
Can We Fix the Web?
Anthony Franco
2008: The Year of the RIA
Click For 2007 Event Webcasts
SYS-CON.TV
MXDJ TOP LINKS YOU MUST CLICK ON !


A Runtime Integration Approach to Application Development
Plug-in Integrator Pattern

Figure 2 shows the basic components of the application. The UI of the application is simple, with a list/tree in the left panel to show different objects to be edited/viewed. On the right there is the editor/viewer container that is implemented using the Plug-in Integrator Pattern. The figure also shows component plug-ins to the container as tabs in the top. To view the object data as a graph, the view can be added statically to the container or loaded by the configurator, but depending on the requirements, View2 (the raw data view) and View3(Stats View) are added at a later time to augment the application functionality. View3 also needs to propagate a message to the View1, asking it to graph the new stats rather than just the data in object-1.

In this application different views for an object type are injected to the container at runtime and the existing components are used to provide new functionality as and when necessary by integrating plug-ins at runtime.   

 

The XML configuration file for the above application is shown in Annexure-2. 
 
The “containerConfiguration” element shows the basic container configuration with attributes for the container’s class and plug-in interface definitions. It also shows the plug-in components added to the container as child element “pluginComponent”.

As per the current application, the application ships with one plug-in component and the other two are injected to the container at a later time. Refer to Figure 3 for details.

In this application the container implements the Plug-in Integrator Pattern and hence there is only one component deployed to the container when it’s first shipped. In Figure 3 the first deployed XML is shown in bold face. Afterward the two other component views are added to the container and their definition gets added to the configuration accordingly as shown in Figure 3. For an application implementing this pattern, new views and functionality can be added dynamically without any need for compiling the application. In the next section we will see how these plug-in components can be integrated together to provide elegant user-friendly functionality.


To deploy an individual component to the container, it’s first required to implement the plug-in interface being exposed by the container. In the present case its mx.core.IUIComponent, so any Flex UI component can be plugged into the present container. Let’s consider the case of View3 and see how it has plugged into the container, initialized and hooked on to the View1 for graphing support during runtime, without changing any line of code or recompiling. The basic code listing for View3 is shown below.

<mx:Canvas>
<mx:Script>
<![CDATA[
public function initStatData(series:ArrayCollection,length:int):void
{//logic to come up with stats data from passed in ones
}
public function raiseGraphEvent():void{
  //raise the GRAPH EVT here
  dispatchEvent(new GrapphEvent("draw",dataProvider));
}
]]>
</mx:Script>
<mx:DataGrid >
  <mx:dataProvider>
    <mx:ArrayCollection id="dataProvider" />
  </mx:dataProvider>
  <mx:columns>
  <mx:DataGridColumn headerText="Sum" dataField="col1"/>
    …..
  </mx:columns>
</mx:DataGrid>
<mx:Label text="Stats for:Object"/>
<mx:Button label="GraphIt" click="raiseGraphEvent()"/>
</mx:Canvas>
 
The component shown above is pretty simple. It shows the basic mathematical operations on each row of the data series being represented by object-1. The function initStatData(..) is responsible for initializing the component, whereas the raiseGraphEvent() function raises an event having the new mathematical data series as the new data to draw a graph.

 <pluginComponent id="333345678" name="View3">
    <property name="label">
        <value><![CDATA[Stats View]]></value>
    </property>
    <moduleURL>/an/external/module/url-view3</moduleURL>
    <initParam type="funcHookup" bindToContainerProperty="editingObject">
        <selfFunction name="initStatsData">
            <arg name="param1">
               <objectRef srcObject="editingObject">
                    <evaluate expr="dataSeries"/>
               </objectRef>
            </arg>
            <arg name="param2">
               <objectRef srcObject="editingObject">
                <evaluate expr="dataSeries.processLength"/>
               </objectRef>
            </arg>                           
        </selfFunction>
    </initParam>               
</pluginComponent>

The listing above shows the configuration for the View3 plug-in component. The moduleURL is the location of the external module that contains the component plug-in. The component is initialized using the function hookup, calling the function “initStatData” with correct parameters being evaluated from the container’s editing object. As this component just raises an event of type GraphEvent and doesn't listen to any event by itself, there is no msgMap element required in the configuration. But this event will be tied in the View1 msgMap so that when this event is raised as a result of the “GraphIt” button click, the View1 can be refreshed with the graph drawing the mathematical result series. Let’s see the msgMap configuration of View1 to see how is that accomplished.

The msgMap configuration of View1 shows that it’s mapping View3 (referenced using the pluginCompid) GraphEvent with id “draw” to map to a handler for an event called “SomeEvent”.

<msgMap id="123456789" handler="event">
<srcExtentionPoint>
        <srcMsg id="draw" pluginCompid="333345678" type="somepkg::GraphEvent"/>
    </srcExtentionPoint>
    <destHandler>
        <destMsg id="graphIt" type="some.pkg::SomeEvent">
            <object clazz="some.pkg::SomeEvent">
                <property name="any">
                    <objectRef srcObject="srcEvent">
                        <evaluate expr="an.exp.to.get.req.data"/>
                    </objectRef>
                </property>
            </object>
        </destMsg>
    </destHandler>
</msgMap>

As in View3 the event raised was a different type ”GraphEvent”; it is needed to map that event to “SomeEvent” before propagating so that the handler function can handle it accordingly. It’s also possible to map the View3 GraphEvent to directly map to a handler in the View1 handler function; this can be achieved via the following msgMap configuration setting of View1.

 <msgMap id="123456789" handler="function">
<srcExtentionPoint>
        <srcMsg id="draw" pluginCompid="333345678" type="somepkg::GraphEvent"/>
    </srcExtentionPoint>
    <destHandler>
        <destHandlerFunc name="graphIthandlerFunc">
            <arg name="param1">
                <object clazz="some.pkg::SomeEvent">
                    <property name="any">
                       <objectRef srcObject="srcEvent">
                        <evaluate expr="an.exp.to.get.req.data"/>
                       </objectRef>
                    </property>
                </object>                       
            </arg>                   
        </destHandlerFunc>
    </destHandler>
</msgMap>

To come up with the msgMap setting, it’s required to go through the API documentation of both the components (View1 and View3). The configuration setting it just an easy way to integrate the functionality exposed by both components to come up with new features. The above example just shows the flexibility of the system when the Plug-in Integrator Pattern is used and the configuration is loaded externally and can be built and maintained with ease.

The concept of “initParam” to initialize a component based on a container variable to execute any component function to initialize state provides an efficient and easy way to glue components as plug-ins to the container. Also the msgMap to map any message or function callback from a source component to a message or function handler in the destination component provides the ultimate flexibility and integration points to build enterprise-ready products just by assembling already released and tested components at runtime.

This article is just an overview of the concepts being used in the Plug-in Integrator Pattern. The implementation of the pattern is already being done in Flex but needs some dedicated papers in that subject to explain.

Conclusion
The Plug-in Integrator Pattern discussed here is good for big projects being executed by enterprises where there are several groups working on separate projects of their own, but it becomes a breeze to integrate components from these already-released and tested projects to build new applications. It also provides a new dimension to Flex programming where the components being written once can be integrated in different projects without any change, thus promoting the “write once, deploy anywhere” concept. This pattern can readily be used in other platforms and programming languages to build flexible robust systems in no time. It also differs from the methodology used in already successful plug-in projects such as Eclipse and Firefox where the plug-ins are build on compile-time dependencies; this approach provides a way to build a plug-in based application with runtime aggregation.

About Indroniel Deb Roy
Indroniel Deb Roy works as an UI architect for Packeteer Inc. Previously he contributed to the development of Oracle XML Publisher as development manager and participated actively in developing Novell's exteNd XML integration server. He has a passion for innovation and works with various XML and J2EE technologies.

About Alex Nhu
Alex Nhu works as a manager, UI Development at Packeteer Inc. He has more than 11 years of work experience designing and architecting complex server-side J2EE and XML applications. He loves developing Web applications with Flex now after getting a taste of developing UI using other RIA platforms.

LATEST FLEX STORIES & POSTS
As a speaker at the upcoming AJAX World RIA Conference & Expo, I just received an email from Lindsay over at SYS-CON Events. She just informed me about the coupon code "spkrguestbootcamp" (lower case) that I can use to invite three guests with. I am not planning to bring anyone with me...
Director of Ribbit's Developer Platform, Chuck Freedman, will explore an evolution in web communication. With the growing demand of RIA and voice-over-the-web solutions, developers finally have a full suite of communication APIs to add to Flash. Coding with Ribbit, Freedman will demons...
Hoffman will give a review of traditional web security and explain the intracacies of Resource enumeration attacks in great detail, Injection attacks, and session hijacking as well as a step by step walk through of hacking an AJAX travel site. The intensive, one-day, hands-on training ...
Kevin Lynch, who will be keynoting on October 21, 2008, helped originally coin the term "Rich Internet Application" in 2002. He has been at the center of innovation in Flash and Adobe AIR since their inception, and currently drives Adobe’s technology platform for designers and develo...
Enterprises are enthusiastically embracing the shift from traditional client/server computing to SaaS. Inspired by customers who have embraced the web, developers are using RIA tools to create innovative new on-demand business applications. One important factor in the shift from tradit...
Rich Internet Applications offer the potential to fundamentally change the user experience and in doing so, yield significant business benefits. The theme of this October's AJAX World Conference & Expo 2008 West is 'Beyond AJAX to the RIA Era' and the Call for Papers, which is still op...
SUBSCRIBE TO THE WORLD'S MOST POWERFUL NEWSLETTERS
SUBSCRIBE TO OUR RSS FEEDS & GET YOUR SYS-CON NEWS LIVE!
Click to Add our RSS Feeds to the Service of Your Choice:
Google Reader or Homepage Add to My Yahoo! Subscribe with Bloglines Subscribe in NewsGator Online
myFeedster Add to My AOL Subscribe in Rojo Add 'Hugg' to Newsburst from CNET News.com Kinja Digest View Additional SYS-CON Feeds
Publish Your Article! Please send it to editorial(at)sys-con.com!

Advertise on this site! Contact advertising(at)sys-con.com! 201 802-3021


SYS-CON FEATURED WHITEPAPERS

ADS BY GOOGLE