Home > Store

Domain-Specific Languages

EPUB (Watermarked)

Not for Sale

Also available in other formats.

Register your product to gain access to bonus material or receive a coupon.

Description

  • Copyright 2011
  • Dimensions: 7" x 9-1/8"
  • Pages: 640
  • Edition: 1st
  • EPUB (Watermarked)
  • ISBN-10: 0-13-139280-8
  • ISBN-13: 978-0-13-139280-9

When carefully selected and used, Domain-Specific Languages (DSLs) may simplify complex code, promote effective communication with customers, improve productivity, and unclog development bottlenecks. In Domain-Specific Languages, noted software development expert Martin Fowler first provides the information software professionals need to decide if and when to utilize DSLs. Then, where DSLs prove suitable, Fowler presents effective techniques for building them, and guides software engineers in choosing the right approaches for their applications.

This book’s techniques may be utilized with most modern object-oriented languages; the author provides numerous examples in Java and C#, as well as selected examples in Ruby. Wherever possible, chapters are organized to be self-standing, and most reference topics are presented in a familiar patterns format.

Armed with this wide-ranging book, developers will have the knowledge they need to make important decisions about DSLs—and, where appropriate, gain the significant technical and business benefits they offer.

The topics covered include:

  • How DSLs compare to frameworks and libraries, and when those alternatives are sufficient
  • Using parsers and parser generators, and parsing external DSLs
  • Understanding, comparing, and choosing DSL language constructs
  • Determining whether to use code generation, and comparing code generation strategies
  • Previewing new language workbench tools for creating DSLs

Sample Content

Table of Contents

Preface xix

Part I: Narratives 1

Chapter 1: An Introductory Example 3

Gothic Security 3

The State Machine Model 5

Programming Miss Grant’s Controller 9

Languages and Semantic Model 16

Using Code Generation 19

Using Language Workbenches 22

Visualization 24

Chapter 2: Using Domain-Specific Languages 27

Defining Domain-Specific Languages 27

Why Use a DSL? 33

Problems with DSLs 36

Wider Language Processing 39

DSL Lifecycle 40

What Makes a Good DSL Design? 42

Chapter 3: Implementing DSLs 43

Architecture of DSL Processing 43

The Workings of a Parser 47

Grammars, Syntax, and Semantics 49

Parsing Data 50

Macros 52

Chapter 4: Implementing an Internal DSL 67

Fluent and Command-Query APIs 68

The Need for a Parsing Layer 71

Using Functions 72

Literal Collections 77

Using Grammars to Choose Internal Elements 79

Closures 80

Parse Tree Manipulation 82

Annotation 84

Literal Extension 85

Reducing the Syntactic Noise 85

Dynamic Reception 86

Providing Some Type Checking 87

Chapter 5: Implementing an External DSL 89

Syntactic Analysis Strategy 89

Output Production Strategy 92

Parsing Concepts 94

Mixing-in Another Language 100

XML DSLs 101

Chapter 6: Choosing between Internal and External DSLs 105

Learning Curve 105

Cost of Building 106

Programmer Familiarity 107

Communication with Domain Experts 108

Mixing In the Host Language 108

Strong Expressiveness Boundary 109

Runtime Configuration 110

Sliding into Generality 110

Composing DSLs 111

Summing Up 111

Chapter 7: Alternative Computational Models 113

A Few Alternative Models 116

Chapter 8: Code Generation 121

Choosing What to Generate 122

How to Generate 124

Mixing Generated and Handwritten Code 126

Generating Readable Code 127

Preparse Code Generation 128

Further Reading 128

Chapter 9: Language Workbenches 129

Elements of Language Workbenches 130

Schema Definition Languages and Meta-Models 131

Source and Projectional Editing 136

Illustrative Programming 138

Tools Tour 140

Language Workbenches and CASE tools 141

Should You Use a Language Workbench? 142

Part II: Common Topics 145

Chapter 10: A Zoo of DSLs 147

Graphviz 147

JMock 149

CSS 150

Hibernate Query Language (HQL) 151

XAML 152

FIT 155

Make et al. 156

Chapter 11: Semantic Model 159

How It Works 159

When to Use It 162

The Introductory Example (Java) 163

Chapter 12: Symbol Table 165

How It Works 166

When to Use It 168

Further Reading 168

Dependency Network in an External DSL (Java and ANTLR) 168

Using Symbolic Keys in an Internal DSL (Ruby) 170

Using Enums for Statically Typed Symbols (Java) 172

Chapter 13: Context Variable 175

How It Works 175

When to Use It 176

Reading an INI File (C#) 176

Chapter 14: Construction Builder 179

How It Works 179

When to Use It 180

Building Simple Flight Data (C#) 180

Chapter 15: Macro 183

How It Works 184

When to Use It 192

Chapter 16: Notification 193

How It Works 194

When to Use It 194

A Very Simple Notification (C#) 194

Parsing Notification (Java) 195

Part III: External DSL Topics 199

Chapter 17: Delimiter-Directed Translation 201

How It Works 201

When to Use It 204

Frequent Customer Points (C#) 205

Parsing Nonautonomous Statements with Miss Grant’s Controller (Java) 211

Chapter 18: Syntax-Directed Translation 219

How It Works 220

When to Use It 227

Further Reading 227

Chapter 19: BNF 229

How It Works 229

When to Use It 238

Chapter 20: Regex Table Lexer (by Rebecca Parsons) 239

How It Works 240

When to Use It 241

Lexing Miss Grant’s Controller (Java) 241

Chapter 21: Recursive Descent Parser (by Rebecca Parsons) 245

How It Works 246

When to Use It 249

Further Reading 249

Recursive Descent and Miss Grant’s Controller (Java) 250

Chapter 22: Parser Combinator (by Rebecca Parsons) 255

How It Works 256

When to Use It 261

Parser Combinators and Miss Grant’s Controller (Java) 261

Chapter 23: Parser Generator 269

How It Works 269

When to Use It 272

Hello World (Java and ANTLR) 272

Chapter 24: Tree Construction 281

How It Works 281

When to Use It 284

Using ANTLR’s Tree Construction Syntax (Java and ANTLR) 284

Tree Construction Using Code Actions (Java and ANTLR) 292

Chapter 25: Embedded Translation 299

How It Works 299

When to Use It 300

Miss Grant’s Controller (Java and ANTLR) 300

Chapter 26: Embedded Interpretation 305

How It Works 305

When to Use It 306

A Calculator (ANTLR and Java) 306

Chapter 27: Foreign Code 309

How It Works 309

When to Use It 311

Embedding Dynamic Code (ANTLR, Java, and Javascript) 311

Chapter 28: Alternative Tokenization 319

How It Works 319

When to Use It 326

Chapter 29: Nested Operator Expression 327

How It Works 327

When to Use It 331

Chapter 30: Newline Separators 333

How It Works 333

When to Use It 335

Chapter 31: External DSL Miscellany 337

Syntactic Indentation 337

Modular Grammars 339

Part IV: Internal DSL Topics 341

Chapter 32: Expression Builder 343

How It Works 344

When to Use It 344

A Fluent Calendar with and without a Builder (Java) 345

Using Multiple Builders for the Calendar (Java) 348

Chapter 33: Function Sequence 351

How It Works 351

When to Use It 352

Simple Computer Configuration (Java) 352

Chapter 34: Nested Function 357

How It Works 357

When to Use It 359

The Simple Computer Configuration Example (Java) 360

Handling Multiple Different Arguments with Tokens (C#) 361

Using Subtype Tokens for IDE Support (Java) 363

Using Object Initializers (C#) 365

Recurring Events (C#) 366

Chapter 35: Method Chaining 373

How It Works 373

When to Use It 377

The Simple Computer Configuration Example (Java) 378

Chaining with Properties (C#) 381

Progressive Interfaces (C#) 382

Chapter 36: Object Scoping 385

How It Works 386

When to Use It 386

Security Codes (C#) 387

Using Instance Evaluation (Ruby) 392

Using an Instance Initializer (Java) 394

Chapter 37: Closure 397

How It Works 397

When to Use It 402

Chapter 38: Nested Closure 403

How It Works 403

When to Use It 405

Wrapping a Function Sequence in a Nested Closure (Ruby) 405

Simple C# Example (C#) 408

Using Method Chaining (Ruby) 409

Function Sequence with Explicit Closure Arguments (Ruby 411

Using Instance Evaluation (Ruby) 412

Chapter 39: Literal List 417

How It Works 417

When to Use It 417

Chapter 40: Literal Map 419

How It Works 419

When to Use It 420

The Computer Configuration Using Lists and Maps (Ruby) 420

Evolving to Greenspun Form (Ruby) 422

Chapter 41: Dynamic Reception 427

How It Works 428

When to Use It 429

Promotion Points Using Parsed Method Names (Ruby) 430

Promotion Points Using Chaining (Ruby) 434

Removing Quoting in the Secret Panel Controller (JRuby) 438

Chapter 42: Annotation 445

How It Works 446

When to Use It 449

Custom Syntax with Runtime Processing (Java) 449

Using a Class Method (Ruby) 451

Dynamic Code Generation (Ruby) 452

Chapter 43: Parse Tree Manipulation 455

How It Works 455

When to Use It 456

Generating IMAP Queries from C# Conditions (C#) 457

Chapter 44: Class Symbol Table 467

How It Works 468

When to Use It 469

Statically Typed Class Symbol Table (Java) 469

Chapter 45: Textual Polishing 477

How It Works 477

When to Use It 478

Polished Discount Rules (Ruby) 478

Chapter 46: Literal Extension 481

How It Works 481

When to Use It 482

Recipe Ingredients (C#) 483

Part V: Alternative Computational Models 485

Chapter 47: Adaptive Model 487

How It Works 488

When to Use It 492

Chapter 48: Decision Table 495

How It Works 495

When to Use It 497

Calculating the Fee for an Order (C#) 497

Chapter 49: Dependency Network 505

How It Works 506

When to Use It 508

Analyzing Potions (C#) 508

Chapter 50: Production Rule System 513

How It Works 514

When to Use It 517

Validations for club membership (C#) 517

Eligibility Rules: extending the club membership (C#) 521

Chapter 51: State Machine 527

How It Works 527

When to Use It 529

Secret Panel Controller (Java) 530

Part VI: Code Generation 531

Chapter 52: Transformer Generation 533

How It Works 533

When to Use It 535

Secret Panel Controller (Java generating C) 535

Chapter 53: Templated Generation 539

How It Works 539

When to Use It 541

Generating the Secret Panel State Machine with Nested Conditionals (Velocity and Java generating C) 541

Chapter 54: Embedment Helper 547

How It Works 548

When to Use It 549

Secret Panel States (Java and ANTLR) 549

Should a Helper Generate HTML? (Java and Velocity) 552

Chapter 55: Model-Aware Generation 555

How It Works 556

When to Use It 556

Secret Panel State Machine (C) 557

Loading the State Machine Dynamically (C) 564

Chapter 56: Model Ignorant Generation 567

How It Works 567

When to Use It 568

Secret Panel State Machine as Nested Conditionals (C) 568

Chapter 57: Generation Gap 571

How It Works 571

When to Use It 573

Generating Classes from a Data Schema (Java and a Little Ruby) 573

Bibliography 579

Index 581

Updates

Submit Errata

More Information

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020