Google
 
   
Login
Username:

Password:


Lost Password?

Register now!
Search
Main Menu
service
top books
Polls
What do you think about php-deluxe.net?
Excellent!
Cool
Hmm..not bad
What the hell is this?
encyclopedia
recommendation
Freenet DSL
Who's Online
8 user(s) are online (5 user(s) are browsing encyclopedia)

Members: 0
Guests: 8

more...
partner

Occam programming language

: Do not confuse it with the Ocaml language. Occam is a Parallel computing programming language that builds on Communicating Sequential Processes (CSP) and shares many of their features. It is named after William of Ockham of Occam s Razor fame. Occam is, in a way, a practical executable implementation of CSP.

Occam is an imperative (programming) procedural (programming) language (such as Pascal (programming language)). It was developed by Inmos for their line of Transputers, but implementations for other platforms exist as well.

=Overview=

In the following examples indentation and formatting are critical for parsing the code: expressions are terminated by the end of the line, lists of expressions need to be on the same level of indentation (this feature is also found in other languages, such as Python programming language, Haskell programming language, Icon programming language, Miranda programming language, and ABC programming language).

Communication between processes work through named channels . One process outputs data to a channel via ! while another one inputs data with . Input and output will block until the other end is ready to accept or offer data. Examples (c is a variable):

keyboard c

screen ! c

SEQ introduces a list of expressions that are evaluated sequentially. This is not implicit as it is in most other programming languages. Example:

SEQ x := x + 1 y := x * x

PAR begins a list of expressions that may be evaluated concurrently. Example:

PAR x := x + 1 y := y * 2

ALT specifies a list of guarded commands. The guards are combination of a boolean condition and an input expression (both optional). Each guard for which the condition is true and the input channel is ready is successful. One of the successful alternatives is selected for execution. Example:

ALT count1 < 100 & c1 data SEQ count1 := count1 + 1 merged ! data count2 < 100 & c2 data SEQ count2 := count2 + 1 merged ! data status request SEQ out ! count1 out ! count2

This will read data from channels c1 or c2 (whichever is ready) and pass it into a merged channel. If countN reaches 100, reads from the corresponding channel will be disabled. A request on the status channel is answered by outputting the counts to out.

=Language revisions=

==Occam 2==

Occam 2 is an extension produced by INMOS Ltd in 1987 that adds floating-point, functions and more language types like varying sizes of integers (INT16, INT32) and character types.

With this revision Occam became a language capable of expressing useful programs, whereas occam 1 was more suited to examining algorithms and exploring the new language.

[ occam 2 Reference Manual , INMOS, P-H 1988, ISBN 0-13-629312-3].

==Occam 2.1==

Occam 2.1 is a second enhancement to occam, produced in 1988 by INMOS Ltd. It was the last of the series language developments contributed by INMOS. Despite its incremental version number, it was a significant upgrade in the usefulness of the language, introducing:

  • Named data types (DATA TYPE x IS y);
  • Named Records;
  • Packed Records;
  • Relaxation of some of the type conversion rules;
  • New operators (e.g. BYTESIN)
  • Channel retyping and channel arrays;
  • Ability to return fixed-length array from function;
  • For a full list of the changes see Appendix P of the [http://www.wotug.org/occam/documentation/oc21refman.pdf INMOS Occam 2.1 Reference Manual].

    ==Occam 3==

    Occam 3 was the name for a proposal for the next-generation occam language, created by one of the senior programmers at INMOS. A specification was created and distributed for community comment. The new language included a large number of changes, many of which were focussed at making code sharing, simultaneous development, and project reuse easier.

    The [http://www.wotug.org/occam/documentation/oc3refman.pdf Occam 3] specification is available, but no compiler was created for this variant of the language, partly due to problems within INMOS and its subsequent takeover.

    Some elements from occam 3 were introduced into the occam 2.1 compiler by other teams, and came to be known as occam 2.5 - as in half-way there !

    ==Occam 2.5==

    Occam 2.5 is the common name for the language compiled by the Kent Retargettable Occam compiler KRoC. It contains a significant number of extensions to the occam 2.1 compiler, for example:

  • nested protocols
  • run-time process creation
  • mobile channels, data, and processes
  • recursion;
  • protocol inheritance;
  • array constructors;
  • extended rendezvous.
  • The KRoC team have made the compiler available on their website. In recent times, the team has decided to rename the compiler to Occam-Pi, because of the use of theories from the Pi-calculus.

    =External links=

  • [http://vl.fmnet.info/occam/ The occam Archive]
  • [http://wotug.ukc.ac.uk/parallel/occam/ Internet Parallel Computing Archive: occam] (Documentation and implementations)
  • [http://www.transterpreter.org/ The Transterpreter, an occam virtual machine]
  • [http://www.cs.kent.ac.uk/projects/ofa/kroc/ KRoC - Kent Retargettable occam Compiler]
  • [http://frmb.org/occtutor.html occam tutorial]