So, in the spirit of pico-projects, I've started building that address book application I mentioned awhile ago and I want to start writing about it as I go.

First off, hopefully you'll notice the quick diagram I threw together in OmniGraffle. This is a sort of rough sketch of the loosely-joined architecture I want to explore with this thing.

  • Data: This is where address book entries live.
  • Model: A set of objects encapsulating the data, this is how address book entries will be accessed.
  • REST API: Model objects exposed as resources identified by URI, serialized and deserialized as XML, and manipulated by GET / PUT / POST / DELETE methods.
  • XSLT Filter: XML data produced by REST API calls can be first passed through XSL at a given URL before being served up as a response.
  • HTML, CSS, JavaScript: Thanks to the XSLT filter layer, the XML vocabulary used to describe address book entries can be transformed into user interface presentation.
  • HTTP: Everything happens via HTTP...
  • Web Browser Client: ...and everything is viewed in a web browser.

Now, I call this a loosely-joined architecture because I want to stress that you should be able to swap out just about any part of this whenever you want.

Want the Data to be in MySQL? Fine. Want it to be in flat files? Fine. Just make sure the Model can cope while maintaining a consistent interface for the REST API. Want to change the user interface in the browser? Great-- ideally, all you have to do is change some XSLT files. I'm writing everything from the XSLT Filter down to the Model in Python. Don't like that? Fine. Rewrite it all in Perl, and hopefully everything from the XSLT up to the browser will still be useful to you.

At some point, you might even want to ditch the browser for a native desktop client. Fabulous! Just ignore everything past the REST API and HTTP, don't use any XSLT in the Filter, and use the API and XML directly.

I don't think any of this is particularly revolutionary-- although I thought it was when I first saw Amazon Web Services doing some of this, and I hope to throw a little GMail in as well. I hope that this will all be useful as I muddle through explaining what I'm doing. In the meantime, you can see me getting the stage set as I start checking things into my Subversion repository over here:

Archived Comments

  • Don't forget that with XSLT you could also rewrite it to SyncML and vCard and so on, so you could also sync it with external devices and iSync (assuming Apple finally opens up a third-party conduit system in Tiger, preferably one which doesn't require .Mac to function).
  • I'm looking forward to what becomes of this little app. Address book apps seem to all be severely lacking (with the possible exception of OS X's app) and need some fresh thinking. Making the components flexible could be a great way for some change to come about. Keep us posted!
  • Well, hopefully it's not too disappointing, but this address book app will be pretty anemic in terms of use as a serious app. Implementing an address book is just an excuse to run through the various technologies involved. However, there's nothing stopping anyone (including me) from enhancing the thing when I'm done and making it into a serious offering with vCard support and such.
  • (Hmm, posted last week but it never showed up...) What are you thinking in terms of having this data store actually used by, say, your email client? Make it look like an LDAP server, maybe?
  • How Funny! I've been thinking about doing the same thing. The only difference is I was thinking about doing address book, bookmarks and my RSS feeds. Those are the things I miss the most when I am away.
  • I'm curious to see where this little app is going its still needs more work
  • I see you working with Tarawa in there. Did you like it? Is it being worked on at all?