Peter Ledbrook
A search for meaning in software and life-
DRY JSON and XML with Grails
Posted on September 30th, 2011 1 commentHave you ever tried to support both JSON and XML in your REST API with Grails? There is the very straightforward:
class MyController { def index = { def objs = ... withFormat { json { render objs as JSON xml { render objs as XML } } } }It works well and is trivial to implement, but it does suffer from a significant problem: you have no control over the JSON or XML generated. So if you’re serialising domain classes, any change to your internal domain model will be reflected in the public REST API. That is Not A Good Thing.
You might then look into using the JSON and XML builders instead, but you will soon discover that they have different syntax and the structure of JSON and XML is different anyway. So you find yourself writing separate code to render JSON and XML for each action that’s part of your REST API. That’s more work than you really want.
Can you somehow marry the two to get the best of both worlds: minimal coding but control over what goes into the public API? If you don’t mind a few constraints on the output, I think you can. My proposal boils down to:
- Transform the data in nested maps and lists of maps, filtering out anything you don’t want in the public API
- Use ‘... as JSON‘ for JSON responses
- Use a custom method for rendering the same data as XML
Let’s take an example from the grails.org application. I want to generate a list of plugins in both JSON and XML forms so that consumers have a choice of format. The first step is easy: get a list of the plugins I want to render from the database. The next step involves transforming those plugin domain instances into a hierarchical structure based on maps. Here’s the code I came up with:
class PluginController { ... protected transformPlugins(plugins) { return [ pluginList: plugins ? plugins.collect { p -> transformPlugin(p) } : [] ] } protected transformPlugin(plugin) { def pluginMap = [ name: plugin.name, version: plugin.currentRelease, title: plugin.title, author: plugin.author, authorEmail: plugin.authorEmail, description: plugin.summary, grailsVersion: plugin.grailsVersion, documentation: plugin.documentationUrl, file: plugin.downloadUrl, rating: plugin.avgRating ] if (plugin.issuesUrl) pluginMap.issues = plugin.issuesUrl if (plugin.scmUrl) pluginMap.scm = plugin.scmUrl return pluginMap } ... }The dynamic nature of Groovy and its expressiveness make the transformation pretty simple to effect. This could probably be simplified even further if we had something similar to the bindData() method that would map all properties of a domain instance to Map entries except those specified in an exclusion list.
Rendering the plugins as JSON then becomes a simple matter of:
def plugins = Plugin.list(...) render transformPlugins(plugins) as JSON
since JSON maps perfectly to the map structure I’ve created. XML is a trickier proposition because it doesn’t have a straightforward concept of objects and lists. We could use as XML, but then we would end up with a whole bunch of <map> and <list> elements. No, we have to use a different approach.
I plumped for using the render() method in its XML builder form:
class PluginController { ... protected renderMapAsXml(map, root = "root") { render contentType: "application/xml", { "${root}" { mapAsXml delegate, map } } } protected mapAsXml(builder, map) { for (entry in map) { if (entry.value instanceof Collection) { builder."${entry.key}" { for (m in entry.value) { "${entry.key - 'List'}" { mapAsXml builder, m } } } } else { builder."${entry.key}"(entry.value, test: "test") } } } ... }So now rendering the plugins as XML becomes:
def plugins = Plugin.list(...) renderMapAsXml transformPlugins(plugins), "plugins"
where the second argument is the name of the root element in the generated XML. The great thing is, this method can be applied to _any_ transformed data as it’s not specific to plugins.
One thing to note is that the mapAsXml() method assumes that the name of any map key that has a list as its value consists of ‘<name>List’. The corresponding XML becomes a parent <nameList> element with nested <name> elements for each of the list elements. This convention simplifies the whole process without being excessively onerous.
So there you are: Don’t Repeat Yourself rendering with JSON and XML. It may not be the most efficient approach computationally, but it will save a fair bit of development and maintenance time. And don’t forget that you always have the option of caching the responses.
-
Pub language discussion in London
Posted on July 19th, 2010 No commentsFor those of you that aren’t members of the London Java Community there has been a pretty active discussion going on through the mailing list about learning a new language (and which one to learn).
The conversation will no doubt be continuing at the monthly social event (which goes out to members of the Clojure, Scala & Groovy communities in London) tomorrow night. Feel free to come down and fight for Groovy’s corner: http://www.meetup.com/Londonjavacommunity/calendar/13588662/
-
London GGUG, 17th May – DSLs in Groovy & Grails 1.3
Posted on May 6th, 2010 1 commentI’m pleased to announce that the next London GGUG on the 17th May will have a guest from the US: Peter Bell. He’ll be giving a talk on the practical development of a Groovy DSL with emphasis on the practical side. As he says on his blog, this is for both people that want to go further with DSL development and those that simply would like to see in what ways a DSL can help them.
I’ll be speaking on the new features that come with Grails 1.3, focusing in particular on plugins deployed to Maven-compatible repositories.
You can register for the event on the SkillsMatter website, where you can also see synopses of the talks and the speaker bios. Please register soon and I hope to see you there!
-
Testing Groovy code – an undesirable burden?
Posted on April 13th, 2010 8 commentsMany of the complaints I’ve heard directed at Groovy and Grails derive from the same issue: the compiler doesn’t pick up type errors. People worry that simple typos will make it into production and that they’ll be less productive due to MissingMethod and MissingProperty exceptions popping up when they run the application.
The standard answer to this is a simple one: write tests for your code. In fact, prefer test-driven (or test-first) development. Yet this doesn’t seem to satisfy some people. “What projects do you know that have 100% test coverage?” One or two that have close to 100%. But are the rest reliable? No, not even the Java-based ones. Any code that isn’t tested has a significantly high chance of being buggy. How can this be a serious argument against dynamic languages?
That’s not to say I think dynamic languages should take over from static languages. Both have their place and deciding which to use for any given task will often come down to personal preference. They both have their strengths and weaknesses, but a discussion of those will have to come another time.
Too much testing!
Another argument I’ve heard is that dynamic languages require more testing because you have to explicitly test for type errors that would otherwise be picked up by the compiler. I think this is frankly rubbish. What do we do when we’re testing? We’re checking that code behaves as expected given certain inputs. If there are any type errors in the code under test, you won’t see the expected behaviour.
Let me demonstrate. Say we have a Grails controller {{MyController}} with a corresponding unit test. The test starts simply:
package org.example class MyControllerUnitTests extends grails.test.ControllerUnitTestCase { void testIndex() { controller.index() } }All we do is invoke the index action on the test controller. Now see what happens when we run the test against this controller code:
package org.example class MyController { def index = { def id = parms.id render "You have reached ID ${ids}" } }If you run the test in SpringSource Tool Suite, you’ll see something like this:

As you can probably tell, the test is failing because the variable parms does not exist. Not surprising since this was a deliberate typo. Once you correct that typo, the test fails on the next one, ids. Change that to id and the test is now passing.
So, even though the test simply executes the action and doesn’t even bother checking the results, we get feedback on missing properties and methods. Granted, the feedback isn’t as instantaneous as you get in an IDE with a statically typed language, but in my experience it’s not a huge hit on productivity. And while we’re on IDEs, I know that both STS and IntelliJ IDEA will underline properties and methods it can’t resolve, so you would probably notice that parm and ids were mistyped before running the test.
This doesn’t really do much for my argument yet because I’ve just shown that you need an “extra test” to get the same checks you’d get with a static language. But remember that the aim of a test is to ensure that code behaves as it should, so we should check the action renders the string we expect! That’s easily done:
package org.example class MyControllerUnitTests extends grails.test.ControllerUnitTestCase { void testIndex() { controller.params.id = 10 controller.index() assertEquals "You have reached ID 10", mockResponse.contentAsString } }The test still passes, but it now checks that the action is rendering the appropriate string to the response. The key point I want to make here is that the test is no different than it would be if we were testing Java code, yet it will still pick up typos.
What about type-checking?
I may have justified my position when it comes to missing methods and properties, but what about real type errors, such as using a string where an integer is expected or vice versa? This is an interesting question because in dynamic languages, it’s typically the wrong one to ask. How can you have a type error in a dynamically typed language? You might have some code like this:
def n = 100 n = n.substring(1)
which you may see as a type error (a number is being treated like a string), but as far as the language is concerned all we have is a missing method on the value of n. This is important because you could very well add the method substring() to integers, in which case the code would work:
Integer.metaClass.substring = { start -> return delegate.toString().substring(start) } def n = 100 n = n.substring(1)In other words, “type errors” in a dynamic language are simple missing method or property exceptions, which I’ve already demonstrated will be covered by your normal tests (without any extra shenanigans).
I would stop there, but that isn’t the whole story when it comes to Groovy. After all, it has static types! It also frequently interfaces with (statically typed) Java code. How does this affect our testing? Ah, I wish there was a simple answer to this. In some ways, passing the incorrect type to a method will be picked up. Try running this script:
def someMethod(String str) { println "Some method: $str" } someMethod(100)Boom! You’ll get a missing method exception because Groovy can’t find an instance of someMethod() that takes an integer. Unit tests can handle cases like this, but in practice such problems raise their head once you start wiring your objects together and they start interacting with each other. At that point, you have to start thinking about integration tests – a topic for another time.
Have I convinced you?
The main thrust of this blog post has been to highlight that your bog standard unit tests, which you can run easily from your IDE, will pick up those typos and “type errors” you’re worried about without you having to do any extra work. All you need to do is focus on writing tests that check the behaviour of your code. It’s not trivial to write thorough tests, but that’s independent of the language you use.
Something else you should bear in mind is that It’s a lot easier to test code written in a dynamic language because you don’t have to always create objects of the correct type – they just have to have the appropriate methods and properties. So dynamic languages both strongly encourage you to adopt best practice and make that best practice easier.
Despite all this, I understand that it can be difficult in many environments to write tests for code, let alone write tests before writing any code. But I think this is a problem of culture and habit. Once you get used to writing tests, and then writing them first, the whole process becomes easier. You then find you have more confidence in your code. I can only strongly recommend that everyone takes any opportunity they can to try this approach out and get used to it. You never know, the managers may even come round to realising it’s a good idea!
-
GitHub Pages: publish your Grails plugin docs
Posted on March 8th, 2010 12 commentsCurrently, the primary site for Grails plugin documentation is the plugin portal on the Grails web site. The trouble with the portal is that it doesn’t readily support multi-page documentation. On top of that, you can use gdoc to write a user guide for your plugin, but where will the generated manual go?
Thanks to Luke Daley, I discovered GitHub Pages as a potential solution for those plugins I have hosted on GitHub. This feature allows you to create simple websites on a per-project basis.
Getting started
Before you can start publishing websites to GitHub, you first have to create a ‘personal’ page. The process is straightforward: create a new GitHub repository, clone it locally, add an index page, and then push your additions to GitHub.
For example, let’s say your GitHub username is ‘franklin’. First, create a new GitHub repository with the name franklin.github.com. This repository will store your personal website. Once that’s ready, clone it and add an index page:
$ git clone git@github.com:franklin/franklin.github.com.git franklin.github.com $ cd franklin.github.com $ touch index.html $ git add . $ git push origin master
After the above steps, you will have a blank home page for http://franklin.github.com/. Note that it can take a while for your GitHub Pages site to activate. Also, you can access the URL http://<username>.github.com/ before you perform the above steps and you will see some instructions for setting up the various pages.
Now that you have a personal Pages site, you can create project sites with URLs of the form http://<username>.github.com/<projectname>/. The process for this is trickier, so I refer you to the instructions on the GitHub Pages. You can either do it via your local git, or you can got to the project page on GitHub, click on the “admin” button, and select the “Generate project page” link. I prefer the latter approach because it’s easier and involves less typing!
Once you complete the steps from either set of instructions, you will end up with an extra local tracking branch called ‘gh-pages’. This branch contains the website for your project and it’s where we will be storing the plugin documentation.
The plugin documentation
When the grails doc command first appeared, it allowed you to automatically generate API documentation for your projects. With Grails 1.2, its scope was expanded and it can now generate a manual that looks and feels just like the Grails user guide. You don’t have to do anything to get the API documentation, but the manual requires a bit of work.
The basic idea is that you create a src/docs/guide directory and populate it with gdoc files. By prefixing the names of the gdoc files with appropriate numbers, you get a hierarchy of numbered sections. To get some idea of what you need to do, check out the source files that Luke Daley created for the Grails JMS plugin user guide.
Publishing the docs
Generating the documentation leaves you with a docs directory full of HTML files. What do you do with it? The next step is to get it onto your project-specific GitHub Pages site. Doing this manually is a bit of a bind, but I’ve created a Grails script and some template files that make it almost trivially easy (once you have the ‘gh-pages’ branch locally!).
First, copy this script to your $HOME/.grails/scripts directory. Next, switch to your ‘gh-pages’ branch and copy this HTML template to the root directory of the project. Next, create an index page for your site: index.html, index.textile, and index.markdown are all acceptable. Choose whichever format you prefer, but it should start with this section:
--- layout: main title: My Grails Plugin ---
The three dashes are important! I’ll explain those and the layout/title later. Then,
$ git add main.html.tmpl $ git add index.textile $ git commit -m "Adding template layout and index page for GitHub Pages site."
In the above set of commands, replace ‘index.textile’ with the name of the index file you created.
You’re now ready to publish your plugin docs for the first time! Simply switch to the main branch and execute the new Grails command:
$ git checkout master $ grails publish-github
Once the command successfully completes, you will find yourself back on the ‘gh-pages’ branch with all the documentation staged for a commit. You can then make any changes you want, commit everything, and then push the branch to GitHub. You can even do this in one step with the grails publish-github --push command, or if you want to automatically commit the documentation but not push, use grails publish-github --commit.
A few details
The publish-github command does a few things. First, it generates the plugin’s documentation via Grails’ doccommand. It then copies the generated documentation to the ‘gh-pages’ branch (using an rather ugly technique). Once it’s on the ‘gh-pages’ branch, it generates a new ‘main’ layout based on the main.html.tmpl file. It basically reads the information from the XML plugin descriptor, plugin.xml, and populates the template with things like the plugin version and author. The template is then generated to _layouts/main.html, which you can reference from your individual pages.
It’s up to you to write the site’s pages, but at least you have the option of three different syntax types. I prefer Textile for the moment, because it’s very similar to the gdoc format. The key part of each page is the header block, which you’ve seen already:
--- layout: main title: My Grails Plugin ---
The ‘layout’ value is used to determine which file under _layouts to inject the page into. Ideally, the index page should use the _layouts/main.html template that the publish-github command generates, hence the value ‘main’. The ‘title’ option is specific to the generated template, which inserts the corresponding value into the title of the page. This is because it’s tough to get a suitable plugin name with correct capitalisation from the plugin descriptor.
Update Somebody has pointed out that the publish-github command doesn’t work if plugin.xml is committed to your main branch (typically master). You could try modifying the script to handle this, but the XML plugin descriptor doesn’t need to be in GitHub at all – it’s generated after all – so I would simply git rm it.
That’s pretty much it. You also have the full power of Jekyll (as described on the GitHub site), so you can build more elaborate sites as you see fit. If you want to see the results of all this jiggery-pokery, then take a look at the GWT plugin pages.
Until next time.





Social Media