Posts Tagged ‘clojure’
Calling java from Clojure
Importing Java Class
In repl, when you want to import one Java class you can do
(import 'java.util.Date)
When you want to import more Java classes from a same package you can do
(import [java.util Date HashMap])
(ns com.techbehindtech.java
(:import [java.util Date HashMap]))
Creating Instances
(import 'java.util.Date) (def today (new Date)) ;; or (def today (Date.))
Calling Java instance methods
user> (import 'java.util.Date)
java.util.Date
user> (let [today (Date.)]
(.getTime today))
1286749020847
Calling Java static methods
user> (System/currentTimeMillis) 1286847946813
Sugar sytax:
Doto:
You want to write a function that will return UTC Java Calendar object set at a specific time.
user> (import [java.util Calendar TimeZone Date])
user> (defn utc-time [d]
(let [cal (Calendar/getInstance)]
(.setTimeZone cal (TimeZone/getTimeZone "UTC"))
(.setTime cal d)
cal))
#'user/utc-time
The let block is ugly. We could use doto to make this code better.
user> (import [java.util Calendar TimeZone Date])
user> (defn utc-time [d]
(doto (Calendar/getInstance)
(.setTimeZone (TimeZone/getTimeZone "UTC"))
(.setTime d)))
#'user/utc-time
Dot Dot:
Sometimes in java you want to make calls in chain
Bad way
user> (.length (.getProperty (System/getProperties) "user.country")) 2
Better way
user> (. (. (System/getProperties) getProperty "user.country") length) 2
Even Better
user> (..
(System/getProperties)
(getProperty "user.country")
(length))
2
Avoiding Reflection
By default jvm will be using reflection to identify type. Reflection is slow. But we can give type hints that way jvm does not have to use reflection. For example we can rewrite utc-time with type-hints like this
user> (set! *warn-on-reflection* true) true user> (defn str-length [s] (.length s)) Reflection warning, NO_SOURCE_FILE:1 - reference to field length can't be resolved. #'user/str-length user> (defn str-length [#^String s] (.length s)) #'user/str-length
Implementing interfaces and extending classes
Let us implement Java Runnable interface
user> (proxy [Runnable] []
(run []
(println "running ...")))
#<Object$Runnable$36fc6471 user.proxy$java.lang.Object$Runnable$36fc6471@6dd33544>
In clojure 1.2, you could use reify macro to implement. In fact it is better than using proxy.
user> (reify Runnable
(run [this]
(println "running ...")))
#<user$eval1664$reify__1665 user$eval1664$reify__1665@574f7121>
Clojure Macros Simplified
One of the powerful features of clojure ( or any other LISP) is macros. Macros are so powerful that will allow you do things that you can never do in any other language. There is a classic example of implementing “unless” functionality using macros. I am not going to talk about why we need macros and when to use them. There is so much literature out there discussing about Macros. Also checkout Clojure in Action book for in depth look on Macros. I have read both Joy of Clojure and Clojure in Action, when it comes to Macros I will recommend Clojure in Action. The idea behind this blog to simplify macros as much as possible.
As you know in Clojure code is data and data is code. Our code is a clojure List. So we can programmatically create a list and execute it.
user> (def my-code '(println "techbehindtech")) #'user/my-code user> my-code (println "techbehindtech") user> (eval my-code) techbehindtech
In above example, we created a list my-code. This list could be created dynamically. And using eval function we could execute that list as a clojure code.
So to create code in clojure, all we have to do is create a clojure list. In clojure, before a code is evaluated we have hook to introduce our own code using Macros system.
In Macros we are basically creating a list of code similar to my-code. Lets create a simple macro that will allow us to write functions with some log message.
(defmacro def-logged-fn [fn-name args & body]
`(defn ~fn-name ~args
(println "Calling ...")
~@body))
user> (def-logged-fn say[name]
(println (str "hello " name)))
#'user/say
user> (say "siva")
Calling ...
hello siva
nil
macroexpand and macroexpand-1:
macroexpand and macroexpand-1 are useful functions to know about when using
writing macros. These functions expand our macro forms.
user> (macroexpand-1 '(def-logged-fn say[name]
(println (str "hello " name))))
(clojure.core/defn
say
[name]
(clojure.core/println "Calling ...")
(println (str "hello " name)))
You can see that our macro created a fn called “say” that calls println first before the original body. That is pretty cool huh.
The difference between macroexpand-1 and macroexpand is macroexpand-1
will expand only one level of macros and macroexpand calls macroexpand-1
until all macro forms are expanded.
The same macro expanded with macroexpand will look like
(macroexpand '(def-logged-fn say[name]
(println (str "hello " name))))
(def
say
(clojure.core/fn
([name]
(clojure.core/println "Calling ...")
(println (str "hello " name)))))
As you can see macroexpand expanded defn macro also.
Coming back to our macro, there are 3 reader macros that we have used
- Backtick `
- Tilda ~
- Tilda Ampersand ~@
Backtick ` (syntax-quote):
This is called as syntax-quote. This quotes the whole expression that way you do not have to quote each one of them
Tilda ~ (unquote):
This is called as unquote. This unquotes (substitutes) the value. For
instance, we wanted to replace fn-name with its value, so we tilda
before fn-name.
Tilda Ampersand ~@ (unquote-splicing):
It is easy to show with an example. Lets take our macro that we wrote and change unquote-splicing to unquote before body and let us what happens.
user> (defmacro def-logged-fn [fn-name args & body]
`(defn ~fn-name ~args
(println "Calling ...")
~body))
#'user/def-logged-fn
user> (macroexpand-1 '(def-logged-fn say[name]
(println (str "hello " name))))
(clojure.core/defn
say
[name]
(clojure.core/println "Calling ...")
((println (str "hello " name))))
You can see the last line looks wierd. It is trying to call output of
println as a function. This will obiviously fail.
user> (def-logged-fn say[name]
(println (str "hello " name)))
#'user/say
user> (say "techbehindtech")
Calling ...
hello techbehindtech
; Evaluation aborted.
No message.
[Thrown class java.lang.NullPointerException]
As body is a list ( we are using varible args) when we just unquote it
is putting body inside a single list. To avoid that we have to
unquote-splicing.
Auto-gensym
Inside a macro, sometimes you want to create unqualified symbol to use
in a let block. We can do this easily by appending # in end of symbol.
Compojure Demystified with an example – Part 6
In this part we will start implementing edit and delete functionalities.
We are going to build these services,
Edit address – PUT – http://localhost:8080/addresses/:id
Delete address – DELETE – http://localhost:8080/addresses/:id
1) Adding PUT and DELETE route
Edit routes.clj
(ns address_book.routes
(:use [compojure.core])
(:require [address-book.address :as address]
[address-book.middleware :as mdw]
[compojure.route :as route]
[clj-json.core :as json]))
(defn json-response [data & [status]]
{:status (or status 200)
:headers {"Content-Type" "application/json"}
:body (json/generate-string data)})
(defroutes handler
(GET "/addresses" [] (json-response (address/find-all)))
(GET "/addresses/:id" [id] (json-response (address/find id)))
(POST "/addresses" {params :params} (json-response (address/create params)))
(PUT "/addresses/:id" {params :params} (json-response (address/update (params "id") params)))
(DELETE "/addresses/:id" [id] (json-response (address/delete id )))
(route/files "/" {:root "public"})
(route/not-found "Page not found"))
(def address-book
(-> handler
mdw/wrap-request-logging))
As you can see it is pretty straight forward to add PUT and DELETE route.
What is up with params?
In previous version of Compojure there were some magic variables, like params, session etc. From version 0.4 there are no more magic variables. Instead Compojure provides a map “params”. “params” map will contain all request information. For some reason, params map have a key :params which contains request parameters. That is why we have do {params :params}. I wish they will rename “params” to something else.
Instead of doing {params :params}, the compojure document states that we could do [params id] and when compojure detects a vector, instead of a map it will assign the parameters to each value of the vector. But for some reason, I was not able to make it work.
Front End code
Checkout from github for front end code. Warning: front end code is bad, do not take this as an example.
In next part we will see how to send flash messages.
Source code is now available at github. Created branches for each part.
Next part is posted.
MQL – A Clojure library for querying Nested Maps
I was working on a feature that needed me to query nested map structure. I wanted to do it in a generic way. Amit pointed me to rql, a library for dealing with collections of records in clojure. I thought it will be helpful if I have something similar to rql for querying map, so I created mql.
Given a map
(def m
{:cid
{
:visits {
:id-1 {
:last-ts "1284166000040"
:first-ts "1274166000000"
:duration "40"}
:id-2 {
:last-ts "1274166000040"
:first-ts "1274166000000"
:duration "40"}
:id-3 {
:last-ts "1264166000040"
:first-ts "1274166000000"
:duration "40"}}
:promo{
:id-1 {:promo "p2"}
:id-2 {:promo "p1"}}
:purchase {
:id-1
{:order-id "order-id-1"
:total-dollars "970.00"
:purchase? "true",
:merchant-total-dollars "1000.00"}
:id-3
{:order-id "order-id-2"
:total-dollars "1000.00"
:purchase? ""
:merchant-total-dollars "1000.00"}}}})
Select: simple select
mql.core> (select [:cid :promo] m)
{:id-1 {:promo "p2"}, :id-2 {:promo "p1"}}
Select: with filtering
mql.core> (select [:cid :purchase] (where [* :total-dollars] :gt 980) m)
([:id-3 {:order-id "order-id-2", :total-dollars "1000.00", :purchase? "", :merchant-total-dollars "1000.00"}])
You can currently use :gt,:ge,:lt,:le and :eq as logical operators in where clause. In where clause for key-seq you can use * if a key is dynamic. The last key in where clause key-seq should not be *.
Limitations:
- There could be only one * in Where Clause
- Select clause cannot have * now
This is an early version of this library. It is doing what I need for now. So if you have any requirements/idea, you can send me a patch or let me know, I will hack when I get some free time.
Please feel free to send me your feedback on syntax, code style … etc
Compojure Demystified with an example – Part 5
In this part lets write our own middleware.
From part4 you will remember,
“Middleware are functions that could be chained together to process a request. Middleware functions can take any number of arguments, but the spec stats that first argument should be a handler and function should return a handler. An example for middleware is logging all requests that comes to your webserver.”
1) Create a namespace for middleware
Create src/address_book/middleware.clj
(ns address-book.middleware)
(defn- log [msg & vals]
(let [line (apply format msg vals)]
(locking System/out (println line))))
(defn wrap-request-logging [handler]
(fn [{:keys [request-method uri] :as req}]
(let [resp (handler req)]
(log "Processing %s %s" request-method uri)
resp)))
Our wrap-request-logging is a middleware which takes a handler and returns an handler.
2) Add our middleware to our chain of handlers
Edit routes.clj
(ns address_book.routes
(:use [compojure.core])
(:require [address-book.address :as address]
[address-book.middleware :as mdw]
[compojure.route :as route]
[clj-json.core :as json]))
(defn json-response [data & [status]]
{:status (or status 200)
:headers {"Content-Type" "application/json"}
:body (json/generate-string data)})
(defroutes handler
(GET "/addresses" [] (json-response (address/find-all)))
(GET "/addresses/:id" [id] (json-response (address/find id)))
(POST "/addresses" {params :params} (json-response (address/create params)))
(route/files "/" {:root "public"})
(route/not-found "Page not found"))
(def address-book
(-> handler
mdw/wrap-request-logging))
3) Test our middleware
Now start your server and you can see all requests are getting logged. This is very powerful feature. We can do security etc using middleware. Ring and Compojure comes with some useful middleware. Check them out.
In next part we will implement edit and delete functionalities.
Source code is now available at github. Created branches for each part.
Compojure Demystified with an example – Part 4
In this part we will start implementing Add, View and View all functionalities.
The services we are going to build are
View All Addresses – GET – http://localhost:8080/addresses
View single address – GET – http://localhost:8080/addresses/:id
Add Address – POST – http://localhost:8080/addresses
Interactive Development using slime
I mentioned in last part that after every change to our code we need to restart our server for our changes to be reflected. This is a pain and against clojure (lisp) philosophy . It would be great if we could eval our modified buffers in emacs and those changes reflected immediately in our jetty server. Thankfully there is very easy way to do this.
In core.clj we are starting jetty adapter. We can start this jetty server in background using future and reload the namespace that we changed. This way we can do interactive development without restarting our server.
PS: Make sure you have emacs setup with slime. I feel emacs is the best IDE for clojure. Again this is my opinion. There are lot of information on how to do this.
I talked about jetty adapter. It is time for us to look at some what little deeper in Compojure.
Compojure
Compojure is based on a library called Ring. In fact most of clojure web frameworks are based on Ring. So to understand Compojure, it is important to understand Ring.
Ring has three components.
1) Handlers:
Handlers are main functions that process a request. We define handlers using defroutes macro.
2) Middleware:
Middleware are functions that could be chained together to process a request. Middleware functions can take any number of arguments, but the spec stats that first argument should be an handler and function should return an handler. An example for middleware is logging all requests that comes to your webserver. Ring and compojure comes with some standard middleware. We will see in next part how to create our own middleware.
3) Adapters:
Adapters are functions could adapt our handler to a web server. We are using jetty adapter to tie our handler to jetty server.
Refactor code to make it easy for interactive development
Edit core.clj
(ns address_book.core
(:use [compojure.core]
[ring.adapter.jetty])
(:require [compojure.route :as route]))
(defroutes example
(GET "/" [] "<h1>My Address Book!</h1>")
(route/files "/" {:root "public"})
(route/not-found "Page not found"))
(future (run-jetty (var address-book) {:port 8080}))
1) Add swank-clojure to our project
swank-clojure comes with lein plugin which will allow us to start a swank server and from emacs you can connect using slime. There are lot of documentation about swank-clojure and slime. Let me know if you need more information. If I see enough interest, I could blog about it or at least point to some good resources.
Edit project.clj
(defproject address_book "1.0.0-SNAPSHOT"
:description "Address Book"
:dependencies [[org.clojure/clojure "1.2.0"]
[org.clojure/clojure-contrib "1.2.0"]
[compojure "0.4.1"]
[ring/ring-jetty-adapter "0.2.3"]]
:dev-dependencies [[swank-clojure "1.2.1"]])
and run
lein deps
Now you should be able to start swank server using
lein swank
2) Break core.clj into different namespaces
Current core.clj is doing two things. Setting up routes and starting jetty server. Lets break it into web_server.clj and routes.clj
rm src/address_book/core.clj
create src/address_book/routes.clj
(ns address_book.routes
(:use [compojure.core])
(:require [compojure.route :as route]))
(defroutes address-book
(GET "/" [] "<h1>My Address Book!</h1>")
(route/files "/" {:root "public"})
(route/not-found "Page not found"))
create src/address_book/webserver.clj
(ns address_book.webserver
(:use [compojure.core]
[ring.adapter.jetty]
[address_book.routes :as routes]))
(future (run-jetty (var address-book) {:port 8080}))
3) At last lets create our Address namespace
In this code, I am going to use atoms for persistence. In future I will probably show how we can persist in mysql db using clj-records.
create src/address_book/address.clj
(ns address-book.address
(:use [address-book.utils number])
(:refer-clojure :exclude (find create)))
(def STORE (atom {:1 {:id :1 :name "Siva Jagadeesan" :street1 "88 7th" :street2 "#203" :city "Cupertino" :country "USA" :zipcode 98802}}))
(defn create [attrs]
(let [id (random-number)
new-attrs (merge {:id id} attrs)]
(swap! STORE merge {id new-attrs})
new-attrs))
(defn find-all []
(vals @STORE))
(defn find [id]
((to-keyword id) @STORE))
(defn update [id attrs]
(let [updated-attrs (merge (find id) attrs)]
(swap! STORE assoc id updated-attrs)
updated-attrs))
(defn delete [id]
(let [old-attrs (find id)]
(swap! STORE dissoc id)
old-attrs))
Create utils/number.clj
(ns address-book.utils.number
(:import [java.util Date]))
(defn to-keyword [num]
(if-not (keyword? num)
(keyword (str num))
num))
(defn random-number []
(to-keyword (.getTime (Date.))))
PS: I am not writing tests to keep this blog short. But I would advice everyone to write tests.
4) Lets update routes for add, view and view all functionalities
</span>
<pre>(ns address_book.routes
(:use [compojure.core])
(:require [address-book.address :as address]
[compojure.route :as route]
[clj-json.core :as json]))
(defn json-response [data & [status]]
{:status (or status 200)
:headers {"Content-Type" "application/json"}
:body (json/generate-string data)})
(defroutes handler
(GET "/addresses" [] (json-response (address/find-all)))
(GET "/addresses/:id" [id] (json-response (address/find id)))
(POST "/addresses" {params :params} (json-response (address/create params)))
(route/files "/" {:root "public"})
(route/not-found "Page not found"))
(def address-book
handler)
Compojure comes with GET, POST, PUT, DELETE, HEAD and ANY macro to define routes. These macros are self explanatory. Currently we have used GET and POST to define our routes.
Parsing Parameters
Compojure binds request parameters to params.
To get all parameters from request you can destructure map like we did in
POST "/addresses" {params :params} (json-response (address/create params)))
To get particular parameters from request you can use Compojure sugar syntax like we did in
[sourceode](GET “/addresses/:id” [id] (json-response (address/find id)))[/sourcecode]
5) Lets build our front end
PS: front end code is a hack. Please don’t follow these codes as a good practice.
Edit public/index.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>My Address Book</title>
<link href="/css/address.css" media="screen" rel="stylesheet" type="text/css" />
<script src="/js/jquery-1.4.2.min.js" type="text/javascript"></script>
<script src="/js/jquery-ui-1.8.1.custom.min.js" type="text/javascript"></script>
<script src="/js/jquery.form.js" type="text/javascript"></script>
<script src="/js/address_book.js" type="text/javascript"></script>
<script src="/js/address_list.js" type="text/javascript"></script>
</head>
<body>
<div id="wrap">
<div id="header"><h1>My Address Book</h1></div>
<div id="main">
<table id="address">
<tr><td>Name</td><td id="name"/></tr>
<tr><td>Street1</td><td id="street1"/></tr>
<tr><td>Street2</td><td id="street2"/></tr>
<tr><td>City</td><td id="city"/></tr>
<tr><td>Country</td><td id="country"/></tr>
<tr><td>ZipCode</td><td id="zipcode"/></tr>
</table>
<table id="address-list" border="1" width="100%" rules="rows" align="center">
<tr>
<th>Name</th>
<th>Action</th>
</tr>
<tr>
<td >row 1, cell 1</td>
<td align="center">row 1, cell 2</td>
</tr>
</table>
</div>
<div id="sidebar">
<form id="address-form" class="formular" method="post" action="/addresses">
<fieldset class="login">
<legend>New Address</legend>
<div>
<label for="name">Name</label> <input type="text" id="name" name="name">
</div>
<div>
<label for="street1">Street1</label> <input type="text" id="street1" name="street1">
</div>
<div>
<label for="street2">Street2</label> <input type="text" id="street2" name="street2">
</div>
<div>
<label for="city">City</label> <input type="text" id="city" name="city">
</div>
<div>
<label for="country">Country</label> <input type="text" id="country" name="country">
</div>
<div>
<label for="zipcode">ZipCode</label> <input type="text" id="zipcode" name="zipcode">
</div>
<input class="submit" type="submit" value="Create"/>
</fieldset>
</form>
</div>
<div id="footer">
<p><a href="TechbehindTech.com">TechBehindTech</a> -- Siva Jagadeesan</p>
</div>
</div>
</body>
</html>
Create public/css/address.css
body,html {
margin:0;
padding:0;
color:#000;
background:#a7a09a;
}
#wrap {
width:970px;
margin:0 auto;
background: #fffeff;
}
#header {
padding:5px 10px;
background: #054477;
text-align: right;
color: #fffeff;
}
h1 {
margin:0;
}
#main {
float:left;
width:580px;
padding:10px;
background-color: #fffeff;
}
h2 {
margin:0 0 1em;
background-color: #fffeff;
}
#sidebar {
float:right;
width:350px;
padding:10px;
background-color: #fffeff;
}
#footer {
clear:both;
padding:5px 10px;
background: #fed47f;
}
#footer p {
margin:0;
}
* html #footer {
height:1px;
}
form * {margin:0;padding:0;} /* Standard margin and padding reset, normally done on the body */
legend {
color:#000; /* IE styles legends with blue text by default */
*margin-left:-7px;
font-weight: bold;
font-size: 20px;
}
fieldset {
border:1px solid #dedede; /* Default fieldset borders vary cross browser, so make them the same */
}
fieldset div {
overflow:hidden; /* Contain the floating elements */
display:inline-block;
padding: 10px;
}
fieldset div {display:block;} /* Reset element back to block leaving layout in ie */
label {
float:left; /* Take out of flow so the input starts at the same height */
width:8em; /* Set a width so the inputs line up */
}
Create public/js/address_book.js
$(document).ready(function() {
$("#address").hide();
$("#address-list").showAddressList();
$(".address-link").live("click",function(e){
$.getJSON($(this).attr("href"), function(json) {
$("#address").showAddress(json);
});
e.preventDefault();
});
$('#address-form').submit(function(event){
event.preventDefault();
var $this = $(this);
var url = $this.attr('action');
var dataToSend = $this.serialize();
var callback = function(data){
$("#address-list").addAddress(data);
};
var options = {
success: callback,
url: url,
type: "POST",
dataType: "json",
clearForm: true
};
$(this).ajaxSubmit(options);
});
});
Create public/js/address_list.js
function action_links(data){
var link = "<a href=\"\">edit</a> ";
link += " | <a href=\"\">delete</a>";
return "edit | delete";
}
$.fn.showAddressList = function(){
return this.each(function(){
var that = this;
$.getJSON("addresses", function(json) {
$(that).html(" <tr> <th>Name</th> <th>Action</th> </tr>");
$.each(json,function(i,data) {
$(that).append("<tr id=\"address-"+ data.id +" \"><td><a class=\"address-link\" href=\"addresses/" + data.id +"\">" + data.name + "</a></td><td align='center'>" + action_links(data) + "</td></tr>");
});
});
});
};
$.fn.addAddress = function(json){
var data = json;
var that = this;
return this.each(function(){
var that = this;
$(that).append("<tr id=\"address-"+ data.id +" \"><td><a class=\"address-link\" href=\"addresses/" + data.id +"\">" + data.name + "</a></td><td align='center'>" + action_links(data) + "</td></tr>");
});
};
$.fn.showAddress = function(json){
var data = json;
var that = this;
return this.each(function(){
$(that).slideDown('slow');
$(that).find("#name").html(data.name);
$(that).find("#street1").html(data.street1);
$(that).find("#street2").html(data.street2);
$(that).find("#city").html(data.city);
$(that).find("#country").html(data.country);
$(that).find("#zipcode").html(data.zipcode);
});
};
Download jquery-1.4.2.min.js, jquery-ui-1.8.1.custom.min.js and jquery.form.js to public/js folder.
6) Start the web server
[/sourcecode]lein repl src/address_book/webserver.clj [/sourceode]
Wow that was lot of stuff. We will look more into writing our own middlewares in next part.
Source code is now available at github. Created branches for each part.
Part 5 is posted.
Compojure Demystified with an example – Part 3
In part2 we saw how to setup a skeleton project with Compojure. In this part we will see how to add static files to a Compojure project.
For our application, we will use JQuery as front end and Clojure as a backend. I will concentrate more on Compojure.
1) Create folders for static files.
mkdir public mkdir public/css mkdir public/js
It is better to have static files under a seperate directory that way you could use your webserver to serve these files. For now we will use Compojure to serve these files.
2) Create index.html under public folder
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>My Address book</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
</head>
<body id="main">
<p>
My Address Book
</p>
<body>
</html>
3) Start your server
lein repl src/address_book/core.clj
4) Access index.html
Go to http://localhost:8080/index.html . You will get “Page not found” instead of “My Address Book”. This is happening because we have not told compojure about our static files folder.
Route helper functions in Compojure
In Compojure we have two route helper functions. We have seen one already in core.clj file.
1) not-found :
This function is used to capture all other routes that are not defined in Compojure. As we still have not defined index.html we got “Page not found”.
2) files :
This function is used to inform Compojure where static files are present.
Lets change our core.clj to handle static files
(ns address_book.core
(:use [compojure.core]
[ring.adapter.jetty])
(:require [compojure.route :as route]))
(defroutes example
(GET "/" [] "<h1>My Address Book!</h1>")
(route/files "/" {:root "public"})
(route/not-found "Page not found"))
(run-jetty example {:port 8080})
Restart your server (there is a way to avoid restarting using futures. I will show that in a later blog) and access http://localhost:8080/index.html . Now you should see “My Address Book”.
In this part we saw how we can handle static files. In next part we will implement Add , View and View All functionalities.
PS: Using Hiccup you can create HTML and css in clojure. I will try to cover this in future blogs.
Source code is now available at github . Created branches for each part.
Checkout PART4 …
Compojure Demystified with an example – Part 2
In part 1 I introduced the address book application that we are going to build.
In this part we will setup our skeleton project with compojure.
1) Install Leiningen
http://github.com/technomancy/leiningen/blob/master/README.md
2) Create a new project using Leiningen
lein new address_book
3) Add Compojure to our project:
a) Edit project.clj
(defproject address_book "1.0.0-SNAPSHOT"
:description "Address Book"
:dependencies [[org.clojure/clojure "1.1.0"]
[org.clojure/clojure-contrib "1.1.0"]
[compojure "0.4.1"]
[ring/ring-jetty-adapter "0.2.3"]])
b) Install dependencies
lein deps
This should install all dependencies of compojure
c) Test whether our setup is working
Edit src/address_book/core.clj
(ns address_book.core
(:use [compojure.core]
[ring.adapter.jetty])
(:require [compojure.route :as route]))
(defroutes example
(GET "/" [] "My Address Book!")
(route/not-found "Page not found"))
(run-jetty example {:port 8080})
Run the server
lein repl src/address_book/core.clj
Goto http://localhost:8080 and you should see “My Address Book!”
In next part we will start implementing our functionalities.
Compojure Demystified with an example – Part 1
In this part, I am going to talk about what application we are going to implement.
Lets build a simple address book web application using compojure. This will be a RESTFUL application. As we go through this example we will see some interesting aspects of compojure.
Functionalities
- Add / Edit / Delete Address book
- View All Addresses
- View a single Address
Domain
Address
- Name
- Street1
- Street2
- City
- Country
- ZipCode
REST interfaces we will implement
- View All Addresses – GET – http://localhost:8080/addresses
- View single address – GET – http://localhost:8080/addresses/:id
- Add Address - POST – http://localhost:8080/addresses
- Edit Address - PUT – http://localhost:8080/addresses/:id
- Delete Address – DELETE – http://localhost:8080/addresses/:id
Next part 2 we will setup our base project with compojure.
Map, Reduce and Filter in Clojure
Map
Map applies a function to each element in a collection and returns a new collection with the results of each function.

user> (map #(+ 10 %1) [ 1 3 5 7 ]) (11 13 15 17)
Reduce
Reduce applies a function on all elements of a collection and returns a value. This value could also be another collection.

user> (reduce * [2 3 4]) 24
Filter
Filter applies a predicate function to each element in a collection and returns a new filtered collection.

user> (filter even? [1 2 3 4 5 6]) (2 4 6)

