Warnier/Orr diagram

Warnier/Orr diagram

A Warnier/Orr diagram (also known as a logical construction of a program/system) is a kind of hierarchical flowchart that allow the description of the organization of data and procedures. They were initially developed in France by Jean-Dominique Warnier & in the US by Kenneth Orr. This method aids the design of program structures by identifying the output & processing results & then working backwards to determine the steps & combinations of input needed to produce them. The simple graphic method used in Warnier/Orr diagrams makes the levels in the system evident and the movement of the data between them vivid.

Basic Elements

Warnier/Orr diagrams show the processes & sequences in which they are performed. Each process is defined in a hierarchical manner i.e. it consists of sets of subprocesses, that define it. At each level, the process is shown in bracket that groups its components.

Since a process can have many different subprocesses, Warnier/Orr diagram uses a set of brackets to show each level of the system. Critical factors in s/w definition & development are iteration or repetition & alteration. Warnier/Orr diagrams show this very well.

Using Warnier/Orr diagrams

To develop a Warnier/Orr diagram, the analyst works backwards, starting with systems output & using output oriented analysis. On paper, the development moves from right to left. First, the intended output or results of the processing are defined. At the next level, shown by inclusion with a bracket, the steps needed to produce the output are defined. Each step in turn is further defined. Additional brackets group the processes required to ptoduce the result on the next level.

Warnier/Orr diagram offer some distinct advantages to systems experts. They are simple in appearance and easy to understand. Yet they are powerful design tools. They have advantage of showing groupings of processes & the data that must be passed from level to level. In addition, the sequence of working backwards ensures that the system will be result oriented. This method is useful for both data & process definition. It can be used for each independently, or both can be combined on the same diagram.

Fig. 3 could be read as like this:

“Welcoming a guest to your home consists of greeting the guest and taking the guest's coat at the same time, then showing the guest in. Greeting a guest consists of saying “Good morning” if it's morning, or saying “Good afternoon” if it's afternoon, or saying “Good evening” if it's evening. Taking the guest's coat consists of helping the guest remove their coat, then hanging the coat up.”

Constructs in Warnier/Orr diagrams

There are four basic constructs used on Warnier/Orr diagrams: hierarchy, sequence, repetition, and alternation. There are also two slightly more advanced concepts that are occasionally needed: concurrency and recursion.

Hierarchy

Hierarchy is the most fundamental of all of the Warnier/Orr constructs. It is simply a nested group of sets and subsets shown as a set of nested brackets. Fig. 1 is an example of a simple hierarchy. Each bracket on the diagram (depending on how you represent it, the character is usually more like a brace "{" than a bracket " [", but we call them "brackets") represents one level of hierarchy. The hierarchy or structure that is represented on the diagram can show the organization of data or processing. However, both data and processing are never shown on the same diagram.

Notice (in Fig. 4) that the brackets name groups of data, and that the elements (the features that do not decompose further) are data elements.

Notice (in Fig. 5) that the brackets are names of groups of processes, and the elements (the features that do not decompose further) are individual processing actions.

equence

Sequence is the simplest structure to show on a Warnier/Orr diagram. Within one level of hierarchy, the features listed are shown in the order in which they occur. In other words, on the Fig. 6 the step listed first is the first that will be executed (if the diagram reflects a process), while the step listed last is the last that will be executed. Similarly with data, the data field listed first is the first that is encountered when looking at the data, the data field listed last is the final one encountered.

Repetition

Repetition is the representation of a classic "loop" in programming terms. It occurs whenever the same set of data occurs over and over again (for a data structure) or whenever the same group of actions is to occur over and over again (for a processing structure). Repetition is indicated by placing a set of numbers inside parentheses beneath the repeating set, like in Fig. 7.

Typically there are two numbers listed in the parentheses, representing the fewest and the most number of times the set will repeat. In Fig. 7, the set Customer Record will always occur at least once within the Customer File (in other words, there is always at least one Customer Record on the Customer File), and since the maximum number of records is never actually defined to be a specific number, we pick a letter to stand for "some number greater than or equal to 1" -- by convention the first letter of the repeating set is the letter chosen to represent the maximum.

While the minimum bound and maximum bound can technically be anything, they are most often either "(1,n)" as in the example, or "(0,n)." When used to depict processing, the "(1,n)" repetition is classically known as a "DoUntil" loop, while the "(0,n)" repetition is called a "DoWhile" loop. On the Warnier/Orr diagram, however, there is no distinction between the two different types of repetition, other than the minimum bound value.

On occasion, the minimum and maximum bound are predefined and not likely to change: for instance the set "Day" occurs within the set "Month" from 28 to 31 times (since the smallest month has 28 days, the largest months, 31). This is not likely to change, and hence it is reasonably safe to write as in Fig. 8. And on occasion, the minimum and maximum are fixed at the same number, for instance in Fig. 9.

In general, though, it is a bad idea to "hard code" a constant other than "0" or "1" in a number of times clause--the design should be flexible enough to allow for changes in the number of times without changes to the design. For instance, if a company has 38 employees at the time a design is done, hard coding a "38" as the "number of employees" within company would certainly not be as flexible as designing "(1,n)".

The number of times clause is always an operator attached to some set (i.e., the name of some bracket), and is never attached to an element (a diagram feature which does not decompose into smaller features). The reason for this will become more apparent as we continue to work with the diagrams. For now, you will have to accept this as a formation rule for a correct diagram.

Alternation

Alternation, or selection, is the traditional "decision" process whereby a determination is made to execute one process or another. It is indicated as a relationship between two subsets of a set in Fig. 10. The Exclusive OR symbol (the plus sign inside the circle) indicates that the sets immediately above and below it are mutually exclusive (if one is present the other is not). This diagram indicates that an Employee is either Management or Non-Management, one Employee cannot be both. It is also permissible to use a "negation bar" above an alternative in a manner similar to engineering notation. The bar is read by simply using the word "not." Thus, the Fig. 11 means the same thing as Fig. 10.

Alternatives do not have to be binary as in the previous examples, but may be many-way alternatives. For example Fig. 12, illustrates that a vehicle may be one of four mutually exclusive types.

Concurrency

Concurrency is one of the two advanced constructs used in the methodology. It is used whenever sequence is unimportant. For instance Fig. 13 indicates that years and weeks operate concurrently (or at the same time) within our calendar. The concurrency operator is rarely used in program design (since most languages do not support true concurrent processing anyway), but does come into play when resolving logical and physical data structure clashes.

Recursion

Recursion is the least used of the constructs. It is used to indicate that a set contains an earlier or a less ordered version of itself. For instance Fig. 14 is the classic "bill of materials" problem, where components contain parts and other sub-components. Sub-components also contain sub-sub-components, and so on. The doubled bracket indicates that the set is recursive. Data structures that are truly recursive are rather rare.

References

* [http://www.davehigginsconsulting.com/pd03.htm Dave Higgins Consulting website and original source for Wikipedia entry.]
* James A. Senn, Analysis & Design of Information Systems, 2nd ed., McGraw-Hill Publishing Company
* [http://www.kenorrinst.com/ Ken Orr's website]
* [http://varatek.com/warnierorr_diagrams.html Sample Diagrams]


Wikimedia Foundation. 2010.

Игры ⚽ Нужен реферат?

Look at other dictionaries:

  • Warnier — Cette page d’homonymie répertorie les différents sujets et articles partageant un même nom. Auguste Warnier (1810 1875) Jean Dominique Warnier (1920 1990), personnalité de la méthodologie en informatique, voir (en) Warnier/Orr diagram Jules… …   Wikipédia en Français

  • Diagram — Further information: Chart Sample flowchart representing the decision process to add a new article to Wikipedia. A diagram is a two dimensional geometric symbolic representation of information according to some visualization technique. Sometimes …   Wikipedia

  • Jean-Dominique WARNIER — Jean Dominique Warnier, né le 8 mai 1920 à Paris (16e arrondissement), mort le 5 août 1990 à Sannois (Val d Oise), était un informaticien français. Ingénieur dans le groupe informatique Bull, il développe et diffuse, au cours des années 1970, une …   Wikipédia en Français

  • Jean-dominique warnier — Jean Dominique Warnier, né le 8 mai 1920 à Paris (16e arrondissement), mort le 5 août 1990 à Sannois (Val d Oise), était un informaticien français. Ingénieur dans le groupe informatique Bull, il développe et diffuse, au cours des années 1970, une …   Wikipédia en Français

  • Méthode Warnier — Jean Dominique Warnier Jean Dominique Warnier, né le 8 mai 1920 à Paris (16e arrondissement), mort le 5 août 1990 à Sannois (Val d Oise), était un informaticien français. Ingénieur dans le groupe informatique Bull, il développe et diffuse, au… …   Wikipédia en Français

  • Jean-Dominique Warnier — Jean Dominique Warnier, né le 8 mai 1920 à Paris 16e et mort le 5 août 1990 à Sannois (Val d Oise), est un informaticien français. Ingénieur dans le groupe informatique Bull, il développe et diffuse, au cours des années 1970,… …   Wikipédia en Français

  • Flowchart — A flowchart is a schematic representation of an algorithm or a stepwise process, showing the steps as boxes of various kinds, and their order by connecting these with arrows. Flowcharts are used in designing or documenting a process or program.… …   Wikipedia

  • Computer-aided software engineering — Example of a CASE tool. Computer aided software engineering (CASE) is the scientific application of a set of tools and methods to a software system which is meant to result in high quality, defect free, and maintainable software products.[1] It… …   Wikipedia

  • Jackson Structured Programming — Example of a JSP diagram. Jackson Structured Programming or JSP is a method for structured programming based on correspondences between data stream structure and program structure. JSP structures programs and data in terms of sequences,… …   Wikipedia

Share the article and excerpts

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