<?xml version="1.0"?>
<rss version="2.0">
<channel>
  <title>The Kitchen in the Zoo - dci tag</title>
  <link>http://blog.maxant.co.uk:80/pebble/tags/dci/</link>
  <description>&lt;small&gt;A blog where Ant writes about anything he finds interesting! &lt;a href=&#039;http://www.linkedin.com/in/maxant&#039;&gt;&lt;font color=&#039;white&#039;&gt;Who is Ant?&lt;/font&gt;&lt;/a&gt;      &lt;a href=&#039;/pebble/pages/copyright.html&#039;&gt;&lt;font color=&#039;white&#039;&gt;Copyright 2005-2012 Ant Kutschera&lt;/font&gt;&lt;/a&gt;&lt;/small&gt;</description>
  <language>en</language>
  <copyright>Ant Kutschera</copyright>
  <lastBuildDate>Thu, 10 May 2012 20:07:00 GMT</lastBuildDate>
  <generator>Pebble (http://pebble.sourceforge.net)</generator>
  <docs>http://backend.userland.com/rss</docs>
  
  
  <item>
    <title>DCI and Services (EJB)</title>
    <link>http://blog.maxant.co.uk:80/pebble/2010/11/20/1290288540000.html</link>
    
      
        <description>
          Data, Context and Interaction (DCI) is a way to improve the readability of object oriented code.  But it has nothing specific to say about things like transactions, security, resources, concurrency, scalability, reliability, or other such concerns.&lt;br&gt;
&lt;br&gt;
Services, in terms of stateless EJBs or Spring Services, have a lot to say about such concerns, and indeed allow the cross-cutting concerns like transactions and security to be configured outside of the code using annotations or deployment descriptors (XML configuration), letting programmers concentrate on business code.  The code they write contains very little code related to transactions or security.  The other concerns are handled by the container in which the services live.&lt;br&gt;
&lt;br&gt;
Services however, constrain developers to think in terms of higher order objects which deliver functionality.  Object orientation (OO) and DCI let programmers program in terms of objects; DCI more so than OO.  In those cases where the programmer wants to have objects with behaviour, rather than passing the object to a service, they can use DCI.&lt;br&gt;
&lt;br&gt;
If objects are to provide rich behaviour (ie. behaviour which relies on security, transactions or resources), then they need to somehow be combined with services, which naturally do this and do it with the help of a container, so that the programmer does not need to write low level boiler plate code, for example to start and commit transactions.&lt;br&gt;
&lt;br&gt;
The idea here, is to explore combining a service solution with a DCI solution.  Comparing SOA to DCI, like I did in my &lt;a target=&#039;_blank&#039; href=&#039;http://www.maxant.co.uk/whitepaperDetails.jsp?uid=10&#039;&gt;white paper&lt;/a&gt;, shows that the DCI context is analagous to the code which calls a service in a SOA solution, and that a context does not really explicitly exist in a SOA solution.  However, thinking a little more abstractly, in DCI an encapsulation of behaviour would be the context together with its roles.  In SOA, this encapsulation is the service itself.  So it is possible to realign the ideas in that white paper, to think of a context as being a service.  If the goal is to create a hybrid between services and DCI, so that all of the concerns listed at the start of this article get handled by a hybrid solution, then the roles still exist as they do in DCI, but the context becomes a &#034;service&#034; in the technical sense.&lt;br&gt;
&lt;br&gt;
Time for an example.  Imagine a train company which owns electrified tracks along which trains run.  They have a business partner who provides the electrical energy, who is offering cheaper energy to consumers who can forecast their energy consumption so that the partner can make their production more efficient.  To deliver these forecasts, the train company checks the timetable for regular passenger transport, as well as all its cargo contracts for bespoke cargo trips.  This allows them to simulate all train trips for a given time period and calcuate the energy requirement.  Now, the company is a national one, and has thousands of kilometers of track and hundreds of trains running.  They have created detailed maps of the terrain over which their tracks run, so they know the uphill and downhill segments and their power consumption changes.  They want to build some simulation software to handle the forecasting.  At the same time, there is a non-functional requirement to complete calculations extremely quickly, so rather than making them sequential, a parallel solution is required.  Here is the proposed object model:&lt;br&gt;
&lt;br&gt;
&lt;ul&gt;
	&lt;li&gt;Trip: Consists of a Train and a list of TripSegments.&lt;/li&gt;
	&lt;li&gt;Train: consists of a list of Locomotives, and a list of Wagons.  The assembly of a train comes from the Timetable.&lt;/li&gt;
	&lt;li&gt;Locomotive: Has an efficiency, a weight and rolling friction factor.&lt;/li&gt;
	&lt;li&gt;Wagon: has a weight and rolling friction factor.&lt;/li&gt;
	&lt;li&gt;TripSegment: has a Segment, and the average speed along which the Train will travel on that segment, during its trip.&lt;/li&gt;
	&lt;li&gt;Segment: a stretch of track, which has a length, positive hill climbs and negative hill decents. Has a starting station and an end station, which are not relevant to the energy calculations - it is the distance which counts.&lt;/li&gt;
	&lt;li&gt;Timetable: a service which provides all Trips for a given time period.&lt;/li&gt;
&lt;/ul&gt;&lt;br&gt;
&lt;br&gt;
In order to make each trip be calculated in parallel, I have chosen to use a feature of EJB whereby the container creates a new thread and does the calculation on that thread.  It means with a simple annotation on a method, I have almost no boiler plate code to write!  In order to use that annotation, my context needs to be an EJB, but seeing as the application is running in an enterprise Java application server anyway (so that I can for example have a nice website as a front end), this is no big deal.&lt;br&gt;
&lt;br&gt;
So, the architecture of this solutions is: a web request to run the calculation is received which makes a call to my process layer (aka application layer).  The process layer calls the timetable to get all trips for the requested period, and for each trip it calls the context to do a calculation in parallel.  The process layer waits for all calculations to complete and returns the result to the web layer to present the results to the user.  Here is the context:
&lt;br&gt;
&lt;br&gt;
&lt;hr size=&#034;2&#034; width=&#034;100%&#034; /&gt;
&lt;div style=&#034;border: thin none ; overflow: auto; width: 525px; height: 300px; background-color: rgb(255, 255, 255);&#034;&gt;
&lt;pre&gt;
@Stateless
@Context
public class ForecastingContext implements ForecastingContextLocal {

	/**
	 * an asynchrounous method for determining the energy requirements of the given trip.
	 */
	@Asynchronous
    public Future&lt;Double&gt; forecastEnergyRequired(Trip trip) {

		BehaviourInjector bi = new BehaviourInjector(this);
		
		//the context simply casts objects into roles, and starts the interaction
		EnergyConciousTrip t = bi.assignRole(trip, EnergyConciousTrip.class);
		double energy = t.forecastEnergyRequirements();
		
		return new AsyncResult&lt;Double&gt;(energy);
    }
}
&lt;/pre&gt;
&lt;/div&gt;
&lt;br&gt;
The context does nothing special, apart from contain the &lt;code&gt;@Asynchronous&lt;/code&gt; annotation which tells the container that calls to this method need to occur on a new thread.  Unlike perhaps more standard DCI, this context has no constructor which takes objects which will play roles, rather the interaction method &#034;forecastEnergyRequired&#034; is passed the object which gets cast into a role.  The reason is that I have no control over the instantiation of the context, because it is an EJB, meaning that the container does the instantiation for me!.  I have not sub-classed BehaviourInjector (which is an option in my framework), because stateless EJBs can be called by multiple threads at the same time, and BehaviourInjector is not thread safe.&lt;br&gt;
&lt;br&gt;
Here are the two roles:&lt;br&gt;
&lt;br&gt;
&lt;hr size=&#034;2&#034; width=&#034;100%&#034; /&gt;
&lt;div style=&#034;border: thin none ; overflow: auto; width: 525px; height: 300px; background-color: rgb(255, 255, 255);&#034;&gt;
&lt;pre&gt;
/**
 * this role is played by a trip so that it is able to 
 * give a prediction about how much energy will be 
 * needed to undertake the trip.
 */
@Role(contextClass=ForecastingContext.class, 
		implementationClass=EnergyConciousTrip.EnergyConciousTripImpl.class)
public interface EnergyConciousTrip {

	double forecastEnergyRequirements(); //role
	List&lt;TripSegment&gt; getTripSegments(); //data
	Train getTrain(); //data
	
	static class EnergyConciousTripImpl{ //role implementation
		
		@CurrentContext
		private IContext ctx;
		
		@Self
		private EnergyConciousTrip self;

		/**
		 * energy consists of a longitudinal component (ie along the track due to 
		 * aerodynamic forces and rolling resistance) as well as altidudal component
		 * (ie due to climbing or descending).
		 * 
		 * E = mgh //ie potential energy for climbing / descending
		 * E = Fd  //ie energy required to overcome resistive forces
		 */
		public double forecastEnergyRequirements(){
			
			//give the train some scientific behaviour and determine
			//its total weight and average efficiency
			ScientificTrain train = ctx.assignRole(self.getTrain(), ScientificTrain.class);
			double totalWeight = train.getTotalWeightKg();
			double avgEff = train.getAverageEfficiency();
			
			//add up all energy per segment
			double energy = 0.0;
			for(TripSegment seg : self.getTripSegments()){
				
				double segmentEnergy = train.getResistanceForce(seg.getSpeed()) * seg.getSegment().getLengthMeters();
				
				segmentEnergy += totalWeight * seg.getSegment().getAltitudeChange();
				
				//each locomotive can pull, but has an efficiency which needs to be factored in!
				//it needs more energy than just pulling wagons, because its inefficient
				segmentEnergy /= avgEff;
				
				energy += segmentEnergy;
			}
			
			return energy;
		}
	}
}


/**
 * played by a train, when it needs to provide scientific details about itself.
 */
@Role(contextClass=ForecastingContext.class,
		implementationClass=ScientificTrain.ScientificTrainImpl.class)
public interface ScientificTrain {

	double getResistanceForce(double speed); //role
	int getTotalWeightKg(); //role
	double getAverageEfficiency(); //role
	List&lt;Wagon&gt; getWagons(); //data 
	List&lt;Locomotive&gt; getLocomotives(); //data
	double getDragCoefficient(); //data
	
	static class ScientificTrainImpl { //role impl

		@Self
		private ScientificTrain self;

		/** 
		 * resistance force is the rolling friction as a 
		 * result of weight, as well as aerodyamic drag.
		 */
		public double getResistanceForce(double speed){
			double resistanceForce = 0.0;
			for(Wagon w : self.getWagons()){
				resistanceForce += w.getWeightKg() * w.getRollingFriction();
			}
			for(Locomotive l : self.getLocomotives()){
				resistanceForce += l.getWeightKg() * l.getRollingFriction();
			}
			
			resistanceForce += speed * speed * self.getDragCoefficient();
			
			return resistanceForce;
		}

		/** total weight of wagons and locs. */
		public int getTotalWeightKg(){
			int weight = 0;
			for(Wagon w : self.getWagons()){
				weight += w.getWeightKg();
			}
			for(Locomotive l : self.getLocomotives()){
				weight += l.getWeightKg();
			}
			return weight;
		}

		/** average of all locs in the train */
		public double getAverageEfficiency(){
			double avg = 0.0;
			for(Locomotive l : self.getLocomotives()){
				avg += l.getEfficiency();
			}
			return avg / self.getLocomotives().size();
		}
	}	
}
&lt;/pre&gt;
&lt;/div&gt;
&lt;br&gt;
There is nothing fancy in these roles - simply the engineering calculations to work out the energy requirements.  I have chosen to implement the role implementations inside the role interface, but there is no reason the role implementations could not exist in their own classes.&lt;br&gt;
&lt;br&gt;
Finally, here is the process layer:&lt;br&gt;
&lt;br&gt;
&lt;hr size=&#034;2&#034; width=&#034;100%&#034; /&gt;
&lt;div style=&#034;border: thin none ; overflow: auto; width: 525px; height: 300px; background-color: rgb(255, 255, 255);&#034;&gt;
&lt;pre&gt;
@Stateless
public class EnergyForecastingService implements EnergyForecastingServiceLocal {

	@EJB
	private TimetableLocal timetable;

	@EJB
	private ForecastingContextLocal forecastingContext;
	
	@Override
	public EnergyRequirementResult forecast() throws InterruptedException, ExecutionException {
		
		long start = System.nanoTime();
		List&lt;Future&lt;Double&gt;&gt; results = new ArrayList&lt;Future&lt;Double&gt;&gt;();
		EnergyRequirementResult result = new EnergyRequirementResult();
		result.setTrips(timetable.getTripsForPeriod(null, null));
		for(Trip trip : result.getTrips()){
			//start it in a parallel thread
			//it will be simulated using a DCI context...
			Future&lt;Double&gt; e = forecastingContext.forecastEnergyRequired(trip);
			results.add(e);
		}
		
		//ok, all started, lets wait until all are done...
		result.setEnergyRequirement(waitForResults(results));
		result.setCalculationTimeNs(System.nanoTime() - start);
		
		return result;
	}

	private double waitForResults(List&lt;Future&lt;Double&gt;&gt; results) throws InterruptedException, ExecutionException {
		double energyRequired = 0.0;
		while(!results.isEmpty()){
			List&lt;Future&lt;Double&gt;&gt; assimilated = new ArrayList&lt;Future&lt;Double&gt;&gt;();
			for(Future&lt;Double&gt; result : results){
				if(result.isDone()){
					assimilated.add(result);
					energyRequired += result.get().doubleValue();
				}
			}
			results.removeAll(assimilated);
			
			//lets give CPU time to other threads while we wait...
			Thread.sleep(5L);
		}
		
		return energyRequired;
	}
}
&lt;/pre&gt;
&lt;/div&gt;
&lt;br&gt;
The process layer uses these funny &#034;Future&#034; objects which allow it to not only get the result from a calculation which has run on another thread, but also to query whether that thread has completed or is still running.  The only boiler plate code needed to handle this multi-threaded code is analysis of results while waiting for them all to complete.&lt;br&gt;
&lt;br&gt;
The context and its roles look like this:&lt;br&gt;
&lt;br&gt;
&lt;img src=&#039;/pebble/images/DCITrainCompanyContexts.gif&#039;&gt;&lt;br&gt;
&lt;br&gt;
One interesting side point, is that the EnergyRequirementResult is a class in the context&#039;s package (namespace), because it only makes sense to create it from the context.  It can be used outside of the context as a read only object to read the results, but it is strongly coupled to the context.  It doesn&#039;t really make sense for it to exist without the context, and thinking in terms of components, or code re-use, it makes sense to place it in the same namespace as the context.  The context and its roles, are afterall a component which can calculate energy requirements - they encapsulate the behaviour to do this.&lt;br&gt;
&lt;br&gt;
It might look strange that the behaviour is not simply added to the train and trip objects.  But it&#039;s hard to see the benefits when looking at such a small project.  Imagine a huge project where the object model is much more complex, and there are many many more use cases.  If you look at the object model in this example, the train and timetable can be used in many more applications than just one which does energy predictions.  Typically within an enterprise, we keep rebuilding similar object models with relevant parts of data, and differing behaviours for each OO solution.  DCI lets you build a large single object model, with behaviours constrained to the contexts in which they are relevant.  This allows the data model to become sufficiently complex to make it usable within the entire enterprise, but not so overly complex that making changes to it breaks it.  Of course it is also arguable, that things like drag coefficients and rolling friction coefficients have no place in an object model of an application related to passenger load planning or whatever else the enterprise needs to do.  In terms of making applications flexible to change, it can help if each application has its own object model, even if it results in code duplication within the enterprise.&lt;br&gt;
&lt;br&gt;
In this example I have turned my context into an EJB, because I want to take advantage of boilerplate code which the container can handle for me - in this case concurrent computing.  Similarly, if my context needs resources, transactions, security, etc, I would use an EJB for my context, and pass the resources which the container injects into it, into the roles using my BehaviourInjector framework (see its documentation for details).  I have solved the banking example used in many DCI articles, by making the contexts EJBs, letting the container handle transactions, and getting hold of the EntityManager (for interacting with the database) by letting the container inject it into the context, which the BehaviourInjector can in turn inject into roles.&lt;br&gt;
&lt;br&gt;
If contexts are to be &#034;services&#034; in the technical sense, it also makes sense for an enterprise to build a context repository to sit along side their service repository.  These are places for software people to look, when needing to see if problems they face have already been solved.  Just as we have tools for searching service repositories and we create documents to list all our services, we will need to do the same for contexts, if DCI is to really be adopted by the enterprise world.&lt;br&gt;
&lt;br&gt;
It&#039;s important to remember that you could build this solution with pure services, or pure OO.  DCI is simply another, and valid way of solving the problem, which concentrates on separating the behaviour from the data in order to make the code more reviewable, while at the same time remaining object oriented, so that the model which the users and customers have, stays similar to that which the programmer uses.  Is creating roles and injecting behaviour into the Train and Trip objects better than putting those methods into a service which does the same thing?  I don&#039;t know...  It is certainly less OO, but is that a bad thing?  Perhaps its just down to designers choice and feeling comfortable with the resulting code.  So long as reading the solution compares to the users and customers stories, that is the important thing.  Mappings between the users/customers world, and the programmers world are unnecessary and cause bugs as well as unsatisfactory users, because the programmer concentrates on solving his problems, rather than the business&#039; problems.&lt;br&gt;
&lt;br&gt;
You can download all the source code for this train app from &lt;a href=&#039;/pebble/files/DCITrainCompanyExampleJEE.zip&#039;&gt;here&lt;/a&gt;.&lt;br&gt;
&lt;br&gt;
PS. I have no idea if train companies need to forecast energy requirements, or even if they work with energy partners.  The creativity of this blog article should not hamper the readers understanding of how to create a service/DCI hybrid, in order to benefit from the way a container handles the concerns listed at the start of this article!&lt;br&gt;
&lt;br&gt;
&amp;copy; 2010 Ant Kutschera
&lt;br&gt;&lt;br&gt;&lt;div class=&#034;tags&#034;&gt;&lt;span&gt;Social Bookmarks : &lt;/span&gt;&amp;nbsp;&lt;a href=&#034;http://slashdot.org/bookmark.pl?url=http://blog.maxant.co.uk:80/pebble/2010/11/20/1290288540000.html&amp;amp;title=DCI+and+Services+%28EJB%29&#034; target=&#034;_blank&#034; title=&#034;Add this post to Slash Dot&#034;&gt;&lt;img src=&#034;common/images/slashdot.png&#034; alt=&#034;Add this post to Slashdot&#034; border=&#034;0&#034; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a href=&#034;http://digg.com/submit?url=http://blog.maxant.co.uk:80/pebble/2010/11/20/1290288540000.html&amp;amp;title=DCI+and+Services+%28EJB%29&#034; target=&#034;_blank&#034; title=&#034;Digg this post&#034;&gt;&lt;img src=&#034;common/images/digg.png&#034; alt=&#034;Add this post to Digg&#034; border=&#034;0&#034; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a href=&#034;http://reddit.com/submit?url=http://blog.maxant.co.uk:80/pebble/2010/11/20/1290288540000.html&amp;amp;title=DCI+and+Services+%28EJB%29&#034; target=&#034;_blank&#034; title=&#034;Add this post to Reddit&#034;&gt;&lt;img src=&#034;common/images/reddit.png&#034; alt=&#034;Add this post to Reddit&#034; border=&#034;0&#034; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a href=&#034;http://del.icio.us/post?url=http://blog.maxant.co.uk:80/pebble/2010/11/20/1290288540000.html&amp;amp;title=DCI+and+Services+%28EJB%29&#034; target=&#034;_blank&#034; title=&#034;Save this post to Del.icio.us&#034;&gt;&lt;img src=&#034;common/images/delicious.png&#034; alt=&#034;Add this post to Delicious&#034; border=&#034;0&#034; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a href=&#034;http://www.stumbleupon.com/submit?url=http://blog.maxant.co.uk:80/pebble/2010/11/20/1290288540000.html&amp;amp;title=DCI+and+Services+%28EJB%29&#034; target=&#034;_blank&#034; title=&#034;Stumble this post&#034;&gt;&lt;img src=&#034;common/images/stumbleupon.png&#034; alt=&#034;Add this post to Stumble it&#034; border=&#034;0&#034; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a href=&#034;http://www.google.com/bookmarks/mark?op=edit&amp;amp;bkmk=http://blog.maxant.co.uk:80/pebble/2010/11/20/1290288540000.html&amp;amp;title=DCI+and+Services+%28EJB%29&#034; target=&#034;_blank&#034; title=&#034;Add this post to Google&#034;&gt;&lt;img src=&#034;common/images/google.png&#034; alt=&#034;Add this post to Google&#034; border=&#034;0&#034; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a href=&#034;http://technorati.com/faves?add=http://blog.maxant.co.uk:80/pebble/2010/11/20/1290288540000.html&#034; target=&#034;_blank&#034; title=&#034;Add this post to Technorati&#034;&gt;&lt;img src=&#034;common/images/technorati.png&#034; alt=&#034;Add this post to Technorati&#034; border=&#034;0&#034; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a href=&#034;http://www.bloglines.com/sub/http://blog.maxant.co.uk:80/pebble/2010/11/20/1290288540000.html&#034; target=&#034;_blank&#034; title=&#034;Add this post to Bloglines&#034;&gt;&lt;img src=&#034;common/images/bloglines.png&#034; alt=&#034;Add this post to Bloglines&#034; border=&#034;0&#034; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a href=&#034;http://www.facebook.com/share.php?u=http://blog.maxant.co.uk:80/pebble/2010/11/20/1290288540000.html&#034; target=&#034;_blank&#034; title=&#034;Add this post to Facebook&#034;&gt;&lt;img src=&#034;common/images/facebook.png&#034; alt=&#034;Add this post to Facebook&#034; border=&#034;0&#034; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a href=&#034;http://www.furl.net/storeIt.jsp?u=http://blog.maxant.co.uk:80/pebble/2010/11/20/1290288540000.html&amp;amp;t=DCI+and+Services+%28EJB%29&#034; target=&#034;_blank&#034; title=&#034;Add this post to Furl&#034;&gt;&lt;img src=&#034;common/images/furl.png&#034; alt=&#034;Add this post to Furl&#034; border=&#034;0&#034; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a href=&#034;https://favorites.live.com/quickadd.aspx?mkt=en-us&amp;amp;url=http://blog.maxant.co.uk:80/pebble/2010/11/20/1290288540000.html&amp;amp;title=DCI+and+Services+%28EJB%29&#034; target=&#034;_blank&#034; title=&#034;Add this post to Windows Live&#034;&gt;&lt;img src=&#034;common/images/windowslive.png&#034; alt=&#034;Add this post to Windows Live&#034; border=&#034;0&#034; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a href=&#034;http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;amp;u=http://blog.maxant.co.uk:80/pebble/2010/11/20/1290288540000.html&amp;amp;t=DCI+and+Services+%28EJB%29&#034; target=&#034;_blank&#034; title=&#034;Add this post to Yahoo!&#034;&gt;&lt;img src=&#034;common/images/yahoo.png&#034; alt=&#034;Add this post to Yahoo!&#034; border=&#034;0&#034; /&gt;&lt;/a&gt;&lt;/div&gt;
        </description>
      
      
    
    
    
    <comments>http://blog.maxant.co.uk:80/pebble/2010/11/20/1290288540000.html#comments</comments>
    <guid isPermaLink="true">http://blog.maxant.co.uk:80/pebble/2010/11/20/1290288540000.html</guid>
    <pubDate>Sat, 20 Nov 2010 21:29:00 GMT</pubDate>
  </item>
  
  <item>
    <title>DCI Plugin for Eclipse</title>
    <link>http://blog.maxant.co.uk:80/pebble/2010/11/16/1289941080000.html</link>
    
      
        <description>
          &lt;p&gt;The Data, Context, and Interaction (DCI) architecture paradigm introduces the idea of thinking in terms of roles and contexts.  See some of &lt;a target=&#034;_blank&#034; href=&#034;http://www.maxant.co.uk/whitepapers.jsp&#034;&gt;my white papers&lt;/a&gt; for a more detailed introduction into DCI, but for this blog article, consider the following example: a human could be modelled in object oriented programming by creating a super huge massive class which encapsulates all a humans attributes, their behaviours, etc.  You would probably end up with something much too complex to be really maintainable.  Think about when a human becomes a clown for a kids party; most of that behaviour has little to do with being a programmer, which is a different role which the human could play.&lt;br /&gt;
&lt;br /&gt;
So, DCI looks at the problem differently than OOP and solves it by letting the data class be good at being a data class, and putting the behaviours specific to certain roles into &amp;quot;roles&amp;quot;, which in my &lt;a target=&#034;_blank&#034; href=&#034;http://www.maxant.co.uk/tools.jsp&#034;&gt;DCI Tools for Java library&lt;/a&gt; are classes.&lt;br /&gt;
&lt;br /&gt;
Certain roles interact with each other within a given context, such as a clown entertaining kids at a birthday party.  The roles which belong to an interaction are part of the context, and in DCI the context is a class which puts data objects into specific roles, and makes them interact.  The context and its roles form the encapsulation of the behaviour.&lt;br /&gt;
&lt;br /&gt;
I have updated my library, so that there are two new Annotations, namely the @Context and @Role annotations.  The @Context annotation is simply a marker to show that a class is a context.  The @Role annotation is more important.  It is placed onto the role interface class and tells the context where to find the role implementation, and additionally requires that the programmer specifically state to which context the role belongs.&lt;br /&gt;
&lt;br /&gt;
The code ends up looking looking as follows.  First a unit test which creates and calls the context:&lt;/p&gt;
&lt;hr size=&#034;2&#034; width=&#034;100%&#034; /&gt;
&lt;div style=&#034;border: thin none; overflow: auto; width: 525px; height: 300px; background-color: rgb(255, 255, 255);&#034;&gt;
&lt;pre&gt;
    @Test
    public void testExecute() {
    	
    	//create an adult (the clown) and some children, 
    	//and let the party start...
        
    	Human adult = new Human();
        List&lt;human&gt; children = new ArrayList&lt;human&gt;();&lt;br /&gt;        Human child = new Human();&lt;br /&gt;        child.setName(&amp;quot;Johnny&amp;quot;);&lt;br /&gt;        children.add(child);&lt;br /&gt;        child = new Human();&lt;br /&gt;        child.setName(&amp;quot;Jane&amp;quot;);&lt;br /&gt;        children.add(child);&lt;br /&gt;&lt;br /&gt;        ClownContext cc = new ClownContext(adult, children.toArray());&lt;br /&gt;        cc.startParty();&lt;br /&gt;&lt;br /&gt;        //check the party went well...&lt;br /&gt;        assertEquals(0, adult.getHappiness());&lt;br /&gt;        for (Human c : children) {&lt;br /&gt;            assertEquals(1, c.getHappiness());&lt;br /&gt;        }&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;&lt;/human&gt;&lt;/human&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&lt;br /&gt;
There is nothing special about the code above.  It simply creates some data objects and passes them to the context, and then starts the party (the interaction, or use case).  Next, the context class is shown:&lt;/p&gt;
&lt;hr size=&#034;2&#034; width=&#034;100%&#034; /&gt;
&lt;div style=&#034;border: thin none; overflow: auto; width: 525px; height: 300px; background-color: rgb(255, 255, 255);&#034;&gt;
&lt;pre&gt;
/** the context in which a clown entertains some kids. */
@Context
public class ClownContext extends BehaviourInjector {

    /** the object who will play the clown role */
    private Object adult;
    
    /** the objects who will play the kid role */
    private List&lt;object&gt; children;&lt;br /&gt;&lt;br /&gt;    /**&lt;br /&gt;     * Creates a new Context object. takes &amp;quot;objects&amp;quot; rather than specific types to allow it to be reusable.&lt;br /&gt;     */&lt;br /&gt;    public ClownContext(Object adult, Object[] children) {&lt;br /&gt;        this.adult = adult;&lt;br /&gt;&lt;br /&gt;        this.children = new ArrayList&lt;object&gt;();&lt;br /&gt;&lt;br /&gt;        for (Object child : children) {&lt;br /&gt;            this.children.add(child);&lt;br /&gt;        }&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    /** start the interaction */&lt;br /&gt;    public void startParty() {&lt;br /&gt;        Clown clown = assignRole(adult, Clown.class);&lt;br /&gt;        &lt;br /&gt;        clown.applyMakeup();&lt;br /&gt;&lt;br /&gt;        IIterable&lt;kid&gt; kids = getIterable(children.iterator(), Kid.class);&lt;br /&gt;&lt;br /&gt;        clown.makeKidsLaugh(kids);&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;/kid&gt;&lt;/object&gt;&lt;/object&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&lt;br /&gt;
The context has a few noteworthy points.  First of all, it extends the &lt;code&gt;BehaviourInjector&lt;/code&gt;.  By doing this, it has access to the &lt;code&gt;assignRole(Object, Class)&lt;/code&gt; and &lt;code&gt;getIterable(Iterator, Class)&lt;/code&gt; methods.  Note the &lt;code&gt;@Context&lt;/code&gt; annotation at the top - it&#039;s important for not only helping the programmer spot that it&#039;s a context, but also for the Eclipse plugin which I created and which I introduce below.&lt;br /&gt;
&lt;br /&gt;
You might have spotted that the context above is not tightly coupled with the &lt;code&gt;Human&lt;/code&gt; class.  The reason is simply to make the context and its roles usable in the future, with data classes which I currently know nothing about.  It is feasible that a robot might one day do parties by dressing up as a clown!&lt;br /&gt;
&lt;br /&gt;
Assigning the role is where the behaviour is &amp;quot;injected&amp;quot; into the data object.  The iterable which is created is a special role, which can automatically cast the human children into the role of a kid attending a party.&lt;br /&gt;
&lt;br /&gt;
Next, take a look at the role interface.  This class defines the methods which data object must have to play the role, as well as the behaviour which will be added to the object.&lt;/p&gt;
&lt;hr size=&#034;2&#034; width=&#034;100%&#034; /&gt;
&lt;div style=&#034;border: thin none; overflow: auto; width: 525px; height: 300px; background-color: rgb(255, 255, 255);&#034;&gt;
&lt;pre&gt;
@Role(contextClass = ClownContext.class, 
	  implementationClass = ClownImpl.class)
public interface Clown {

	/** put some makeup on (initialise) */
	public void applyMakeup(); // role

	/** makes kids laugh */
	public void makeKidsLaugh(IIterable&lt;kid&gt; kids); // role&lt;br /&gt;	&lt;br /&gt;	public void setHairColour(Color c); // data&lt;br /&gt;	&lt;br /&gt;}&lt;br /&gt;&lt;/kid&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&lt;br /&gt;
The role interface has the &lt;code&gt;@Role&lt;/code&gt; annotation which tells the behaviour injector firstly to which context the role belongs, and secondly where the actual implementation (behaviour) can be found. In the clown role specified above, two behaviours are added (applying make up and making kids laugh).  The application of make up additionally requires that the clown be able to set his hair colour, so that method which the human class must have is also specified here.&lt;br /&gt;
&lt;br /&gt;
Finally, the role implementation class:&lt;/p&gt;
&lt;hr size=&#034;2&#034; width=&#034;100%&#034; /&gt;
&lt;div style=&#034;border: thin none; overflow: auto; width: 525px; height: 300px; background-color: rgb(255, 255, 255);&#034;&gt;
&lt;pre&gt;
public class ClownImpl {

	@Self
	private Clown self;
	
	/** @see Clown#applyMakeup() */
	public void applyMakeup(){
		self.setHairColour(Color.GREEN);
	}

	/** @see Clown#makeKidsLaugh(IIterable) */
	public void makeKidsLaugh(IIterable&lt;kid&gt; kids) {&lt;br /&gt;		for (Kid kid : kids) {&lt;br /&gt;			kid.laugh();&lt;br /&gt;			System.out.println();&lt;br /&gt;		}&lt;br /&gt;	}&lt;br /&gt;}&lt;br /&gt;&lt;/kid&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&lt;br /&gt;
The role implementation does not need to implement the role interface!  It is simply a class which the behaviour injector relies upon to find behaviour which it cannot find in the data object.  The &lt;code&gt;@Self&lt;/code&gt; annotation on the clown field called self is a reference to the object playing the clown role, and is similar to &amp;quot;this&amp;quot;, just that &amp;quot;this&amp;quot; would be a reference to the instance of the role implementation, rather than the object playing the role.  It allows you to access the data methods of the data object.&lt;br /&gt;
&lt;br /&gt;
Now, as well as helping the programmer to mentally associate contexts with roles, these two annotations allow static analysis of the code to be performed.  Using the Eclipse JDT framework, it is possible to obtain individual tokens of source code, even when the class files don&#039;t compile, in order to build up a model of contexts and roles within a Java project.  I created a little DCI Outline view for Eclipse, similar to the class outline, except rather than showing classes, it shows the contexts and their associated roles. Here&#039;s a screen shot:&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&#034;/pebble/images/dciView1.gif&#034; alt=&#034;&#034; /&gt;&lt;br /&gt;
&lt;br /&gt;
The view shows all contexts which it finds in the selected Java project.  For each context, it shows the package, followed by a list of its methods, and then all the roles that belong to it.&lt;br /&gt;
&lt;br /&gt;
For each role interface, the package is listed, followed by a list of methods which the role interface contains.  At the bottom of a role branch, is the role implementation class.&lt;br /&gt;
&lt;br /&gt;
The idea of this plugin is to give the programmer a view of what contexts are available and what roles they contain.  It puts contexts, roles and their methods into the mind of the programmer letting them think in terms of DCI, exactly the same way which a standard class browser lets the programmer think in terms of classes.&lt;br /&gt;
&lt;br /&gt;
Double clicking on a role interface, role implementation or context will open it in the editor.&lt;br /&gt;
&lt;br /&gt;
The plugin has limited validation capabilities and can determine for example, if a context specified in a role annotation cannot be found within the project, and highlights this so that the programmer can see there is a problem.  In such cases, the view looks like this:&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&#034;/pebble/images/dciView2.gif&#034; alt=&#034;&#034; /&gt;&lt;br /&gt;
&lt;br /&gt;
The code from this example can be downloaded &lt;a href=&#034;/pebble/files/DCIClownExample.zip&#034;&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
A full instruction manual, together with the the DCI Tools for Java library, and the Eclipse Update site can be found at &lt;a href=&#034;http://www.maxant.co.uk/tools.jsp&#034;&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Attention: No clowns were harmed during the writing of this blog.&lt;br /&gt;
&lt;br /&gt;
&amp;copy; 2010 Ant Kutschera&lt;/p&gt;&lt;div class=&#034;tags&#034;&gt;&lt;span&gt;Social Bookmarks : &lt;/span&gt;&amp;nbsp;&lt;a href=&#034;http://slashdot.org/bookmark.pl?url=http://blog.maxant.co.uk:80/pebble/2010/11/16/1289941080000.html&amp;amp;title=DCI+Plugin+for+Eclipse&#034; target=&#034;_blank&#034; title=&#034;Add this post to Slash Dot&#034;&gt;&lt;img src=&#034;common/images/slashdot.png&#034; alt=&#034;Add this post to Slashdot&#034; border=&#034;0&#034; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a href=&#034;http://digg.com/submit?url=http://blog.maxant.co.uk:80/pebble/2010/11/16/1289941080000.html&amp;amp;title=DCI+Plugin+for+Eclipse&#034; target=&#034;_blank&#034; title=&#034;Digg this post&#034;&gt;&lt;img src=&#034;common/images/digg.png&#034; alt=&#034;Add this post to Digg&#034; border=&#034;0&#034; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a href=&#034;http://reddit.com/submit?url=http://blog.maxant.co.uk:80/pebble/2010/11/16/1289941080000.html&amp;amp;title=DCI+Plugin+for+Eclipse&#034; target=&#034;_blank&#034; title=&#034;Add this post to Reddit&#034;&gt;&lt;img src=&#034;common/images/reddit.png&#034; alt=&#034;Add this post to Reddit&#034; border=&#034;0&#034; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a href=&#034;http://del.icio.us/post?url=http://blog.maxant.co.uk:80/pebble/2010/11/16/1289941080000.html&amp;amp;title=DCI+Plugin+for+Eclipse&#034; target=&#034;_blank&#034; title=&#034;Save this post to Del.icio.us&#034;&gt;&lt;img src=&#034;common/images/delicious.png&#034; alt=&#034;Add this post to Delicious&#034; border=&#034;0&#034; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a href=&#034;http://www.stumbleupon.com/submit?url=http://blog.maxant.co.uk:80/pebble/2010/11/16/1289941080000.html&amp;amp;title=DCI+Plugin+for+Eclipse&#034; target=&#034;_blank&#034; title=&#034;Stumble this post&#034;&gt;&lt;img src=&#034;common/images/stumbleupon.png&#034; alt=&#034;Add this post to Stumble it&#034; border=&#034;0&#034; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a href=&#034;http://www.google.com/bookmarks/mark?op=edit&amp;amp;bkmk=http://blog.maxant.co.uk:80/pebble/2010/11/16/1289941080000.html&amp;amp;title=DCI+Plugin+for+Eclipse&#034; target=&#034;_blank&#034; title=&#034;Add this post to Google&#034;&gt;&lt;img src=&#034;common/images/google.png&#034; alt=&#034;Add this post to Google&#034; border=&#034;0&#034; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a href=&#034;http://technorati.com/faves?add=http://blog.maxant.co.uk:80/pebble/2010/11/16/1289941080000.html&#034; target=&#034;_blank&#034; title=&#034;Add this post to Technorati&#034;&gt;&lt;img src=&#034;common/images/technorati.png&#034; alt=&#034;Add this post to Technorati&#034; border=&#034;0&#034; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a href=&#034;http://www.bloglines.com/sub/http://blog.maxant.co.uk:80/pebble/2010/11/16/1289941080000.html&#034; target=&#034;_blank&#034; title=&#034;Add this post to Bloglines&#034;&gt;&lt;img src=&#034;common/images/bloglines.png&#034; alt=&#034;Add this post to Bloglines&#034; border=&#034;0&#034; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a href=&#034;http://www.facebook.com/share.php?u=http://blog.maxant.co.uk:80/pebble/2010/11/16/1289941080000.html&#034; target=&#034;_blank&#034; title=&#034;Add this post to Facebook&#034;&gt;&lt;img src=&#034;common/images/facebook.png&#034; alt=&#034;Add this post to Facebook&#034; border=&#034;0&#034; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a href=&#034;http://www.furl.net/storeIt.jsp?u=http://blog.maxant.co.uk:80/pebble/2010/11/16/1289941080000.html&amp;amp;t=DCI+Plugin+for+Eclipse&#034; target=&#034;_blank&#034; title=&#034;Add this post to Furl&#034;&gt;&lt;img src=&#034;common/images/furl.png&#034; alt=&#034;Add this post to Furl&#034; border=&#034;0&#034; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a href=&#034;https://favorites.live.com/quickadd.aspx?mkt=en-us&amp;amp;url=http://blog.maxant.co.uk:80/pebble/2010/11/16/1289941080000.html&amp;amp;title=DCI+Plugin+for+Eclipse&#034; target=&#034;_blank&#034; title=&#034;Add this post to Windows Live&#034;&gt;&lt;img src=&#034;common/images/windowslive.png&#034; alt=&#034;Add this post to Windows Live&#034; border=&#034;0&#034; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a href=&#034;http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&amp;amp;u=http://blog.maxant.co.uk:80/pebble/2010/11/16/1289941080000.html&amp;amp;t=DCI+Plugin+for+Eclipse&#034; target=&#034;_blank&#034; title=&#034;Add this post to Yahoo!&#034;&gt;&lt;img src=&#034;common/images/yahoo.png&#034; alt=&#034;Add this post to Yahoo!&#034; border=&#034;0&#034; /&gt;&lt;/a&gt;&lt;/div&gt;
        </description>
      
      
    
    
    
    <comments>http://blog.maxant.co.uk:80/pebble/2010/11/16/1289941080000.html#comments</comments>
    <guid isPermaLink="true">http://blog.maxant.co.uk:80/pebble/2010/11/16/1289941080000.html</guid>
    <pubDate>Tue, 16 Nov 2010 20:58:00 GMT</pubDate>
  </item>
  
  </channel>
</rss>

