This repository has been archived by the owner on Jan 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
code.clj
399 lines (257 loc) · 7.09 KB
/
code.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
;{{{ 1 - REPL
; Clojure has a REPL just like Python, Ruby, Erlang ... etc.
;
; One useful feature for this presentation: *1 *2 *3 refer can be used
; to refer to previous return values.
;}}}
;{{{ 2 - Atoms
"a string" ; string
\a ; character
123 ; integer
4.2 ; float
nil ; nil
true ; true
false ; false
5/72 ; ratio
:key ; keyword
a ; symbol
;}}}
;{{{ 3 - Collections
'(:a :b :c) ; list
[:a :b :c] ; vector
{:a 1, :b 2} ; map
#{:a :b :c} ; set
;}}}
;{{{ 4 - Expressions
; Everything is an expression. There are no statements.
;
; Expressions are either atom, (fn ...), (special ...), or (macro ...)
42
(* 6 7) ; function
(if (> 2 1) "expected" "bizzaro") ; special form
(and 1 2) ; macro
;}}}
;{{{ 5 - Truthiness
; false and nil are considered false in an if expression
; everything else is considered true (including 0)
; is there a builtin function for this?
(defn truthy? [x]
(if x
true
false))
(truthy? true)
(truthy? 1)
(truthy? 0)
(truthy? [1 2 3])
(truthy? nil)
(truthy? false)
;}}}
;{{{ 6 - Collections 2
; get is used to access items in indexed collections
(get [:a :b :c] 0)
(get {:a 1, :b 2} :a)
(get #{:a :b :c} :a)
; vectors, maps, and sets are callable
([:a :b :c] 0)
([:a :b :c] 1)
({:a 1, :b 2} :a)
(#{:a :b :c} :a)
(#{:a :b :c} :d)
; keywords are also callable - they look themselves up in maps
(:a {:a 1, :b 2})
;}}}
;{{{ 7 - Vars
; map symbols to values
(def x 1)
; thread local and dynamically scoped
(defn printx []
(println x))
(printx)
(binding [x 2]
(printx))
(printx)
; *in* *out* are examples in Clojure core
(import '(java.io StringWriter))
(binding [*out* (StringWriter.)]
(print "hello")
(print " ")
(print "world")
*out*)
;}}}
;{{{ 8 - Functions
; functions are first class
(def sum (fn [a b] (+ a b))
; defn is a convenience macro for defining functions
(defn product [a b]
(* a b))
; functions can be overloaded by arity
(defn greeting
([] "Hello")
([name] (str "Hello " name)))
;}}}
;{{{ 9 - Sequences
; interface
(first [:a :b :c])
(rest [:a :b :c])
(cons :d [:a :b :c])
; conj - like cons but with more dwim
(conj [:a :b :c] :d :e :f)
(conj '(:a :b :c) :d)
; rich set of utilities for manipulating sequences
(map #(* 5 %) [1 2 3])
(reduce + '[1 2 3])
(reverse [:a :b :c])
(sort [1 58 12 23 4])
(filter #(> % 5) [1 58 12 23 4])
; ... many more
; anything you can think of in terms of first and rest can become a seq
(def whole-numbers (lazy-seq (cons 1 (map #(+ 1 %) whole-numbers))))
;}}}
;{{{ 10 - Refs and Transactions
(def messages (ref ["First post" "blah blah blah" "... comparison to Hitler ..."]))
messages
@messages
(dosync (ref-set messages (conj @messages "flame flame flame")))
(dosync (alter messages conj "flame flame flame"))
(dosync (commute messages conj "flame flame flame"))
;}}}
;{{{ 11 - Compojure Demo Part 1 - Hello world
(ns com.djwhitt.cljchat
(:use [clojure.contrib.pprint])
(:use [compojure]))
(defroutes cljchat
(GET "/" (html [:h1 "Hello CPOSC 2009"])))
(defn run []
(run-server {:port 8080}
"/*" (servlet cljchat)))
;}}}
;{{{ 12 - Compojure Demo Part 2 - Adding a view function
(defn view []
(html [:h1 "Hello CPOSC 2009"]))
(defroutes cljchat
(GET "/" (view)))
;}}}
;{{{ 13 - Compojure Demo Part 3 - Rendering messages
(def messages (ref ["test message 1" "test message 2"]))
(defn render-messages [msgs]
(map #(vector :p %) msgs))
(defn view [msgs]
(html (render-messages msgs)))
(defroutes cljchat
(GET "/" (view @messages)))
;}}}
;{{{ 14 - Compojure Demo Part 4 - Adding a form
(defn render-message-form []
(form-to [:post "/"]
(text-field {:size 50} :message)
(submit-button "Post")))
(defn view [msgs]
(html
(render-messages msgs)
(render-message-form)))
;}}}
;{{{ 15 - Compojure Demo Part 5 - Adding a post action
(defn post-message [msgs msg]
(do
(dosync (commute msgs conj msg))
(redirect-to "/")))
(defroutes cljchat
(GET "/" (view @messages))
(POST "/" (post-message messages (params :message))))
;}}}
;{{{ 16 - Compojure Demo Part 6 - Adding a layout
(defn layout [& body]
(html
(doctype :html4)
[:html
[:head
[:title "Clojure Chat"]]
[:body
[:h1 "Welcome to Clojure Chat"]
body]]))
(defn view [msgs]
(layout
(render-messages msgs)
(render-message-form)))
;}}}
;{{{ Compojure Demo - Final Code
(ns com.djwhitt.cljchat
(:use [clojure.contrib.pprint])
(:use [compojure]))
(def messages (ref ["test message 1" "test message 2"]))
(defn render-messages [msgs]
(map #(vector :p %) msgs))
(defn render-message-form []
(form-to [:post "/"]
(text-field {:size 50} :message)
(submit-button "Post")))
(defn post-message [msgs msg]
(do
(dosync (commute msgs conj msg))
(redirect-to "/")))
(defn layout [& body]
(html
(doctype :html4)
[:html
[:head
[:title "Clojure Chat"]]
[:body
[:h1 "Welcome to Clojure Chat"]
body]]))
(defn view [msgs]
(layout
(render-messages msgs)
(render-message-form)))
(defroutes cljchat
(GET "/" (view @messages))
(POST "/" (post-message messages (params :message))))
(defn run []
(run-server {:port 8080}
"/*" (servlet cljchat)))
;}}}
;{{{ Macros
; example from core
(defmacro and
"Evaluates exprs one at a time, from left to right. If a form
returns logical false (nil or false), and returns that value and
doesn't evaluate any of the other expressions, otherwise it returns
the value of the last expr. (and) returns true."
([] true)
([x] x)
([x & next]
`(let [and# ~x]
(if and# (and ~@next) and#))))
; example shamelessly wripper from Phillip Calçado's presentation on Slideshare
; http://www.slideshare.net/pcalcado/lisp-macros-in-20-minutes-featuring-clojure-presentation
(def names ["Burke", "Connor", "Frank", "Everett"
"Albert", "George", "Harris", "David"])
(defmacro from [var _ coll _ condition _ ordering _ desired-map]
`(map (fn [~var] ~desired-map)
(sort-by (fn [~var] ~ordering)
(filter (fn [~var] ~condition) ~coll))))
(from n in names
where (= (. n length) 5)
orderby n
select (. n toUpperCase))
;}}}
;{{{ Another STM example
(defn run [nvecs nitems nthreads niters]
(let [vec-refs (vec (map (comp ref vec)
(partition nitems (range (* nvecs nitems)))))
swap #(let [v1 (rand-int nvecs)
v2 (rand-int nvecs)
i1 (rand-int nitems)
i2 (rand-int nitems)]
(dosync
(let [temp (nth @(vec-refs v1) i1)]
(alter (vec-refs v1) assoc i1 (nth @(vec-refs v2) i2))
(alter (vec-refs v2) assoc i2 temp))))
report #(do
(prn (map deref vec-refs))
(println "Distinct:"
(count (distinct (apply concat (map deref vec-refs))))))]
(report)
(dorun (apply pcalls (repeat nthreads #(dotimes [_ niters] (swap)))))
(report)))
;}}}
; vim: set foldmethod=marker: