/* ************************************************************************** */
/* DBG193CL: Purge output queue of old spoolfiles */
/* Copyright (C) 2000 Martin Rowe <martin@dbg400.net> */
/* */
/* This program is free software; you can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License, or */
/* (at your option) any later version. */
/* */
/* This program is distributed in the hope that it will be useful, */
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
/* GNU General Public License for more details. */
/* */
/* You should have received a copy of the GNU General Public License */
/* along with this program; if not, write to the Free Software */
/* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
/* ************************************************************************** */
PGM PARM(&QUALOUTQ &RETAIN &RTNHLD &RTNSAV)
DCL VAR(&RTNLIB) TYPE(*CHAR) LEN(10)
DCL VAR(&QUALOUTQ) TYPE(*CHAR) LEN(20)
DCL VAR(&RETAIN) TYPE(*DEC) LEN(5 0)
DCL VAR(&RTNHLD) TYPE(*DEC) LEN(5 0)
DCL VAR(&RTNSAV) TYPE(*DEC) LEN(5 0)
/* ************************************************************************** */
/* GLOBAL MESSAGE MONITOR */
/* ************************************************************************** */
MONMSG MSGID(CPF0000 RPG0000 QRG0000 RSF0000 +
MCH0000) EXEC(GOTO CMDLBL(##ERROR))
GOTO CMDLBL(##NOERROR)
##ERROR:
MOVDIAGMSG
MONMSG MSGID(CPF0000)
RSNESCMSG
MONMSG MSGID(CPF0000)
RETURN
##NOERROR:
/* ************************************************************************** */
/* START OF MAINLINE CODE */
/* ************************************************************************** */
/* First time through? Create required runtime objects in QTEMP */
/* DBG1860W holds the data from the QUSLSPL API */
CHKOBJ OBJ(QTEMP/DBG1860W) OBJTYPE(*FILE)
MONMSG MSGID(CPF9801) EXEC(DO)
RTVOBJD OBJ(DBG1860W) OBJTYPE(*FILE) RTNLIB(&RTNLIB)
CRTDUPOBJ OBJ(DBG1860W) FROMLIB(&RTNLIB) +
OBJTYPE(*FILE) TOLIB(QTEMP)
ENDDO
OVRDBF FILE(DBG1860W) TOFILE(QTEMP/DBG1860W)
/* Put all spoolfiles from specified outq into *outfile */
CALL PGM(DBG188R4) PARM('*ALL' &QUALOUTQ '*REPLACE')
/* Process *outfile contents purging spoolfiles older than retention value */
CALL PGM(DBG193R4) PARM(&RETAIN &RTNHLD &RTNSAV)
DLTOVR FILE(DBG1860W)
RETURN
ENDPGM
--
MartinRowe - 24 Jun 2005