SlideShare una empresa de Scribd logo
1 de 38
About Clack
    Hatena Co., Ltd.
  Eitarow Fukamachi




                                                      Oct 24, 2012
                       International Lisp Conference @ Kyoto, Japan
About Me
•   Eitarow FUKAMACHI (≒ eight arrow)
•   Live in Kyoto, Japan
•   Common Lisp user since 2010
•   Attended ILC2010 @ Reno
•   (I’m using Clozure CL)


•   Web application developer at Hatena Co., Ltd.
•   Using Perl at work
Products

• Clack          • CL-Markup

• Caveman        • CL-Project

• ningle         • Shelly

• CL-TEST-MORE                             etc.


• CL-DBI


                       See github.com/fukamachi
What’s “Clack”?
What’s Clack?
•   Web application environment
    •   Foundation for Web application framework
•   Equivalent to...
    •   Python’s WSGI, Ruby’s Rack, Perl’s Plack/PSGI and
        Clojure’s Ring
What’s Clack?
•   Web application environment
    •   Foundation for Web application framework
•   Equivalent to...
    •   Python’s WSGI, Ruby’s Rack, Perl’s Plack/PSGI and
        Clojure’s Ring

•   Abstract HTTP into a simple API (Portability)
•   Share code across web frameworks (Reusability)
Clack’s
“Portability”
“Portability”
•   Abstract a web server




                            ※Application includes Web frameworks.
“Portability”
•   Abstract a web server




                            ※Application includes Web frameworks.
“Portability”
(clack:clackup app)
;-> Hunchentoot server is started.
;   Listening on localhost:5000.
;   # #x30200A102B3D
“Portability”
(clack:clackup app)
;-> Hunchentoot server is started.
;   Listening on localhost:5000.
;   # #x30200A102B3D


(clack:clackup app :server :hunchentoot) ;; default
(clack:clackup app :server :fcgi)
(clack:clackup app :server :apache)
Clack’s
“Reusability”
“Reusability”
•   Application takes Request and returns Response
“Reusability”
•   Application takes Request and returns Response
•   Extension mechanism called “Middleware”
•   “Middleware” can be reused
“Show me how to use it!”
Example 1
“Hello,   World!”
Example: Hello, World!

(defun app (env)
  (declare (ignore env))
  '(200
    (:content-type "text/plain")
    ("Hello, World!")))

(clack:clackup #'app)
Example: Hello, World!

(defun app (env)
  (declare (ignore env))
  '(200
  ‘(200
    (:content-type "text/plain")
                   “text/plain”)
    ("Hello, World!")))
    (“Hello, World!”))

(clack:clackup #'app)
Example: Hello, World!

            (defun app (env)
                (declare (ignore env))
                '(200
                ‘(200
(:request-method :GET
 :script-name ""   (:content-type "text/plain")
                                  “text/plain”)
 :path-info "/sns/member"
                   ("Hello, World!")))
                   (“Hello, World!”))
 :query-string "id=3"
:server-name "localhost"
:server-port 5000
           (clack:clackup #'app)
:request-uri "/sns/member?id=3"
:server-protocol :HTTP/1.1
:http-user-agent "Mozilla/5.0 (Macintosh..."
:remote-addr "127.0.0.1"
:remote-port 26077
:http-referer nil
:http-host "localhost:5000"
:http-cookies nil)
Example: Hello, World!
Example 2
“Conditional     flow”
Example: Conditional flow
(defun app (env)
  (cond
    ((string= (getf env :path-info) "/favicon.ico")
     '(200
        (:content-type "image/x-icon")
        #p"/path/to/favicon.ico"))
    ((string= (getf env :path-info) "/")
     '(200
        (:content-type "text/html")
        ("Hello again")))
    (t '(404 (:content-type "text/plain") ("Not found")))))

(clack:clackup #'app)
Example 3
“Basic   Auth”
Example: Basic Auth
(import ‘(clack.builder:builder
          clack.middleware.auth.basic:<clack-middleware-auth-basic>))

(defun app (env)
  (declare (ignore env))
  '(200
    (:content-type "text/plain")
    ("Hello, World!")))

(clack:clackup
  (builder
    (<clack-middleware-auth-basic>
      :authenticator
      (lambda (user pass)
        (and (string= user "johnmccarthy")
             (string= password "password"))))
    #'app))
Example: Basic Auth
Example 4
“Static   files”
Example: Static files
(import ‘(clack.builder:builder
          clack.middleware.static:<clack-middleware-static>))

(defun app (req)
  (declare (ignore req))
  '(200
    (:content-type "text/plain")
    ("Hello, World!")))

(clack:clackup
  (builder
    (<clack-middleware-static>
     :path (lambda (path)
             (when (ppcre:scan "^/(?:images|css|js)/" path)
               (ppcre:regex-replace "^/[^/]+" path "")))
     :root #p"static/")
    #'app))
What are the benefits of using Clack?
Clack allows you to:
•   If you’re a “Web framework developer”...
    •   Clack provides server interfaces.
    •   Reuse code from other web frameworks.
Clack allows you to:
•   If you’re a “Web framework developer”...
    •   Clack provides server interfaces.
    •   Reuse code from other web frameworks.
•   If you’re a “Web application engineer”...
    •   Reuse code in your projects
    •   Extensible
Frameworks
Frameworks


•   Caveman
    •   A Sinatra-like micro framework
•   ningle
    •   A really micro framework
Frameworks


•   Caveman (fukamachi.github.com/caveman/)
    •   A Sinatra-like micro framework
•   ningle (fukamachi.github.com/ningle/)
    •   A really micro framework
Future Work
Future Work
•   More Middlewares
•   More Servers
    •   non-blocking web server?
    •   preforking web server?
Future Work
•   More Middlewares
•   More Servers
    •   non-blocking web server?
    •   preforking web server?
•   More Frameworks
    •   Ruby on Rails?
THE END
Thank you for listening
Maybe we still have time.

    Any questions in easy English?



                    To Japanese speakers:
                    Please translate a question for me if it looks I don't understand it.
                    僕が質問を理解できていなさそうだったら翻訳してください><

Más contenido relacionado

La actualidad más candente

remote-method-guesser - BHUSA2021 Arsenal
remote-method-guesser - BHUSA2021 Arsenal remote-method-guesser - BHUSA2021 Arsenal
remote-method-guesser - BHUSA2021 Arsenal
Tobias Neitzel
 
La bibliothèque, un espace de participation
La bibliothèque, un espace de participationLa bibliothèque, un espace de participation
La bibliothèque, un espace de participation
Dujol Lionel
 
Constexpr 中3女子テクニック
Constexpr 中3女子テクニックConstexpr 中3女子テクニック
Constexpr 中3女子テクニック
Genya Murakami
 
マルチコア時代の並列プログラミング
マルチコア時代の並列プログラミングマルチコア時代の並列プログラミング
マルチコア時代の並列プログラミング
Akihiko Matuura
 

La actualidad más candente (20)

remote-method-guesser - BHUSA2021 Arsenal
remote-method-guesser - BHUSA2021 Arsenal remote-method-guesser - BHUSA2021 Arsenal
remote-method-guesser - BHUSA2021 Arsenal
 
DPDKを用いたネットワークスタック,高性能通信基盤開発
DPDKを用いたネットワークスタック,高性能通信基盤開発DPDKを用いたネットワークスタック,高性能通信基盤開発
DPDKを用いたネットワークスタック,高性能通信基盤開発
 
La bibliothèque, un espace de participation
La bibliothèque, un espace de participationLa bibliothèque, un espace de participation
La bibliothèque, un espace de participation
 
4章 Linuxカーネル - 割り込み・例外 3
4章 Linuxカーネル - 割り込み・例外 34章 Linuxカーネル - 割り込み・例外 3
4章 Linuxカーネル - 割り込み・例外 3
 
Constexpr 中3女子テクニック
Constexpr 中3女子テクニックConstexpr 中3女子テクニック
Constexpr 中3女子テクニック
 
Les protocoles IIIF : présentation des potentialités
Les protocoles IIIF : présentation des potentialitésLes protocoles IIIF : présentation des potentialités
Les protocoles IIIF : présentation des potentialités
 
Step-by-Step Introduction to Apache Flink
Step-by-Step Introduction to Apache Flink Step-by-Step Introduction to Apache Flink
Step-by-Step Introduction to Apache Flink
 
マルチコア時代の並列プログラミング
マルチコア時代の並列プログラミングマルチコア時代の並列プログラミング
マルチコア時代の並列プログラミング
 
LLVM 總是打開你的心:從電玩模擬器看編譯器應用實例
LLVM 總是打開你的心:從電玩模擬器看編譯器應用實例LLVM 總是打開你的心:從電玩模擬器看編譯器應用實例
LLVM 總是打開你的心:從電玩模擬器看編譯器應用實例
 
Rust vs C++
Rust vs C++Rust vs C++
Rust vs C++
 
Développement informatique : Algorithmique II : Techniques de recherche en in...
Développement informatique : Algorithmique II : Techniques de recherche en in...Développement informatique : Algorithmique II : Techniques de recherche en in...
Développement informatique : Algorithmique II : Techniques de recherche en in...
 
eBPF Trace from Kernel to Userspace
eBPF Trace from Kernel to UserspaceeBPF Trace from Kernel to Userspace
eBPF Trace from Kernel to Userspace
 
TRex Traffic Generator - Hanoch Haim
TRex Traffic Generator - Hanoch HaimTRex Traffic Generator - Hanoch Haim
TRex Traffic Generator - Hanoch Haim
 
La fonction accueil en Bibliothèque
La fonction accueil en BibliothèqueLa fonction accueil en Bibliothèque
La fonction accueil en Bibliothèque
 
SFO15-202: Towards Multi-Threaded Tiny Code Generator (TCG) in QEMU
SFO15-202: Towards Multi-Threaded Tiny Code Generator (TCG) in QEMUSFO15-202: Towards Multi-Threaded Tiny Code Generator (TCG) in QEMU
SFO15-202: Towards Multi-Threaded Tiny Code Generator (TCG) in QEMU
 
스위프트, 코틀린과 모던언어의 특징 (Swift, Kotlin and Modern Languages)
스위프트, 코틀린과 모던언어의 특징 (Swift, Kotlin and Modern Languages)스위프트, 코틀린과 모던언어의 특징 (Swift, Kotlin and Modern Languages)
스위프트, 코틀린과 모던언어의 특징 (Swift, Kotlin and Modern Languages)
 
La fonction accueil en bibliothèque universitaire
La fonction accueil en bibliothèque universitaireLa fonction accueil en bibliothèque universitaire
La fonction accueil en bibliothèque universitaire
 
Les bibliotheques aujourdhui
Les bibliotheques aujourdhuiLes bibliotheques aujourdhui
Les bibliotheques aujourdhui
 
Fascicule de tp atelier développement web
Fascicule de tp atelier développement webFascicule de tp atelier développement web
Fascicule de tp atelier développement web
 
katagaitai CTF勉強会 #5 Crypto
katagaitai CTF勉強会 #5 Cryptokatagaitai CTF勉強会 #5 Crypto
katagaitai CTF勉強会 #5 Crypto
 

Destacado

Clack & Caveman
Clack & CavemanClack & Caveman
Clack & Caveman
fukamachi
 
自分をClojure化する方法
自分をClojure化する方法自分をClojure化する方法
自分をClojure化する方法
fukamachi
 

Destacado (20)

Integral - New O/R Mapper for Common Lisp
Integral - New O/R Mapper for Common LispIntegral - New O/R Mapper for Common Lisp
Integral - New O/R Mapper for Common Lisp
 
Woo: Writing a fast web server
Woo: Writing a fast web serverWoo: Writing a fast web server
Woo: Writing a fast web server
 
Clack: glue for web apps
Clack: glue for web appsClack: glue for web apps
Clack: glue for web apps
 
Clack & Caveman
Clack & CavemanClack & Caveman
Clack & Caveman
 
SBLint
SBLintSBLint
SBLint
 
Mito, a successor of Integral
Mito, a successor of IntegralMito, a successor of Integral
Mito, a successor of Integral
 
Lisp Poetry
Lisp PoetryLisp Poetry
Lisp Poetry
 
Shelly
ShellyShelly
Shelly
 
第四回関西Emacs「ari.el」
第四回関西Emacs「ari.el」第四回関西Emacs「ari.el」
第四回関西Emacs「ari.el」
 
Writing a fast HTTP parser
Writing a fast HTTP parserWriting a fast HTTP parser
Writing a fast HTTP parser
 
Lispで仕事をするために
Lispで仕事をするためにLispで仕事をするために
Lispで仕事をするために
 
Redesigning Common Lisp
Redesigning Common LispRedesigning Common Lisp
Redesigning Common Lisp
 
Dexador Rises
Dexador RisesDexador Rises
Dexador Rises
 
SALVUS HOUSE lo
SALVUS HOUSE loSALVUS HOUSE lo
SALVUS HOUSE lo
 
Developing high-performance network servers in Lisp
Developing high-performance network servers in LispDeveloping high-performance network servers in Lisp
Developing high-performance network servers in Lisp
 
JavaからClojure、そして夢の世界へ
JavaからClojure、そして夢の世界へJavaからClojure、そして夢の世界へ
JavaからClojure、そして夢の世界へ
 
自分をClojure化する方法
自分をClojure化する方法自分をClojure化する方法
自分をClojure化する方法
 
Lisp Meet Up #31, Clake: a GNU make-like build utility in Common Lisp
Lisp Meet Up #31, Clake: a GNU make-like build utility in Common LispLisp Meet Up #31, Clake: a GNU make-like build utility in Common Lisp
Lisp Meet Up #31, Clake: a GNU make-like build utility in Common Lisp
 
Lisperの見る世界
Lisperの見る世界Lisperの見る世界
Lisperの見る世界
 
オウンドメディアのコンテンツ事例集40選(サムライト)
オウンドメディアのコンテンツ事例集40選(サムライト)オウンドメディアのコンテンツ事例集40選(サムライト)
オウンドメディアのコンテンツ事例集40選(サムライト)
 

Similar a About Clack

Cannibalising The Google App Engine
Cannibalising The  Google  App  EngineCannibalising The  Google  App  Engine
Cannibalising The Google App Engine
catherinewall
 
Web Development using Ruby on Rails
Web Development using Ruby on RailsWeb Development using Ruby on Rails
Web Development using Ruby on Rails
Avi Kedar
 
Intro to node.js - Ran Mizrahi (28/8/14)
Intro to node.js - Ran Mizrahi (28/8/14)Intro to node.js - Ran Mizrahi (28/8/14)
Intro to node.js - Ran Mizrahi (28/8/14)
Ran Mizrahi
 

Similar a About Clack (20)

Everything-as-code. A polyglot adventure. #DevoxxPL
Everything-as-code. A polyglot adventure. #DevoxxPLEverything-as-code. A polyglot adventure. #DevoxxPL
Everything-as-code. A polyglot adventure. #DevoxxPL
 
Everything-as-code - A polyglot adventure
Everything-as-code - A polyglot adventureEverything-as-code - A polyglot adventure
Everything-as-code - A polyglot adventure
 
Cannibalising The Google App Engine
Cannibalising The  Google  App  EngineCannibalising The  Google  App  Engine
Cannibalising The Google App Engine
 
IVS CTO Night And Day 2018 Winter - [re:Cap] Serverless & Mobile
IVS CTO Night And Day 2018 Winter - [re:Cap] Serverless & MobileIVS CTO Night And Day 2018 Winter - [re:Cap] Serverless & Mobile
IVS CTO Night And Day 2018 Winter - [re:Cap] Serverless & Mobile
 
Node azure
Node azureNode azure
Node azure
 
Large-scaled Deploy Over 100 Servers in 3 Minutes
Large-scaled Deploy Over 100 Servers in 3 MinutesLarge-scaled Deploy Over 100 Servers in 3 Minutes
Large-scaled Deploy Over 100 Servers in 3 Minutes
 
Advanced technic for OS upgrading in 3 minutes
Advanced technic for OS upgrading in 3 minutesAdvanced technic for OS upgrading in 3 minutes
Advanced technic for OS upgrading in 3 minutes
 
introduction to node.js
introduction to node.jsintroduction to node.js
introduction to node.js
 
NullMQ @ PDX
NullMQ @ PDXNullMQ @ PDX
NullMQ @ PDX
 
Ratpack Web Framework
Ratpack Web FrameworkRatpack Web Framework
Ratpack Web Framework
 
Web Development using Ruby on Rails
Web Development using Ruby on RailsWeb Development using Ruby on Rails
Web Development using Ruby on Rails
 
Google App Engine Java, Groovy and Gaelyk
Google App Engine Java, Groovy and GaelykGoogle App Engine Java, Groovy and Gaelyk
Google App Engine Java, Groovy and Gaelyk
 
Serverless with Spring Cloud Function, Knative and riff #SpringOneTour #s1t
Serverless with Spring Cloud Function, Knative and riff #SpringOneTour #s1tServerless with Spring Cloud Function, Knative and riff #SpringOneTour #s1t
Serverless with Spring Cloud Function, Knative and riff #SpringOneTour #s1t
 
XQuery in the Cloud
XQuery in the CloudXQuery in the Cloud
XQuery in the Cloud
 
PSGI/Plack OSDC.TW
PSGI/Plack OSDC.TWPSGI/Plack OSDC.TW
PSGI/Plack OSDC.TW
 
WTF is Twisted?
WTF is Twisted?WTF is Twisted?
WTF is Twisted?
 
Next Generation DevOps in Drupal: DrupalCamp London 2014
Next Generation DevOps in Drupal: DrupalCamp London 2014Next Generation DevOps in Drupal: DrupalCamp London 2014
Next Generation DevOps in Drupal: DrupalCamp London 2014
 
Intro to node.js - Ran Mizrahi (27/8/2014)
Intro to node.js - Ran Mizrahi (27/8/2014)Intro to node.js - Ran Mizrahi (27/8/2014)
Intro to node.js - Ran Mizrahi (27/8/2014)
 
Intro to node.js - Ran Mizrahi (28/8/14)
Intro to node.js - Ran Mizrahi (28/8/14)Intro to node.js - Ran Mizrahi (28/8/14)
Intro to node.js - Ran Mizrahi (28/8/14)
 
Get your teeth into Plack
Get your teeth into PlackGet your teeth into Plack
Get your teeth into Plack
 

Último

Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Último (20)

EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
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
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
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
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
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
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 

About Clack

  • 1. About Clack Hatena Co., Ltd. Eitarow Fukamachi Oct 24, 2012 International Lisp Conference @ Kyoto, Japan
  • 2. About Me • Eitarow FUKAMACHI (≒ eight arrow) • Live in Kyoto, Japan • Common Lisp user since 2010 • Attended ILC2010 @ Reno • (I’m using Clozure CL) • Web application developer at Hatena Co., Ltd. • Using Perl at work
  • 3. Products • Clack • CL-Markup • Caveman • CL-Project • ningle • Shelly • CL-TEST-MORE etc. • CL-DBI See github.com/fukamachi
  • 5. What’s Clack? • Web application environment • Foundation for Web application framework • Equivalent to... • Python’s WSGI, Ruby’s Rack, Perl’s Plack/PSGI and Clojure’s Ring
  • 6. What’s Clack? • Web application environment • Foundation for Web application framework • Equivalent to... • Python’s WSGI, Ruby’s Rack, Perl’s Plack/PSGI and Clojure’s Ring • Abstract HTTP into a simple API (Portability) • Share code across web frameworks (Reusability)
  • 8. “Portability” • Abstract a web server ※Application includes Web frameworks.
  • 9. “Portability” • Abstract a web server ※Application includes Web frameworks.
  • 10. “Portability” (clack:clackup app) ;-> Hunchentoot server is started. ; Listening on localhost:5000. ; # #x30200A102B3D
  • 11. “Portability” (clack:clackup app) ;-> Hunchentoot server is started. ; Listening on localhost:5000. ; # #x30200A102B3D (clack:clackup app :server :hunchentoot) ;; default (clack:clackup app :server :fcgi) (clack:clackup app :server :apache)
  • 13. “Reusability” • Application takes Request and returns Response
  • 14. “Reusability” • Application takes Request and returns Response • Extension mechanism called “Middleware” • “Middleware” can be reused
  • 15. “Show me how to use it!”
  • 16. Example 1 “Hello, World!”
  • 17. Example: Hello, World! (defun app (env) (declare (ignore env)) '(200 (:content-type "text/plain") ("Hello, World!"))) (clack:clackup #'app)
  • 18. Example: Hello, World! (defun app (env) (declare (ignore env)) '(200 ‘(200 (:content-type "text/plain") “text/plain”) ("Hello, World!"))) (“Hello, World!”)) (clack:clackup #'app)
  • 19. Example: Hello, World! (defun app (env) (declare (ignore env)) '(200 ‘(200 (:request-method :GET :script-name "" (:content-type "text/plain") “text/plain”) :path-info "/sns/member" ("Hello, World!"))) (“Hello, World!”)) :query-string "id=3" :server-name "localhost" :server-port 5000 (clack:clackup #'app) :request-uri "/sns/member?id=3" :server-protocol :HTTP/1.1 :http-user-agent "Mozilla/5.0 (Macintosh..." :remote-addr "127.0.0.1" :remote-port 26077 :http-referer nil :http-host "localhost:5000" :http-cookies nil)
  • 22. Example: Conditional flow (defun app (env) (cond ((string= (getf env :path-info) "/favicon.ico") '(200 (:content-type "image/x-icon") #p"/path/to/favicon.ico")) ((string= (getf env :path-info) "/") '(200 (:content-type "text/html") ("Hello again"))) (t '(404 (:content-type "text/plain") ("Not found"))))) (clack:clackup #'app)
  • 24. Example: Basic Auth (import ‘(clack.builder:builder clack.middleware.auth.basic:<clack-middleware-auth-basic>)) (defun app (env) (declare (ignore env)) '(200 (:content-type "text/plain") ("Hello, World!"))) (clack:clackup (builder (<clack-middleware-auth-basic> :authenticator (lambda (user pass) (and (string= user "johnmccarthy") (string= password "password")))) #'app))
  • 26. Example 4 “Static files”
  • 27. Example: Static files (import ‘(clack.builder:builder clack.middleware.static:<clack-middleware-static>)) (defun app (req) (declare (ignore req)) '(200 (:content-type "text/plain") ("Hello, World!"))) (clack:clackup (builder (<clack-middleware-static> :path (lambda (path) (when (ppcre:scan "^/(?:images|css|js)/" path) (ppcre:regex-replace "^/[^/]+" path ""))) :root #p"static/") #'app))
  • 28. What are the benefits of using Clack?
  • 29. Clack allows you to: • If you’re a “Web framework developer”... • Clack provides server interfaces. • Reuse code from other web frameworks.
  • 30. Clack allows you to: • If you’re a “Web framework developer”... • Clack provides server interfaces. • Reuse code from other web frameworks. • If you’re a “Web application engineer”... • Reuse code in your projects • Extensible
  • 32. Frameworks • Caveman • A Sinatra-like micro framework • ningle • A really micro framework
  • 33. Frameworks • Caveman (fukamachi.github.com/caveman/) • A Sinatra-like micro framework • ningle (fukamachi.github.com/ningle/) • A really micro framework
  • 35. Future Work • More Middlewares • More Servers • non-blocking web server? • preforking web server?
  • 36. Future Work • More Middlewares • More Servers • non-blocking web server? • preforking web server? • More Frameworks • Ruby on Rails?
  • 37. THE END Thank you for listening
  • 38. Maybe we still have time. Any questions in easy English? To Japanese speakers: Please translate a question for me if it looks I don't understand it. 僕が質問を理解できていなさそうだったら翻訳してください><

Notas del editor

  1. Hello, everyone. My name is Eitarow Fukamachi.\nI&amp;#x2019;m very happy now. Today is my first presentation in English.\nMy English is not good, but I&apos;ll do my best.\n
  2. First of all, I know my name is hard to pronounce for non-Japanese speaker. My name is pronounced like &amp;#x201C;eight arrow&amp;#x201D;. Please call me &amp;#x201C;eight arrow&amp;#x201D; or &amp;#x201C;eight&amp;#x201D;.\nI live in Kyoto. I have been a Common Lisp user since 2010.\nThis is my second attendance of ILC. I attended the previous one at Reno.\nIt was really exciting experience for me. Many people often asked me &amp;#x201C;Which language do you use?&amp;#x201D; Of course, I said &amp;#x201C;I use Common Lisp&amp;#x201D;. Then immediately he said &amp;#x201C;Which one?&amp;#x201D; I got confused. At that time I understood that &amp;#x201C;Lisp&amp;#x201D; is not only one language for us. SBCL and CLISP is slightly different. Many people at there wanted to know which implementation I used.\nI&amp;#x2019;m using Clozure CL for my hobby programming. It is slower than SBCL, but it&amp;#x2019;s compilation speed is reliable.\nI work at a company called Hatena as a web application developer. I love Web, I love Lisp, but I still use Perl at work.\n
  3. Let me introduce some of my Common Lisp products.\nI wrote 11 Common Lisp libraries and all of them are available on Quicklisp.\nMost of them are related to web. Web frameworks, a database interface, a template engine and so on.\nIn this session, I would like to introduce something I made called &amp;#x201C;Clack&amp;#x201D;. If you are a web application enginner or web framework developper, this session would be interesting for you.\n
  4. What&amp;#x2019;s &amp;#x201C;Clack&amp;#x201D;?\n
  5. Clack is a &amp;#x201C;Web application environment&amp;#x201D;. Which means it is a foundation for a Web application or a Web application framework.\nIt makes web applications portable and reusable by abstracting HTTP into a simple API.\nThis is equivalent to Python&amp;#x2019;s WSGI, Ruby&amp;#x2019;s Rack, Perl&amp;#x2019;s Plack/PSGI and Clojure&amp;#x2019;s Ring. These middlewares has become imperative in Web anymore.\n
  6. Clack is built with two ideas in mind -- &amp;#x201C;Portability&amp;#x201D; and &amp;#x201C;Reusability&amp;#x201D;.\n
  7. First, I&amp;#x2019;d like to talk about Clack&amp;#x2019;s portability.\n
  8. Some years ago, web application and web application frameworks need to have web server adapters for each web server.\nThis figure is really complicated and ugly.\nClack changes this to...\n
  9. ...this. It&amp;#x2019;s pretty simple. Each application has only to know the interface of Clack.\nClack aims to make a web application work on many web servers without changing any code. Web application based on Clack don&amp;#x2019;t need to know what web server is behind it.\nThis allows running an application on different backend for different environments. It is possible to run an application on Hunchentoot during development, and then use a faster backend like FastCGI for your production environment.\n
  10. Here is some sample code.\n&amp;#x201C;clackup&amp;#x201D; is a function to start a Clack server.\nClack uses Hunchentoot as it&amp;#x2019;s backend by default.\n
  11. It can be changed by passing the :server keyword.\nIf you pass &amp;#x201C;:fcgi&amp;#x201D; to it, FastCGI server will be started.\nIf you pass &amp;#x201C;:apache&amp;#x201D; to it, Apache2 + mod_lisp proxy server will be started as well.\n\nNow, as a result of this abstraction, we obtain another possibility.\n
  12. It is &amp;#x201C;Reusability&amp;#x201D;\n
  13. In Clack, an application takes a request and just returns a response. Since it&amp;#x2019;s simple, it is easy to extend.\n
  14. Clack has an extension mechanism called &amp;#x201C;Middleware&amp;#x201D;.\nMiddlewares surround Applications. It takes a request before Application takes it and gets the Response which Application generates. By wrapping an Application, Middleware allows you to change the Application&amp;#x2019;s behavior without rewriting the existing code.\nAs Middlewares are completely separated from Application, they can be reused other Applications.\n
  15. Now, I&amp;#x2019;ll show you 4 examples of Clack in use.\n
  16. First, &amp;#x201C;Hello, World&amp;#x201D; -- it&amp;#x2019;s the most famous example.\n
  17. This is a program to display a string &amp;#x201C;Hello, World!&amp;#x201D; in your browser.\n&amp;#x201C;App&amp;#x201D; is a simple web application.\nIt is just a function which takes exactly one argument &amp;#x201C;env&amp;#x201D; and returns a list containing exactly three values -- HTTP status, headers and body.\n
  18. Highlighted strings are the request and the response.\n
  19. &amp;#x201C;Env&amp;#x201D; is something like this. It is just a property-list.\nSome people may wonder why the request isn&amp;#x2019;t a CLOS object.\nThis is because it&amp;#x2019;s quite simpler. A property-list is easy to understand how to deal with it.\nIt doesn&amp;#x2019;t require any dependencies.\nThis simple interface allows you to extend applications easily.\nI&amp;#x2019;ll show you the example a little later.\n
  20. After &amp;#x201C;clackup&amp;#x201D;, &amp;#x201C;Hello, World!&amp;#x201D; would be displayed in your browser.\n
  21. The second example of Clack has a conditional flow in an app.\n
  22. This sample code shows different content for what the request path is.\nThis app would serve favicon.ico if the request path is &quot;/favicon.ico&quot;, &quot;Hello again&quot; for the request to the root (/) and otherwise 404.\nThis is a simple URL dispatcher.\n
  23. My next example of Clack uses Basic Authentication.\n
  24. Here is some sample code. The &amp;#x201C;app&amp;#x201D; is the same as the first one.\nA macro &amp;#x201C;builder&amp;#x201D; builds the app and middlewares into an app.\n&amp;#x201C;&lt;clack-middleware-auth-basic&gt;&amp;#x201D; is a Clack middleware. It adds Basic Authentication to an app without rewriting the app. This authenticator means only the user Dr. &amp;#x201C;John McCarthy&amp;#x201D; is allowed.\n
  25. This code will show you a page like this.\nI hope the internet is also available in heaven.\n
  26. My final example of Clack is more practical.\n
  27. This will serve static files when the pathname starts with &amp;#x201C;/images/&amp;#x201D;, &amp;#x201C;/css/&amp;#x201D; or &amp;#x201C;/js/&amp;#x201D;.\nIt emits the directory names and searchs a file to serve from &amp;#x201C;static&amp;#x201D; directory.\n
  28. Now I will tell you about the benefits of using Clack.\n
  29. Your usage of Clack depends on who you are.\nIf you&amp;#x2019;re a &amp;#x201C;Web framework developer&amp;#x201D;, Clack provides server interfaces. You don&amp;#x2019;t have to write adapters for each web server. Moreover, Middlewares will be help to build up your framework.\n
  30. If you&amp;#x2019;re a &amp;#x201C;Web application engineer&amp;#x201D;, you can get benefits to use web frameworks built on Clack.\nThe benefit of a framework built on Clack is that the design is loosely coupled. Some parts of it are made as Clack Middlewares, which means developers can remove or replace parts of a framework as necessary.\n
  31. I introduce you 2 frameworks built on Clack.\n
  32. Caveman is a Sinatra-like micro framework.\nIt has the minimum set of features required for web applications -- a URL-based dispatcher, an adapter to a template engine, and a database interface.\nningle is even smaller. It provides only a URL-based dispatcher.\n
  33. See these URLs for more detail.\nBoth of them are already available on Quicklisp.\n
  34. \n
  35. \n
  36. Finally, I would like to talk about Clack&amp;#x2019;s future.\n
  37. I have almost completed Clack&amp;#x2019;s core, but I need to improve it a little more.\nI have to increase the bundled middleware and web server adapters.\nI&amp;#x2019;m looking for a high-performance non-blocking web server and a preforking web server.\nIf you know something about it, please let me know that after this.\n
  38. And now, there are only 2 frameworks, and I hope more frameworks will be built on Clack.\nBoth of them are really small. So I think a full-stack framework such as Ruby on Rails for Common Lisp should exist.\n
  39. \n
  40. Are there any questions in &amp;#x201C;easy&amp;#x201D; English?\n