This document provides an overview of the history of programming languages and object-oriented development. It discusses some of the limitations of the object-oriented paradigm, such as complexity, brittle hierarchies, and difficulties modeling real-world objects. The document then introduces Clojure as a functional programming language that avoids these issues by using immutable data and focusing on equality rather than object identity. It provides examples of Clojure's features like persistent collections, and discusses how Clojure code is evaluated through its reader and evaluator.
2. What this Session is not¡
? OO hating
? Deep dive of Clojure
? If you¡¯ve written a Clojure App, you¡¯ll probably
not learn anything.
3. What this Session is¡
? Point out why OO dev is hard sometimes
? Show you that there is an alternative
? ¡°It shouldn¡¯t be this hard¡±.
4. Introduction
? Gary Short
? Head of Gibraltar Labs
¨C ¡°Skunk Works¡± division of Gibraltar Software
? MVP C#
¨C Python
¨C NodeJS
? gary.short@gibraltarsoftware.com
? @garyshort
? Facebook.com/theOtherGaryShort
4
5. The Road to Here
http://www.flickr.com/photos/fyngyrz/
6. Ada Lovelace
? 1842 - 1843 Lovelace translated a memoir of
an Italian mathematician on Charles Baggage¡¯s
newest proposed machine... the Analytical
Engine. The article she wrote contained the
entire specification of how to calculate
Bernoulli numbers with the Engine. This is
believed to be the first ever computer
program.
7. The 1940s
? Then in the 1940¡¯s along comes the first
recognisable computers and we get
programming languages to go with them...
? 1943 - Plankalk¨¹l (Konrad Zuse)
? 1943 - Colossus
? 1949 - C-10
8. The 1950s
? In the 1950s the first three modern programming
languages whose descendants are still in
widespread use today were designed:
? FORTRAN (1955), the "FORmula
TRANslator", invented by John Backus et al.;
? LISP, the "LISt Processor", invented by John
McCarthy et al.;
? COBOL, the COmmon Business Oriented
Language, created by the Short Range
Committee, heavily influenced by Grace Hopper.
9. More 1950s
? 1951 - Regional Assembly Language
? 1952 - Autocode
? 1954 - FORTRAN
? 1954 - IPL (forerunner to LISP)
? 1955 - FLOW-MATIC (forerunner to COBOL)
? 1957 - COMTRAN (forerunner to COBOL)
? 1958 - LISP
? 1958 - ALGOL 58
? 1959 - FACT (forerunner to COBOL)
? 1959 - COBOL
21. What Does it Mean to be Functional?
? First order functions
? Function like constructs
? Stateless
? Immutable data
22. Clojure
? A Lisp ? JVM
? Dynamic ? Java Interop
? Functional ? Fast
¨C Impure ? Persistent collections
? ¡°Lockless¡± Concurrency ? Easy to learn.
? Macros
23. Introduction to Clojure
? Java.Lang.Object
? Arbitrary sized numbers
? Ratios: 18/20
? Nil is null and is treated as false
24. Persistent Collections
? Immutable
¨C Cheap to copy
? Examples
¨C (1 2 3)
? List ¨C sequential lookup time
¨C [1 2 3]
? Vector ¨C logarithmic lookup time
¨C {¡°key¡± 1, 3 7, ¡°foo¡± ¡°bar¡±}
? Hashmap ¨C unordered, key value pairs
25. Equality Vs Identity
? Equality
¨C Two objects are equal
? Two cylinders maybe equal if their volumes are equal
¨C Identity
? Two pointers to the same object
¨C Clojure favours equality :-O
26. Clojure is Impure so has Mutability
? Var
¨C Mutable pointer to immutable data
? You can¡¯t change the data
? But you can change what data the var points to
? But vars hold global data, function defs etc .
? This data won¡¯t change
? So why are vars mutable?
? So we can patch running software. ?
27. The Reader
? Other programming languages
¨C Compiler
? Text -> lexing and parsing -> AST
? Clojure
¨C The Reader
? Text -> lexing and parsing -> Literals (Data)
? As soon as it reads a complete literal it¡¯s passed to...
28. The Evaluator
? Compile Phase
¨C Traverses the data
? Symbol evaluation
¨C Symbols evaluate into Vars
? Symbol Dog evaluates to a var in the current namespace
? Symbol MyPets/Dog evaluates to var in namespace MyPets
? List evaluation
¨C Lists evaluate into function calls
? (+ 1 2 3)
? Process macros
¨C Execute phase
? Effects the special forms
? Calls functions.
29. Special Forms
? Reserved symbol
¨C Denotes special list evaluation
? Not a function call ¨C it¡¯s ¡°something else¡±
? Def, if, do, let, quote, var, fn, loop, recur, throw, tr
y, ., new, set!
? If a list starts with any of those it¡¯s evaluated in a
special way particular to that form
? (if condition a b?)
? (if (been_drinking) (hungover) (happy))
? (if (have_beers) (drink))
#6: Programming languages pre date computers themselves...Starting in 1842 and finishing in 1843 Ada Lovelace translated a memoir of an Italian mathematician on Charles Baggage¡¯s newest proposed machine... the Analytical Engine. The article she wrote contained the entire specification of how to calculate Bernoulli numbers with the Engine. This is believed to be the first ever computer program.Then in the 1940¡¯s along comes the first recognisable computers and we get programming languages to go with them...1943 - Plankalk¨¹l (KonradZuse) 1943 - ENIAC coding system1949 - C-10In the 1950s the first three modern programming languages whose descendants are still in widespread use today were designed:FORTRAN (1955), the "FORmulaTRANslator", invented by John Backus et al.; LISP, the "LIStProcessor", invented by John McCarthy et al.; COBOL, the COmmonBusiness Oriented Language, created by the Short Range Committee, heavily influenced by Grace Hopper. 1951 - Regional Assembly Language1952 - Autocode1954 - FORTRAN1954 - IPL (forerunner to LISP) 1955 - FLOW-MATIC (forerunner to COBOL) 1957 - COMTRAN (forerunner to COBOL) 1958 - LISP1958 - ALGOL 581959 - FACT (forerunner to COBOL) 1959 - COBOL1962 - APL1962 - Simula1964 - BASIC1964 - PL/I1970 - Pascal1970 - Forth1972 - C1972 - Smalltalk1972 - Prolog1973 - ML1975 - Scheme1978 - SQL (initially only a query language, later extended with programming constructs) 1983 - Ada1983 - C++1985 - Eiffel1986 - Erlang1987 - Perl1989 - FL (Backus) 1990 - Haskell1991 - Python1991 - Java1993 - Ruby1993 - Lua1994 - ANSI Common Lisp1995 - JavaScript1995 - PHP1997 - Rebol2000 - C#2008 - JavaFX Script
#15: Through the 1990s and up until today, OO languages are in the ascendency due to: the GUI. A GUI lends itself well to the concept of discrete objects due to: having their own knowledge and behaviour messaging each other in an event driven model. Low cost of memory
#16: Modelling object graph where objects are passing messagesModelling state changeModelling problem domains where the actors are hierarchal in natureEvent driven programming
#17: Object graphs or sub graphs mean lots of shared dataShared data bad for concurrencyRequires lockingLocking is bad because it is either coarse grained which is expensive in time or it¡¯s fine grained which is expensive in terms of management.Locking management is hard because there is no compiler or VM support, it¡¯s down to you to work out how to do itExample: lock objects by alphabetical orderYou have to remember to do it that wayErrors are next to impossible to test for, hard to debug
#22: First order functions means that functions can be treated like values and can be return from and passed into other functionsFunction like constructs means that flow control constructs are more like functions in that they may return the last value etcStateless because it¡¯s functional in the sense of a mathematical function. Values are passed in, those values are operated upon and a new value is passed out. The function does not depend on any outside state. If the function is pure it has no side effects.The advantage of this is that a pure function is simple to understand, the whole essence of the function is encapsulated within the function itself. Easy to testEasy to debugConcurrency ¨C if there is no dependency on shared state then work can be easily parallelised.
#23: Pure functional language = no side effects allowedImpure functional language = side effects are not restrictedLockless concurrency does not mean there are no locks, just that the language manages them for you.
#24: Nil is null and is treated as false kinda sucks.Here is a value and it is trueHere is a value and it is falseNil/null should mean there is no value.
#25: Mutable collection you can modify the collection: add, remove etcImmutable collections cannot be modified but instead you get a new copy of the collection with the changes.Key idea is that copies are cheap, both in terms of time and memoryHow does this work?Copies of mutable collections take time and memory, copying 100 items needs 100+ operations but..Because data is immutable, it¡¯s not going to change, so I don¡¯t have to copy the data, just provide a pointer to it.If I want your data with a new member added then I get a collection which shares most of the data but has my deltas
#26: Clojure favours equality but this is not a big problem as data is immutable and so objects and object graphs have a hash, since this can¡¯t change equality simply compares the hash values and not the data in the graphThe only exception to this is string comparisons because Clojure strings are just Java stringsNot a big problem as string comparison is efficient in JavaFirst check identityThen check lengthThen check equality
#29: Vars must be defined before first useThey must be def¡¯d but not necessarily boundWhat is a macro?A macro is a function that modifies reader data
#30: If is a special form as code execution is conditionalIf the condition is true then a will be returnedIf the condition is false then b will be returnedThe ? Denotes that b is optionalI said before that if were function likeFirst example returns the result of hungover if true else the result of happySecond example returns the result of drink else nil
#34: Tail RecursionSpecial form of recursion whereby the last thing a function does is to call itselfFunctions need a stack frameCall a function 1,000 times recursively then you need 1,000 stackframesBut if calling the function is the last thing you are going to doThen you are not coming back to the calling functionSo there¡¯s an optimisation where you can just overwrite the stackframe of the calling funcSo you only ever need one stack frameMost lisp dialects have this tail recursion optimisationClojure doesn¡¯t as there is not tail recursion on the JMV