Subsections

10 Programs, units, blocks

A Pascal program consists of modules called units. A unit can be used to group pieces of code together, or to give someone code without giving the sources. Both programs and units consist of code blocks, which are mixtures of statements, procedures, and variable or type declarations.

1 Programs

A pascal program consists of the program header, followed possibly by a 'uses' clause, and a block.

Programs

\begin{syntdiag}\setlength{\sdmidskip}{.5em}\sffamily\sloppy \synt{program}
\syn...
...playmath}\synt{uses\ clause} \end{displaymath}\synt{block}
\lit* .\end{syntdiag}

\begin{syntdiag}\setlength{\sdmidskip}{.5em}\sffamily\sloppy \synt{program\ head...
...aymath}\lit* ( \synt{program\ parameters} \lit* )\end{displaymath}\end{syntdiag}

\begin{syntdiag}\setlength{\sdmidskip}{.5em}\sffamily\sloppy \synt{program\ parameters} \synt{identifier\ list}\end{syntdiag}

\begin{syntdiag}\setlength{\sdmidskip}{.5em}\sffamily\sloppy \synt{uses\ clause}
\lit*{uses} \<[b] \synt{identifier} \\ \lit* , \> \lit* ;\end{syntdiag}
The program header is provided for backwards compatibility, and is ignored by the compiler. The uses clause serves to identify all units that are needed by the program. The system unit doesn't have to be in this list, since it is always loaded by the compiler. The order in which the units appear is significant, it determines in which order they are initialized. Units are initialized in the same order as they appear in the uses clause. Identifiers are searched in the opposite order, i.e. when the compiler searches for an identifier, then it looks first in the last unit in the uses clause, then the last but one, and so on. This is important in case two units declare different types with the same identifier. When the compiler looks for unit files, it adds the extension .ppu (.ppw for Win32 platforms) to the name of the unit. On LINUX and in operating systems where filenames are case sensitive, when looking for a unit, the unit name is first looked for in the original case, and when not found, converted to all lowercase and searched for.

If a unit name is longer than 8 characters, the compiler will first look for a unit name with this length, and then it will truncate the name to 8 characters and look for it again. For compatibility reasons, this is also true on platforms that suport long file names.

2 Units

A unit contains a set of declarations, procedures and functions that can be used by a program or another unit. The syntax for a unit is as follows:

Units

\begin{syntdiag}\setlength{\sdmidskip}{.5em}\sffamily\sloppy \synt{unit}
\synt{u...
...\synt{statement} \\ \lit* ; \>
\end{displaymath}\lit*{end} \lit* .\end{syntdiag}



\begin{syntdiag}\setlength{\sdmidskip}{.5em}\sffamily\sloppy \synt{interface\ pa...
...on\ part}\\
\synt{procedure\ headers\ part}
\end{displaymath}\>\end{syntdiag}

\begin{syntdiag}\setlength{\sdmidskip}{.5em}\sffamily\sloppy \synt{procedure\ he...
...begin{displaymath}\synt{call\ modifiers} \lit* ; \end{displaymath}\end{syntdiag}

\begin{syntdiag}\setlength{\sdmidskip}{.5em}\sffamily\sloppy \synt{implementatio...
...math}\synt{uses\ clause} \end{displaymath}\synt{declaration\ part}\end{syntdiag}

\begin{syntdiag}\setlength{\sdmidskip}{.5em}\sffamily\sloppy \synt{initializatio...
...art}
\lit*{initialization}
\<[b] \synt{statement} \\ \lit* ; \>\end{syntdiag}

\begin{syntdiag}\setlength{\sdmidskip}{.5em}\sffamily\sloppy \synt{finalization\ part}
\lit*{finalization}
\<[b] \synt{statement} \\ \lit* ; \>\end{syntdiag}
The interface part declares all identifiers that must be exported from the unit. This can be constant, type or variable identifiers, and also procedure or function identifier declarations. Declarations inside the implementation part are not accessible outside the unit. The implementation must contain a function declaration for each function or procedure that is declared in the interface part. If a function is declared in the interface part, but no declaration of that function is present in the implementation part, then the compiler will give an error.

When a program uses a unit (say unitA) and this units uses a second unit, say unitB, then the program depends indirectly also on unitB. This means that the compiler must have access to unitB when trying to compile the program. If the unit is not present at compile time, an error occurs.

Note that the identifiers from a unit on which a program depends indirectly, are not accessible to the program. To have access to the identifiers of a unit, the unit must be in the uses clause of the program or unit where the identifiers are needed.

Units can be mutually dependent, that is, they can reference each other in their uses clauses. This is allowed, on the condition that at least one of the references is in the implementation section of the unit. This also holds for indirect mutually dependent units.

If it is possible to start from one interface uses clause of a unit, and to return there via uses clauses of interfaces only, then there is circular unit dependence, and the compiler will generate an error. As and example : the following is not allowed:

Unit UnitA;
interface
Uses UnitB;
implementation
end.

Unit UnitB
interface
Uses UnitA;
implementation
end.
But this is allowed :
Unit UnitA;
interface
Uses UnitB;
implementation
end.
Unit UnitB
implementation
Uses UnitA;
end.
Because UnitB uses UnitA only in it's implentation section. In general, it is a bad idea to have circular unit dependencies, even if it is only in implementation sections.

3 Blocks

Units and programs are made of blocks. A block is made of declarations of labels, constants, types variables and functions or procedures. Blocks can be nested in certain ways, i.e., a procedure or function declaration can have blocks in themselves. A block looks like the following:

Blocks

\begin{syntdiag}\setlength{\sdmidskip}{.5em}\sffamily\sloppy \synt{block} \synt{declaration\ part} \synt{statement\ part}\end{syntdiag}

\begin{syntdiag}\setlength{\sdmidskip}{.5em}\sffamily\sloppy \synt{declaration\ ...
...
\synt{procedure/function\ declaration\ part}
\end{displaymath}\>\end{syntdiag}

\begin{syntdiag}\setlength{\sdmidskip}{.5em}\sffamily\sloppy \synt{label\ declaration\ part}
\lit*{label}
\<[b]
\synt{label}\\
\lit* ,
\>
\lit* ;\end{syntdiag}

\begin{syntdiag}\setlength{\sdmidskip}{.5em}\sffamily\sloppy \synt{constant\ dec...
...nstant\ declaration}\\
\synt{typed\ constant\ declaration}
\)\>\end{syntdiag}

\begin{syntdiag}\setlength{\sdmidskip}{.5em}\sffamily\sloppy \synt{resourcestrin...
...{resourcestring}
\<[b]
\synt{string\ constant\ declaration}\\
\>\end{syntdiag}

\begin{syntdiag}\setlength{\sdmidskip}{.5em}\sffamily\sloppy \synt{type\ declaration\ part}
\lit*{type}
\<[b]
\synt{type\ declaration}\\
\>\end{syntdiag}

\begin{syntdiag}\setlength{\sdmidskip}{.5em}\sffamily\sloppy \synt{variable\ declaration\ part}
\lit*{var}
\<[b]
\synt{variable\ declaration}\\
\>\end{syntdiag}

\begin{syntdiag}\setlength{\sdmidskip}{.5em}\sffamily\sloppy \synt{procedure/fun...
...nstructor\ declaration}\\
\synt{destructor\ declaration}\\
\)\>\end{syntdiag}

\begin{syntdiag}\setlength{\sdmidskip}{.5em}\sffamily\sloppy \synt{statement\ part}
\synt{compound\ statement}\end{syntdiag}
Labels that can be used to identify statements in a block are declared in the label declaration part of that block. Each label can only identify one statement. Constants that are to be used only in one block should be declared in that block's constant declaration part. Variables that are to be used only in one block should be declared in that block's constant declaration part. Types that are to be used only in one block should be declared in that block's constant declaration part. Lastly, functions and procedures that will be used in that block can be declared in the procedure/function declaration part. After the different declaration parts comes the statement part. This contains any actions that the block should execute. All identifiers declared before the statement part can be used in that statement part.

4 Scope

Identifiers are valid from the point of their declaration until the end of the block in which the declaration occurred. The range where the identifier is known is the scope of the identifier. The exact scope of an identifier depends on the way it was defined.

1 Block scope

The scope of a variable declared in the declaration part of a block, is valid from the point of declaration until the end of the block. If a block contains a second block, in which the identfier is redeclared, then inside this block, the second declaration will be valid. Upon leaving the inner block, the first declaration is valid again. Consider the following example:
Program Demo;
Var X : Real;
{ X is real variable }
Procedure NewDeclaration
Var X : Integer;  { Redeclare X as integer}
begin
 // X := 1.234; {would give an error when trying to compile}
 X := 10; { Correct assigment}
end;
{ From here on, X is Real again}
begin
 X := 2.468;
end.
In this example, inside the procedure, X denotes an integer variable. It has it's own storage space, independent of the variable X outside the procedure.

2 Record scope

The field identifiers inside a record definition are valid in the following places:
  1. to the end of the record definition.
  2. field designators of a variable of the given record type.
  3. identifiers inside a With statement that operates on a variable of the given record type.

3 Class scope

A component identifier is valid in the following places:
  1. From the point of declaration to the end of the class definition.
  2. In all descendent types of this class, unless it is in the private part of the class declaration.
  3. In all method declaration blocks of this class and descendent classes.
  4. In a with statement that operators on a variable of the given class's definition.
Note that method designators are also considered identifiers.

4 Unit scope

All identifiers in the interface part of a unit are valid from the point of declaration, until the end of the unit. Furthermore, the identifiers are known in programs or units that have the unit in their uses clause. Identifiers from indirectly dependent units are not available. Identifiers declared in the implementation part of a unit are valid from the point of declaration to the end of the unit. The system unit is automatically used in all units and programs. It's identifiers are therefore always known, in each pascal program, library or unit. The rules of unit scope imply that an identifier of a unit can be redefined. To have access to an identifier of another unit that was redeclared in the current unit, precede it with that other units name, as in the following example:
unit unitA;
interface
Type
  MyType = Real;
implementation
end.
Program prog;
Uses UnitA;

{ Redeclaration of MyType}
Type MyType = Integer;
Var A : Mytype;      { Will be Integer }
    B : UnitA.MyType { Will be real }
begin
end.
This is especially useful when redeclaring the system unit's identifiers.

5 Libraries

Free Pascal supports making of dynamic libraries (DLLs under Win32 and OS/2) trough the use of the Library keyword.

A Library is just like a unit or a program:


Libraries

\begin{syntdiag}\setlength{\sdmidskip}{.5em}\sffamily\sloppy \synt{library}
\syn...
...playmath}\synt{uses\ clause} \end{displaymath}\synt{block}
\lit* .\end{syntdiag}

\begin{syntdiag}\setlength{\sdmidskip}{.5em}\sffamily\sloppy \synt{library\ header}
\lit*{library} \synt{identifier}\end{syntdiag}

By default, functions and procedures that are declared and implemented in library are not available to a programmer that wishes to use this library.

In order to make functions or procedures available from the library, they must be exported in an export clause:


Exports clause

\begin{syntdiag}\setlength{\sdmidskip}{.5em}\sffamily\sloppy \synt{exports\ clause}
\lit*{exports}
\synt{exports\ list}
\lit*{;}\end{syntdiag}

\begin{syntdiag}\setlength{\sdmidskip}{.5em}\sffamily\sloppy \synt{exports\ list}
\<[b] \synt{exports\ entry} \\ \lit* , \>\end{syntdiag}

\begin{syntdiag}\setlength{\sdmidskip}{.5em}\sffamily\sloppy \synt{exports\ entr...
...{displaymath}\lit*{name} \synt{string\ constant} \end{displaymath}\end{syntdiag}

Under Win32, an index clause can be added to an exports entry. an index entry must be a positive number larger or equal than 1.

Optionally, an exports entry can have a name specifier. If present, the name specifier gives the exact name (case sensitive) of the function in the library.

If neither of these constructs is present, the functions or procedures are exported with the exact names as specified in the exports clause.



Free Pascal Compiler
2001-09-22