pharo: objects at your fingertips

48
Pharo: Object at your Fingertips Marcus Denker http://www.pharo-project.org

Upload: marcus-denker

Post on 11-May-2015

931 views

Category:

Technology


2 download

DESCRIPTION

A talk given at Universitat Politècnica de Catalunya on Oct 30, 2013. Video online at http://www.youtube.com/watch?v=xhPlUaXpCU4

TRANSCRIPT

Page 1: Pharo: Objects at your Fingertips

Pharo: Object at your FingertipsMarcus Denker http://www.pharo-project.org

Page 2: Pharo: Objects at your Fingertips

What is it?

Language + Environment

Simple Language (Smalltalk)

Object-Oriented, Dynamic, Reflective

Explore + Change running systems

!

The Ultimate Programming Environment!

Page 3: Pharo: Objects at your Fingertips

PharoMIT license Mac, Linux, Android, iOS, Windows Great community Improving steadily Many excellent libraries

Page 4: Pharo: Objects at your Fingertips

Started 2008

Pharo 1.0 released October 2009 2.0 is the current stable Pharo3: Early 2014

Plan: 1 Release per year

Page 5: Pharo: Objects at your Fingertips

Language (in 10 minutes)

Page 6: Pharo: Objects at your Fingertips

Pharo started with Smalltalk-80 (Squeak)

Language still very much Smalltalk

But the goal is to develop it further

Example: Reflective Capabilities

Page 7: Pharo: Objects at your Fingertips

No constructors

No types declaration

No interfaces

No packages/private/protected

No parametrized types

Yet really powerful

Less is better

Page 8: Pharo: Objects at your Fingertips

Objects are instances of Classes

Page 9: Pharo: Objects at your Fingertips

Objects are instances of Classes

!

(10@200)

Page 10: Pharo: Objects at your Fingertips

Objects are instances of Classes

!

(10@200) class

Page 11: Pharo: Objects at your Fingertips

Objects are instances of Classes

!

(10@200) class

Point

Page 12: Pharo: Objects at your Fingertips

Classes are objects too

Page 13: Pharo: Objects at your Fingertips

Classes are objects too

!

Point selectors

!

Page 14: Pharo: Objects at your Fingertips

Classes are objects too

!

Point selectors

!> an IdentitySet(#eightNeighbors #+ #isZero #sortsBefore: #degrees #printOn: #sideOf: #fourNeighbors #hash #roundUpTo: #min: #min:max: #max #adaptToCollection:andSend: #quadrantOf: #crossProduct: #= #nearestPointOnLineFrom:to: #bitShiftPoint: #* #guarded #insideTriangle:with:with: #grid: #truncateTo: #y #setR:degrees: #normal #directionToLineFrom:to: #truncated #nearestPointAlongLineFrom:to: #theta #scaleTo: #encodePostscriptOn: #> #asPoint #extent: #r #roundTo: #max: #interpolateTo:at: #triangleArea:with: #angleWith: #dotProduct: #isSelfEvaluating #'<=' #to:intersects:to: #'//' #isInsideCircle:with:with: #< #scaleFrom:to: #corner: #to:sideOf: #x #'>=' #roundDownTo: #onLineFrom:to:within: #transposed #ceiling #angle #basicType #translateBy: #asFloatPoint #'\\' #adaptToNumber:andSend: #abs #negated #octantOf: #asIntegerPoint #flipBy:centerAt: #scaleBy: #floor #onLineFrom:to: #isPoint #reflectedAbout: #/ #dist: #asNonFractionalPoint #bearingToPoint: #reciprocal #rotateBy:centerAt: #rotateBy:about: #rounded #setX:setY: #squaredDistanceTo: #normalized #veryDeepCopyWith: #- #storeOn: #rect: #deepCopy #isIntegerPoint #min #adhereTo: #adaptToString:andSend:)

Page 15: Pharo: Objects at your Fingertips

Methods are public

Page 16: Pharo: Objects at your Fingertips

Instance variables are protected

Page 17: Pharo: Objects at your Fingertips

Single Inheritance

Page 18: Pharo: Objects at your Fingertips

Single Inheritance

Object subclass: #Point!! instanceVariableNames: 'x y'!! classVariableNames: ''!! poolDictionaries: ''!! category: 'Kernel-BasicObjects'

2 instance variables

subclass of Object

Page 19: Pharo: Objects at your Fingertips

3 kinds of messages

Unary messages

Binary messages

Keywords messages

5 factorial!Transcript cr

3 + 4

3 raisedTo: 10 modulo: 5!!Transcript show: 'hello world'

Page 20: Pharo: Objects at your Fingertips

• Anonymous method

• Passed as method argument or stored • Functions fct(x)= x*x+3, fct(2). !

fct :=[:x| x * x + 3]. fct value: 2

!

Blocks

Page 21: Pharo: Objects at your Fingertips

Control structuresEvery control structure is realized by message sends

4 timesRepeat: [Beeper beep]

max: aNumber!! ^ self < aNumber !! ! ifTrue: [aNumber] !! ! ifFalse: [self]

Page 22: Pharo: Objects at your Fingertips

<= aPoint !! "Answer whether the receiver is neither!! below nor to the right of aPoint."!!! ^ x <= aPoint x and: [y <= aPoint y]

A typical method in PointMethod name Argument Comment

Return Binary messageKeyword messageInstance variable

Block

(2@3) <= (5@6) true

Page 23: Pharo: Objects at your Fingertips

Complete Syntax on a PostCard

exampleWithNumber: x

“A method that has unary, binary, and key word messages, declares arguments and temporaries (but not block temporaries), accesses a global variable (but not and instance variable), uses literals (array, character, symbol, string, integer, float), uses the pseudo variable true false, nil, self, and super, and has sequence, assignment, return and cascade. It has both zero argument and one argument blocks.”

|y|

true & false not & (nil isNil) ifFalse: [self halt].

y := self size + super size.

#($a #a ‘a’ 1 1.0)

do: [:each | Transcript show: (each class name); show: (each printString); show: ‘ ‘].

^ x < y

Page 24: Pharo: Objects at your Fingertips

Environment

Page 25: Pharo: Objects at your Fingertips

Language + Environment are closely linked

Page 26: Pharo: Objects at your Fingertips

Reflection is the basis

Page 27: Pharo: Objects at your Fingertips

Classes, Methods, Packages are Objects

Page 28: Pharo: Objects at your Fingertips

The tools manipulate these Objects

Page 29: Pharo: Objects at your Fingertips

Class Browser

Page 30: Pharo: Objects at your Fingertips

Inspector

Page 31: Pharo: Objects at your Fingertips

Demo: Changing a class at runtime

Page 32: Pharo: Objects at your Fingertips

Demo: Exploring the system

Page 33: Pharo: Objects at your Fingertips

Demo: Inspect World

Page 34: Pharo: Objects at your Fingertips

There is so much more…

Page 35: Pharo: Objects at your Fingertips

Pharo Books

Page 36: Pharo: Objects at your Fingertips

Pharo Success Stories

Page 37: Pharo: Objects at your Fingertips

Continuous API Testingkeep your services under control 24/7

Norbert Hartl [email protected]

Page 38: Pharo: Objects at your Fingertips

eMCee is a montoring service for backend interfaces

- Web application to define backend interfaces

- Monitors reliability of interface periodically

- Sends warning if status of interface changes

- Provides overview graphs about reliability

- Snapshots requests for debugging purposes

[email protected]

Page 39: Pharo: Objects at your Fingertips

Sunday 20 May 12

Page 40: Pharo: Objects at your Fingertips

• Entry Level Track & Trace Product

• Complements T3 Full Product

• One Page Javascript HTML5 / Ajax Client

• REST Back End in Pharo Smalltalk

• Gateways to multiple data providers

Sunday 20 May 12

Page 41: Pharo: Objects at your Fingertips

Pharo Consortium

Managed by INRIA Who: companies, institutions, user groups Privileged access to the core development team Influence priorities of the next development

http://consortium.pharo.org

Page 42: Pharo: Objects at your Fingertips
Page 43: Pharo: Objects at your Fingertips

Future + Research

Page 44: Pharo: Objects at your Fingertips

Instance Variables as Objects —> Slots

!

Proxy model in the base language

!

Structuring reflective API (—> Mirrors)

More Reflection

Page 45: Pharo: Objects at your Fingertips

AST Everywhere

Used in Tools for Navigation

!

Do we need to store text?

!

Use for Behavioral Reflection

Beyond Text

Page 46: Pharo: Objects at your Fingertips

Put “virtualization” in the language

We already use “Images”

Make the Image a first class concept in the language

System - as - Objects

Page 47: Pharo: Objects at your Fingertips

Open Pharo SprintsMay 2008 Bern July 2009 Bern October 2009 Lille November 2009 Buenos Ares March 2010 Bern May 2010 Buenos Ares June 2010 Bern June 2010 Bruxelles July 2010 London September 2010 Barcelona September 2010 Lille January 2011 Lille July 2011 Lille October 2011 Bruxelles February 2012 Bern April 2012 Lille September 2012 Ghent October 2013 Lille November 2013 Buenos Aires

!

Page 48: Pharo: Objects at your Fingertips