next up previous contents index
Next: User exits Up: The FATMEN Fortran Previous: Routines that provide

Routines to select or list catalogue entries

Check whether generic name already exists

CALL FMEXST (GENAM,IRC*)

GENAM
Character variable of maximum length 255 to specify the generic name.
IRC
Integer variable in which the number of occurances of GENAM are returned.

This routine returns the number of occurances of the input generic name GENAM in the FATMEN database. A return code of 0 indicates, therefore that no matches are found, whereas a return code of 3 would indicate that 3 copies were found. Routine FMSELK (see on Page gif) can be used to count the number of files with certain characteristics, such as location code or media type.

Example of using the FMEXST routine

      CALL FMEXST('//CERN/CNDIV/JAMIE/IN',IRC)
      PRINT *,IRC,' occurances in FATMEN database'

List files in specified directory

CALL FMLS (GENAM,CHOPT,IRC*)

GENAM
Character variable of maximum length 255 to specify the generic name.
CHOPT
Character variable to specify the options desired.
IRC
Integer variable in which the return code is returned.

This routine lists the files according to the specified generic name GENAM. Examples of valid generic-names are:

//cern/cndiv/goossens/*,
//cern/cndiv/goossens/dcf/m%%%,
//cern/cndiv/chris/tape8.
The generic-name may also contain numeric ranges specified as (mm:nn), such as (13:147) in the field following the last delimiter (/). See on Page gif for more details. If IRC < 0, then the specified pathname does not exist or is invalid. Otherwise, IRC returns the number of files found (which may be 0).

Example of using the FMLS routine

*     List media details of files M%%% in //CERN/CNDIV/GOOSSENS/DCF
      CALL FMLS('//CERN/CNDIV/GOOSENS/DCF/M%%%','M',IRC)
      IF(IRC.NE.0) PRINT *,'Return code ',IRC,' from FMLS'

The allowed values of CHOPT and their meanings are as follows:

A
list all attributes, except DZSHOW (option Z).
B
brief (80) column listing
C
display comment field associated with file
D
to be used to generate a KUMAC file to remove (delete) the entry
E
extended (132) column listing
F
list file attributes, such as start/end record and block
G
list the full generic name of each file
H
write header line]useful in the case of output redirection
I
sort generic names in Increasing order
J
Just show entries that are accessible
K
list keys associated with this file (copy level, media type, location)
L
list logical attributes, such as FATMEN file format (ZEBRA exchange etc.)
M
list media attributes, such as VSN, VID, file sequence number for tape files, host type and operating system for disk files.
N
lists dataset name on disk/tape of this file
O
list owner, node and job of creator etc.
P
list physical attributes, such as record format etc.
Q
obtain volume information from Tape Management System (TMS) if the entry corresponds to a tape file, and if the TMS option is installed.
R
display where the data Reside.
Disk files
Displays if the file is accessible and the access method, if known. (e.g. local disk, NFS, AFS, DFS etc.)
Tape files
Displays if the associated volume is in an active library, i.e. not archived, whether it is staged, and whether a device of the appropriate type exists on the local node or is served.
S
lists security details of this file (protection)
T
list date and time of creation, last access etc.
U
list user words.
X
display only one entry per generic name (implies I)
W
list generic names across the page (default is one name per line)
Z
dump ZEBRA bank with DZSHOW.

Display contents of FATMEN bank

CALL FMSHOW (GENAM,*LBANK*,*KEYS*,CHOPT,IRC*)

GENAM
Character variable of maximum length 255 to specify the generic name.
LBANK
Integer variable to return the address of the bank corresponding to the input generic name GENAM. LBANK can have the following values:
>0
The bank at this address will be used.
0
The corresponding bank will be retrieved from the FATMEN catalogue
<0
The last bank referenced by one of the novice interface routines will be used.
KEYS
Integer array of length 10 to return the keys vector associated with the specified generic name. If the keys vector is non-zero, it will be used by FMGETK to return the bank corresponding to a particular copy of a dataset.
CHOPT
Character variable to specify the options desired.
IRC
Integer variable in which the return code is returned.

This routine displays the contents of the FATMEN bank corresponding to the input generic names GENAM, or at the address LBANK if non-zero. See the description of the ls command for a description of the CHOPT argument. It is envisaged that this routine will be tailored to suit the requirements of individual experiments.

Example of using the FMSHOW routine

*
      CALL FMSHOW('//CERN/CNDIV/GOOSENS/DCF/M123',LBANK,KEYS,'M',IRC)
      IF(IRC.NE.0) PRINT *,'Return code ',IRC,' from FMSHOW'

The allowed values of CHOPT and their meanings are

A
list All attributes, except DZSHOW (option Z).
B
Brief (80) column listing
C
display Comment field associated with file
D
to be used to generate a KUMAC file to remove (Delete) the entry
E
Extended (132) column listing
F
list File attributes, such as start/end record and block
G
list the full Generic name of each file
H
write Header line - useful in the case of output redirection
I
sort generic names in Increasing order
J
Just show entries that are accessible
K
list Keys associated with this file (copy level, media type, location)
L
list Logical attributes, such as FATMEN file format (ZEBRA exchange etc.)
M
list Media attributes, such as VSN, VID, file sequence number for tape files, host type and operating system for disk files.
N
lists dataset Name on disk/tape of this file
O
list Owner, node and job of creator etc.
P
list Physical attributes, such as record format etc.
Q
obtain volume information from Tape Management System (TMS) if the entry corresponds to a tape file, and if the TMS option is installed.
R
display where the data Reside.
Disk files
Displays if the file is accessible and the access method, if known. (e.g. local disk, NFS, AFS, DFS etc.)
Tape files
Displays if the associated volume is in an active library, i.e. not archived, whether it is staged, and whether a device of the appropriate type exists on the local node or is served.
S
lists Security details of this file (protection)
T
list date and time of creation, last access etc.
U
list user words.
X
display only one entry per generic name (implies I)
W
list generic names across the page (default is one name per line)
Z
dump ZEBRA bank with DZSHOW.

Count file names

CALL FMFILC (GENAM,NFILES*,IRC*)

GENAM
Character variable of maximum length 255 to specify the generic name of interest.
NFILES
Integer variable in which the number of matching files is returned.
IRC
Integer variable in which the return code is returned.

This routine returns the number of files that match the specified generic name. The generic name is interpreted as for the FMLS routine (see on Page gif. That is, any characters following the last slash are assumed to be the filename, those preceeding the last slash are the pathname.

Example of using the FMFILC routine

      CALL FMFILC('//CERN/DELPHI'//
     +            '/ALLD/RAWD/CERN/V00%/E09%.00/P01R*/NONE/RUN*',
     +            NFILES,IRC)
      IF(IRC.NE.0) PRINT *,'Return code ',IRC,' from FMFILC'

Scan FATMEN directory structure

CALL FMSCAN (PATH,NLEVEL,UROUT,IRC*)

PATH
Character variable of maximum length 255 to specify the path name of interest.
NLEVEL
Integer variable specified the number of levels to descend in the directory structure.
UROUT
Address of a user routine that is called for each matching directory.
IRC
Integer variable in which the return code is returned.

This routine scans the directory names in the directory tree specified by PATH. The directory tree may contain wild-cards (* or %) in any position, or numeric ranges specified as (mm:nn), such as (13:147). See on Page gif for more details. The path name PATH may also contain the wild-cards < or >. These wild cards may be used to find, for example, the highest PASS of a run. Assuming that, at a given level, the generic name has a field containing PASSn, e.g. PASS3, PASS1, specifying PASS> will cause FMSCAN to follow ONLY the PASS3 subdirectory

For each matching directory, FMSCAN will call the specified user routine with the matching directory name. Upon exit from the user routine, a non-zero return code will cause FMSCAN to stop the search.

On entry to the user routine, IQUEST contains the following information:

IQUEST(10)
number of elements in path passed to FMSCAN
IQUEST(12)
number of subdirectories
IQUEST(13)
number of elements in current path
IQUEST(14)
number of keys
IQUEST(15)
number of elements per key

In addition, on return from FMSCAN, IQUEST(11) contains the total number of directories processed.

Example of calling the routine FMSCAN

      EXTERNAL FUSCAN
*
*     This should follow the path PASS5/GPMH/P5
*
      ICONT = 0
 1    CONTINUE
      CALL FMSCAN('//CERN/OPAL/PROD/PASS>/GPMH/P<',99,FUSCAN,IRC)

Example of a user exit routine

      SUBROUTINE UROUT(PATH,IRC)
      CHARACTER*(*) PATH
      COMMON/QUEST/IQUEST(100)
      IRC = 0
*
*     Set IRC^=0 to stop directory scan
*
      PRINT *,'<< ',PATH(1:LENOCC(PATH))
      END

Loop through FATMEN file names

CALL FMLOOP (GENAM,NLEVEL,UROUT,IRC*)

GENAM
Character variable of maximum length 255 to specify the generic name of interest.
NLEVEL
Integer variable specified the number of levels to descend in the directory structure.
UROUT
Address of a user routine that is called for each matching file.
IRC
Integer variable in which the return code is returned.

This routine is similar to FMSCAN, but expects a complete generic name on input, rather than just a path name.

For each matching generic name, FMLOOP will call the specified user routine with the generic name and keys vector. Upon exit from the user routine, a non-zero return code will cause FMLOOP to stop the search.

Upon entry to the user routine, IQUEST will contain the following information.

IQUEST(10)
number levels in initial path
IQUEST(11)
number of directories found
IQUEST(12)
number of subdirectories at this level
IQUEST(13)
number of elements in path name
IQUEST(14)
number of keys
IQUEST(15)
number of words per key
IQUEST(16)
incremental count of number of keys selected
IQUEST(17)
number of this key vector

This routine respects the values set for medium type, location code and copylevel by the routines FMSETM, FMSETL and FMSETC respectively.

Upon return from the user routine, IRC < 0 will cause FMLOOP to skip to the next directory, IRC > 0 will cause FMLOOP to return.

Example of calling the routine FMLOOP

      EXTERNAL      UROUT
*
*     List all files in all directories beginning with a J
*     down to the maximum (99) number of levels 
*
      CALL FMLOOP('//CERN/CNDIV/J*/*',99,UROUT,IRC)

Example of a user exit routine

      SUBROUTINE UROUT(GENAM,KEYS,IRC)
      CHARACTER*(*) GENAM 
      PARAMETER     (LKEYFA=10)
      DIMENSION     KEYS(LKEYFA)
      IRC = 0
      PRINT *,'Generic name = ',GENAM(1:LENOCC(GENAM))
      PRINT *,'Keys: '
      CALL FMPKEY(KEYS,LKEYFA)
      END

Return directory names in directory structure

CALL FMLDIR (PATH,DIRS*,NFOUND,MAXDIR,*ICONT*,IRC*)

PATH
Character variable of maximum length 255 to specify the path name of interest.
DIRS
Character array of length 255 characters and dimension MAXFIL to return the names of the directories found.
NFOUND
Integer variable to return the actual dimension of DIRS.
MAXFIL
Integer constant to specify the dimension of DIRS.
ICONT
Integer variable to indicate whether this is a continuation of a previous call, or a new call. If more directories are found than can be returned in a single call, ICONT will be set to 1.
IRC
Integer variable in which the return code is returned.

This routine returns the directory names in the directory tree specified by PATH. The directory tree may contain wild-cards (* or %) in any position, or numeric ranges specified as (mm:nn), such as (13:147). See on Page gif for more details. The path name PATH may also contain the wild-cards < or >. These wild cards may be used to find, for example, the highest PASS of a run. Assuming that, at a given level, the generic name has a field containing PASSn, e.g. PASS3, PASS1, specifying PASS> will cause FMLDIR to follow ONLY the PASS3 subdirectory structure. Although the method used by FMLDIR is slightly slower for a complete directory scan than FMLIST, it normal cases it will be much faster as it follows only the paths which match the input path name. NFOUND returns the actual number of directories returned. IRC = -1 : more directories found than can be returned in DIRS(MAXDIR) FMLDIR should be called again with ICONT=0 to get the next MAXDIR batch of DIRS.

Example of using the FMLDIR routine

      PARAMETER     (LKEYFA=10)
      PARAMETER     (MAXDIR=1000)
      CHARACTER*255 DIRS(MAXDIR)
*
*     This should follow the path PASS5/GPMH/P5
*
      ICONT = 0
 1    CONTINUE
      CALL FMLDIR('//CERN/OPAL'//
     +            '/PROD/PASS>/GPMH/P<',
     +            DIRS,NFOUND,MAXDIR,IRC)
      IF(IRC.EQ.-1) THEN
         ICONT = 1
      ELSE
         ICONT = 0
         IF(IRC.NE.0) PRINT *,'Return code ',IRC,' from FMLDIR'
      ENDIF

Return file names in directory structure

CALL FMLFIL (GENAM,FILES*,KEYS*,NFOUND,MAXFIL,JCONT,IRC*)

GENAM
Character variable of maximum length 255 to specify the generic name of interest.
FILES
Character array of length 255 characters and dimension MAXFIL to return the names of the files found.
KEYS
Integer matrix of first dimension LKEYFA and second dimension MAXFIL.
NFOUND
Integer variable to return the actual dimension of FILES and then actual second dimension of KEYS.
MAXFIL
Integer constant to specify the second dimension of KEYS.
JCONT
Integer variable to indicate whether this is a continuation of a previous call, or a new call. If more directories are found than can be returned in a single call, JCONT will be set to 1.
IRC
Integer variable in which the return code is returned.

This routine returns the file names in the directory tree specified by GENAM. The directory tree may contain wild-cards (* or %) in any position, or numeric ranges specified as (mm:nn), such as (13:147). See on Page gif for more details. The generic name GENAM may also contain the wild-cards < or >. These wild cards may be used to find, for example, the highest PASS of a run. Assuming that, at a given level, the generic name has a field containing PASSn, e.g. PASS3, PASS1, specifying PASS> will cause FMLFIL to follow ONLY the PASS3 subdirectory structure. NFOUND returns the actual number of files returned. IRC = -1 : more files found than can be returned in FILES(MAXFIL) FMLDIR should be called again with ICONT=0 to get the next MAXFIL batch of FILES. N.B. This routine returns ALL file names in in the order in which they were added to the catalogue. See the routine on Page gif for details of how to sort the FILES array.

Example of using the FMLFIL routine

      PARAMETER     (LKEYFA=10)
      PARAMETER     (MAXFIL=1000)
      CHARACTER*255 FILES(MAXFIL)
*
*     This should follow the path PASS5/GPMH/P5
*
*     Indicate that this is a new call
*
      JCONT = 0
 1    CONTINUE
      CALL FMLFIL('//CERN/OPAL/PROD/PASS>/GPMH/P<',
     +            FILES,KEYS,NFOUND,MAXFIL,JCONT,IRC)
      IF(IRC.EQ.-1) THEN
         JCONT = 1
      ELSE
         JCONT = 0
         IF(IRC.NE.0) PRINT *,'Return code ',IRC,' from FMLFIL'
      ENDIF
*
*     Process this batch of files...
*
*     ...
*
*     Get next batch of files...
*
      IF(JCONT.NE.0) GOTO 1

Sort file names and keys

CALL FMSORT (FILES,KEYS,NFILES,JSORT*,IRC*)

FILES
Character array of maximum length 255 containing the file names to be sorted.
KEYS
Integer matrix of size (10,NFILES) containing the keys vectors associated with the file names in FILES.
NFILES
Integer variable containing the size of the array FILES.
JSORT
Integer array of length NFILES to return the sorted indices into FILES and KEYS.
IRC
Integer variable in which the return code is returned.

This routine returns in JSORT the sorted indices into FILES and KEYS in ascending order of FILES.

Example of using the FMSORT routine

      PARAMETER     (LKEYFA=10, MAXFIL=1000)
      CHARACTER*255 FILES(MAXFIL)
      INTEGER       KEYS(LKEYFA,MAXFIL),JSORT(MAXFIL)
*
      CALL FMSORT(FILES,KEYS,NFILES,JSORT,IRC)
      IF(IRC.NE.0) PRINT *,'Return code ',IRC,' from FMSORT'
*
*     Print sorted files and associated keys
*
      DO 10 I=1,NFILES
      PRINT *,FILES(JSORT(I))
10    CALL FMPKEY(KEYS(1,JSORT(I))),LKEYFA)

Rank generic names by tape volume and file sequence number

CALL FMRANK CHFILES,KEYS,NFILES,JSORT,CHOPT,IRC*)

CHFILES
Character array of maximum length 255 containing the file names to be ranked.
KEYS
Integer matrix of size (10,NFILES) containing the keys vectors associated with the file names in CHFILES.
NFILES
Integer variable containing the size of the array CHFILES.
JSORT
Integer array of length NFILES to return the sorted indices into CHFILES and KEYS.
CHOPT
Character variable specifying the required options
IRC
Integer variable in which the return code is returned.

This routine returns a index into the arrays CHFILES and KEYS ranked by tape volume ( MVIDFA) and file sequence number ( MFSQFA). A maximum of 100 entries can be processed in one call.

It is foreseen that this routine be used prior to calling FMOPEN with the Q option.

Match file name against pattern

CALL FMATCH (CHFILE,MATCH,IRC*)

CHFILE
Character variable of maximum length 255 containing the file name to match.
MATCH
Character variable of maximum length 255 to specify the pattern to match against.
IRC
Integer variable in which the return code is returned.

This routine matches the input file name CHFILE against the pattern specified in MATCH and returns 1 in IRC if no match is found. MATCH may include wild-cards as in VAX/VMS or VM/CMS file names, where a ``%'' will match any single character and a "*" will match any number of characters. In addition, numeric ranges may be specified using the syntax (mm:nn), such as (1:135). This form can be useful for specifying a set of runs, LEP files etc. Note that if mm is shorter than nn, it will be left-padded with zeroes, thus (1:135) is equivalent to (001:135). CHFILE and MATCH are character variables and may be as long as 255 characters each.

Example of using the routine FMATCH

      CHARACTER*255 CHFILE,MATCH
*     Match against files RUN1-9 (or RUNx)
      CALL FMATCH(CHFILE(1:LENOCC(CHFILE)),'RUN%',IRC)
      IF(IRC.EQ.0) THEN
         PRINT *,'Matching dataset found - ',CHFILE(1:LENOCC(CHFILE))
      ELSE
         PRINT *,'Dataset ',CHFILE(1:LENOCC(CHFILE)),' does not match'
      ENDIF

Match multiple names against pattern

CALL FMMANY (MATCH,FILES,NFILES,NMATCH*,IRC*)

MATCH
Character variable of maximum length 255 to specify the pattern to match against.
FILES
Character array of maximum length 255 containing a list of file names to match.
NFILES
Integer variable specifying the number of files in FILES.
NMATCH
Integer variable returning the element of FILES which matches.
IRC
Integer variable in which the return code is returned.

This routine performs the same wild-card matching as FMATCH described above. In addition, if a < or > is specified in the MATCH pattern, it will return in NMATCH the element of the character array FILES which matches.

Example of using the routine FMMANY

      CHARACTER*255 FILES(9),MATCH
      FILES(1) = 'PASS3'
      FILES(2) = 'TEST3'
      FILES(3) = 'RUN13'
      FILES(4) = 'HOTP'
      FILES(5) = 'STUFF'
      FILES(6) = 'PASS3'
      FILES(7) = 'PASS5'
      FILES(8) = 'PAZS9'
      FILES(9) = 'POSS9'
      MATCH    = 'P%SS>'
      CALL FMMANY(MATCH,FILES,9,NMATCH,IRC)
      IF(NMATCH.NE.0) PRINT *,FILES(NMATCH)

Print contents of FATMEN keys vector

CALL FMPKEY (KEYS,NKEYS)
 

KEYS
Integer array of length 10 containing a FATMEN keys vector
NKEYS
Integer constant containing the number of keys to be printed. This should always be set to 10.

This routine displays the contents of the FATMEN keys vector in the correct format, depending on the data type of the various elements (integer or hollerith).

Example of using the FMPKEY routine

      CALL FMPKEY(KEYS,10)

Select files using the FATMEN keys

CALL FMSELK (GENAM,INKEYS,OUKEYS*,NKEYS*,MAXKEY,IRC*)

GENAM
Character variable of maximum length 255 to specify the generic name.
INKEYS
Integer array of length 10 to input the keys vector to match those found for the specified generic name.
OUKEYS
Integer array of size (10,MAXKEY) to return the keys vector that match the input keys and the specified generic name.
MAXKEY
Integer constant to specify the maximum second dimension of the array OUKEYS.
IRC
Integer variable in which the return code is returned.

This routine selects all datasets corresponding to the generic name GENAM on the basis of the keys vector INKEYS. By setting the relevant elements of INKEYS, datasets may be selected on media type, copy level and location code. Thus, by setting INKEYS(MKMTFA) to 1 (disk), all matching datasets on disk can be selected. If a key element is set to a negative value, it will not be used in the selection. Thus, by setting INKEYS(MKLCFA) to -1 and INKEYS(MKMTFA) to 2, all datasets with the specified generic name on 3480 cassette at any location will be returned. The number of datasets that match is returned in NKEYS, up to a maximum of MAXKEY. The array OUKEYS may then be used as input to the routine FMGETK.

Example of using the FMSELK routine

*     Argument declarations
      PARAMETER (LKEYFA=10)
      PARAMETER (MAXKEY=999)
      DIMENSION INKEYS(LKEYFA),OUKEYS(LKEYFA,MAXKEY)
*     The following statements will select all datasets
*     with copy level (MKCLFA) of 1 (i.e. a copy of an original file),
*     media type of 1 (i.e. disk) and location code of 1 (i.e. CERN)
      INKEYS(MKCLFA) = 1
      INKEYS(MKMTFA) = 1
      INKEYS(MKLCFA) = 1
      CALL FMSELK('//CERN/CNDIV/CHRIS/TAPE8',INKEYS,OUKEYS,MAXKEY,IRC)
      IF(IRC.NE.0) PRINT *,'Return code ',IRC,' from FMSELK'

Select files using the FATMEN bank information

CALL FMSELB (GENAM,INKEYS,NKEYS,UEXIT,ISEL*,IRC*)

GENAM
Character variable of maximum length 255 to specify the generic name.
INKEYS
Integer array of length 10 to input the keys vector to match those found for the specified generic name.
NKEYS
Integer constant to specify the actual second dimension of the array INKEYS.
ISEL
Integer variable to return the index of the selected copy is returned. The keys vector of the selected copy is INKEYS(1,ISEL).
IRC
Integer variable in which the return code is returned.

This routine allows the user to select a particular copy of a data set according to information contained in the FATMEN bank for the specified generic name. INKEYS is a matrix of dimension (10,NKEYS) containing the keys vectors for the various data sets matching the generic name, GENAM. This matrix is produced by a call to FMSELK to perform the appropriate initial selection, such as all data sets matching the input generic name that are on disk etc. For each matching data set, FMSELB will call the user-specified exit routine, which much be declared EXTERNAL, in the following way:

       CALL UEXIT(GENAM,LBANK,KEYS,NKEYS,N,ISEL*,IRC*)
were
GENAM
Character variable of maximum length 255 to specify the generic name.
LBANK
Integer variable containing the address of the bank corresponding to the specified generic name.
KEYS
Integer array of length 10 containing the keys vector associated with the specified generic name.
NKEYS
Integer variable specifying the number of matches for this generic name, i.e. the number of times that UEXIT will be called.
N
Integer variable specifying the candidate number for this call, which is less than or equal to NKEYS.
ISEL
Integer variable to return the index of the selected copy is returned. The keys vector of the selected copy is INKEYS(1,ISEL). After the last call to UEXIT for each generic name, ISEL should be 0, to indicate that none of the candidates was selected, or the number of the candidate that was chosen.
IRC
Integer variable in which the return code is returned.

Example of using the FMSELB routine

*     Argument declarations
      PARAMETER (LKEYFA=10)
      PARAMETER (MAXKEY=999)
      DIMENSION INKEYS(LKEYFA,MAXKEY)
      CALL FMSELB('//CERN/CNDIV/CHRIS/TAPE8',INKEYS,NKEYS,ISEL,IRC)
      IF(IRC.NE.0) THEN
         PRINT *,'Return code ',IRC,' from FMSELK'
      ELSE
         PRINT *,'Copy ',ISEL,' selected'
      ENDIF

Select files using keys matrix

CALL FMSELM (GENAM,LBANK*,KEYS*,KEYM,NKEY,CHOPT,IRC*)

GENAM
Character variable of maximum length 255 to specify the generic name.
LBANK
Integer variable in which the address of the FATMEN bank is returned.
KEY
Integer array of length 10 in which the keys vector associated with the bank at LBANK is returned.
KEYM
Integer matrix of size (10,NKEY) containing the ordered selection criteria.
NKEY
Integer variable to specify the second dimension of the matrix KEYM.
CHOPT
Character variable containing the user specified options.
IRC
Integer variable in which the return code is returned.

This routine takes each row of the input matrix KEYM in turn, and attempts to find a matching dataset. If no matching dataset is found, it then proceeds to the next row. Currently, checks are only made on media type (MKMTFA), location code (MKLCFA) and copy level (MKCLFA). A value of -1 indicates that no check on this item is to be made.

The following options are available:

   I - issue FORTRAN inquire for disk datasets (with full support
       for SHIFT files, Unix environmental variables, VM mini-disks,
       SFS pools etc.)
   N - check host name for disk datasets against current host
   M - require that tape datasets reside on manually mounted volumes
   R - require that tape datasets reside on robotically mounted volumes

Example of using the FMSELM routine

*     Argument declarations
      PARAMETER (LKEYFA=10)
      PARAMETER (NKEY=3)
      DIMENSION KEYS(LKEYFA),KEYM(LKEYFA,NKEY)
*
*     Define search criteria: first, disk dataset in location 31,
*        with no check on copy level,
*                             next, dataset on media type 2 in location 1,
*                             next, dataset on any media in any location 
*                             with copy level 1
*
      KEYM(MKMTFA,1) = 1
      KEYM(MKCLFA,1) = -1
      KEYM(MKLCFA,1) = 31

      KEYM(MKMTFA,2) = 2
      KEYM(MKCLFA,2) = -1
      KEYM(MKLCFA,2) = 1

      KEYM(MKMTFA,3) = -1
      KEYM(MKCLFA,3) = 1
      KEYM(MKLCFA,3) = -1
*
*     Options NM: No check on host name for disk files,
*                 Manually mounted tape required
*
      CALL FMSELM('//CERN/OPAL/DDST/PASS3/FYZ1/P20/R02222C01',
     +   LBANK,KEYS,KEYM,NK,'NM',IRC)

      PRINT *,'Return code from FMSELM = ',IRC

      IF(IRC.EQ.0)
     +   CALL FMSHOW('//CERN/OPAL/DDST/PASS3/FYZ1/P20/R02222C01',
     +                LBANK,KEYS,'A',IRC)

Compare FATMEN entries

CALL FMCOMP (GENAM1,*LBANK1*,*KEYS1*,GENAM2,*LBANK2*,*KEYS2*,IRC*)

GENAMn
Character variable of maximum length 255 to specify the generic names of the files to be compared.
LBANKn
Integer variable(s) to return the addresses of the banks corresponding to GENAM1 and GENAM2.
KEYSn
Integer array of length 10 to return the keys vectors associated with the specified generic names.
IRC
Integer variable in which the return code is returned.

This routine compares the FATMEN entries pointed to by the generic names GENAM1 and GENAM2. If either LBANK1 or LBANK2 is non-zero, the bank(s) at the corresponding address will be used. If either LBANK1 or LBANK2 are zero, the routine FMGETK will be used to obtain the corresponding bank. Should KEYS1(1) or KEYS2(1) be zero, the default FATMEN selection will apply. A zero return code indicates that the comparison succeeded. Other values of IRC are given below.

  1. Error obtaining bank corresponding to GENAM1 using FMGETK.
  2. Error obtaining bank corresponding to GENAM2 using FMGETK.
  3. The datasets referred to by GENAM1 and GENAM2 are on different media.
  4. Both datasets are on disk but the comparison failed (either fully qualified dataset name or host name differ).
  5. Both datasets are on tape but the comparison failed (VSN/VID/FILESEQ do not match).

Example of using the FMCOMP routine

*     Compare entries with following generic names
      CALL FMCOMP('//CERN/OPAL/EVKI/MW34MH/R1200/P01',LBANK1,KEYS1,
     +            '//CERN/OPAL/EVKI/JT72MH/R1100/P19',LBANK2,KEYS2,IRC)
      IF(IRC.NE.0) PRINT *,'Comparison failed'



next up previous contents index
Next: User exits Up: The FATMEN Fortran Previous: Routines that provide


Janne Saarela
Mon May 15 09:59:59 METDST 1995