#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <sys/types.h>
#include <stdlib.h>
#include <libintl.h>
#include "lp.h"
#include "printers.h"
#include "msgs.h"
#define WHO_AM_I I_AM_LPADMIN
#include "oam.h"
#include "lpadmin.h"
extern char *nameit(),
*label;
static void configure_pwheel();
void do_pwheel ()
{
int rc;
if (A && STREQU(A, NAME_NONE)) {
BEGIN_CRITICAL
if (delpwheel(*S) == -1) {
LP_ERRMSG1 (WARNING, E_ADM_BADPWHEEL, *S);
return;
}
END_CRITICAL
} else if (strlen(modifications))
configure_pwheel (modifications);
if (A && STREQU(A, NAME_LIST)) {
if (label)
(void) printf(gettext("Print wheel %s: "), label);
printalert (stdout, &(oldS->alert), 0);
return;
}
if (A && STREQU(A, NAME_QUIET)) {
send_message(S_QUIET_ALERT, *S, (char *)QA_PRINTWHEEL, "");
rc = output(R_QUIET_ALERT);
switch(rc) {
case MOK:
break;
case MNODEST:
case MERRDEST:
LP_ERRMSG1 (WARNING, E_LP_NOQUIET, *S);
break;
case MNOPERM:
default:
LP_ERRMSG1 (ERROR, E_LP_BADSTATUS, rc);
done (1);
}
return;
}
if (A && STREQU(A, NAME_NONE)) {
send_message(S_UNLOAD_PRINTWHEEL, *S);
rc = output(R_UNLOAD_PRINTWHEEL);
} else {
send_message(S_LOAD_PRINTWHEEL, *S);
rc = output(R_LOAD_PRINTWHEEL);
}
switch(rc) {
case MOK:
break;
case MNODEST:
break;
case MERRDEST:
LP_ERRMSG (ERROR, E_ADM_ERRDEST);
done (1);
case MNOSPACE:
LP_ERRMSG (WARNING, E_ADM_NOPWSPACE);
break;
case MNOPERM:
default:
LP_ERRMSG1 (ERROR, E_LP_BADSTATUS, rc);
done (1);
}
return;
}
static void configure_pwheel (list)
char *list;
{
register PWHEEL *ppw;
PWHEEL pwheel_buf;
char type;
if (oldS)
ppw = oldS;
else {
ppw = &pwheel_buf;
ppw->alert.shcmd = 0;
ppw->alert.Q = 0;
ppw->alert.W = 0;
}
while ((type = *list++) != '\0') switch(type) {
case 'A':
if (STREQU(A, NAME_MAIL) || STREQU(A, NAME_WRITE))
ppw->alert.shcmd = nameit(A);
else
ppw->alert.shcmd = A;
break;
case 'Q':
ppw->alert.Q = Q;
break;
case 'W':
ppw->alert.W = W;
break;
}
BEGIN_CRITICAL
if (putpwheel(*S, ppw) == -1) {
LP_ERRMSG2 (
ERROR,
E_ADM_PUTPWHEEL,
*S,
PERROR
);
done(1);
}
END_CRITICAL
return;
}