SlideShare uma empresa 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.
                    僕が質問を理解できていなさそうだったら翻訳してください><

Mais conteúdo relacionado

Mais procurados

Mais procurados (20)

Introduction To Liquibase
Introduction To Liquibase Introduction To Liquibase
Introduction To Liquibase
 
Hive tuning
Hive tuningHive tuning
Hive tuning
 
Common issues with Apache Kafka® Producer
Common issues with Apache Kafka® ProducerCommon issues with Apache Kafka® Producer
Common issues with Apache Kafka® Producer
 
Vue.js Getting Started
Vue.js Getting StartedVue.js Getting Started
Vue.js Getting Started
 
Zed Attack Proxy (ZAP)
Zed Attack Proxy (ZAP)Zed Attack Proxy (ZAP)
Zed Attack Proxy (ZAP)
 
Nuxtjs cheat-sheet
Nuxtjs cheat-sheetNuxtjs cheat-sheet
Nuxtjs cheat-sheet
 
Pipeline Devops - Intégration continue : ansible, jenkins, docker, jmeter...
Pipeline Devops - Intégration continue : ansible, jenkins, docker, jmeter...Pipeline Devops - Intégration continue : ansible, jenkins, docker, jmeter...
Pipeline Devops - Intégration continue : ansible, jenkins, docker, jmeter...
 
Presto At Treasure Data
Presto At Treasure DataPresto At Treasure Data
Presto At Treasure Data
 
Angular and The Case for RxJS
Angular and The Case for RxJSAngular and The Case for RxJS
Angular and The Case for RxJS
 
CSRF-уязвимости все еще актуальны: как атакующие обходят CSRF-защиту в вашем ...
CSRF-уязвимости все еще актуальны: как атакующие обходят CSRF-защиту в вашем ...CSRF-уязвимости все еще актуальны: как атакующие обходят CSRF-защиту в вашем ...
CSRF-уязвимости все еще актуальны: как атакующие обходят CSRF-защиту в вашем ...
 
Migrating to Apache Spark at Netflix
Migrating to Apache Spark at NetflixMigrating to Apache Spark at Netflix
Migrating to Apache Spark at Netflix
 
Tuning Apache Spark for Large-Scale Workloads Gaoxiang Liu and Sital Kedia
Tuning Apache Spark for Large-Scale Workloads Gaoxiang Liu and Sital KediaTuning Apache Spark for Large-Scale Workloads Gaoxiang Liu and Sital Kedia
Tuning Apache Spark for Large-Scale Workloads Gaoxiang Liu and Sital Kedia
 
Apache Bigtop and ARM64 / AArch64 - Empowering Big Data Everywhere
Apache Bigtop and ARM64 / AArch64 - Empowering Big Data EverywhereApache Bigtop and ARM64 / AArch64 - Empowering Big Data Everywhere
Apache Bigtop and ARM64 / AArch64 - Empowering Big Data Everywhere
 
Performance Tuning RocksDB for Kafka Streams' State Stores (Dhruba Borthakur,...
Performance Tuning RocksDB for Kafka Streams' State Stores (Dhruba Borthakur,...Performance Tuning RocksDB for Kafka Streams' State Stores (Dhruba Borthakur,...
Performance Tuning RocksDB for Kafka Streams' State Stores (Dhruba Borthakur,...
 
Docker Birthday #3 - Intro to Docker Slides
Docker Birthday #3 - Intro to Docker SlidesDocker Birthday #3 - Intro to Docker Slides
Docker Birthday #3 - Intro to Docker Slides
 
Multi tier, multi-tenant, multi-problem kafka
Multi tier, multi-tenant, multi-problem kafkaMulti tier, multi-tenant, multi-problem kafka
Multi tier, multi-tenant, multi-problem kafka
 
Containerd internals: building a core container runtime
Containerd internals: building a core container runtimeContainerd internals: building a core container runtime
Containerd internals: building a core container runtime
 
Hands-on Helm
Hands-on Helm Hands-on Helm
Hands-on Helm
 
Aem sling resolution
Aem sling resolutionAem sling resolution
Aem sling resolution
 
Docker 101 - Nov 2016
Docker 101 - Nov 2016Docker 101 - Nov 2016
Docker 101 - Nov 2016
 

Destaque

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

Destaque (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
 
Building GUI App with Electron and Lisp
Building GUI App with Electron and LispBuilding GUI App with Electron and Lisp
Building GUI App with Electron and Lisp
 
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選(サムライト)
 

Semelhante 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
 

Semelhante 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

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
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Victor Rentea
 

Último (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
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
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
 
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
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 

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 do 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