Developing concurrent programs with Pony
Subtyping
Listing 5 shows yet a further incompatibility in capabilities: The history
declaration stipulates box
(line 3), whereas in line 10, res
attempts to insert an iso
reference using push()
.
Of course consume
deletes res
; however, without the capability references, you could not write a meaningful program in Pony. Figure 5 shows the possible replacements that work in the direction of the arrow. For example, an iso
can replace any other capability, but trn
can only be used for val
or ref
, because trn
permits additional read references of the box
capability, which would contradict the exclusive character of iso
. However, val
can be replaced by trn
after a consume
removes the last writing reference of trn
type.

If you replace ref
, you can allow other writing references without problems. The box
and tag
capabilities are not critical for val
and ref
because the latter cannot write. A blog post by developer John Mumm provides a more detailed explanation [9].
Blue Horses
The main.pony
file shown in Listing 6 is the entry point in the example program; in the tradition of C, Pony uses main
as the identifier for the program start point.
Like the familiar main()
function in C or the main()
method in Java, Pony defines an actor. In line 4, the actor's constructor accepts a reference to the executing environment of the program as an object of type Env
. The next lines save the reference in the field with the name env
in the Main
instance.
Line 6 creates the actor of type Painter
, as defined by Listing 5. The constructor uses this
to receive simultaneously a reflexive reference to the Main
actor. The for
loop in lines 7 to 10 iterates over the field with the primitives [Amber, Blue, Crimson, Other]
or, preferably, its iterator object.
On the basis of field values, line 8 generates an object of type Resource
, as defined in Listing 3, and stores the reference in the run-time variable x
. The expression recover Resource(x) end
introduces a mechanism for arbitrarily setting a capability. In the present form, recover
generates a reference of type iso
.
Line 9 transfers the resource
to the Painter
actor. A further deletion process, courtesy of consume res
, occurs before sending. As mentioned earlier, Painter
finally calls the notify
behavior in line 12. The message is a String
type and ends up in the shell thanks to the env
object.
Conclusions
Thanks to Pony, programmers can write what looks to be secure, high-performance code for concurrent programs. It is free of data races and deadlocks and follows the style of object-oriented languages. The actor model should not cause any trouble, but the difficulty of understanding capabilities could deter many users. The matter is even more complex when developers need to consider the resulting effects of a collection of several capabilities.
If the complexity does not deter you, you can improve the quality of your multithreaded programs; moreover, Pony can be docked on existing projects by integrating C code via the Foreign Function Interface (FFI).
Infos
- Pony: http://ponylang.org
- Actor model: http://www.brianstorti.com/the-actor-model/
- Capabilities: http://man7.org/linux/man-pages/man7/capabilities.7.html
- Rust: http://rust-lang.org
- Java 9 plans: http://openjdk.java.net/projects/jdk9/spec/
- Dynamic classes (citation 7): https://en.wikipedia.org/wiki/Comparison_of_programming_languages_by_type_system#cite_note-7
- Pony on GitHub: https://github.com/ponylang/ponyc
- The concept of ownership in Rust: https://doc.rust-lang.org/book/ownership.html
- Sharing reference capabilities: http://jtfmumm.com/blog/2016/03/06/safely-sharing-data-pony-reference-capabilities/
« Previous 1 2 3
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Direct Download
Read full article as PDF:
Price $2.95
News
-
KaOS 2022.06 Now Available With KDE Plasma 5.25
The newest iteration of KaOS Linux not only adds the latest KDE Plasma desktop but sets LibreOffice as the default.
-
Manjaro 21.3.0 Is Now Available
Manjaro “Ruah” has been released and includes the latest Calamares installer, GNOME 42, and much more.
-
SpiralLinux is a New Linux Distribution Focused on Simplicity
A new Linux distribution, from the creator of GeckoLinux, is a Debian-based operating system with a focus on simplicity and ease of use.
-
HP Dev One Linux Laptop is Now Available for Pre-Order
The System76/HP collaboration Dev One laptop, geared toward developers, is now available for pre-order.
-
NixOS 22.5 Is Now Available
The latest release of NixOS with a much-improved package manager and a user-friendly graphical installer.
-
System76 Teams up with HP to Create the Dev One Laptop
HP and System76 have come together to develop a new laptop, powered by Pop!_OS and aimed toward developers.
-
Titan Linux is a New KDE Linux Based on Debian Stable
Titan Linux is a new Debian-based Linux distribution that features the KDE Plasma desktop with a focus on usability and performance.
-
Danielle Foré Has an Update for elementary OS 7
Now that Ubuntu 22.04 has been released, the team behind elementary OS is preparing for the upcoming 7.0 release.
-
Linux New Media Launches Open Source JobHub
New job website focuses on connecting technical and non-technical professionals with organizations in open source.
-
Ubuntu Cinnamon 22.04 Now Available
Ubuntu Cinnamon 22.04 has been released with all the additions from upstream as well as other features and improvements.