SlideShare a Scribd company logo
1 of 48
Download to read offline
WHAT IF
YOUR APPLICATION
COULD SPEAK?
Domain-Specific Language concepts, applications and implementation.
An introduction to Language-Driven Development.
Marcos Vinicius
@bymarkone
Imagine you have a problem to solve …
SUPPLY CHAIN MANAGEMENT
The complexity of inter company documents exchange
THE NEEDS
Translate Documents
Transfer Documents
Was not satisfactory for this context - too much work!
Altova MapForce - the best solution we found
Document oriented
data model
Set of rules that
convert an layout to
another
A repository of
identified layouts
Several helper
functions to help
with the task
An idea
to solve
the problem
Will it work?
After three months - Huge architecture effort spent,
not a single functionality, people lost in system complexity
A language with the semantics of the Document Translation
Domain that allowed us to succeed, and to be really faster
We decided to create a…
Domain-
Specific
Language
FileTransfer
Banking
Contract Management
Financial
Accounting
Supply Chain
Lexical
Analysis
Syntax
Semantics
Grammar
Alphabet
A new era arrived
BUSINESS LEVEL
How The Language-Driven Approach Can Change Business
OTHER DSL
!
▫︎A DSL to query Document
▫︎A DSL to program inside Documents
▫︎A DSL to configure Rules for file transfer
▫︎A DSL to configure networks of Documents
▫︎A DSL to configure security and access
META-LANGUAGE
!
▫︎A language that defines a language
▫︎Define name of the objects and verbs of your language
▫︎Define adjective, if they are mandatory, their datatype
▫︎Allows you have feedback of language syntax in parsing
▫︎Validate a language semantically
▫︎Provide auto-generated APIs documentation
▫︎Provide information for client IDEs
LANGUAGE TEMPTING
!
▫︎A feature that allows you to simplify the language that
the end user can access
!
!
!
!
!
▫︎Granular functionality and modularisation
▫︎On Demand combination to build complex operations
define User “bymarkone" with e-mail “bymarkone@tw.com“;
create Account for “bymarkone”;
activate Account, User “bymarkone”;
send confirmation to "bymarkone"
define and activate User "bymarkone"
becomes
BUSINESS SCRIPTING
!
▫︎When we have large amount of tasks
▫︎E.g. Configuring a new account with N users
▫︎E.g. Setting up a system
▫︎E.g. Sending download instructions to several clients
▫︎Speed in implementation of even complex systems
DEMOING
!
▫︎Build N scenarios for demoing you application
▫︎End users can understand the language and play with
scenarios
ANALYSIS LEVEL
Language Oriented Analysis
add User “Robespierre”;
add User “Rosseau”;
!
“Rosseau” invites “Roberpierre”;
“Robespierre" accept invite from “Rosseau"
“Rosseau” create group “Vive la France!” with tag “Liberté, égalité, fraternité”
“Robespierre" post in “Vive la France!”, message “Let's meet next 14th and kill the king!”
!
“Roberpierre" list friends;
“Rosseau" add message "People who know little are usually great talkers, while men who
know much say little”;
!
“Rosseau" add message “I am sorry to inform you all that our friend and compatriot
Roberspierre was guillotined. This bloody revolution is changing out country at a very
high price. ”
Let’s do a Social Network System
ARCHITECTURE
LEVEL
Language Oriented Architecture
API'S
!
▫︎REST API - A set of URL’s (names) and Actions
▫︎Must be expressive
▫︎Limited - beyond crud, has only HTTP verbs
▫︎With a rich language is hard to draw an API that is as rich
▫︎Expose and API (it can be rest) for language processing
USER EXPERIENCE - UX
!
▫︎Should be build in top of the language
▫︎We don’t care how modern and visual is the design, as
long as it talks the domain language
▫︎E.g. SQL is a DSL on data query and manipulation - how
many UI’s are built in top of that?
▫︎Will an editor with auto-complete and validation work?
TESTING
!
▫︎Unit, integration, component and contract test the
application (independent of the language)
▫︎Add tests for language processing - parsing and
interpreting
▫︎Add tests for language processing feedback
▫︎Add tests for domain and service executing through DSL
OVERALL ARCHITECTURE
!
▫︎UI Layer
▫︎Web Layer (REST)
▫︎Language Processing Layer
▫︎Domain/Services Layer
▫︎Infrastructure Layer
UI Layer
Web / Rest Layer
Language Processing
Domain Layer
Infrastructure Layer
From Martin Fowler’s DSL
PROCESS LEVEL
COMMUNICATION
!
▫︎The DSL is the language of communication of business
▫︎Devs, QA, BA, PO, Business Specialist, even Stakeholders
▫︎Ubiquitous Language
▫︎“Semantic Meetings” to understand and refine words of
the language, and their meaning
DOMAIN-DRIVEN DESIGN
!
▫︎Important to start the discussion about Domain
meaning - Entities, Services, Aggregates, Value-Objects
▫︎Design and Domain are emergent - they are created/
refactored with the development of the application
▫︎Create the DSL
▫︎Create the Semantic Model - connected to the DSL
▫︎Semantic Model is different than the Domain Model -
the first is a subset of the second.
PROGRAMMING
LEVEL
The fun of building a language
OVERALL OF LANGUAGE PROCESSING
Lexical
Analysis
Parsing
Semantic
Analysis
Text Tokens AST
Abstract
Syntax
Tree
Code
Generation
Semantic

Model
grammar IML;
!
program : (functionDecl | stat | expr)+;
functionDecl : type ID LP formalParams? RP block;
formalParams : formalParam (COMMA formalParam)*;
formalParam : type ID;
type : (DOUBLEDECL | INTDECL | STRINGDECL);
varDecl : type ID (EQUAL expr)? SEMICOLON ;
block : LB stat* RB;
assignment : expr EQUAL expr SEMICOLON;
conditional : IF expr THEN stat (ELSE stat)?;
returnstat : RETURN expr? SEMICOLON;
stat : block
| varDecl
| conditional
| returnstat
| assignment
| expr SEMICOLON
;
expr : functionExpr // f()
| arrayExpr // g[]
| unaryOpExpr
| expr binaryOp
| idExpr
| intExpr
BNF GRAMMARS
ANTLR
LANGUAGE LEVEL
Expanding horizons of our thought
Grammars
Alphabets
Languages
Syntactics
Semantics
Compilers
State Machines
Regular Languages
Context-Free
Grammars
PHILOSOPHICAL
LEVEL
Languages and Thought
“Because language does not mimic the world, you can do things
with it that are impossible under the law of physics. You are a god
in language. You can create. Destroy. Rearrange. Shove words
around however you like. You can make up stories about things
that never happened to people who never existed. You can push a
camel through the eye of a needle. It’s easy if ‘camel' and ‘needle’
are words.
In language, mortality does not tick relentlessly. You can conceive
of yourself as alive forever. Or you can imagine yourself dead. And
then alive again. You can live, die, live, die, live, die, live.”
The First Word: The Search for the Origins of Language
Christine Kenneally
Imaginary
Virtual
Real
Understand the Power of Languages,
Domain-Specific Languages,
for your project, architecture and
business
Language-Driven Development
Define a DSL that is going to represent the whole set of functionalities
that your application communicates with the external world.
Build this DSL in top of your high-level language, this second will
implement the more broad domain logic of your application.
Design your architecture, UX, ubiquitous language, meetings with
business, testing, external APIs… in top of that DSL.
This DSL is going to be the language your application speaks
For questions or suggestions:
!
Marcos Vinicius
@bymarkone
github.com/bymarkone
THANK YOU

More Related Content

Similar to What if-your-application-could-speak

Ubiquity: Designing a Multilingual Natural Language Interface
Ubiquity: Designing a Multilingual Natural Language InterfaceUbiquity: Designing a Multilingual Natural Language Interface
Ubiquity: Designing a Multilingual Natural Language InterfaceMichael Yoshitaka Erlewine
 
Better Accessibility with Lex, Polly, and Alexa | AWS Public Sector Summit 2017
Better Accessibility with Lex, Polly, and Alexa | AWS Public Sector Summit 2017Better Accessibility with Lex, Polly, and Alexa | AWS Public Sector Summit 2017
Better Accessibility with Lex, Polly, and Alexa | AWS Public Sector Summit 2017Amazon Web Services
 
Build your own Language - Why and How?
Build your own Language - Why and How?Build your own Language - Why and How?
Build your own Language - Why and How?Markus Voelter
 
Java As A Programming Language
Java As A Programming LanguageJava As A Programming Language
Java As A Programming LanguageJennifer Wright
 
A11Y? I18N? L10N? UTF8? WTF? Understanding the connections between: accessib...
A11Y? I18N? L10N? UTF8? WTF? Understanding the connections between:  accessib...A11Y? I18N? L10N? UTF8? WTF? Understanding the connections between:  accessib...
A11Y? I18N? L10N? UTF8? WTF? Understanding the connections between: accessib...mtoppa
 
Building speech enabled products with Amazon Polly & Amazon Lex
Building speech enabled products with Amazon Polly & Amazon LexBuilding speech enabled products with Amazon Polly & Amazon Lex
Building speech enabled products with Amazon Polly & Amazon LexAmazon Web Services
 
10 tips for a usable website
10 tips for a usable website10 tips for a usable website
10 tips for a usable websiteBart De Waele
 
Google Cloud Platform - Cloud-Native Roadshow Stuttgart
Google Cloud Platform - Cloud-Native Roadshow StuttgartGoogle Cloud Platform - Cloud-Native Roadshow Stuttgart
Google Cloud Platform - Cloud-Native Roadshow StuttgartVMware Tanzu
 
Envisioning the Future of Language Workbenches
Envisioning the Future of Language WorkbenchesEnvisioning the Future of Language Workbenches
Envisioning the Future of Language WorkbenchesMarkus Voelter
 
languagetranslator-211028085026.pptx
languagetranslator-211028085026.pptxlanguagetranslator-211028085026.pptx
languagetranslator-211028085026.pptxMDASIFALI32
 
Stream SQL eventflow visual programming for real programmers presentation
Stream SQL eventflow visual programming for real programmers presentationStream SQL eventflow visual programming for real programmers presentation
Stream SQL eventflow visual programming for real programmers presentationstreambase
 
AWS Artificial Intelligence Day - Toronto
AWS Artificial Intelligence Day - TorontoAWS Artificial Intelligence Day - Toronto
AWS Artificial Intelligence Day - TorontoAmazon Web Services
 
Amazon Web Services - Strategy and Current Offering
Amazon Web Services - Strategy and Current OfferingAmazon Web Services - Strategy and Current Offering
Amazon Web Services - Strategy and Current OfferingAmazon Web Services
 
Google Cloud Platform Munich
Google Cloud Platform MunichGoogle Cloud Platform Munich
Google Cloud Platform MunichVMware Tanzu
 
JavaScript - The new English
JavaScript - The new EnglishJavaScript - The new English
JavaScript - The new EnglishMário Gonçalves
 
Java And Community Support
Java And Community SupportJava And Community Support
Java And Community SupportWilliam Grosso
 
Specification Of The Programming Language Of Java
Specification Of The Programming Language Of JavaSpecification Of The Programming Language Of Java
Specification Of The Programming Language Of JavaKim Moore
 
COMPUTER LANGUAGES AND THERE DIFFERENCE
COMPUTER LANGUAGES AND THERE DIFFERENCE COMPUTER LANGUAGES AND THERE DIFFERENCE
COMPUTER LANGUAGES AND THERE DIFFERENCE Pavan Kalyan
 
English de lenguaje de programacion
English de lenguaje de programacionEnglish de lenguaje de programacion
English de lenguaje de programacionVillalba Griselda
 

Similar to What if-your-application-could-speak (20)

Ubiquity: Designing a Multilingual Natural Language Interface
Ubiquity: Designing a Multilingual Natural Language InterfaceUbiquity: Designing a Multilingual Natural Language Interface
Ubiquity: Designing a Multilingual Natural Language Interface
 
Better Accessibility with Lex, Polly, and Alexa | AWS Public Sector Summit 2017
Better Accessibility with Lex, Polly, and Alexa | AWS Public Sector Summit 2017Better Accessibility with Lex, Polly, and Alexa | AWS Public Sector Summit 2017
Better Accessibility with Lex, Polly, and Alexa | AWS Public Sector Summit 2017
 
Build your own Language - Why and How?
Build your own Language - Why and How?Build your own Language - Why and How?
Build your own Language - Why and How?
 
Java As A Programming Language
Java As A Programming LanguageJava As A Programming Language
Java As A Programming Language
 
About programming languages
About programming languagesAbout programming languages
About programming languages
 
A11Y? I18N? L10N? UTF8? WTF? Understanding the connections between: accessib...
A11Y? I18N? L10N? UTF8? WTF? Understanding the connections between:  accessib...A11Y? I18N? L10N? UTF8? WTF? Understanding the connections between:  accessib...
A11Y? I18N? L10N? UTF8? WTF? Understanding the connections between: accessib...
 
Building speech enabled products with Amazon Polly & Amazon Lex
Building speech enabled products with Amazon Polly & Amazon LexBuilding speech enabled products with Amazon Polly & Amazon Lex
Building speech enabled products with Amazon Polly & Amazon Lex
 
10 tips for a usable website
10 tips for a usable website10 tips for a usable website
10 tips for a usable website
 
Google Cloud Platform - Cloud-Native Roadshow Stuttgart
Google Cloud Platform - Cloud-Native Roadshow StuttgartGoogle Cloud Platform - Cloud-Native Roadshow Stuttgart
Google Cloud Platform - Cloud-Native Roadshow Stuttgart
 
Envisioning the Future of Language Workbenches
Envisioning the Future of Language WorkbenchesEnvisioning the Future of Language Workbenches
Envisioning the Future of Language Workbenches
 
languagetranslator-211028085026.pptx
languagetranslator-211028085026.pptxlanguagetranslator-211028085026.pptx
languagetranslator-211028085026.pptx
 
Stream SQL eventflow visual programming for real programmers presentation
Stream SQL eventflow visual programming for real programmers presentationStream SQL eventflow visual programming for real programmers presentation
Stream SQL eventflow visual programming for real programmers presentation
 
AWS Artificial Intelligence Day - Toronto
AWS Artificial Intelligence Day - TorontoAWS Artificial Intelligence Day - Toronto
AWS Artificial Intelligence Day - Toronto
 
Amazon Web Services - Strategy and Current Offering
Amazon Web Services - Strategy and Current OfferingAmazon Web Services - Strategy and Current Offering
Amazon Web Services - Strategy and Current Offering
 
Google Cloud Platform Munich
Google Cloud Platform MunichGoogle Cloud Platform Munich
Google Cloud Platform Munich
 
JavaScript - The new English
JavaScript - The new EnglishJavaScript - The new English
JavaScript - The new English
 
Java And Community Support
Java And Community SupportJava And Community Support
Java And Community Support
 
Specification Of The Programming Language Of Java
Specification Of The Programming Language Of JavaSpecification Of The Programming Language Of Java
Specification Of The Programming Language Of Java
 
COMPUTER LANGUAGES AND THERE DIFFERENCE
COMPUTER LANGUAGES AND THERE DIFFERENCE COMPUTER LANGUAGES AND THERE DIFFERENCE
COMPUTER LANGUAGES AND THERE DIFFERENCE
 
English de lenguaje de programacion
English de lenguaje de programacionEnglish de lenguaje de programacion
English de lenguaje de programacion
 

Recently uploaded

TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesBoston Institute of Analytics
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 

Recently uploaded (20)

TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 

What if-your-application-could-speak

  • 1. WHAT IF YOUR APPLICATION COULD SPEAK? Domain-Specific Language concepts, applications and implementation. An introduction to Language-Driven Development. Marcos Vinicius @bymarkone
  • 2. Imagine you have a problem to solve …
  • 3. SUPPLY CHAIN MANAGEMENT The complexity of inter company documents exchange
  • 5. Was not satisfactory for this context - too much work! Altova MapForce - the best solution we found
  • 6. Document oriented data model Set of rules that convert an layout to another A repository of identified layouts Several helper functions to help with the task An idea to solve the problem
  • 7. Will it work? After three months - Huge architecture effort spent, not a single functionality, people lost in system complexity
  • 8. A language with the semantics of the Document Translation Domain that allowed us to succeed, and to be really faster We decided to create a…
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17. A new era arrived
  • 18. BUSINESS LEVEL How The Language-Driven Approach Can Change Business
  • 19. OTHER DSL ! ▫︎A DSL to query Document ▫︎A DSL to program inside Documents ▫︎A DSL to configure Rules for file transfer ▫︎A DSL to configure networks of Documents ▫︎A DSL to configure security and access
  • 20. META-LANGUAGE ! ▫︎A language that defines a language ▫︎Define name of the objects and verbs of your language ▫︎Define adjective, if they are mandatory, their datatype ▫︎Allows you have feedback of language syntax in parsing ▫︎Validate a language semantically ▫︎Provide auto-generated APIs documentation ▫︎Provide information for client IDEs
  • 21. LANGUAGE TEMPTING ! ▫︎A feature that allows you to simplify the language that the end user can access ! ! ! ! ! ▫︎Granular functionality and modularisation ▫︎On Demand combination to build complex operations define User “bymarkone" with e-mail “bymarkone@tw.com“; create Account for “bymarkone”; activate Account, User “bymarkone”; send confirmation to "bymarkone" define and activate User "bymarkone" becomes
  • 22. BUSINESS SCRIPTING ! ▫︎When we have large amount of tasks ▫︎E.g. Configuring a new account with N users ▫︎E.g. Setting up a system ▫︎E.g. Sending download instructions to several clients ▫︎Speed in implementation of even complex systems
  • 23. DEMOING ! ▫︎Build N scenarios for demoing you application ▫︎End users can understand the language and play with scenarios
  • 25. add User “Robespierre”; add User “Rosseau”; ! “Rosseau” invites “Roberpierre”; “Robespierre" accept invite from “Rosseau" “Rosseau” create group “Vive la France!” with tag “Liberté, égalité, fraternité” “Robespierre" post in “Vive la France!”, message “Let's meet next 14th and kill the king!” ! “Roberpierre" list friends; “Rosseau" add message "People who know little are usually great talkers, while men who know much say little”; ! “Rosseau" add message “I am sorry to inform you all that our friend and compatriot Roberspierre was guillotined. This bloody revolution is changing out country at a very high price. ” Let’s do a Social Network System
  • 27. API'S ! ▫︎REST API - A set of URL’s (names) and Actions ▫︎Must be expressive ▫︎Limited - beyond crud, has only HTTP verbs ▫︎With a rich language is hard to draw an API that is as rich ▫︎Expose and API (it can be rest) for language processing
  • 28. USER EXPERIENCE - UX ! ▫︎Should be build in top of the language ▫︎We don’t care how modern and visual is the design, as long as it talks the domain language ▫︎E.g. SQL is a DSL on data query and manipulation - how many UI’s are built in top of that? ▫︎Will an editor with auto-complete and validation work?
  • 29. TESTING ! ▫︎Unit, integration, component and contract test the application (independent of the language) ▫︎Add tests for language processing - parsing and interpreting ▫︎Add tests for language processing feedback ▫︎Add tests for domain and service executing through DSL
  • 30. OVERALL ARCHITECTURE ! ▫︎UI Layer ▫︎Web Layer (REST) ▫︎Language Processing Layer ▫︎Domain/Services Layer ▫︎Infrastructure Layer UI Layer Web / Rest Layer Language Processing Domain Layer Infrastructure Layer From Martin Fowler’s DSL
  • 32. COMMUNICATION ! ▫︎The DSL is the language of communication of business ▫︎Devs, QA, BA, PO, Business Specialist, even Stakeholders ▫︎Ubiquitous Language ▫︎“Semantic Meetings” to understand and refine words of the language, and their meaning
  • 33. DOMAIN-DRIVEN DESIGN ! ▫︎Important to start the discussion about Domain meaning - Entities, Services, Aggregates, Value-Objects ▫︎Design and Domain are emergent - they are created/ refactored with the development of the application ▫︎Create the DSL ▫︎Create the Semantic Model - connected to the DSL ▫︎Semantic Model is different than the Domain Model - the first is a subset of the second.
  • 34. PROGRAMMING LEVEL The fun of building a language
  • 35. OVERALL OF LANGUAGE PROCESSING Lexical Analysis Parsing Semantic Analysis Text Tokens AST Abstract Syntax Tree Code Generation Semantic
 Model
  • 36. grammar IML; ! program : (functionDecl | stat | expr)+; functionDecl : type ID LP formalParams? RP block; formalParams : formalParam (COMMA formalParam)*; formalParam : type ID; type : (DOUBLEDECL | INTDECL | STRINGDECL); varDecl : type ID (EQUAL expr)? SEMICOLON ; block : LB stat* RB; assignment : expr EQUAL expr SEMICOLON; conditional : IF expr THEN stat (ELSE stat)?; returnstat : RETURN expr? SEMICOLON; stat : block | varDecl | conditional | returnstat | assignment | expr SEMICOLON ; expr : functionExpr // f() | arrayExpr // g[] | unaryOpExpr | expr binaryOp | idExpr | intExpr BNF GRAMMARS
  • 37. ANTLR
  • 41. “Because language does not mimic the world, you can do things with it that are impossible under the law of physics. You are a god in language. You can create. Destroy. Rearrange. Shove words around however you like. You can make up stories about things that never happened to people who never existed. You can push a camel through the eye of a needle. It’s easy if ‘camel' and ‘needle’ are words. In language, mortality does not tick relentlessly. You can conceive of yourself as alive forever. Or you can imagine yourself dead. And then alive again. You can live, die, live, die, live, die, live.” The First Word: The Search for the Origins of Language Christine Kenneally
  • 43.
  • 44.
  • 45.
  • 46. Understand the Power of Languages, Domain-Specific Languages, for your project, architecture and business
  • 47. Language-Driven Development Define a DSL that is going to represent the whole set of functionalities that your application communicates with the external world. Build this DSL in top of your high-level language, this second will implement the more broad domain logic of your application. Design your architecture, UX, ubiquitous language, meetings with business, testing, external APIs… in top of that DSL. This DSL is going to be the language your application speaks
  • 48. For questions or suggestions: ! Marcos Vinicius @bymarkone github.com/bymarkone THANK YOU