Prograph

Prograph

Prograph is a visual, object-oriented, dataflow, multiparadigm programming language that uses iconic symbols to represent actions to be taken on data. Commercial Prograph software development environments such as Prograph Classic and Prograph CPX were available for the Apple Macintosh and Windows platforms for many years but were eventually withdrawn from the market in the late 1990s. Support for the Prograph language on Mac OS X has recently reappeared with the release of the Marten software development environment.

History

Research on Prograph started at Acadia University in 1982 as a general investigation into dataflow languages, stimulated by a seminar on Functional Languages conducted by Michael Levin. Diagrams were used to clarify the discussion, leading to the insight: "since the diagrams are clearer than the code, why not make the diagrams themselves executable!" Thus Prograph - Programming in Graphics - was born as a visual dataflow language. This work was led by Dr. Tomasz Pietrzykowski, with Stan Matwin and Thomas Muldner co-authoring early papers. From 1983 to 1985, research prototypes were built on a Three Rivers PERQ graphics workstation (in Pascal, with the data visualized as fireballs moving down datalinks), and a VAX with a Tektronix terminal, and an experimental compiler was programmed in an IBM PC. This work was continued at Technical University of Nova Scotia by Pietrzykowski and Dr. Philip Cox, including a version done in Prolog.

In 1985, work began on a commercialisable prototype on the Macintosh, the only widely available, low-priced computer with high-level graphics support available at the time. In early 1986, this prototype was taken over by "The Gunkara Sun Systems" (later renamed to "TGS Systems") for commercialisation, TGS formerly being a consulting firm formed by Pietrzykowski at Acadia University. Working with Pietrzykowski and Cox, Terry Kilshaw hired and managed the original development team, with Jim Laskey as the lead developer. In 1987 Mark Szpakowski suggested the merger of object-orientation with visual dataflow, creating an "objectflow" system. After almost four years of development, the first commercial release, v1.2, was introduced at the OOPSLA conference in New Orleans in October 1989. This product won the 1989 MacUser Editor's Choice Award for Best Development Tool. Version 2.0, released in July 1990, added a compiler to the system.

TGS changed its name to "Prograph International" (PI) in 1990. Although sales were slow, development of a new version, "Prograph CPX" ("Cross-Platform eXtensions") was undertaken in 1992, that was intended to build fully cross-platform applications. This version was released in 1993, and was immediately followed by development of a client-server application framework. Despite increasing sales, the company was unable to sustain operating costs, and following a failed financing attempt in late 1994, went into receivership in early 1995.

As the receivership proceeded, the management and employees of PI formed a new company, "Pictorius", which acquired the assets of PI. Shortly afterwards, development of a Windows version of Prograph CPX was begun. Although it was never formally released, versions of Windows Prograph were regularly made available to Prograph CPX customers, some of whom ported existing applications written in Macintosh Prograph, with varying degrees of success.

After management changes at the new company, emphasis shifted from tools development to custom programming and web application development. In April 2002 the web development part of the company was acquired by the Paragon Technology Group of Bermuda and renamed Paragon Canada. The Pictorius name and rights to the Prograph source code were retained by McLean Watson Capital, a Toronto-based investments firm which had heavily funded Pictorius. A reference to Pictorius appeared for a time on the former's Portfolio page, but has since disappeared. The Windows version of CPX was later released for free use, and was available for some time for download from the remnants of the Pictorius website (link below).

A group of Prograph users ("Prographers") calling themselves " [http://opi.ospgli.org/ The Open Prograph Initiative] " (OPI) formed in the late 1990s with the goal of keeping Prograph viable in the face of OS advances by Apple and Microsoft. For a time the group also sought to create a new open-source visual programming language to serve as Prograph's successor, but with the advent of Andescotia's Marten visual programming environment, participation in the group essentially ceased.

Description

.

Prograph took these concept further, introducing a combination of object-oriented methodologies and a completely visual environment for programming. Objects are represented by hexagons with two sides, one containing the data fields, the other the methods that operate on them. Double-clicking on either side would open a window showing the details for that object; for instance, opening the variables side would show class variables at the top and instance variables below. Double-clicking the method side shows the methods implemented in this class, as well as those inherited from the superclass. When a method itself is double-clicked, it opens into another window displaying the logic.

In Prograph a method is represented by a series of icons, each icon containing an instructions (or group of them). Within each method the flow of data is represented by lines in a directed graph. Data flows in the top of the diagram, passes through various instructions, and eventually flows back out the bottom (if there is any output).

Several features of the Prograph system are evident in this picture of a database sorting operation. The upper bar shows that this method, concurrent sort, is being passed in a single parameter, A Database Object. This object is then fed, via the lines, into several operations. Three of these extract a named index (indexA etc.) from the object using the getter operation (the unconnected getter output passes on the "whole" object), and then passes the extracted index to a sort operation. The output of these sort operations are then passed, along with a reference to the original database, to the final operation, update database. The bar at the bottom of the picture represents the outputs of this method, and in this case there are no connections to it and so this method does not return a value. Also note that although this is a method of some class, there is no self; if self is needed, it can be provided as an input or looked up.

In a dataflow language the operations can take place as soon as they have valid inputs for all of their connections. That means, in traditional terms, that each operation in this method could be carried out at the same time. In the database example, all of the sorts could take place at the same time if the computer were capable of supplying the data. Dataflow languages tend to be inherently concurrent, meaning they are capable of running on multiprocessor systems "naturally", one of the reasons that it garnered so much interest in the 1980s.

Loops and branches are constructed by modifying operations with annotations. For instance, a loop that calls the doit method on a list of input data is constructed by first dragging in the doit operator, then attaching the loop modifier and providing the list as the input to the loop. Another annotation, "injection", allows the method itself to be provided as an input, making Prograph a dynamic language to some degree.

Execution

The integrated Prograph development and execution environment also allowed for visual debugging. The usual breakpoint and single-step mechanisms were supported. Each operation in a data-flow diagram was visually highlighted as it executed. A tooltip-like mechanism displayed data values when the mouse was held over a data-link when stopped in debug mode. Visual display of the execution stack allowed for both roll-back and roll-forward execution. For many users the visual execution aspects of the language were as important as its edit-time graphical facilities.

The most important run-time debugging feature was the ability to change the code on the fly while debugging. This allowed for a truly unique development approach allowing bugs to be fixed while debugging without the need to recompile.

Critique

Several problems with the Prograph system are also evident in this method implementation.

Prograph code could be commented using labels. In initial versions, the majority of the included classes were unlabeled. It was often necessary to consult the documentation to determine the proper inputs to a method. This was largely addressed in subsequent versions, but the methods were never documented to the point that the comments explained how and why the methods worked.

Developers had to pay attention to routing of wiring, and to commenting inputs and outputs, to keep their diagrammatic code clean. In the Prograph Database Operation example above, two of the paths cross because one of the wires from the input bar must flow to a certain input on the update operation. This could be avoided by simply dragging and repositioning the 'indexA' and 'sort' icons to be inside the leftmost wire, but in general terms there was no way to avoid this sort of spaghetti code.

Another problem was a profusion of windows. When moving around the Prograph workspace, the IDE generally required a new window to be opened to see the contents of methods.

ee also

*Visual programming language
*Spreadsheet 2000, a unique spreadsheet written in Prograph
*LabVIEW, a graphical programming application.

External links

* [http://192.219.29.95/ Pictorius] - Pictorius's home page, no longer even having a DNS record. The Prograph downloads could for a time still be found at [http://192.219.29.95/prograph.html http://192.219.29.95/prograph.html] , but this link now times out.
* [http://www.google.com/custom?domains=mactech.com&q=Prograph&sitesearch=mactech.com&sa=Search&client=pub-3362040077720013&forid=1&ie=ISO-8859-1&oe=ISO-8859-1&cof=GALT%3A%23008000%3BGL%3A1%3BDIV%3A%23336699%3BVLC%3A663399%3BAH%3Acenter%3BBGC%3AFFFFFF%3BLBGC%3A336699%3BALC%3A0000FF%3BLC%3A0000FF%3BT%3A000000%3BGFNT%3A0000FF%3BGIMP%3A0000FF%3BFORID%3A1%3B&hl=en|MacTech Articles on Prograph] - 10 articles on Prograph, covering history and language
* [http://www.mactech.com/articles/mactech/Vol.10/10.11/PrographCPXTutorial/ Prograph CPX - A Tutorial] - an excellent article on the system, dating to shortly after the original release of Prograph CPX
* [http://nitsan.org/~maratb/blog/1997/12/15/vpl/ Visual Programming Languages: A Survey] - includes a short overview of the Prograph system
* [http://opi.ospgli.org/ The Open Prograph Initiative] - Home page of the group interested in creating an open source version of Prograph
* [http://www.andescotia.com/ Marten] - Commercial and proprietary re-implementation of Prograph for Mac OS X
* [http://www.amazon.com/dp/0134411633 Visual Programming with Prograph CPX] - Textbook on Prograph CPX

Papers Articles & Books

Citation
first1 = P.T.
last1 = Cox
first2 = T.
last2 = Pietrzykowski
contribution = Advanced Programming Aids in Prograph
title = Technical Report 8408
year = 1984
place = Halifax, Nova Scotia
publisher = School of Computer Science, Technical University of Nova Scotia
. Citation
first1 = P.T.
last1 = Cox
first2 = I.J.
last2 = Mulligan
contribution = Compiling the graphical functional language Prograph
title = Technical Report 8402
year = 1984
place = Halifax, Nova Scotia
publisher = School of Computer Science, Technical University of Nova Scotia
. Citation
last1 = Matwin | first1 = S.
last2 = Pietrzykowski | first2 = T.
title = Prograph: A Preliminary Report
journal = Computer Languages
volume = 10
issue = 2
pages = 91-126
date = 1985
year = 1985
. Citation
last = Kilshaw
first = Terry
journal = MacTech Magazine
title = Prograph Primitives
volume = 7
issue = 5
date = May 1991
year = 1991
url = http://www.mactech.com/articles/mactech/Vol.07/07.05/PrographPrimitive/index.html
. Citation
last = Kilshaw
first = Terry
journal = MacTech Magazine
title = Prograph 2.5
volume = 8
issue = 1
date = January 1992
year = 1992
url = http://www.mactech.com/articles/mactech/vol.08/08.01/prograph2.5/index.html
. Citation
last = Kilshaw
first = Terry
journal = MacTech Magazine
title = A Pictorial Button Class in Prograph
volume = 9
issue = 1
date = January 1993
year = 1993
url = http://www.mactech.com/articles/mactech/Vol.09/09.01/PictButton/index.html
. Citation
last = Kilshaw
first = Terry
journal = MacTech Magazine
title = A Review of Prograph CPX 1.0
volume = 10
issue = 3
pages = 64-74
date = March 1994
year = 1994
url = http://www.mactech.com/articles/mactech/Vol.10/10.03/PrographReview/index.html
. Citation
last = Schmucker
first = Kurt
journal = MacTech Magazine
title = Prograph CPX - A Tutorial
volume = 10
issue = 11
date = November 1994
year = 1994
url = http://www.mactech.com/articles/mactech/Vol.10/10.11/PrographCPXTutorial/index.html
. cite book
last = Shafer
first = Dan
title = The Power of Prograph CPX
publisher = The Reader Network
date = 1994
location = U.S.A
isbn = 1881513-02-5
.

Citation
last = Schmucker
first = Kurt
journal = MacTech Magazine
title = Commands and Undo in Prograph CPX
volume = 11
issue = 1
date = January 1995
year = 1995
url = http://www.mactech.com/articles/mactech/Vol.11/11.01/CommandsandUndoCPX/index.html
. Citation
last = Schmucker
first = Kurt
journal = MacTech Magazine
title = Filters & Sieves in Prograph CPX
volume = 11
issue = 3
date = March 1995
year = 1995
url = http://www.mactech.com/articles/mactech/Vol.11/11.03/PrographUndo/index.html
. Citation
last = Schmucker
first = Kurt
journal = MacTech Magazine
title = MacApp and Prograph CPX - A Comparison
volume = 11
issue = 5
date = May 1995
year = 1995
url = http://www.mactech.com/articles/mactech/Vol.11/11.05/MacAppandPrograph/index.html
.


Wikimedia Foundation. 2010.

Игры ⚽ Поможем написать курсовую

Look at other dictionaries:

  • List of programming languages by category — Programming language lists Alphabetical Categorical Chronological Generational This is a list of programming languages grouped by category. Some languages are listed in multiple categories. Contents …   Wikipedia

  • Dataflow programming — Programming paradigms Agent oriented Automata based Component based Flow based Pipelined Concatenative Concurrent computing …   Wikipedia

  • Tony Tough — ist eine zweiteilige Adventure Computerspiel Reihe des italienischen Entwicklers Prograph Research, in deren Mittelpunkt der gleichnamige Protagonist steht. Im deutschen Raum wurden die Spiele vom Verleger dtp entertainment veröffentlicht.… …   Deutsch Wikipedia

  • Tony Tough 2 — Tony Tough ist eine zweiteilige Adventure Computerspiel Reihe des italienischen Entwicklers Prograph Research, in deren Mittelpunkt der gleichnamige Protagonist steht. Im deutschen Raum wurden die Spiele vom Verleger dtp entertainment… …   Deutsch Wikipedia

  • Tony Tough 2 - Der Klugscheisser kehrt zurück — Tony Tough ist eine zweiteilige Adventure Computerspiel Reihe des italienischen Entwicklers Prograph Research, in deren Mittelpunkt der gleichnamige Protagonist steht. Im deutschen Raum wurden die Spiele vom Verleger dtp entertainment… …   Deutsch Wikipedia

  • Tony Tough and the Night of the Roasted Moths — Tony Tough ist eine zweiteilige Adventure Computerspiel Reihe des italienischen Entwicklers Prograph Research, in deren Mittelpunkt der gleichnamige Protagonist steht. Im deutschen Raum wurden die Spiele vom Verleger dtp entertainment… …   Deutsch Wikipedia

  • Integrated development environment — Anjuta, a C and C++ IDE for the GNOME environment An integrated development environment (IDE) (also known as integrated design environment, integrated debugging environment or interactive development environment) is a software application that… …   Wikipedia

  • List of programming languages — Programming language lists Alphabetical Categorical Chronological Generational The aim of this list of programming languages is to include all notable programming languages in existence, both those in current use and historical ones, in… …   Wikipedia

  • Multi-paradigm programming language — A multi paradigm programming language is a programming language that supports more than one programming paradigm. As Leda designer Tim Budd holds it: The idea of a multiparadigm language is to provide a framework in which programmers can work in… …   Wikipedia

  • Visual programming language — A Visual programming language (VPL) is any programming language that lets users specify programs by manipulating program elements graphically rather than by specifying them textually. A VPL allows programming with visual expressions, spatial… …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”