InfoQ

News

Creating Domain Specific Languages with Groovy

Posted by Craig Wickesser on Feb 21, 2008

Community
Java
Topics
Domain Specific Languages
Tags
Grails ,
Groovy

Today marked the first day of the Groovy/Grails Experience, also known as 2GX, in Reston, Virginia. The conference spans three days and includes forty 90-minute sessions, panel discussions and code workshops. One of the first sessions of the day was Venkat Subramaniam's "DSL In Groovy." Domain specific languages have appeared on InfoQ in the past including an Introduction to Domain Specific Languages by Martin Fowler and Ian Roughley's article on Building Domain-Specific Languages in JRuby.

Venkat's session provided information about what DSLs are, there characteristics, the types of DSLs (internal vs. external), as well as, the Groovy features for creating and using them. Venkat primarily focused on creating internal DSLs using some of Groovy's built-in features:

  • Method Missing - a special method that is called when a method can not be found allowing a developer to intercept the call
  • Categories - allows new methods to be added to any class at runtime
  • ExpandoMetaClass - a dynamically expandable bean

Besides these three features Venkat discussed the lack of constraints that Groovy places on developers and additional features that promote DSLs including:

  • Closures
  • Relaxed rules on the use of parentheses
  • Built-in list and map syntax
  • Property Missing
  • Ability to dynamically add methods to an interface and have concrete classes also have the methods
In deciding which method to use when creating DSLs Venkat did explain the primary differences between using Categories versus the ExpandoMetaClass,
  • Categories allows you to tactically enhance a class
  • ExpandMetaClass is far reaching, global in nature
  • You may not want to affect a class globally
  • Categories provide controlled flexibility

 
Domain specific languages are continuing to stay in the spotlight and can be created and used with Groovy with its built-in features.

Video? by Tom Nichols Posted Feb 22, 2008 7:26 AM
Re: Video? by craig w Posted Feb 22, 2008 1:04 PM
  1. Back to top

    Video?

    Feb 22, 2008 7:26 AM by Tom Nichols

    Was/ are the presentations being recorded? It would be great to see video/ slides/ notes from the presentations.

  2. Back to top

    Re: Video?

    Feb 22, 2008 1:04 PM by craig w

    I didn't see any video or audio recording setup. The presentations are available to conference goers and may be available on their website.

Educational Content

Brian Marick on 4 Challenges and 5 Guiding Values of Agile Software Development

Brian Marick takes us through a quick tour of the most important values and challenges to adopting Agile successfully (they aren't the typical challenges and values we hear in the community).

Are You a Software Architect?

The line between development and architecture is tricky. Does it exist at all? Is an ivory tower actually needed? There's a balance in the middle, but how do you move from developer to architect?

Agile – A Way of Life and Pragmatic Use of Authority

The word 'authority' sometimes produces an allergic response in hard-line agilists. Freedom and authority – both are bad if misused and both are good if used in right spirit for a noble cause.

Getting Started with Grails, Second Edition

"Getting Started with Grails" brings you up to speed on this modern web framework. Companies as varied as LinkedIn, Wired, and Taco Bell are all using Grails. Are you ready to get started as well?

Using ITIL V3 as a Foundation for SOA Governance

Those familiar with only ITIL V2 often scoff at the thought that ITIL could serve as a governance framework for SOA. With ITIL V3, the focus of the framework shifted towards service-orientation.

Adrian Colyer on AspectJ, tc Server and dm Server

SpringSource CTO Adrian Colyer discusses AspectJ, SpringSource's dm Server and tc Server products, OSGi and Scrum.

Adam Wiggins on Heroku

Heroku's Adam Wiggins talks about Rails, Background Jobs, Add-Ons, Ruby, and how Heroku manages to work around Ruby's inefficiencies using Erlang and other languages.

SOA as an Architectural Pattern: Best Practices in Software Architecture

For Grady Booch the foundation of a good architecture is patterns, SOA being just one of many patterns. In this Second Life presentation, Booch attempts to bring more clarity on what architecture is.