Building Domain Specific Languages in Kotlin
Building Domain Specific Languages in Kotlin
Kotlin language features and software design patterns for creating DSLs and improving code
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:
- DSL design: DSLs make assumptions to simplify syntax, such as assuming the code is part of a particular problem domain.
- Kotlin features: DSL implementations sometimes employ Kotlin features in ways that are unusual to achieve a desired syntax.
- 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.
Table of Contents
-
Preface
- Where is the code?
- Exercises and Final Project
- Go!
-
Design and Implement DSLs
- Why learn about Kotlin DSLs?
- Why are DSLs useful?
- Features of Domain Specific Languages
- Scenario: Creating Menus
- How should you implement a DSL?
-
Apply design patterns to improve DSL syntax
- Symbols
- Function Chains
- Context Variables
- Nested builders
- Summary
-
Create Structured Syntax using Lambdas
- Lambda with Receiver
- @DslMarker
- Invoke
- Summmary
-
Set properties using Kotlin features
- Enums
- Assignment
- Operator Overload
- Custom Accessors
- Extension Functions
- Summary
-
Create Sentences using Infix Notation
- Infix and extension functions
- Using infix in a DSL
- Infix functions in the Menu DSL
- Compound Clauses
- Summary
- Create a DSL today!
- Project: Create a DSL for representing a car configuration
The Leanpub 60 Day 100% Happiness Guarantee
Within 60 days of purchase you can get a 100% refund on any Leanpub purchase, in two clicks.
Now, this is technically risky for us, since you'll have the book or course files either way. But we're so confident in our products and services, and in our authors and readers, that we're happy to offer a full money back guarantee for everything we sell.
You can only find out how good something is by trying it, and because of our 100% money back guarantee there's literally no risk to do so!
So, there's no reason not to click the Add to Cart button, is there?
See full terms...
Earn $8 on a $10 Purchase, and $16 on a $20 Purchase
We pay 80% royalties on purchases of $7.99 or more, and 80% royalties minus a 50 cent flat fee on purchases between $0.99 and $7.98. You earn $8 on a $10 sale, and $16 on a $20 sale. So, if we sell 5000 non-refunded copies of your book for $20, you'll earn $80,000.
(Yes, some authors have already earned much more than that on Leanpub.)
In fact, authors have earnedover $13 millionwriting, publishing and selling on Leanpub.
Learn more about writing on Leanpub
Free Updates. DRM Free.
If you buy a Leanpub book, you get free updates for as long as the author updates the book! Many authors use Leanpub to publish their books in-progress, while they are writing them. All readers get free updates, regardless of when they bought the book or how much they paid (including free).
Most Leanpub books are available in PDF (for computers) and EPUB (for phones, tablets and Kindle). The formats that a book includes are shown at the top right corner of this page.
Finally, Leanpub books don't have any DRM copy-protection nonsense, so you can easily read them on any supported device.
Learn more about Leanpub's ebook formats and where to read them