NCEPLIBS-bufr 11.7.1
All Data Structures Namespaces Files Functions Variables Pages
wtstat.f
Go to the documentation of this file.
1C> @file
2C> @brief Update the status of a system file with respect to the
3C> BUFRLIB software.
4
5C> This subroutine can be used to connect or disconnect a specified
6C> Fortran logical unit number to/from the BUFRLIB software, and it
7C> can also be used to set or reset the internal message status
8C> associated with that logical unit number.
9C>
10C> @author J. Woollen
11C> @date 1994-01-06
12C>
13C> @param[in] LUNIT -- integer: Fortran logical unit number for
14C> BUFR file
15C> @param[in] LUN -- integer: Internal I/O stream index associated
16C> with LUNIT
17C> @param[in] IL -- integer: File status update option
18C> - 0 = Disconnect LUNIT from the software
19C> - 1 = Connect LUNIT to the software for
20C> output operations
21C> (i.e. writing/encoding BUFR),
22C> if not already connected
23C> - -1 = Connect LUNIT to the software for
24C> input operations
25C> (i.e. reading/decoding BUFR),
26C> if not already connected
27C> @param[in] IM -- integer: Message status update option, to
28C> indicate whether a message is now open
29C> within the internal arrays for LUNIT
30C> - 0 = No
31C> - 1 = Yes
32C>
33C> <p>Before this subroutine is called to connect any LUNIT to the
34C> software, a previous call should have been made to subroutine
35C> status() to confirm that internal space is available to connect
36C> the associated file, as well as to obtain an LUN value to use
37C> in connecting it. Once a file is connected, the corresponding
38C> LUNIT and LUN values remain linked to each other for as
39C> long as the file is connected to the software.
40C>
41C> <b>Program history log:</b>
42C> | Date | Programmer | Comments |
43C> | -----|------------|----------|
44C> | 1994-01-06 | J. Woollen | Original author |
45C> | 1998-07-08 | J. Woollen | Replaced call to Cray library routine ABORT with call to new internal routine bort() |
46C> | 1999-11-18 | J. Woollen | The number of BUFR files which can be opened at one time increased from 10 to 32 |
47C> | 2003-11-04 | J. Ator | Corrected a typo in test for IM validity; added documentation |
48C> | 2003-11-04 | S. Bender | Added remarks and routine interdependencies |
49C> | 2003-11-04 | D. Keyser | Unified/portable for WRF; added documentation; outputs more complete diagnostic info when routine terminates abnormally |
50C> | 2014-12-10 | J. Ator | Use modules instead of COMMON blocks |
51C>
52 SUBROUTINE wtstat(LUNIT,LUN,IL,IM)
53
54 USE moda_stbfr
55
56 CHARACTER*128 BORT_STR
57
58C-----------------------------------------------------------------------
59C-----------------------------------------------------------------------
60
61C CHECK ON THE ARGUMENTS
62C ----------------------
63
64 IF(lunit.LE.0) GOTO 900
65 IF(lun .LE.0) GOTO 901
66 IF(il.LT.-1 .OR. il.GT.1) GOTO 902
67 IF(im.LT. 0 .OR. im.GT.1) GOTO 903
68
69C CHECK ON LUNIT-LUN COMBINATION
70C ------------------------------
71
72 IF(abs(iolun(lun)).NE.lunit) THEN
73 IF(iolun(lun).NE.0) GOTO 905
74 ENDIF
75
76C RESET THE FILE STATUSES
77C -----------------------
78
79 IF(il.NE.0) THEN
80 iolun(lun) = sign(lunit,il)
81 iomsg(lun) = im
82 ELSE
83 iolun(lun) = 0
84 iomsg(lun) = 0
85 ENDIF
86
87C EXITS
88C -----
89
90 RETURN
91900 WRITE(bort_str,'("BUFRLIB: WTSTAT - INVALID UNIT NUMBER PASSED '//
92 . ' INTO FIRST ARGUMENT (INPUT) (=",I3,")")') lunit
93 CALL bort(bort_str)
94901 WRITE(bort_str,'("BUFRLIB: WTSTAT - INVALID I/O STREAM INDEX '//
95 . 'PASSED INTO SECOND ARGUMENT (INPUT) (=",I3,")")') lun
96 CALL bort(bort_str)
97902 WRITE(bort_str,'("BUFRLIB: WTSTAT - INVALID LOGICAL UNIT STATUS'//
98 . ' INDICATOR PASSED INTO THIRD ARGUMENT (INPUT) (=",I4,")")') il
99 CALL bort(bort_str)
100903 WRITE(bort_str,'("BUFRLIB: WTSTAT - INVALID BUFR MESSAGE STATUS'//
101 . ' INDICATOR PASSED INTO FOURTH ARGUMENT (INPUT) (=",I4,")")') im
102 CALL bort(bort_str)
103905 WRITE(bort_str,'("BUFRLIB: WTSTAT - ATTEMPTING TO REDEFINE '//
104 . 'EXISTING FILE UNIT (LOGICAL UNIT NUMBER ",I3,")")') iolun(lun)
105 CALL bort(bort_str)
106 END
subroutine bort(STR)
This subroutine calls subroutine errwrt() to log an error message, then calls subroutine bort_exit() ...
Definition: bort.f:23
subroutine wtstat(LUNIT, LUN, IL, IM)
This subroutine can be used to connect or disconnect a specified Fortran logical unit number to/from ...
Definition: wtstat.f:53