-
Notifications
You must be signed in to change notification settings - Fork 271
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Guide for clojure's datatype constructs #202
Open
iku000888
wants to merge
10
commits into
clojure:master
Choose a base branch
from
iku000888:clj-datatype-guide
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+165
−0
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
d5e3fe1
Guide for clojure's datatype constructs
iku000888 3217cb3
Fix some spelling erors
slipset d647ac7
Merge pull request #1 from slipset/patch-1
iku000888 c8cb5af
Fix typo
iku000888 d5f86fe
Incorporate feedback
iku000888 d0a4978
Section on proxies is last in the article
wildwestrom 2039b7c
Capitalization, formatting, and grammar fixes.
wildwestrom 13b0e49
Made some nicer examples.
wildwestrom 3bd20c7
Minor edits to repl examples
wildwestrom 8717d70
Changed the order of the takeaways.
wildwestrom File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,165 @@ | ||
= Understanding Clojure's Datatype Constructs | ||
Ikuru Kanuma | ||
2017-07-20 | ||
:type: guides | ||
:toc: macro | ||
:icons: font | ||
|
||
ifdef::env-github,env-browser[:outfilesuffix: .adoc] | ||
|
||
== Goals of this guide | ||
|
||
Clojure supports several constructs for speaking to the Java world | ||
and/or creating types for polymorphic dispatch. + | ||
Because these constructs have overlapping capabilities, | ||
it may be confusing to know which construct to use at a given situation. + | ||
|
||
This guide clarifies what each construct is good at, while presenting minimal usage examples. | ||
|
||
|
||
== Leaving Java with defrecord | ||
|
||
If we do not have to extend from a concrete Java Type, we can define our own types | ||
that implement interfaces (and protocols, coming up next!) from Clojure via the | ||
link:https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/defrecord[defrecord] macro: | ||
|
||
[source,clojure-repl] | ||
---- | ||
user=> (defrecord Person [first-name last-name age drunk]) | ||
user.Person | ||
user=> (def piklrik (Person. "Pickle" "Rick" :unknown true)) | ||
#'user.piklrik | ||
---- | ||
|
||
Records are nicer than Java classes for a few reasons: | ||
|
||
* TODO: add more nicities. | ||
* They provide a complete implementation of a persistent map. That means that all values can be accessed like a map. | ||
|
||
[source,clojure-repl] | ||
---- | ||
user=> (:first-name piklrik) | ||
"Pickle" | ||
user=> (:last-name piklrik) | ||
"Rick" | ||
---- | ||
|
||
The https://clojure.org/reference/datatypes#_deftype_and_defrecord[reference] describes the features of records in more detail. | ||
|
||
https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/deftype[deftype] is | ||
also available for implementing lower level constructs that require mutatable fields | ||
or don't have map semantics. | ||
|
||
== Protocols; They're Like Java Interfaces | ||
https://clojure.org/reference/protocols[Protocols] offer similar capabilities as Java interfaces, but are more powerful because: | ||
|
||
* They are a cross platform construct | ||
* They allow third party types to participate in any protocol | ||
|
||
Let's make a protocol that handles instances of `Person`: | ||
|
||
[source,clojure-repl] | ||
---- | ||
user=> (defprotocol Introduction | ||
(introduce [this] "This is a docstring, not a method.")) | ||
Introduction | ||
user=> (extend-protocol Introduction | ||
Person | ||
(introduce [p] (str "I'm " (:first-name p) " " (:last-name p) "!!"))) | ||
nil | ||
user=> (introduce piklrik) | ||
"I'm Pickle Rick!!" | ||
---- | ||
|
||
The main thing to realize here is that protocols are more powerful than interfaces because we are able to create custom abstraction for types that we do not control (e.g. `java.util.Date`). + | ||
If we were to apply a custom abstraction for Java `Dates` with an interface `IBaz`, | ||
we must: | ||
|
||
* Go to the original source code of `java.util.Date` and say it implements `IBaz` | ||
* Also add `IBaz` to the official jdk release | ||
|
||
Unlikely to happen, right? | ||
|
||
== Reify-ing Java Interfaces or Protocols | ||
Sometimes we want to create things that implement a protocol/interface but do not want to give them a name for each of them. link:https://clojure.github.io/clojure/clojure.core-api.html#clojure.core/reify[reify] does exactly that: | ||
|
||
[source,clojure-repl] | ||
---- | ||
user=> (defn spawn-meeseeks | ||
[p] | ||
(reify Introduction | ||
(introduce [_] | ||
(str "I'm " (:first-name p) " " (:last-name p) ", look at me!")))) | ||
#'user/make-meeseeks | ||
user=> (def meeseeks | ||
(spawn-meeseeks (Person. "Mr." "Meeseeks" 0 false))) | ||
#'user/meeseeks | ||
user=> (introduce meeseeks) | ||
"I'm Mr. Meeseeks, look at me!" | ||
---- | ||
|
||
One might ask "Doesn't proxy achieve the same if you do not need to extend a concrete type?" + | ||
The answer is reify has better performance. | ||
|
||
== Proxy a Java class and/or Interfaces | ||
|
||
The proxy macro can be used to create an adhoc object that extends a Java class. | ||
The example below extends `java.util.ArrayList` such that a Clojure vector | ||
wrapped in an atom is used internally to manage state. | ||
|
||
[source,clojure-repl] | ||
---- | ||
(import 'java.util.ArrayList) | ||
|
||
(def px (let [atm (atom [])] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we get a more meaningful example? |
||
(proxy [ArrayList] [] | ||
(add [e] | ||
(swap! atm #(conj % e)) | ||
true) | ||
(get [idx] | ||
(get @atm idx)) | ||
(size [] (count @atm))))) | ||
|
||
(dotimes [n 10] | ||
(.add px n)) | ||
;; => nil | ||
(.get px 0) | ||
;; => 0 | ||
(.get px 6) | ||
;; => 6 | ||
(.size px) | ||
;; => 10 | ||
---- | ||
The ad hoc object can also implement Java interfaces: | ||
|
||
[source,clojure-repl] | ||
---- | ||
(import 'java.io.Closeable) | ||
(import 'java.util.concurrent.Callable) | ||
|
||
(def px (let [atm (atom [])] | ||
(proxy [ArrayList Closeable Callable] [] | ||
(add [e] | ||
(swap! atm #(conj % e)) | ||
true) | ||
(get [idx] | ||
(get @atm idx)) | ||
(size [] (count @atm)) | ||
(call [] | ||
(prn "Someone called me!")) | ||
(close [] | ||
(prn "closing!"))))) | ||
|
||
(.close px) | ||
"closing!" | ||
nil | ||
(.call px) | ||
"Someone called me!" | ||
---- | ||
== Take away | ||
To wrap up, here are some rules of thumb: | ||
|
||
TODO: Add more rules of thumb. I find them very helpful. | ||
* Prefer protocols and records over Java types; Stay in Clojure | ||
* If you want an anonymous implementation of a protocol/interface, use reify | ||
* If you must extend a Java class, use proxy |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Proxies should probably be the least frequently used so I don't like starting this guide with it. Should move to the end.