Oberon (programming language)

{{Short description|General-purpose programming language}}

{{External links|date=November 2024}}

{{Use dmy dates|date=January 2021}}

{{Other uses|Oberon (disambiguation)}}

{{Infobox programming language

| name = Oberon

| logo = Oberon programming language logo.svg

| paradigms = Imperative, structured, modular, object-oriented

| family = Wirth Oberon

| designer = {{wikidata|property|edit|P287}}

| developer = {{wikidata|property|edit|P178}}

| released = {{Start date and age|{{wikidata|property|P571}}}}

| latest release version = Oberon-07

| latest release date = {{Start date and age|2020|03|06|df=yes}}

| typing = Strong, hybrid (static and dynamic)

| scope = Lexical

| programming language =

| platform = ARM, StrongARM; IA-32, x86-64; SPARC, Ceres (NS32032)

| operating system = Windows, Linux, Solaris, classic Mac OS, Atari TOS, AmigaOS

| license =

| file ext =

| file format =

| website = {{URL|{{wikidata|property|P856}}}}

| implementations =

| dialects =

| influenced by = Modula-2

| influenced = Oberon-2, Oberon-07, Active Oberon, Component Pascal, Zonnon, Go, V (Vlang), Nim

}}

Oberon is a general-purpose programming language first published in 1987 by Niklaus Wirth and the latest member of the Wirthian family of ALGOL-like languages (Euler, ALGOL W, Pascal, Modula, and Modula-2).{{Cite report |last=Wirth |first=Niklaus |title=From Modula to Oberon and the programming language Oberon |series=ETH Technical Reports D-INFK |year=1987 |volume=Band 82 |publisher=Wiley |doi=10.3929/ethz-a-005363226 |url=https://doi.org/10.3929/ethz-a-005363226}}{{Cite journal |last=Wirth |first=Niklaus |date=July 1988 |title=The Programming Language Oberon |journal=Software: Practice and Experience |volume=18 |issue=7 |pages=661–670|doi=10.1002/spe.4380180707}}{{Cite journal |last=Wirth |first=Niklaus |date=July 1988 |title=From Modula to Oberon |journal=Software: Practice and Experience |volume=18 |issue=7 |pages=671–690|doi=10.1002/spe.4380180706 |s2cid=13092279}}{{Cite journal |last=Wirth |first=Niklaus |date=April 1988 |title=Type Extensions |journal= ACM Transactions on Programming Languages and Systems|volume=10 |issue=2 |pages=204–214|doi=10.1145/42190.46167 |s2cid=15829497 |doi-access=free}} Oberon was the result of a concentrated effort to increase the power of Modula-2, the direct successor of Pascal, and simultaneously to reduce its complexity. Its principal new feature is the concept of data type extension of record types.{{Cite magazine |last=Pountain |first=D. March 1991 |title=Modula's Children, Part II: Oberon |url=https://archive.org/stream/byte-magazine-1991-03/1991_03_BYTE_16-03_Network_Management#page/n187/ |magazine=Byte |volume=16 |issue=3 |pages=135–142}} It permits constructing new data types on the basis of existing ones and to relate them, deviating from the dogma of strict static typing of data. Type extension is Wirth's way of inheritance reflecting the viewpoint of the parent site. Oberon was developed as part of the implementation of an operating system, also named Oberon at ETH Zurich in Switzerland. The name was inspired both by the Voyager space probe's pictures of the moon of the planet Uranus, named Oberon, and because Oberon is famous as the king of the elves.{{Cite web |last1=Wirth |first1=Niklaus |last2=Gutknecht |first2=Jürg |author-link=Jürg Gutknecht |date=1987–2021 |url=https://people.inf.ethz.ch/wirth/ProjectOberon/PO.System.pdf |title=Project Oberon}}

Oberon was maintained by Wirth and the latest Project Oberon compiler update is dated 6 March 2020.{{cite web |last=Wirth |first=Niklaus |title=Oberon Change Log |url=https://www.inf.ethz.ch/personal/wirth/news.txt |publisher=ETH Zurich |access-date=16 January 2021}}

Design

Oberon is designed with a motto attributed to Albert Einstein in mind: "Make things as simple as possible, but not simpler." The principal guideline was to concentrate on features that are basic and essential and to omit ephemeral issues. Another factor was recognition of the growth of complexity in languages such as C++ and Ada. In contrast to these, Oberon emphasizes the use of the library concept to extend the language. Enumeration and subrange types, which were present in Modula-2, were omitted, and set types are limited to sets of integers. All imported items must be qualified by the name of the module where they are declared. Low-level facilities are highlighted by only allowing them to be used in a module which includes the identifier SYSTEM in its import list. Strict type checking, even across modules, and index checking at runtime, null pointer checking, and the safe type extension concept largely allow programming to rely on the language rules alone.

The intent of this strategy was to produce a language that is easier to learn, simpler to implement, and very efficient. Oberon compilers have been viewed as compact and fast, while providing code quality comparable to commercial compilers.{{Cite web |last=Mössenböck |first=Hanspeter |title=Compiler Construction: The Art of Niklaus Wirth |url=https://ssw.jku.at/Research/Papers/Moe00b.pdf |access-date=28 May 2025}}

Characteristics

Features characterizing the Oberon language include:{{Cite web |last1=Wirth |first1=Niklaus |last2=Gutknecht |first2=Jürg |author-link=Jürg Gutknecht |date=1987–2021 |url=http://www.projectoberon.com/ |title=Project Oberon}}

  • Case sensitive syntax with uppercase keywords
  • Type-extension with type test
  • Modules and separate compiling
  • String operations
  • Isolating unsafe code
  • Support for system programming

Object orientation

Oberon supports extension of record types for the construction of abstractions and heterogeneous structures. In contrast to the later dialects, Oberon-2 and Active Oberon, the original Oberon lacks a dispatch mechanism as a language feature but has it as a programming technique or design pattern. This gives great flexibility in OOP. In the Oberon operating system, two programming techniques are used together for the dispatch call: Method suite and Message handler.

=Method suite=

In this technique, a table of procedure variables is defined and a global variable of this type is declared in the extended module and assigned back in the generic module:

MODULE Figures; (* Abstract module *)

TYPE

Figure* = POINTER TO FigureDesc;

Interface* = POINTER TO InterfaceDesc;

InterfaceDesc* = RECORD

draw* : PROCEDURE (f : Figure);

clear* : PROCEDURE (f : Figure);

mark* : PROCEDURE (f : Figure);

move* : PROCEDURE (f : Figure; dx, dy : INTEGER);

END;

FigureDesc* = RECORD

if : Interface;

END;

PROCEDURE Init* (f : Figure; if : Interface);

BEGIN

f.if := if

END Init;

PROCEDURE Draw* (f : Figure);

BEGIN

f.if.draw(f)

END Draw;

(* Other procedures here *)

END Figures.

We extend the generic type Figure to a specific shape:

MODULE Rectangles;

IMPORT Figures;

TYPE

Rectangle* = POINTER TO RectangleDesc;

RectangleDesc* = RECORD

(Figures.FigureDesc)

x, y, w, h : INTEGER;

END;

VAR

if : Figures.Interface;

PROCEDURE New* (VAR r : Rectangle);

BEGIN

NEW(r);

Figures.Init(r, if)

END New;

PROCEDURE Draw* (f : Figure);

VAR

r : Rectangle;

BEGIN

r := f(Rectangle); (* f AS Rectangle *)

(* ... *)

END Draw;

(* Other procedures here *)

BEGIN (* Module initialisation *)

NEW(if);

if.draw := Draw;

if.clear := Clear;

if.mark := Mark;

if.move := Move

END Rectangles.

Dynamic dispatch is only done via procedures in Figures module that is the generic module.

=Message handler=

This technique consists of replacing the set of methods with a single procedure, which discriminates among the various methods:

MODULE Figures; (* Abstract module *)

TYPE

Figure* = POINTER TO FigureDesc;

Message* = RECORD END;

DrawMsg* = RECORD (Message) END;

ClearMsg* = RECORD (Message) END;

MarkMsg* = RECORD (Message) END;

MoveMsg* = RECORD (Message) dx*, dy* : INTEGER END;

Handler* = PROCEDURE (f : Figure; VAR msg : Message);

FigureDesc* = RECORD

(* Abstract *)

handle : Handler;

END;

PROCEDURE Handle* (f : Figure; VAR msg : Message);

BEGIN

f.handle(f, msg)

END Handle;

PROCEDURE Init* (f : Figure; handle : Handler);

BEGIN

f.handle := handle

END Init;

END Figures.

We extend the generic type Figure to a specific shape:

MODULE Rectangles;

IMPORT Figures;

TYPE

Rectangle* = POINTER TO RectangleDesc;

RectangleDesc* = RECORD

(Figures.FigureDesc)

x, y, w, h : INTEGER;

END;

PROCEDURE Draw* (r : Rectangle);

BEGIN

(* ... *)

END Draw;

(* Other procedures here *)

PROCEDURE Handle* (f: Figure; VAR msg: Figures.Message);

VAR

r : Rectangle;

BEGIN

r := f(Rectangle);

IF msg IS Figures.DrawMsg THEN Draw(r)

ELSIF msg IS Figures.MarkMsg THEN Mark(r)

ELSIF msg IS Figures.MoveMsg THEN Move(r, msg(Figures.MoveMsg).dx, msg(Figures.MoveMsg).dy)

ELSE (* ignore *)

END

END Handle;

PROCEDURE New* (VAR r : Rectangle);

BEGIN

NEW(r);

Figures.Init(r, Handle)

END New;

END Rectangles.

In the Oberon operating system both of these techniques are used for dynamic dispatch. The first one is used for a known set of methods; the second is used for any new methods declared in the extension module. For example, if the extension module Rectangles were to implement a new Rotate() procedure, within the Figures module it could only be called via a message handler.

Implementations and variants

=Oberon=

No-cost implementations of Oberon (the language) and Oberon (the operating system) can be found on the Internet (several are from ETHZ itself).

=Oberon-2=

{{Main|Oberon-2}}

A few changes were made to the first released specification. For example, object-oriented programming (OOP) features were added, the FOR loop was reinstated. The result was Oberon-2. One release, named Native Oberon which includes an operating system, and can directly boot on IBM PC compatible class hardware. A .NET implementation of Oberon with some added minor .NET-related extensions was also developed at ETHZ. In 1993, an ETHZ university spin-off company brought a dialect of Oberon-2 to the market named Oberon-L. In 1997, it was renamed Component Pascal.

Oberon-2 compilers developed by ETH include versions for Microsoft Windows, Linux, Solaris, and classic Mac OS. Implementations from other sources exist for some other operating systems, including Atari TOS and AmigaOS.

There is an Oberon-2 Lex scanner and Yacc parser by Stephen J Bevan of Manchester University, UK, based on the one in the Mössenböck and Wirth reference. It is at version 1.4.

Other compilers include Oxford Oberon-2,{{Cite web |last=Spivey |date=8 April 2019 |url=http://spivey.oriel.ox.ac.uk/corner/Oxford_Oberon-2_compiler |title=Oxford Oberon-2 compiler |access-date=17 January 2021}} which also understands Oberon-07, and Vishap Oberon.{{Cite web |author=dcwbrown |date=16 June 2020 |url=https://github.com/vishaps/voc/ |title=Vishap Oberon Compiler |website=GitHub |access-date=17 January 2021}} The latter is based on Josef Templ's Oberon to C language source-to-source compiler (transpiler) named Ofront,{{Cite web |author=jtempl |date=2 January 2020 |url=https://github.com/jtempl/ofront/ |title=Ofront |website=GitHub |access-date=17 January 2021}} which in turn is based on the OP2 Compiler developed by Regis Crelier at ETHZ.

=Oberon-07=

Oberon-07, defined by Niklaus Wirth in 2007 and revised in 2008, 2011, 2013, 2014, 2015, and 2016 is based on the original version of Oberon rather than Oberon-2. The main changes are: explicit numeric conversion functions (e.g., FLOOR and FLT) must be used; the WITH, LOOP and EXIT statements were omitted; WHILE statements were extended; CASE statements can be used for type extension tests; RETURN statements can only be connected to the end of a function; imported variables and structured value parameters are read-only; and, arrays can be assigned without using COPY.{{Cite report |last=Wirth |first=Niklaus |date=3 May 2016 |url=https://people.inf.ethz.ch/wirth/Oberon/Oberon07.Report.pdf |title=The Programming Language Oberon-07 |website=ETH Zurich, Department of Computer Science |access-date=17 January 2021}}

Oberon-07 compilers have been developed for use with many different computer systems. Wirth's compiler targets a reduced instruction set computer (RISC) processor of his own design that was used to implement the 2013 version of the Project Oberon operating system on a Xilinx field-programmable gate array (FPGA) Spartan-3 board. Ports of the RISC processor to FPGA Spartan-6, Spartan-7, Artix-7 and a RISC emulator for Windows (compilable on Linux and macOS, and binaries available for Windows) also exist. [https://miasap.se/obnc/ OBNC] compiles via C and can be used on any Portable Operating System Interface (POSIX) compatible operating system. The commercial [http://www.astrobe.com Astrobe] implementation targets STM ARM Cortex-M0, M3, M4, M7 and Raspberry Pi RP2040 and RP2350 microcontrollers. The [https://github.com/congdm/Patchouli-Compiler Patchouli] compiler produces 64-bit Windows binaries. [http://www.exaprog.com/ Oberon-07M] produces 32-bit Windows binaries and implements revision 2008 of the language. [https://github.com/AntKrotov/oberon-07-compiler Akron's] produces binaries for both Windows and Linux. [http://oberspace.org/oberonjs.html OberonJS] translates Oberon to JavaScript. There is [https://visual.sfu-kras.ru online IDE for Oberon]. [https://github.com/lboasso/oberonc oberonc] is an implementation for the Java virtual machine.

=Active Oberon=

Active Oberon is yet another variant of Oberon, which adds objects (with object-centered access protection and local activity control), system-guarded assertions, preemptive priority scheduling and a changed syntax for methods (named type-bound procedures in Oberon vocabulary). Objects may be active, which means that they may be threads or processes. Further, Active Oberon has a way to implement operators (including overloading), an advanced syntax for using arrays (see [http://www.ethoberon.ethz.ch/native/compiler/x.index.html OberonX language extensions] and Proceedings{{cite encyclopedia |last1=Friedrich |first1=Felix |last2=Gutknecht |first2=Jürg |author-link=Jürg Gutknecht |editor1-last=Lightfoot |editor1-first=David E. |editor2-last=Szyperski |editor2-first=Clemens |date=2006 |chapter=Array-Structured Object Types for Mathematical Programming |volume=4228 |publisher=Springer, Berlin Heidelberg |pages=195–210 |isbn=978-3-540-40927-4 |encyclopedia=Modular Programming Languages |doi=10.1007/11860990_13 |series=Lecture Notes in Computer Science|s2cid=34210781 }} of the 7th Joint Modular Languages Conference 2006 Oxford, UK), and knows about namespaces.{{cite web |url=http://www.ocp.inf.ethz.ch/wiki/Documentation/Language?action=download&upname=contexts.pdf |title=Proposal for Module Contexts}} The operating system A2 (formerly Active Object System (AOS),{{Cite thesis |type=PhD |last=Muller |first=Pieter Johannes |date=2002 |title=The active object system design and multiprocessor implementation |url=http://e-collection.library.ethz.ch/eserv/eth:26082/eth-26082-02.pdf |publisher=Swiss Federal Institute of Technology, Zürich (ETH Zurich)}} then Bluebottle), especially the kernel, synchronizes and coordinates different active objects.

ETHZ has released Active Oberon which supports active objects, and the operating systems based thereon (Active Object System (AOS), Bluebottle, A2), and environment (JDK, HTTP, FTP, etc.) for the language. As with many prior designs from ETHZ, versions of both are available for download on the Internet. As of 2003, supported central processing units (CPUs) include single and dual core x86, and StrongARM.

=Related languages=

Development continued on languages in this family. A further extension of Oberon-2 was originally named Oberon/L but later renamed to Component Pascal (CP). CP was developed for Windows and classic Mac OS by Oberon microsystems, a commercial spin-off company from ETHZ, and for .NET by Queensland University of Technology. Further, the languages Lagoona{{Cite report |last1=Fröhlich |first1=Peter H. |last2=Franz |first2=Michael |date= |title=On Certain Basic Properties of Component-Oriented Programming Languages |url=http://oberon2005.oberoncore.ru/paper/ph2001.pdf |publisher=University of California, Irvine |access-date=18 January 2021}}{{Cite journal |last1=Fröhlich |first1=Peter H. |last2=Gal |first2=Andreas |last3=Franz |first3=Michael |date=April 2005 |title=Supporting software composition at the programming language level |journal=Science of Computer Programming |volume=56 |issue=1–2 |pages=41–57 |publisher=Elsevier B.V. |doi=10.1016/j.scico.2004.11.004|doi-access=free }} Retrieved 18 January 2021.{{Cite book |last1=Franz |first1=Michael |last2=Fröhlich |first2=Peter H. |last3=Kistler |first3=Thomas |date=20 November 1999 |chapter=Towards language support for component-oriented real-time programming |title=Proceedings: Fifth International Workshop on Object-Oriented Real-Time Dependable Systems |pages=125–129 |publisher=Institute of Electrical and Electronics Engineers (IEEE) |doi=10.1109/WORDSF.1999.842343 |isbn=0-7695-0616-X|s2cid=6891092 }} Retrieved 21 January 2021. and Obliq carry Oberon methods into specialized areas.

Later .NET development efforts at ETHZ focused on a new language named Zonnon. This includes the features of Oberon and restores some from Pascal (enumerated types, built-in IO) but has some syntactic differences. Other features include support for active objects, operator overloading, and exception handling.

Oberon-V (originally named Seneca, after Seneca the Younger) is a descendant of Oberon designed for numerical applications on supercomputers, especially vector or pipelined architectures. It includes array constructors and an ALL statement.{{Cite book |last=Griesemer |first=Robert |date=1993 |chapter=A Language for Numerical Applications on Vector Computers |title=Proceedings CONPAR 90: VAPP IV Conference, Diss Nr. 10277 |publisher=ETH Zurich}}

See also

Resources

=General=

  • [https://web.archive.org/web/20191219125640/http://www.ethoberon.ethz.ch/ Official website (latest available copy at archive org)] at ETH-Zürich
  • [https://people.inf.ethz.ch/wirth/Oberon/ Niklaus Wirth's Oberon Page] at ETH-Zürich
  • [https://www.ssw.uni-linz.ac.at/Research/Projects/Oberon.html Oberon Page] at SSW, Linz
  • [https://www.mathematik.uni-ulm.de/oberon/reports/ Oberon: The Programming Language] at Ulm
  • [http://people.inf.ethz.ch/wirth/ProjectOberon1992.pdf Project Oberon, The Design of an Operating System and a Compiler], book in PDF by Niklaus Wirth and Jürg Gutknecht, 2005 Edition
  • [https://web.archive.org/web/20130529020132/http://www.ethoberon.ethz.ch/genealogy.html Oberon Language Genealogy]
  • [https://www.astrobe.com Astrobe] ARM Oberon-07 Development System
  • [https://modulaware.com/mwovms.htm Oberon System V4 for HP OpenVMS Alpha] with source code upward-compatible 64 bit addressing
  • [https://modulaware.com/mwcvms.htm 64 bit Oberon-2 compiler] for OpenVMS Alpha
  • [https://spivey.oriel.ox.ac.uk/corner/Oxford_Oberon-2_compiler Oxford Oberon-2 Compiler] and its [http://bitbucket.org/Spivey/obc-3/downloads/obcman.pdf User Manual]
  • [https://github.com/rochus-keller/Oberon Free Oberon-07 IDE] Free Oberon-07 IDE for Windows, Macintosh, and Linux with syntax colouring, semantic navigation and source code debugger
  • [https://www.drdobbs.com/architecture-and-design/the-oberon-programming-language/184409405 Oberon article by Joseph Templ] in the January 1994 issue of Dr.Dobbs

=Evolution of Oberon=

  • [https://people.inf.ethz.ch/wirth/Articles/Modula-Oberon-June.pdf Modula-2 and Oberon] Wirth (2005)
  • [https://people.inf.ethz.ch/wirth/Oberon/Oberon.Report.pdf The Programming Language Oberon] Wirth, (1988/90)
  • [https://people.inf.ethz.ch/wirth/Oberon/Oberon07.Report.pdf The Programming Language Oberon (Oberon-7, Revised Oberon)] Wirth, (2016, most current language report)
  • [https://people.inf.ethz.ch/wirth/Oberon/Oberon07.pdf Differences between Oberon-07 and Oberon] Wirth (2011)
  • [https://www.ssw.uni-linz.ac.at/Research/Papers/Oberon2.pdf The Programming Language Oberon-2] H. Mössenböck, N. Wirth, Institut für Computersysteme, ETH Zürich, January 1992
  • [https://www.research-collection.ethz.ch/bitstream/handle/20.500.11850/68904/eth-3412-01.pdf Differences between Oberon and Oberon-2] Mössenböck and Wirth (1991)
  • [https://web.archive.org/web/20110515111149/http://www.oberon.ch/pdf/CP-New.pdf What's New in Component Pascal] (Changes from Oberon-2 to CP), Pfister (2001)

References