diff options
author | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-11 16:51:37 -0400 |
---|---|---|
committer | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-11 16:51:37 -0400 |
commit | 40e5a5811c6ffce9b0974e93cdd927cbcf60c157 (patch) | |
tree | 4464880c571602d54f6ae114729bf62a89518057 /pkg/tbtables/tbxcp.x | |
download | iraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz |
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'pkg/tbtables/tbxcp.x')
-rw-r--r-- | pkg/tbtables/tbxcp.x | 621 |
1 files changed, 621 insertions, 0 deletions
diff --git a/pkg/tbtables/tbxcp.x b/pkg/tbtables/tbxcp.x new file mode 100644 index 00000000..7e21d452 --- /dev/null +++ b/pkg/tbtables/tbxcp.x @@ -0,0 +1,621 @@ +include <mach.h> # for MAX_INT and MAX_SHORT +include "tbtables.h" +include "tblerr.h" + +# tbxcpb -- X putcol Boolean +# Write values for one column to a range of rows. This is for data type +# Boolean and row-ordered SDAS tables. +# +# Phil Hodge, 28-Dec-1987 Different data types combined into one file. +# Phil Hodge, 6-Mar-1989 Allow COL_DTYPE < 0 for character columns. +# Phil Hodge, 31-Mar-1993 Include short datatype. +# Phil Hodge, 4-Nov-1993 tbxcpt: call sscan as a subroutine, not a function. +# Phil Hodge, 14-Sep-1994 Use tbeszt for length of string; in tbxcpt, use +# gargd (dblbuf) and then nint for int & short. +# Phil Hodge, 2-Jun-1997 Replace INDEFD with TBL_INDEFD. +# Phil Hodge, 3-Mar-1998 Remove call to tbxwsk. +# Phil Hodge, 27-Aug-2002 In tbxcpi and tbxcps, include an explicit test +# for INDEF, rather than relying on a test on abs (dblbuf). + +procedure tbxcpb (tp, colptr, buffer, firstrow, lastrow) + +pointer tp # i: pointer to table descriptor +pointer colptr # i: pointer to descriptor of the column +bool buffer[ARB] # i: buffer for values +int firstrow # i: first row into which to put values +int lastrow # i: last row into which to put values +#-- +long locn # Location (chars) for reading in table +int k # Index in output array buffer +int rowlen # Record length (chars) +int datatype # Data type of element in table +int nchar # Size of a string in table file +# buffers for reading values of various types +double dblbuf +real realbuf +int intbuf +short shortbuf +char charbuf[SZ_LINE] +int tbeszt() +errchk seek, write + +begin + rowlen = TB_ROWLEN(tp) + datatype = COL_DTYPE(colptr) + locn = (firstrow-1) * rowlen + TB_BOD(tp) + COL_OFFSET(colptr) + + switch (datatype) { + case TY_REAL: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + if (buffer[k]) + realbuf = real(YES) + else + realbuf = real(NO) + call write (TB_FILE(tp), realbuf, SZ_REAL) + locn = locn + rowlen + } + case TY_DOUBLE: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + if (buffer[k]) + dblbuf = double(YES) + else + dblbuf = double(NO) + call write (TB_FILE(tp), dblbuf, SZ_DOUBLE) + locn = locn + rowlen + } + case TY_INT: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + if (buffer[k]) + intbuf = YES + else + intbuf = NO + if (SZ_INT != SZ_INT32) + call ipak32 (intbuf, intbuf, 1) + call write (TB_FILE(tp), intbuf, SZ_INT32) + locn = locn + rowlen + } + case TY_SHORT: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + if (buffer[k]) + shortbuf = YES + else + shortbuf = NO + call write (TB_FILE(tp), shortbuf, SZ_SHORT) + locn = locn + rowlen + } + case TY_BOOL: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + call write (TB_FILE(tp), buffer[k], SZ_BOOL) + locn = locn + rowlen + } + default: + if (datatype < 0 || datatype == TY_CHAR) { + nchar = tbeszt (colptr) + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + call sprintf (charbuf, SZ_LINE, "%-3b") + call pargb (buffer[k]) + call strpak (charbuf, charbuf, SZ_LINE) + call write (TB_FILE(tp), charbuf, nchar) + locn = locn + rowlen + } + } else { + call error (ER_TBCOLBADTYP, "tbcptb: invalid data type") + } + } +end + + +# tbxcpd -- X putcol double +# Write values for one column to a range of rows. This is for data type +# double precision and row-ordered SDAS tables. + +procedure tbxcpd (tp, colptr, buffer, firstrow, lastrow) + +pointer tp # i: pointer to table descriptor +pointer colptr # i: pointer to descriptor of the column +double buffer[ARB] # i: buffer for values +int firstrow # i: first row into which to put values +int lastrow # i: last row into which to put values +#-- +long locn # Location (chars) for reading in table +int k # Index in output array buffer +int rowlen # Record length (chars) +int datatype # Data type of element in table +int nchar # Size of a string in table file +# buffers for reading values of various types +double dblbuf +real realbuf +int intbuf +short shortbuf +bool boolbuf +char charbuf[SZ_LINE] +int tbeszt() +errchk seek, write + +begin + rowlen = TB_ROWLEN(tp) + datatype = COL_DTYPE(colptr) + locn = (firstrow-1) * rowlen + TB_BOD(tp) + COL_OFFSET(colptr) + + switch (datatype) { + case TY_REAL: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + if (IS_INDEFD (buffer[k])) + realbuf = INDEFR + else + realbuf = buffer[k] + call write (TB_FILE(tp), realbuf, SZ_REAL) + locn = locn + rowlen + } + case TY_DOUBLE: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + if (IS_INDEFD (buffer[k])) + dblbuf = TBL_INDEFD + else + dblbuf = buffer[k] + call write (TB_FILE(tp), dblbuf, SZ_DOUBLE) + locn = locn + rowlen + } + case TY_INT: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + if (IS_INDEFD (buffer[k]) || (abs (buffer[k]) > MAX_INT)) + intbuf = INDEFI + else + intbuf = nint (buffer[k]) + if (SZ_INT != SZ_INT32) + call ipak32 (intbuf, intbuf, 1) + call write (TB_FILE(tp), intbuf, SZ_INT32) + locn = locn + rowlen + } + case TY_SHORT: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + if (IS_INDEFD (buffer[k]) || (abs (buffer[k]) > MAX_SHORT)) + shortbuf = INDEFS + else + shortbuf = nint (buffer[k]) + call write (TB_FILE(tp), shortbuf, SZ_SHORT) + locn = locn + rowlen + } + case TY_BOOL: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + if (IS_INDEFD (buffer[k]) || nint(buffer[k]) == NO) + boolbuf = false + else + boolbuf = true + call write (TB_FILE(tp), boolbuf, SZ_BOOL) + locn = locn + rowlen + } + default: + if (datatype < 0 || datatype == TY_CHAR) { + nchar = tbeszt (colptr) + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + call sprintf (charbuf, SZ_LINE, "%-25.17g") + call pargd (buffer[k]) + call strpak (charbuf, charbuf, SZ_LINE) + call write (TB_FILE(tp), charbuf, nchar) + locn = locn + rowlen + } + } else { + call error (ER_TBCOLBADTYP, "tbcptd: invalid data type") + } + } +end + + +# tbxcpr -- X putcol real +# Write values for one column to a range of rows. This is for data type real +# and row-ordered SDAS tables. + +procedure tbxcpr (tp, colptr, buffer, firstrow, lastrow) + +pointer tp # i: pointer to table descriptor +pointer colptr # i: pointer to descriptor of the column +real buffer[ARB] # i: buffer for values +int firstrow # i: first row into which to put values +int lastrow # i: last row into which to put values +#-- +long locn # Location (chars) for reading in table +int k # Index in output array buffer +int rowlen # Record length (chars) +int datatype # Data type of element in table +int nchar # Size of a string in table file +# buffers for reading values of various types +double dblbuf # Buffer for writing double-precision values +int intbuf # Buffer for writing integer values +short shortbuf +bool boolbuf # Buffer for writing Boolean values +char charbuf[SZ_LINE] # Buffer for writing character values +int tbeszt() +errchk seek, write + +begin + rowlen = TB_ROWLEN(tp) + datatype = COL_DTYPE(colptr) + locn = (firstrow-1) * rowlen + TB_BOD(tp) + COL_OFFSET(colptr) + + switch (datatype) { + case TY_REAL: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + call write (TB_FILE(tp), buffer[k], SZ_REAL) + locn = locn + rowlen + } + case TY_DOUBLE: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + if (IS_INDEFR (buffer[k])) + dblbuf = TBL_INDEFD + else + dblbuf = buffer[k] + call write (TB_FILE(tp), dblbuf, SZ_DOUBLE) + locn = locn + rowlen + } + case TY_INT: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + if (IS_INDEFR (buffer[k]) || (abs (buffer[k]) > MAX_INT)) + intbuf = INDEFI + else + intbuf = nint (buffer[k]) + if (SZ_INT != SZ_INT32) + call ipak32 (intbuf, intbuf, 1) + call write (TB_FILE(tp), intbuf, SZ_INT32) + locn = locn + rowlen + } + case TY_SHORT: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + if (IS_INDEFR (buffer[k]) || (abs (buffer[k]) > MAX_SHORT)) + shortbuf = INDEFS + else + shortbuf = nint (buffer[k]) + call write (TB_FILE(tp), shortbuf, SZ_SHORT) + locn = locn + rowlen + } + case TY_BOOL: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + if (IS_INDEFR (buffer[k]) || nint(buffer[k]) == NO) + boolbuf = false + else + boolbuf = true + call write (TB_FILE(tp), boolbuf, SZ_BOOL) + locn = locn + rowlen + } + default: + if (datatype < 0 || datatype == TY_CHAR) { + nchar = tbeszt (colptr) + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + call sprintf (charbuf, SZ_LINE, "%-15.7g") + call pargr (buffer[k]) + call strpak (charbuf, charbuf, SZ_LINE) + call write (TB_FILE(tp), charbuf, nchar) + locn = locn + rowlen + } + } else { + call error (ER_TBCOLBADTYP, "tbcptr: invalid data type") + } + } +end + + +# tbxcpi -- X putcol integer +# Write values for one column to a range of rows. This is for data type +# integer and row-ordered SDAS tables. + +procedure tbxcpi (tp, colptr, buffer, firstrow, lastrow) + +pointer tp # i: pointer to table descriptor +pointer colptr # i: pointer to descriptor of the column +int buffer[ARB] # i: buffer for values +int firstrow # i: first row into which to put values +int lastrow # i: last row into which to put values +#-- +long locn # Location (chars) for reading in table +int k # Index in output array buffer +int rowlen # Record length (chars) +int datatype # Data type of element in table +int nchar # Size of a string in table file +# buffers for reading values of various types +double dblbuf # Buffer for writing double-precision values +real realbuf # Buffer for writing real values +short shortbuf +bool boolbuf # Buffer for writing Boolean values +char charbuf[SZ_LINE] # Buffer for writing character values +int tbeszt() +errchk seek, write + +begin + rowlen = TB_ROWLEN(tp) + datatype = COL_DTYPE(colptr) + locn = (firstrow-1) * rowlen + TB_BOD(tp) + COL_OFFSET(colptr) + + switch (datatype) { + case TY_REAL: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + if (IS_INDEFI (buffer[k])) + realbuf = INDEFR + else + realbuf = buffer[k] + call write (TB_FILE(tp), realbuf, SZ_REAL) + locn = locn + rowlen + } + case TY_DOUBLE: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + if (IS_INDEFI (buffer[k])) + dblbuf = TBL_INDEFD + else + dblbuf = buffer[k] + call write (TB_FILE(tp), dblbuf, SZ_DOUBLE) + locn = locn + rowlen + } + case TY_INT: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + if (SZ_INT != SZ_INT32) + call ipak32 (buffer[k], buffer[k], 1) + call write (TB_FILE(tp), buffer[k], SZ_INT32) + locn = locn + rowlen + } + case TY_SHORT: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + if (IS_INDEFI (buffer[k]) || (abs (buffer[k]) > MAX_SHORT)) + shortbuf = INDEFS + else + shortbuf = buffer[k] + call write (TB_FILE(tp), shortbuf, SZ_SHORT) + locn = locn + rowlen + } + case TY_BOOL: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + if (IS_INDEFI (buffer[k]) || (buffer[k] == NO)) + boolbuf = false + else + boolbuf = true + call write (TB_FILE(tp), boolbuf, SZ_BOOL) + locn = locn + rowlen + } + default: + if (datatype < 0 || datatype == TY_CHAR) { + nchar = tbeszt (colptr) + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + call sprintf (charbuf, SZ_LINE, "%-11d") + call pargi (buffer[k]) + call strpak (charbuf, charbuf, SZ_LINE) + call write (TB_FILE(tp), charbuf, nchar) + locn = locn + rowlen + } + } else { + call error (ER_TBCOLBADTYP, "tbcpti: invalid data type") + } + } +end + + +# tbxcps -- X putcol short +# Write values for one column to a range of rows. This is for data type +# short integer and row-ordered SDAS tables. + +procedure tbxcps (tp, colptr, buffer, firstrow, lastrow) + +pointer tp # i: pointer to table descriptor +pointer colptr # i: pointer to descriptor of the column +short buffer[ARB] # i: buffer for values +int firstrow # i: first row into which to put values +int lastrow # i: last row into which to put values +#-- +long locn # Location (chars) for reading in table +int k # Index in output array buffer +int rowlen # Record length (chars) +int datatype # Data type of element in table +int nchar # Size of a string in table file +# buffers for reading values of various types +double dblbuf +real realbuf +int intbuf +bool boolbuf +char charbuf[SZ_LINE] +int tbeszt() +errchk seek, write + +begin + rowlen = TB_ROWLEN(tp) + datatype = COL_DTYPE(colptr) + locn = (firstrow-1) * rowlen + TB_BOD(tp) + COL_OFFSET(colptr) + + switch (datatype) { + case TY_REAL: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + if (IS_INDEFS (buffer[k])) + realbuf = INDEFR + else + realbuf = buffer[k] + call write (TB_FILE(tp), realbuf, SZ_REAL) + locn = locn + rowlen + } + case TY_DOUBLE: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + if (IS_INDEFS (buffer[k])) + dblbuf = TBL_INDEFD + else + dblbuf = buffer[k] + call write (TB_FILE(tp), dblbuf, SZ_DOUBLE) + locn = locn + rowlen + } + case TY_INT: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + if (IS_INDEFS (buffer[k])) + intbuf = INDEFI + else + intbuf = buffer[k] + if (SZ_INT != SZ_INT32) + call ipak32 (intbuf, intbuf, 1) + call write (TB_FILE(tp), intbuf, SZ_INT32) + locn = locn + rowlen + } + case TY_SHORT: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + call write (TB_FILE(tp), buffer[k], SZ_SHORT) + locn = locn + rowlen + } + case TY_BOOL: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + if (IS_INDEFS (buffer[k]) || (buffer[k] == NO)) + boolbuf = false + else + boolbuf = true + call write (TB_FILE(tp), boolbuf, SZ_BOOL) + locn = locn + rowlen + } + default: + if (datatype < 0 || datatype == TY_CHAR) { + nchar = tbeszt (colptr) + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + call sprintf (charbuf, SZ_LINE, "%-11d") + call pargs (buffer[k]) + call strpak (charbuf, charbuf, SZ_LINE) + call write (TB_FILE(tp), charbuf, nchar) + locn = locn + rowlen + } + } else { + call error (ER_TBCOLBADTYP, "tbcpts: invalid data type") + } + } +end + + +# tbxcpt -- X putcol text +# Write values for one column to a range of rows. This is for character +# strings and row-ordered SDAS tables. + +procedure tbxcpt (tp, colptr, buffer, lenstring, firstrow, lastrow) + +pointer tp # i: pointer to table descriptor +pointer colptr # i: pointer to descriptor of the column +char buffer[lenstring,ARB] # i: buffer for values +int lenstring # i: number of char in each element of buffer +int firstrow # i: first row into which to put values +int lastrow # i: last row into which to put values +#-- +long locn # Location (chars) for reading in table +int k # Index in output array buffer +int rowlen # Record length (chars) +int datatype # Data type of element in table +int nchar # Size of a string in table file +# buffers for reading values of various types +double dblbuf # Buffer for reading double-precision values +real realbuf # Buffer for reading real values +int intbuf # Buffer for reading integer values +short shortbuf +bool boolbuf # Buffer for reading Boolean values +char charbuf[SZ_LINE] # Buffer for reading character values +int nscan() +int tbeszt() +errchk seek, write + +begin + rowlen = TB_ROWLEN(tp) + datatype = COL_DTYPE(colptr) + locn = (firstrow-1) * rowlen + TB_BOD(tp) + COL_OFFSET(colptr) + + switch (datatype) { + case TY_REAL: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + call sscan (buffer[1,k]) + call gargr (realbuf) + if (nscan() < 1) + realbuf = INDEFR + call write (TB_FILE(tp), realbuf, SZ_REAL) + locn = locn + rowlen + } + case TY_DOUBLE: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + call sscan (buffer[1,k]) + call gargd (dblbuf) + if (nscan() < 1) + dblbuf = TBL_INDEFD + else if (IS_INDEFD (dblbuf)) + dblbuf = TBL_INDEFD + call write (TB_FILE(tp), dblbuf, SZ_DOUBLE) + locn = locn + rowlen + } + case TY_INT: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + call sscan (buffer[1,k]) + call gargd (dblbuf) + if (nscan() < 1 || IS_INDEFD(dblbuf) || + abs (dblbuf) > MAX_INT) { + intbuf = INDEFI + } else { + intbuf = nint (dblbuf) + } + if (SZ_INT != SZ_INT32) + call ipak32 (intbuf, intbuf, 1) + call write (TB_FILE(tp), intbuf, SZ_INT32) + locn = locn + rowlen + } + case TY_SHORT: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + call sscan (buffer[1,k]) + call gargd (dblbuf) + if (nscan() < 1 || IS_INDEFD(dblbuf) || + abs (dblbuf) > MAX_SHORT) { + shortbuf = INDEFS + } else { + shortbuf = nint (dblbuf) + } + call write (TB_FILE(tp), shortbuf, SZ_SHORT) + locn = locn + rowlen + } + case TY_BOOL: + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + call sscan (buffer[1,k]) + call gargb (boolbuf) + if (nscan() < 1) + boolbuf = false + call write (TB_FILE(tp), boolbuf, SZ_BOOL) + locn = locn + rowlen + } + default: + if (datatype < 0 || datatype == TY_CHAR) { + nchar = tbeszt (colptr) + do k = 1, lastrow-firstrow+1 { + call seek (TB_FILE(tp), locn) + call strpak (buffer[1,k], charbuf, lenstring) + call write (TB_FILE(tp), charbuf, nchar) + locn = locn + rowlen + } + } else { + call error (ER_TBCOLBADTYP, "tbcptt: invalid data type") + } + } +end |