Document revision date: 19 July 1999
[Compaq] [Go to the documentation home page] [How to order documentation] [Help on this site] [How to contact us]
[OpenVMS documentation]

POLYCENTER Software Installation Utility Developer's Guide


Previous Contents Index


hardware device

The hardware device statement specifies that a required hardware device must be present in the execution environment. If the device is not available, the utility prompts the user to continue or to terminate the operation.

Statement Syntax

hardware device name ;


Function Syntax

< hardware device name >


Parameter

name

Indicates the device name of the hardware device. You must include the colon (:) at the end of the device name.

Description

Statement

The hardware device statement specifies a required hardware device. If the device is not available, the utility prompts interactive users to continue or to terminate the operation. Each failed hardware device statement results in a separate prompt.

If the operation is not executed in interactive mode, it is terminated.

Function

The hardware device function tests whether a specified device is present. The value is true if the device is present; otherwise, the value is false.


Examples

#1

hardware device LPA0: ; 
      

The hardware device statement in this example specifies that if the device named LPA0: is not present in the execution environment, the utility displays a message prompting the user to continue or to terminate the operation.

#2

if (<hardware device GAA0:>) ;           
    file [SYSEXE]SMFDRIVER.EXE ; 
end if ; 
      

The hardware device function in this example provides the file [SYSEXE]SMFDRIVER.EXE if the device GAA0: is present.


hardware processor

The hardware processor statement indicates a specific system processor model that must be present. If the model is not present, the utility prompts the user to continue or to terminate the operation.

Statement Syntax

hardware processor model (model,...) ;


Function Syntax

< hardware processor model (model,...) >


Parameter

model (model,...)

Indicates processor model identifiers.

Description

Statement

The hardware processor statement indicates a specific system processor model that must be present. If the model is not present, the utility prompts interactive users to continue or to terminate the operation. Each failed hardware processor statement results in a separate prompt.

If the operation is not executed in interactive mode, it is terminated. You can obtain the processor model identifier by using the DCL lexical function F$GETSYI("CPU").

Function

The hardware processor function tests whether a specified system processor model is present. The value is true if the model is present; otherwise, the value is false.


Example

Suppose the PDF contains the following lines:

if (<hardware processor model 7>) ; 
    error UNSPROC ; 
end if ; 
 
      

You would have an UNSPROC module in the PTF similar to the following:


1 UNSPROC 
=prompt Not supported on MicroVAX I. 
This product is not supported on the MicroVAX I processor. 
 
      

If the processor model is 7, the system displays a message supplied by the text module UNSPROC indicating that the product is not supported on the MicroVAX I computer and prompts the user to continue or terminate the operation.


if

The if statement allows you to conditionally process a group of statements. The if, else, else if, and end if statements are used together to form an if group.

Syntax

if expression ; PDL-statements

[ [ else if expression ; PDL-statements ] ...]

[ else; PDL-statements ]

end if ;


Parameter

expression

Indicates the condition you want to test. An expression is used to produce a Boolean value based on the evaluation of the condition. It is delimited by opening and closing parentheses (...). It contains one or more of the following PDL functions: and, optionally, one or more of the keywords AND, OR, and NOT, which are used as logical operators. An expression has one of the following forms, where each term is either another expression or a function:

Option

PDL-statements

Any product description language statement or a group of statements described in this reference section, except the product and end product statements.
Required Terminator end if ;

Description

The if group allows you to conditionally process a group of statements. The utility executes the statements contained in the if group up to the first occurrence of an else if statement (if present), an else statement (if present), or end if statement if the expression evaluates to true.

else if

The else if statement is valid only if it is immediately contained in an if group and is not lexically preceded by an else statement.

The utility executes the statements lexically contained in the if group between the else if statement and the next occurrence of an else, else if, or end if statement if all of the following conditions exist:

If any of these conditions are not satisfied, the utility also does not execute statements lexically contained in the if group between the else if statement and the next occurrence of an else, else if, or end if statement.

else

The else statement is valid only if it is immediately contained in an if group and is the only else statement in the if group. The utility executes the statements following the else statement (in the same if group) if both of the following conditions exist:

If either of these conditions is not satisfied, the utility does not execute statements lexically contained in the if group between the else statement and the end if statement.


Examples

#1

if (<software DEC VAXVMS DECWINDOWS>) ; 
    file [SYSEXE]PRO$DW_SUPPORT.EXE ; 
else if (<software DEC VAXVMS MOTIF>) ; 
    file [SYSEXE]PRO$MOTIF_SUPPORT.EXE ; 
else ; 
    file [SYSEXE]PRO$CC_SUPPORT.EXE ; 
end if ; 
 
      

This example uses the if statement in conjunction with the software function to determine which file to provide, as follows:

#2

if ((NOT <hardware device MUA0:>) AND 
    (<software ABC AXPVMS TEST version below 2.0>)); 
   .
   .
   .
end if; 
 
      

In this example, the group of statements enclosed within the if...end if statements is executed if no MUA0: device is available on the target system and the product TEST with a version below V2.0 is present. The expression evaluates to false if there is an MUA0: device, the product TEST is V2.0 or above, or no such product is installed.


infer

The infer statement tests the target system to determine if a product or product version is available.

Note

The infer statement is valid only in a transition PDF.

Syntax

infer
{ available from { install file | logical name logical _name } |
version from file } ;


Parameters

file

Indicates the relative file specification of the file you want to test.

logical_name

Indicates the logical name you want to test.

Description

The infer statement tests the target system to determine if a product or product version is available. This statement is valid only in a transition PDF.

There are several types of infer statements:

See Also scope

Examples

#1

infer available from logical name DOC$ROOT ; 
      

The infer available statement in this example determines if the product is available by checking to see if there is a translation for the logical name DOC$ROOT. The name of the product that the statement is testing for is contained in the product directive in the transition PDF.

#2

infer version from [SYSEXE]FORTRAN.EXE 
      

The infer version statement in this example determines the active version of the product by checking to see if the file [SYSEXE]FORTRAN.EXE is present.


information

The information statement displays a message from the specified text module in the PTF either before or after the execution of an installation, configuration, or reconfiguration operation.

Syntax

information name
[ [no] confirm ]
[ phase { after | before } ]
[ with helptext ] ;


Parameter

name

Indicates, as a quoted or unquoted string, the name of the associated PTF text module. The name you specify can be from 1 to 31 characters in length and must be unique among all names in the same product description.

Options

[no] confirm

Displays the contents of the text module and prompts the user for a response. The user can continue or terminate the operation. The confirm option does not have any effect in batch mode. The default is no confirm.

phase after

Displays the contents of the text module after the execution phase of the operation finishes. This option cannot be used with the phase before option.

phase before

Displays the contents of the text module during the configuration phase. This option is the default and cannot be used with the phase after option.

with helptext

Forces the display of the full help text module during the installation or configuration of the product. See Section 7.1 for usage constraints.

Description

The information statement displays a message from the specified text module in the PTF either before or after the execution of an installation, configuration, or reconfiguration operation as directed by the phase option. The phase before option causes the message to be displayed during the configuration phase of the operation; the phase after option causes the message to be displayed after the execution phase of the operation.

By default, the prompt text string is displayed without help text. However, help text is displayed after the prompt text when the user specifies the /HELP qualifier on the command line, or the information statement contains the with helptext option.

You must supply prompt text for the information statement in the PTF using the =prompt directive. Help text is optional. If provided, it must immediately follow the prompt text line.

If you have information statements that specify the phase before option and they are lexically contained in a group with configuration choices, they are processed in lexical order and may be nested.

Information statements that specify the phase after option do not display text if they are lexically contained in an option group that is not selected.

The confirm option to the information statement causes the utility to prompt the user to continue or terminate the operation.

The information statement declares a name; it is not a variable.


Example

Suppose the product text file for DEC Rdb for OpenVMS software contains the following lines:

1 RELEASE_NOTES 
=prompt Release notes for Rdb/VMS available. 
The release notes for Rdb/VMS are available in the file 
SYS$HELP:RDBVMSV4.RELEASE_NOTES. 
1 STOP_RDB_VMS_MONITOR 
=prompt The Rdb/VMS monitor must be stopped before installation 
 
The Rdb/VMS monitor must be stopped before Rdb/VMS may be installed. 
Perform the following operation: 
$ @SYS$MANAGER:RMONSTOP 
      

The product description file could contain the following information statements:


information RELEASE_NOTES phase after ; 
information STOP_RDB_VMS_MONITOR phase before with helptext confirm; 
 
      

If the user requests help, the first information statement displays the following text after the operation finishes:


Release notes for Rdb/VMS available. 
 
The release notes for Rdb/VMS are available in the file 
SYS$HELP:RDBVMSV4.RELEASE_NOTES. 
 
      

If the user does not request help, the first information statement displays only the prompt text after the operation finishes:


Release notes for Rdb/VMS available. 
 
      

Regardless of whether the user requests help or not, the second information statement displays the following text for the user during the configuration phase:


The Rdb/VMS monitor must be stopped before installation 
 
The Rdb/VMS monitor must be stopped before Rdb/VMS may be installed. 
Perform the following operation: 
$ @SYS$MANAGER:RMONSTOP 
 
Do you want to continue [YES]? 
 
      

Regardless of whether the help display option is set, the confirm option in the second statement forces the user to respond to the prompt before continuing.


link

The link statement specifies a second directory entry for a file or directory.

Syntax

link name from source ;


Parameters

name

Indicates the file specification of the second directory entry.

from source

Indicates the file specification of an existing directory entry for the file or directory. The parameter string must be a single quoted or unquoted string. The referenced file or directory must be defined by a directory or file statement in the same product description.

Description

The link statement specifies a second directory entry for a file or directory. The managed object type of the file with the second directory entry is "link".

The scope and lifetime of the link managed object depend on whether it is contained in a scope group, as shown in Table 7-3.

Table 7-3 Link Managed Object Scope and Lifetime
Type of Scope Group Lifetime Scope
Product Product Product
Global Assembly Global
Bootstrap Operating Bootstrap
Processor Operating Processor

If the link statement is not contained in a scope, end scope pair or is contained in a scope product group, the link managed object has product lifetime and product scope.

Managed object conflict is unrecoverable.

See Also directory
file
scope

Examples

#1

file [SYS$EXE]FMS.EXE; 
link [SYSEXE]FMS.EXE from [SYS$EXE]FMS.EXE ; 
      

The statement in this example specifies that the file [SYSEXE]FMS.EXE is linked to the file [SYS$EXE]FMS.EXE. Both files, [SYS$EXE]FMS.EXE and [SYSEXE]FMS.EXE, have the same file ID.

#2

directory [ABC] ; 
directory [DEF] ; 
 
link [DEF]ABC.DIR from [000000]ABC.DIR; 
      

This example illustrates how to create a second directory entry [DEF.ABC] for a directory [ABC].


loadable image

The loadable image statement places an image into the system loadable images table, SYS$LOADABLE_IMAGES:VMS$SYSTEM_IMAGES.DATA, and also into SYS$UPDATE:VMS$SYSTEM_IMAGES.IDX for compatibility with the System Management utility (SYSMAN).

Syntax

loadable image image product product
[ step { init | sysinit } ]
[ message text ]
[ severity { fatal | success | warning } ] ;


Parameters

image

Indicates the file name of the system loadable image. The name you specify must be defined in the same product description and must have bootstrap scope and product or assembly lifetime.

product product

Indicates the product mnemonic (as a single quoted or unquoted string of 1 to 8 characters) that uniquely identifies the loadable image. For user-written images, this should typically contain the string _LOCAL_.

Options

step init

Indicates that the system load the image during the INIT step of the booting process.

step sysinit

Indicates that the system load the image during the SYSINIT step of the booting process. This is the default.

message text

Indicates the message you want displayed using the severity option. The message must be a single quoted or unquoted string. Case is significant. By default, the severity option displays the message "system image load failed."

severity fatal

Indicates that if an error occurs while the image is being loaded, the system displays the message and bugchecks; if no error occurs, processing continues.

severity success

Indicates that the system continue processing and not display a message regardless of whether an error occurs while the image is being loaded.

severity warning

Indicates that if an error occurs while the image is being loaded, the system displays the message and continues; if no error occurs, the system continues and does not display the message. This is the default.

Description

The loadable image statement places an image into the system loadable images table, SYS$LOADABLE_IMAGES:VMS$SYSTEM_IMAGES.DATA, and also into SYS$UPDATE:VMS$SYSTEM_IMAGES.IDX for compatibility with the System Management utility (SYSMAN).

The loadable image statement specifies a loadable image module managed object that has the following characteristics:

The loadable image statement also refers to a file managed object specified using the image parameter.

See Also file

Example


loadable image DDIF$RMS_EXTENSION product _LOCAL_ 
    message "DDIF Extension not loaded" 
    severity warning ; 
      

The statement in this example places the user-written image DDIF$RMS_EXTENSION in the system loadable images table. If an error occurs while loading this image, the system displays the error message "DDIF Extension not loaded" and continues.


Previous Next Contents Index

  [Go to the documentation home page] [How to order documentation] [Help on this site] [How to contact us]  
  privacy and legal statement  
5952PRO_009.HTML