8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / cmd / print / bsd-sysv-commands / disable.c
blob0b3cb71f0c64368e754e6c1b04bbf306a6828309
2 /*
3 * CDDL HEADER START
5 * The contents of this file are subject to the terms of the
6 * Common Development and Distribution License (the "License").
7 * You may not use this file except in compliance with the License.
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
20 * CDDL HEADER END
24 * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
25 * Use is subject to license terms.
29 /* $Id: disable.c 146 2006-03-24 00:26:54Z njacobs $ */
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <unistd.h>
35 #include <string.h>
36 #include <locale.h>
37 #include <libintl.h>
38 #include <papi.h>
39 #include "common.h"
41 static void
42 usage(char *program)
44 char *name;
46 if ((name = strrchr(program, '/')) == NULL)
47 name = program;
48 else
49 name++;
51 fprintf(stdout,
52 gettext("Usage: %s [-c] [-W] [-r reason] destination ...\n"),
53 name);
54 exit(1);
57 static void
58 cancel_active_job(papi_service_t svc, char *dest)
60 papi_status_t status;
61 papi_job_t *j = NULL;
62 char *req_attrs[] = { "job-state", "job-id", NULL };
64 status = papiPrinterListJobs(svc, dest, req_attrs, 0, 0, &j);
65 if ((status == PAPI_OK) && (j != NULL)) {
66 int i;
68 for (i = 0; j[i] != NULL; j++) {
69 papi_attribute_t **a = papiJobGetAttributeList(j[i]);
70 int state = 0;
72 if (a == NULL)
73 continue;
75 (void) papiAttributeListGetInteger(a, NULL,
76 "job-state", &state);
77 if (state & 0x082A) { /* If state is RS_ACTIVE */
78 int32_t id = papiJobGetId(j[i]);
80 (void) papiJobCancel(svc, dest, id);
83 papiJobListFree(j);
87 int
88 main(int ac, char *av[])
90 papi_status_t status;
91 papi_service_t svc = NULL;
92 papi_encryption_t encryption = PAPI_ENCRYPT_NEVER;
93 int exit_status = 0;
94 int cancel = 0;
95 int pending = 0; /* not implemented */
96 char *reason = NULL;
97 int c;
99 (void) setlocale(LC_ALL, "");
100 (void) textdomain("SUNW_OST_OSCMD");
102 while ((c = getopt(ac, av, "EcWr:")) != EOF)
103 switch (c) {
104 case 'c': /* cancel active job first */
105 cancel = 1;
106 break;
107 case 'W': /* wait for active request, not implemented */
108 pending = 1;
109 break;
110 case 'r': /* reason */
111 reason = optarg;
112 break;
113 case 'E':
114 encryption = PAPI_ENCRYPT_NEVER;
115 break;
116 default:
117 usage(av[0]);
120 if (ac <= optind)
121 usage(av[0]);
123 while (optind < ac) {
124 char *printer = av[optind++];
126 status = papiServiceCreate(&svc, printer, NULL, NULL,
127 cli_auth_callback, encryption, NULL);
128 if (status != PAPI_OK) {
129 fprintf(stderr, gettext(
130 "Failed to contact service for %s: %s\n"),
131 printer, verbose_papi_message(svc, status));
132 exit_status = 1;
135 status = papiPrinterDisable(svc, printer, reason);
136 if (status == PAPI_OK) {
137 printf(gettext("printer \"%s\" now disabled\n"),
138 printer);
139 } else if (status == PAPI_NOT_ACCEPTING) {
140 fprintf(stderr, gettext(
141 "Destination \"%s\" was already disabled.\n"),
142 printer);
143 exit_status = 1;
144 } else {
145 /* The operation is not supported in lpd protocol */
146 if (status == PAPI_OPERATION_NOT_SUPPORTED) {
147 fprintf(stderr,
148 verbose_papi_message(svc, status));
149 } else {
150 fprintf(stderr, gettext("disable: %s: %s\n"),
151 printer, verbose_papi_message(svc, status));
153 exit_status = 1;
156 if (cancel != 0)
157 cancel_active_job(svc, printer);
159 papiServiceDestroy(svc);
162 return (exit_status);