Introducing Objectify for Scala

It’s a framework we developed almost a year ago, that has been running in production for over 10 months. It’s so simple and effective that we have barely had to make any commits to it since. That framework is Objectify.scala.

Objectify was inspired by James Golick’s framework, Objectify. He introduced it by describing why Rails needs to move away from fat models, and create a service layer. In a sense this a move towards the Java/J2EE way of creating applications and it’s something both Joe and I agreed with.

When looking at our own codebase at the time, which was built on Scalatra (a Scala port of Sinatra), there was definitely a lack of organization and structure. Since the application had become fairly complex, the way the Scalatra routes were separated into files and policies enforced, was mainly using inheritance and traits. We didn’t feel that this was a scalable solution for our architecure going forward.

We decided to create a light-weight framework, based on Objectify.rb, to help us structure our Scalatra application. In particular, the key features that we developed to do this were dependency injection and policy management.

Components

There are essentially four types of components for implemented the front-end of your application with Objectify: policies, services, responders and resolvers.

Policies are simple – they implemented a method that looks at the request and returns true or false. If the user is allowed to proceed or not. If the user is not allowed to proceed, then they are forwarded to a PolicyResponder (e.g. return a 404), otherwise the service is executed. Most importantly, any number of policies can be chained together for a given route or resource definition, or alternatively policies can also be declared global.

Services are the meat of your project. They do the heavy lifting, whether it be returning a data set or creating/updating objects in the database. When a service is done executing it returns some sort of result to be passed on to its ServiceResponder.

Responders are responsible for taking a result and serializing into whatever format the service outputs. For example it can take a Scala list of users and convert it to a JSON array of user objects. There are two types of responders, one for failed policies and one for services.

Resolvers are the glue that wires everything together. They allow objects to be injected into all three of the above types on construction. The most common way to use them, is for extracting values from the request and populating them into objects. For example, we use resolvers to grab the ID in the path for a PUT or DELETE. We also use them to parse the JSON in a POST body into a Scala DTO. Resolvers can also have resolvers of their own, and will be injected just like any of the above components.

Why would I use this?

This is the question I always ask myself when I see a new framework posted on Hacker News. I’m not going to offer you a sales pitch but rather a point-form list of benefits that we’ve observed in the last year.

  • It’s very simple – there’s no magic and less than 1000 lines of code
  • Single responsibility and encapsulation – many small classes that are do not directly depdendent, easy to reason about, and do exactly one thing.
  • Dependency injection without singletons – useful for classes that only require request scope
  • Simpler, shorter tests – given small classes, they can be broken down into distinct units that are easily testable.

More information

I introduced the framework at a Scala meetup a little while ago, and you can find the slides here. You can also fork it and see more usage details on Github.