Email the Author

You can use this page to email Greg Milette about Building Domain Specific Languages in Kotlin.

Please include an email address so the author can respond to your query

This message will be sent to Greg Milette

This site is protected by reCAPTCHA and the Google  Privacy Policy and  Terms of Service apply.

About the Book

If you are writing Kotlin code, inevitably you will encounter a Domain Specific Language (DSL). A DSL may be in your build tool, UI code, or somewhere else, but trust me it is there. Why do these DSLs exist? They allow you to create new simplified syntax for your APIs and libraries. With the ability to create this syntax you can go beyond object oriented design and create even more effective code that is easy to understand and has less errors. This book shows you the Kotlin features and design patterns you need to know to implement complex DSLs or make small improvements to anywhere in your code. Along the way you will gain a deeper understanding of some of Kotlin's language features such as lambdas and extension functions.

You will learn techniques for building DSLs

Building a DSL in Kotlin requires you to understand:

  1. DSL design: DSLs make assumptions to simplify syntax, such as assuming the code is part of a particular problem domain.
  2. Kotlin features: DSL implementations sometimes employ Kotlin features in ways that are unusual to achieve a desired syntax.
  3. Software design patterns: Software design patterns can help you create different syntax and also simplify DSLs.

The Kotlin features and design patterns this book describes are:

Kotlin features:

  • Lambda with receiver
  • Invoke operator
  • Operator overload
  • Extension functions
  • Custom property accessors
  • Infix notation

Design patterns:

  • Function chains
  • Nested builders
  • Context variables
  • Symbols

You will be able to write new kinds of code

When you understand the techniques in this book, you will be able to start code that once looked like this:

val dishes = mutableListOf<Dish>()

val ingredientsForBlt = listOf("bacon", "lettuce", "tomato")
val blt = Dish("blt", ingredientsForBlt)
dishes.add(blt)

val ingredientsForPizza = listOf("pepperoni", "mushrooms")
val pizza = Dish("pizza", ingredientsForPizza)
dishes.add(pizza)

val menu = Menu("Sunrise Restaurant", dishes)

and turn it into this:

val builder = MenuBuilder("Sunrise Restaurant")
val menu = builder {
    dish("pizza") {
        +"cheese"
        +"pepperoni"
        +"mushroom"
    }
    dish("blt") {
        bacon
        lettuce
        tomato
    }
}

or maybe even make the syntax look almost like plain sentences like this:

val builder = MenuBuilder("Sunrise Restaurant")
val menu = builder {
    "blt" with ingredients named "bacon" and "lettuce" and "tomato"
    "pizza" with ingredients named "cheese" and "pepperoni" and "mushroom"
}

You will see ample code examples

This book contains two parts to help you learn the necessary DSL skills. First, it has ample code examples to demonstrate each concept. Second, it has step by step exercises you can use to help you to practice what you have learned.

Are you excited?

Grab this book and start maximizing your knowledge of Kotlin and building some great new DSL syntax.


About the Author

Greg Milette’s avatar Greg Milette

@gregmilette

Greg Milette is a Software Engineer who has worked on projects large and small, weird and simple. His interests include speech recognition, mobile sensors, IoT, building apps in Kotlin.

Logo white 96 67 2x

Publish Early, Publish Often

  • Path
  • There are many paths, but the one you're on right now on Leanpub is:
  • Kotlindsls › Email Author › New
    • READERS
    • Newsletters
    • Weekly Sale
    • Monthly Sale
    • Store
    • Home
    • Redeem a Token
    • Search
    • Support
    • Leanpub FAQ
    • Leanpub Author FAQ
    • Search our Help Center
    • How to Contact Us
    • FRONTMATTER PODCAST
    • Featured Episode
    • Episode List
    • MEMBERSHIPS
    • Reader Memberships
    • Department Reader Memberships
    • Author Memberships
    • Your Membership
    • COMPANY
    • About
    • About Leanpub
    • Blog
    • Contact
    • Press
    • Essays
    • AI Services
    • Imagine a world...
    • Manifesto
    • More
    • Partner Program
    • Causes
    • Accessibility
    • AUTHORS
    • Write and Publish on Leanpub
    • Create a Book
    • Create a Bundle
    • Create a Course
    • Create a Track
    • Testimonials
    • Why Leanpub
    • Services
    • TranslateAI
    • TranslateWord
    • TranslateEPUB
    • PublishWord
    • Publish on Amazon
    • CourseAI
    • GlobalAuthor
    • Marketing Packages
    • IndexAI
    • Author Newsletter
    • The Leanpub Author Update
    • Author Support
    • Author Help Center
    • Leanpub Authors Forum
    • The Leanpub Manual
    • Supported Languages
    • The LFM Manual
    • Markua Manual
    • API Docs
    • Organizations
    • Learn More
    • Sign Up
    • LEGAL
    • Terms of Service
    • Copyright Policy
    • Privacy Policy
    • Refund Policy

*   *   *

Leanpub is copyright © 2010-2025 Ruboss Technology Corp.
All rights reserved.

This site is protected by reCAPTCHA
and the Google  Privacy Policy and  Terms of Service apply.

Leanpub requires cookies in order to provide you the best experience. Dismiss