#!/bin/ksh # IBM_PROLOG_BEGIN_TAG # This is an automatically generated prolog. # # bos720 src/bos/usr/bin/que/attshort.sh 1.9 # # Licensed Materials - Property of IBM # # COPYRIGHT International Business Machines Corp. 1985,1994 # All Rights Reserved # # US Government Users Restricted Rights - Use, duplication or # disclosure restricted by GSA ADP Schedule Contract with IBM Corp. # # IBM_PROLOG_END_TAG # @(#)44 1.9 src/bos/usr/bin/que/attshort.sh, cmdque, bos720 5/29/96 12:04:19 # COMPONENT_NAME: (CMDQUE) filter for remote print status output # # FUNCTIONS: attshort.sh # # ORIGINS: 27 # # (C) COPYRIGHT International Business Machines Corp. 1985, 1994 # All Rights Reserved # Licensed Materials - Property of IBM # # US Government Users Restricted Rights - Use, duplication or # disclosure restricted by GSA ADP Schedule Contract with IBM Corp. # # # Shell script for translating ATT5.2 lpstat printer queue output to ver 3.1 # qstatus output. (for short-form output) # # # Set variables to indicate where commands can be found # if [ "$SHELL" = "/usr/bin/rksh" -o "$SHELL" = "/bin/rksh" ] then DSPMSG=dspmsg TR=tr AWK=awk else DSPMSG=/usr/bin/dspmsg TR=/usr/bin/tr AWK=/usr/bin/awk fi if MSGUNK=`$DSPMSG qstat.cat -s 2 3 "Unknown"` then : else MSGUNK="Unknown"; fi if MSGSTRUN=`$DSPMSG qstat.cat -s 2 4 "RUNNING"` then : else MSGSTRUN="RUNNING"; fi if MSGSTQUE=`$DSPMSG qstat.cat -s 2 5 "QUEUED"` then : else MSGSTQUE="QUEUED"; fi if MSGDWN2=`$DSPMSG rem.cat 40 "HOST_DOWN"` then : else MSGDWN2="HOST_DOWN"; fi AQUE=$1 RQUE=$2 $TR -d '\0' | $AWK ' BEGIN { #----Set the state machine to read in messages and header lines STATE = 0 #----Read in the arguments sent from qstatus, set up variables QNAME = "'"$AQUE"'" # First parameter is used for name of queue RNAME = "'"$RQUE"'" # Second parameter is used for remote queue name STATUS = "'"$MSGRUN"'" # Status used for active job on queue UNKNOWN = "'"$MSGUNK"'" # For Unknown fields HOSTDOWN = "'"$MSGDWN2"'" # Status saying host is not responding for some reason } { #----Unable to communicate with host. if ($1 == HOSTDOWN) { printf("%-7.7s %-5.5s %-9.9s\n",QNAME,RNAME,HOSTDOWN); } #----NOTE: The socket attaches a '\0' at the end of the qstatus # output from the remote server. AWK interprets this as # another line. Thus, we check the number of fields to # insure a blank line is not printed. else if (NF > 0) { #----Do some massaging to necessary fields BLOCKS = ($3 / 512) + 1 #----If in the first line of the status section, we want # to print the queue and device names in the proper fields if(STATE == 0) { printf("%-7.7s",QNAME) # Queue name printf(" %-5.5s",RNAME) # Device name #----Otherwise, just leave space in the queue and device fields } else { printf("%-13.13s","") # Empty que and dev fields } #----Print the rest of the status fields printf(" %-9.9s",STATUS) # Dev status printf("%4d",0) # Job number printf(" %-19.19s",UNKNOWN) # Files to print printf(" %-10.10s",$2) # User requesting job printf("%5.1d",0) # Pages to print printf(" %2.1d",0) # Percentage printed printf("%6.1d",BLOCKS) # No. of blocks to print printf("%3.1d",1) # No. of copies printf("%4.1d",NR) # Ranking of job printf("\n") #----Insure state machine says that we are now past first # status line, and adjust output fields accordingly ++STATE STATUS = "'"$MSGQUE"'" } } '