Skip to content

Latest commit

 

History

History
87 lines (51 loc) · 4.89 KB

Extensions.md

File metadata and controls

87 lines (51 loc) · 4.89 KB

Extensions

Pharo includes a system of extension methods. This feature allows the developer to add behavior (but not state) to existing objects in Pharo.

Note that it is only possible to add methods (behavior) as extension and not variables (state)

There is no syntactic difference between calling an extension method and calling a method declared in the class. The main difference between methods and extension methods is that extension methods are stored in a different package than the class they are implemented on.

Use of Extension methods

Extension methods are useful when we want to use some behavior on an object, but it does not make sense to package it directly with the object. For example we might want to ask to a model object for information related to its display in a GUI, but to keep layers as cohesive as possible, we do not want display information stored in the code package of our application. In this case, we can add those methods to the model object but package those methods in a GUI package.

Another case might be when you want to enhance the behavior of a package that is simply not your own. You could add the methods to the class in the different package, but committing those changes to source control is not practical (i.e., you don't want to make a branch of the package, and doing a pull request would take a long time, etc.). With extension methods, the changes you make to the foreign package are stored in your own package, so they belong to you.

Add a new extension method

Internally, an extension method is a method whose protocol has a pattern *MyPackageExtendingMyClass.

Here is more detailed information about adding an extension method via Pharo's tooling.

Define an extension method in versions prior to Pharo 7

In the Pharo versions based on Nautilus system browser, extension methods are created when we categorize methods on a protocol beginning by a *.

Add an extension method via Nautilus 1

Add an extension method via Nautilus 2

Define an extension method since Pharo 7

Since Pharo 7 the default system browser is Calypso. To add an extension method in Calypso you need to use the "Move to package" menu entry.

Add an extension method via Calypso

If you already have extensions in this package, you can also select the package in the list of extending packages in the protocol pane before adding a method.

Define an extension method programmatically

ExistingClass compile: 'myMethod
	^ true' classified: '*MyPackage'

Find methods currently extending a class

There are two ways to find which methods are extensions where they are located:

  • Browse a class and check the protocols pane. (See examples below)

  • Look at a package and check the bottom of the class pane. The last classes will appear in grey and will be the classes extended in that package.

In versions prior to Pharo 7

See an extension method via Nautilus

Since Pharo 7

See an extension method via Calypso

Find extensions programmatically

To find extension methods programmatically you can do something like:

(Number methods select: #isExtension) groupedBy: #package

TODO: Add example of refactoring to an extension?

Package loading order is important

One thing developers should take into account when using extensions is to have clean dependencies between its packages. A package extending classes from another package should be loaded after this package.

For example, if my package MyProject-GUI extends MyProject-Model, MyProject-Model should always be loaded before MyProject-GUI is. For more details, see the dependencies sections in the baseline guide.