Design Pattern Evangelist Blog

Smart pointers about software design

Interpreter Design Pattern – Domain-Specific Languages

Domain-Specific Languages solve domain-specific problems.


Fragment of Euclid's Elements

Introduction

This blog continues the Interpreter Design Pattern series by expanding upon Domain-Specific Languages (DSLs), which I introduced in Interpreter Design Pattern – Domain-Specific Language Primer.

The Interpreter Design Pattern feels like it was tailor made for DSLs. Before I can show this, I need to do a deeper dive into DSLs, which will be the topic for the remainder of this blog.

If you already feel confident about Domain-Specific Languages, then skim this blog or skip it completely.

Here’s a summary of the DSL concepts presented here:

What the Gang of Four said about Domain Specific Languages

The GoF never mentioned Domans or Domain-Specific Languages by name, but they did use other similar terms. I suspect that the GoF didn’t mention Domain or Domain-Specific Languages, since I don’t think either was a common term at the time of their publication. I can’t find many DSL references before 1995. Eric Evans’ book, Domain-Driven Design, which popularized Domain, wasn’t published until 2003.

But here’s what they did say about Interpreter. The GoF define the intent of Interpreter as:

Given a language, define a representation for its grammar along with an interpreter that uses the representation to interpret sentences in the language.

Head Scratching

Their motivation section continues with:

If a particular kind of problem occurs often enough, then it might be worthwhile to express instances of the problem as sentences in a simple language. Then you can build an interpreter that solves the problem by interpreting these sentences.

The Interpreter pattern describes how to define a grammar for simple languages, represent sentences in the language, and interpret these sentences.

Well, those are mostly a circular definitions that really don’t help me understand what they mean by language, grammar, sentences or interpreter or the pattern’s actual intent or motivation.

Domain and Domain-Specific Languages

Here is SourceMaking’s Interpreter description:

Map a domain to a language, the language to a grammar, and the grammar to a hierarchical object-oriented design.

The above is a nice summary of the process but it only makes sense once you understand the process. They continued with:

The Interpreter pattern discusses defining a domain language (i.e. problem characterization) as a simple language grammar, representing domain rules as language sentences, and interpreting these sentences to solve the problem. The pattern uses a class to represent each grammar rule. And since grammars are usually hierarchical in structure, an inheritance hierarchy of rule classes maps nicely.

They added domain, which I think is a critical concept for understanding Interpreter. Domain is the business environment of an industry. eBay’s domain is auctions. Amazon’s domain is selling books, or at least it started that way. Facebook, LinkedIn and Twitter/X’s domains are social networks.

Domain is an ecosystem. Domain is an economy. Domain is a mathematical system. Domain is often closed system. A domain is a set of rules that define a bounded conceptual space specifying what can and cannot happen to the domain elements within that bounded space. A Domain-Specific Language is a representation of those rules.

DSLs are domain specific where the domain is embedded in the constructs of the language itself. A domain-based language is narrowly scoped since it’s designed to support a specific domain. A problem scenario within a domain can be expressed or modeled in a DSL based specification. Then a DSL Interpreter can compute/execute/interpret the specification to produce a result.

The language itself should scream its domain. Problem expression in a DSL should be more natural and straightforward than in a General-Purpose Language (GPL), such as Java, C++, Python or Ruby. It’s difficult to stray beyond domain boundaries since the DSL won’t allow it. A DSL will tend to be smaller and more straightforward than a GPL.

Since a DSL reflects the domain, it may not look like a traditional programming language. It might look like a specification language. It might have syntax constructs not seen in GPLs. Or it could look very similar to a traditional programming language too. It all depends upon the nature of the domain.

A GPL can support domains too, but that is not its primary intent. A GSL can support any domain. A project can set coding standards that mirror domain constructs, but unless there’s effort to maintain a consistent ubiquitous language by the members of a project, a GSL based implementation will tend to project language constructs first and domain second. With a DSL, the domain is embedded within the language. The DSL is the ubiquitous language.

Do You Need a DSL?

Though I shout the praises of DSLs from the mountain tops, do you really need one?

When you design your own programming language, even a DSL, you are going out on a limb. You take on all responsibility for features, maintenance, documentation, training, and support for anyone who uses your DSL. I have more on this near the end of the blog.

A DSL can be useful in the right situation, but make sure you are in the right situation. Do you need to support many scenarios with a domain, such as customer-specific configurations or rapidly changing behavior requests, such as regulatory policies, etc.? See: Use Cases for Composability Design Patterns.

This type of domain flexibility is not the same as config values, feature flags, or branching logic, which tends to add complexity to an implementation. This flexibility resides in the DSL specifications, each of which are transformed into unique and individual composite object trees from which the bespoke behaviors emerge. This is the separation of Computation and Coordination.

Tax Forms

Consider tax preparation software that implements tax regulations. Regulations vary from jurisdiction to jurisdiction. Regulation behavior specifications cannot be negotiated. Regulations change regularly. Regulation implementation must be complete. Delivery dates cannot slip since tax deadlines do not slip.

A tax regulation DSL would help maneuver the regulation minefields better than a GPL. See: Designing a DSL for accounting: use a DSL to describe taxes, pension contributions, and general financial calculations.

Domain-Specification Languages

Most if not all industries have domains, and some may even have DSLs for those domains. Some industries with DSLs include systems engineering, healthcare, finance, insurance, and payroll (source).

Here are some examples of common DSLs found in the wild as more concrete examples.

The following are DSLs primarily in software engineering domains.

HTML

HTML is a DSL. Its domain is web layout. HTML is a language that specifies data to be displayed on a web browser. HTML includes the data and formatting instructions. It’s up to the browser to render the content correctly on the screen.

CSS

CSS is a DSL. Its domain is style specification for pages rendered on web browsers.

SQL

SQL is a DSL where its domain is relational database tables. SQL allows users to manipulate tables of data. SQL feels more like a programming language than HTML or CSS.

Shell Languages

While most shell languages are programming languages, they’re on the border between DSLs and GPLs. I’m going to lean a bit toward the DSLs here, because their domain is mostly with an operating system, such as Unix/Linux, and its directories and files.

The Unix Philosophy provides a cohort of single-purpose commands, usually/originally written in C. These commands usually focus upon a single aspect of Unix, such as:

The standard output of these commands can be piped as standard input to other commands making it easy to construct more sophisticated behaviors with a little piping glue. It’s simple for users to build their own commands from these basics.

AWK

AWK is a programming language, but its main intent is domain specific. Its domain is its ability to process standard input in a Unix environment. It’s useful when you need more processing power than traditional shells give you. AWK is a great little language that more developers should know about.

JSON

JSON is a DSL where its domain is the ability to represent data in hierarchical structures while maintaining a human-readable form.

And Many More

The complete guide to (external) Domain Specific Languages lists 19 external DSLs, some of which I mentioned here as well.

My Domain-Specific Language Experiences

Even with this substantial list of DSL examples, opportunities for DSLs and Interpreter implementations are usually few and far between. Interpreter is not an Essential Design Pattern. It’s a more narrowly focused pattern that addresses more narrowly focused situations.

Here are some of my personal experencies with DSLs: implemented, denied and not quite there.

I Implemented It Once

I have designed and implemented the Interpreter design pattern only once in my career. We couldn’t believe how well it worked. Our DSL was simple, but it was highly effective for our needs. And even then, I sort of stumbled into the DSL backwards. I will provide more details in a subsequent blog.

I Got Shot Down When Suggesting DSLs

After the above DSL experience, I moved to another company, and I was eager to work on another DSL. I found a few areas that I thought could be DSL candidates.

A new software engineering executive joined the company a few months after I started. He met with each of the teams individually to get to know the members of his department.

Hammer and Nails

I pitched the DSL idea to him, and he shot my suggestion down faster than the Red Barron in an aerial dogfight with a pilot fresh out of flight school. I never mentioned DSLs to him again.

The nail that sticks out will get hammered down. – Japanese Proverb.

I advocated DSLs to a few other managers, but I never got traction with them either.

Years later, I’d sit in company meetings as he and the other C-suite executives bemoaned how much customer support was required to onboard new customers and maintain existing ones. “Our product needs to be more self-service for our customers,” they decried. I’d sit there, resist the urge to roll my eyes, and think to myself, “Had you given DSLs even modest consideration, you might have had some customer self-service features by now.”

I understand my executive’s reluctance with DSLs, which I’ll address near the end of this blog, but I think he was throwing out the baby with the bath water.

Close But No Cigar

I moved to a different group at the same company. The team had been part of an acquisition a few years previously. One of their core features supported customer bespoke workflows. DSL concepts were hinted in the implementation. They had the germ of the right idea, but the design and implementation were a bit off.

I suspect that they needed the workflow behavior quickly since it was a core feature to their business model in their early days. Being a startup, they got something working, even if it wasn’t the cleanest design or implementation. They probably didn’t have the bandwidth to refactor it later. Even if they had, I suspect they didn’t know about the Interpreter design pattern. It is one of the last design patterns developers learn and understand. I was most of the way through my career before I understood Interpreter.

Workflow

Workflows were constructed and maintained via a GUI. The GUI user experience looked like a flowchart displaying labeled rectangles connected via unlabeled lines. Some rectangles were dead ends floating in space even if they weren’t actual dead ends. The graphical rendering code had issues drawing some of the connecting lines.

Rectangles tended to bundle too many behaviors. You couldn’t see behavior details unless you opened a rectangle, which would block your view of the overall workflow’s flowchart. It was like working on a jigsaw puzzle where the photo on the box cover was a bit obscured. You could only take one piece out of the box at a time to examine it and then without the ability to view the box cover photo.

The workflow elements were stored as database records, which was just as awkward to view as the GUI if not more awkward. I never saw the big picture of a workflow other than what I could construct in my mind from the piece parts. Fortunately, most workflows weren’t very large, but some were challenging to comprehend.

The GUI wasn’t suitable for customer self-service. Our onboarding/support personnel and often engineering staff had to define and maintain each customer’s workflow. Many customers had multiple workflows.

Even our staff struggled with the GUI to the point that sometimes customer activation dates were delayed because we couldn’t get their workflows quite right. They would eventually work, but it was a brittle process.

I sort of see our executive’s DSL concerns in hindsight now. Although the workflow design really didn’t feature a DSL as best I could tell.

Bespoke Domain-Specific Languages

Your application may feature a Domain and could benefit from a Domain-Specific Language that’s unique to your business. But the DSL may not yet exist. You could design your own and implement it with the Interpreter Design Pattern. But do not take this on lightly. Consider the implications.

Who Uses the DSL?

Who is going to construct the DSL specifications? I can think of several types of users who could write DSL specifications.

Developers

The DSL may be for internal use only. The developers who defined DSL may be the only people who construct the DSL specifications. For example, a DSL might define different types of configuration specifications that are only a development concern.

My DSL fell into this category.

Customer Onboarding/Support Team

This expands the DSL user base beyond developers, but it still keeps DSL users within the company. The DSL may be straightforward enough for onboarding and customer support teams to create and maintain. The DSL may embrace the domain without having too many traditional coding elements to it. Onboarding and customer support domain experts, with enough training and support, may be able to create and maintain DSL specifications for their customers.

This might be the sweet spot for many situations. While Customer/User self-service might be desirable, this may not be practical. Some DSLs may be too sophisticated for customer self-service. Or there may be security or safety concerns. Exposing the DSL to customers might allow the customer to do some real damage to themselves. DSLs allow you to do anything within the domain even if that’s something that’s not in your best interests. Remember that SQL allows you to drop tables, even those with critical data.

The workflow example above fell into this category, even if workflows weren’t technically a DSL.

Customers and Users

Customer and User self-service provides the greatest flexibility. Customers and users can design exactly what they want and need. There’s no delay in waiting for onboard or customer support staff to understand customer needs and attempt to specify them correctly in the DSL. Odds are, the first drafts won’t be correct, so several iterations may be required.

However, this also introduces the ability for the customer or user to self-service mistakes of their own doing. Self-service DSLs should be narrow in scope, focused, easy to understand and use, and nearly impossible for the customer/user to shoot themselves in the foot. As an example, the Specification Use Case allows users to design their own Smart Playlists. Smart Playlist specifications are straightforward to define, and if a user makes a mistake, there’s no real damage. The worst that can happen is too many tracks in a smart playlist or not enough.

Tradeoffs

DSLs are a double-edged sword. They provide a lot of power, but that comes with responsibility.

Pros

It can be a blast designing a DSL and seeing it come to life as you implement it. I’m not advocating creating a DSL for this reason alone, but if find yourself implementing a DSL, it may be some of the most fun and interesting code you’ll work on.

A DSL usually addresses problems in the domain with less effort than a GPL.

It’s one of the best ways I know of for a single codebase to provide bespoke features to customers and users even with the possibility of customer and user self-service.

Cons

It will probably take time to get the domain right.

If you define and implement a DSL, then you’re taking on full responsibility for it:

When someone makes a mistake defining a DSL specification, and it will happen, they will blame your implementation first. You may end up devoting a lot of time debugging your own code before realizing that the problem resides in the DSL specification. And then you’ll have the challenge of convincing that person that their DSL specification is incorrect probably without the benefit of knowing the specification’s actual intent.

Rational Number Evaluator Use Case

I will feature a Domain and DSL Use Case as I progress through these Interpreter blog entries.

I previously stated that Mathematical Systems are Domains. My Domain will be Rational Numbers and the DSL will be a Rational Number Evaluator. I’m committing to this before doing any design or implementation, so the road could get a bit rocky in subsequent blogs.

Most programming languages support integers and floats. I don’t know of any popular programming languages that support rational numbers. Recall that a rational number is a number that can be represented as the ratio of two integers, i.e., a fraction.

I want the Domain to feature:

Summary

The Interpreter design pattern allows us to design and implement Domain-Specific Languages. But just because we can do something doesn’t mean that we should do it.

Make sure you have a domain with most of the following:

References

There are many online Domain-Specific Language resources. Here are some free resources:

Here are some resources that can be purchased or are included in a subscription service:

See: Interpreter Design Pattern Introduction/References.

Comments

Previous: Interpreter Design Pattern - An Introduction

Next: Interpreter Design Pattern – Grammars

Home: Design Pattern Evangelist Blog