Cloned SEACAS for EXODUS library with extra build files for internal package management.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

166 lines
5.4 KiB

2 years ago
C Copyright(C) 1999-2020 National Technology & Engineering Solutions
C of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
C NTESS, the U.S. Government retains certain rights in this software.
C
C See packages/seacas/LICENSE for details
C=======================================================================
SUBROUTINE FFNRNG (IFLD, INTYP, CFIELD, IFIELD, EXPECT, MAXVAL,
& IRANGE, *, *)
C=======================================================================
C --*** FFNRNG *** (BLOT) Parse free-field integer range
C -- Written by John Glick - 11/28/88
C --
C --FFNRNG parses a range of integers. A range has one of the following
C --forms:
C -- n1 assume n2 = n1, n3 = 1
C -- n1 TO n2 assume n3 = 1
C -- n1 TO n2 STEP n3
C --This routine is similar to the FFVRNG routine of the FFLIB library.
C --
C --
C --Parameters:
C -- IFLD - IN/OUT - the index of the current field number, incremented
C -- INTYP - IN - the input type array from the free-field reader
C -- CFIELD - IN - the input string array from the free-field reader
C -- IFIELD - IN - the input integer array from the free-field reader
C -- EXPECT - IN - the type of range being parsed, for error
C -- MAXVAL - IN - the maximum range value
C -- IRANGE - OUT - the input range value array:
C -- (1) = n1, (2) = n2, (3) = n3;
C -- partially set on error
C -- * - return statement if no range is specified.
C -- * - return statement if the range is invalid; message is printed
C --Routines Called:
C -- LENSTR - (strlib) Find string length
INTEGER IFLD
INTEGER INTYP(*)
CHARACTER*(*) CFIELD(*)
INTEGER IFIELD(*)
CHARACTER*(*) EXPECT
INTEGER MAXVAL
INTEGER IRANGE(3)
CHARACTER*80 STRA
CHARACTER*80 ERRMSG
IRANGE(1) = 0
IRANGE(2) = 0
IRANGE(3) = 1
IF (INTYP(IFLD) .NE. 2) THEN
C No integer in the next field.
GO TO 110
ELSE
C --Get starting number
IRANGE(1) = IFIELD(IFLD)
IRANGE(2) = IRANGE(1)
IRANGE(3) = 1
IFLD = IFLD + 1
IF (INTYP(IFLD) .EQ. 0) THEN
C --Look for TO keyword
IF (CFIELD(IFLD) .NE. 'TO') THEN
GOTO 100
ELSE
IFLD = IFLD + 1
ENDIF
IF (INTYP(IFLD) .NE. 2) THEN
STRA = 'TO ' // EXPECT
WRITE (ERRMSG, 10000) STRA(:LENSTR(STRA)),
& CFIELD(IFLD)(:LENSTR(CFIELD(IFLD)))
CALL PRTERR ('CMDERR', ERRMSG(:LENSTR(ERRMSG)))
GOTO 120
END IF
IRANGE(2) = IFIELD(IFLD)
IFLD = IFLD + 1
IF (INTYP(IFLD) .EQ. 0) THEN
C --Check for BY keyword.
IF (CFIELD(IFLD) .NE. 'BY') THEN
GOTO 100
ELSE
IFLD = IFLD + 1
ENDIF
IF (INTYP(IFLD) .NE. 2) THEN
WRITE (ERRMSG, 10000)
& 'BY value', CFIELD(IFLD)(:LENSTR(CFIELD(IFLD)))
CALL PRTERR ('CMDERR', ERRMSG(:LENSTR(ERRMSG)))
GOTO 120
END IF
IRANGE(3) = IFIELD(IFLD)
IFLD = IFLD + 1
END IF
END IF
100 CONTINUE
C Check the range values specified.
IF (IRANGE(3) .EQ. 0) THEN
WRITE (ERRMSG, 10010, IOSTAT=IDUM)
& 'Invalid BY value', IRANGE(3)
CALL SQZSTR (ERRMSG, L)
CALL PRTERR ('CMDERR', ERRMSG(:L))
GOTO 130
END IF
IF ((IRANGE(3) .GT. 0) .AND. (IRANGE(1) .GT. IRANGE(2))) THEN
STRA = 'Starting ' // EXPECT
WRITE (ERRMSG, 10010, IOSTAT=IDUM) STRA(:LENSTR(STRA)),
& IRANGE(1), ' > ending ', IRANGE(2)
CALL SQZSTR (ERRMSG, L)
CALL PRTERR ('CMDERR', ERRMSG(:L))
GOTO 130
END IF
IF ((IRANGE(3) .LT. 0) .AND. (IRANGE(1) .LT. IRANGE(2))) THEN
STRA = 'Starting ' // EXPECT
WRITE (ERRMSG, 10010, IOSTAT=IDUM) STRA(:LENSTR(STRA)),
& IRANGE(1), ' < ending ', IRANGE(2), ' with negative step'
CALL SQZSTR (ERRMSG, L)
CALL PRTERR ('CMDERR', ERRMSG(:L))
END IF
IF (MIN (IRANGE(1), IRANGE(2)) .GT. MAXVAL) THEN
STRA = 'Minimum ' // EXPECT
WRITE (ERRMSG, 10010, IOSTAT=IDUM) STRA(:LENSTR(STRA)),
& MIN (IRANGE(1), IRANGE(2)), ' > maximum ', MAXVAL
CALL SQZSTR (ERRMSG, L)
CALL PRTERR ('CMDERR', ERRMSG(:L))
GOTO 130
END IF
IF ((IRANGE(1) .LE. 0) .OR. (IRANGE(2) .LE. 0)) THEN
STRA = 'Negative or zero ' // EXPECT
WRITE (ERRMSG, 10010, IOSTAT=IDUM) STRA(:LENSTR(STRA)),
& MIN (IRANGE(1), IRANGE(2)), ' > maximum ', MAXVAL
CALL SQZSTR (ERRMSG, L)
CALL PRTERR ('CMDERR', ERRMSG(:L))
GOTO 130
END IF
IF (IRANGE(1) .GT. MAXVAL) IRANGE(1) = MAXVAL
IF (IRANGE(2) .GT. MAXVAL) IRANGE(2) = MAXVAL
END IF
RETURN
110 CONTINUE
RETURN 1
120 CONTINUE
IF (INTYP(IFLD) .GE. -1) IFLD = IFLD + 1
130 CONTINUE
RETURN 2
10000 FORMAT ('Expected ', A, ', not "', A, '"')
10010 FORMAT (A, I5, A, I5, A)
END