<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Stephen's Blog &#187; Architecture</title>
	<atom:link href="http://tjasink.com/blog/category/architecture/feed/" rel="self" type="application/rss+xml" />
	<link>http://tjasink.com/blog</link>
	<description>Thoughts on Software Development and Life in General</description>
	<lastBuildDate>Sun, 10 Feb 2008 10:11:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Domain-Specific Levels</title>
		<link>http://tjasink.com/blog/2007/06/20/domain-specific-levels/</link>
		<comments>http://tjasink.com/blog/2007/06/20/domain-specific-levels/#comments</comments>
		<pubDate>Wed, 20 Jun 2007 20:59:50 +0000</pubDate>
		<dc:creator>Stephen Tjasink</dc:creator>
				<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://tjasink.com/blog/2007/06/20/domain-specific-levels/</guid>
		<description><![CDATA[Every now and then, I start thinking about domain-specific languages and about how it would be really nice if we could have a relevant domain-specific language for each piece of code that we needed to write. Recently, I realised that if we ensure that we &#8220;code at the right level&#8221; then we can go a [...]]]></description>
			<content:encoded><![CDATA[<p>Every now and then, I start thinking about domain-specific languages and about how it would be really nice if we could have a relevant domain-specific language for each piece of code that we needed to write. Recently, I realised that if we ensure that we &#8220;code at the right level&#8221; then we can go a long way to achieving it.</p>
<p>An example of coding at the right level: If you were performing a database query, you would either specify the database query as SQL (or another query language possibly) and issue the query, or you would ask your object-relational mapping layer to do it for you. Either way, you are only dealing with querying the database rather than worrying about opening a network socket to the database server, sending the query across the wire in the correct format, marshalling the results, etc, because these operations are at a much lower level and you&#8217;ll have a library or database driver to do them for you. Likewise, you wouldn&#8217;t decide in the same method which web page to direct the user to next, because that is a much higher level. This is an example of an operation that would happen in a method of a typical DAO object and any non-DAO operations are clearly out of scope.</p>
<p>The same is relevant in other situations. Let&#8217;s say we have a web application and have split it up into these layers: web layer (e.g. a Spring MVC Controller or a Struts Action), business delegate layer and DAO layer. In the web layer, all we are concerned with is getting the relevant data from the request, passing it to the relevant business delegate and then forwarding to the correct page depending on the result of the delegate call. At no point should we be worried about performing any business operations ourselves, and certainly at no point should we be concerned about interacting directly with the database. As such, if we had a simple domain-specific web controller language, we could code displaying a product&#8217;s information as something like this:</p>
<p><code>get productId from request<br />
if productId missing then display error 500 page<br />
get productData for productId<br />
if successful then display product page with productData<br />
if permission denied then display error 403 page<br />
if not found then display error 404 page<br />
</code><br />
Which is a fairly typical web request pattern. To convert this into Java, we would get something like this (I had to fight with Wordpress a bit to get it to format):</p>
<p><code>String productId = request.getParameter("productId");<br />
if (productId == null)<br />
{<br />
<font color="#ffffff">..</font>redirect(ERROR_500);<br />
}<br />
else<br />
{<br />
<font color="#ffffff">..</font>try<br />
<font color="#ffffff">..</font>{<br />
<font color="#ffffff">....</font>Product product = productLoadDelegate.loadForProductId(productId);<br />
<font color="#ffffff">....</font>request.setAttribute("product", product);<br />
<font color="#ffffff">....</font>redirect(PRODUCT_PAGE);<br />
<font color="#ffffff">..</font>}<br />
<font color="#ffffff">..</font>catch (NotFoundException e) { redirect(ERROR_404); }<br />
<font color="#ffffff">..</font>catch (PermissionDeniedException e) { redirect(ERROR_403); }<br />
}<br />
</code></p>
<p>We&#8217;ve got a bit more syntax here than in our domain-specific language above, but all the concepts are the same. Nowhere are we dealing with database connections. Nowhere are we worrying about network sockets. Nowhere are we worrying about where our product data is stored.</p>
<p>If we can follow the principle of treating each class or method as a domain-specific area and program in Java or our language of choice as if it was a domain-specific language, then our code is much neater and more maintainable. It&#8217;s a game to play to enforce separation of concerns.</p>
<p>I&#8217;ll probably come back to this at some point when I&#8217;ve thought about it a bit more.</p>
]]></content:encoded>
			<wfw:commentRss>http://tjasink.com/blog/2007/06/20/domain-specific-levels/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Pragmatic Java Architect</title>
		<link>http://tjasink.com/blog/2007/04/27/the-pragmatic-java-architect/</link>
		<comments>http://tjasink.com/blog/2007/04/27/the-pragmatic-java-architect/#comments</comments>
		<pubDate>Fri, 27 Apr 2007 15:15:47 +0000</pubDate>
		<dc:creator>Stephen Tjasink</dc:creator>
				<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.tjasink.com/blog/?p=4</guid>
		<description><![CDATA[I recently attended a couple of &#8220;unconference&#8221; style sessions called The Pragmatic Java Architect, run by the people from The Pragmatic Architect.
In retrospect, I found it interesting in that not many of the discussions focussed specifically on Java; most of them were about what an architect does and how an architect interacts with the rest [...]]]></description>
			<content:encoded><![CDATA[<p>I recently attended a couple of &#8220;unconference&#8221; style sessions called The Pragmatic Java Architect, run by the people from <a target="_blank" href="http://www.thepragmaticarchitect.com/">The Pragmatic Architect</a>.</p>
<p>In retrospect, I found it interesting in that not many of the discussions focussed specifically on Java; most of them were about what an architect does and how an architect interacts with the rest of the team and organisation. This could be due to the fact that most of the attendees described themselves as programmers who were interested in becoming architects, rather than people who were already architects and were therefore more interested in the architect&#8217;s role in general rather than about specific points.  I was hoping that more of the people that had attended the first one would attend the second so that the discussions could pick up where they left off, but it was mostly a different group of people so that didn&#8217;t happen as much as I had hoped.</p>
<p>It could also be due to the fact that the term means different things to different people and, importantly, to different organisations.   Some organisations have a very well defined architect role, but this definition can vary between organisations.  Some organisations don&#8217;t have official architects and either don&#8217;t realise that architecture needs to happen or think that it will just happen automatically.  Other organisations do recognise the role of the architect, but do not have people with that specific title; rather the responsibility of the architecture falls to someone who also has a number of other responsibilities.  Mine is in the last of these groups but I am trying to change that.</p>
<p>People agreed on a number of points over the two days though.  Those that have stuck with me are these, all of which I feel are important:</p>
<ol>
<li>Having somebody who plays the role of the architect is important to successful project delivery.  This person might not have the title of architect, but they must have the relevant experience and must have enough available time to devote to defining the architecture amongst whatever other responsbilities they have on the project and elsewhere.</li>
<li>A good architect is usually someone who has already been a relatively senior developer.  This gives him an essential wealth of knowledge and experience on which to draw when making architectural decisions.</li>
<li>An architect should still get time to do development.  There are various reasons for this, which I&#8217;ll discuss more fully later.</li>
<li>Successful implementation of an architecture can depend on whether or not the architect is part of the team on an ongoing basis.  This allows him to see whether or not the decisions he made are the right decisions and also to ensure that the programmers in the team are using the architecture in the way it was designed to be used.  This ties in with point three.</li>
</ol>
<p>People seemed to agree on these points at both sessions.  Or maybe the people who disagreed just kept quiet. <img src='http://tjasink.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>To expand on points three and four above: there are a few different ways in which the architect can be involved in development and ongoing projects.  These each have their own reasons for them and benefits gained from them.  We got to discussing these more fully in the latter part of the second session.  These are a combination of my own thoughts and those that came out of the session:</p>
<p>An architect can develop architectural spikes (or &#8220;tracer bullets&#8221;) early in the project as a basic check that the architecture that he has defined is suitable for the task.  This is a proof of concept task and is important as an early verification of the architecture.  However, the architect can still be involved in day to day development on the project on an ongoing basis after this task is completed.</p>
<p>Being involved in this manner allows the architect to get first hand experience of how his architecture works in practice and learns from his mistakes and also from his good decisions.  He also learns from the mistakes of the developers using the architecture.  These mistakes might be on the side of the developer, in which case the architect can guide them to using the architecture in the way it was intended, or they might be on the side of the architecture, in which case the architect considers adjustments that can be made and learns a valuable lesson for next time.  It also increases the chances of the architect gaining the respect of the developers on the project because they see that he is willing to work with his own architecture.  This is important to get the developers to &#8220;buy in&#8221; to the architecture rather than having them disregard it as an annoyance that is being imposed on them by an external party.</p>
<p>An architect also needs to keep up to date with new technologies, products, libraries, etc, and this is best done by experimenting with them.  If he can not get R&#038;D time in which to do this, then he can try to get a few small tasks on another project using the technology or on an internal project if there are any available.</p>
<p>In my organisation, the architect is almost always the &#8220;tech lead&#8221; of the project which is a combination of the roles of architect and that of technical team lead.  I prefer to be involved in development &#8211; either helping people fix bugs, picking up a few tasks here and there or pairing with different developers for short periods &#8211; but find it important not to have actual development tasks assigned to me.  If I do, then these usually get in the way of my architectural and team leading responsibilities.</p>
<p>I have written a lot more than I had planned to and, in doing so, have some up with a number of other topics that I would like to cover but I&#8217;ll decide that I&#8217;m finished now and address those in other posts soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://tjasink.com/blog/2007/04/27/the-pragmatic-java-architect/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
