xref: /titanic_52/usr/src/cmd/print/bsd-sysv-commands/cancel.c (revision 6b5764c36d253d178caa447fa2a6d7e0c7dfd6e6)
1355b4669Sjacobs /*
2355b4669Sjacobs  * CDDL HEADER START
3355b4669Sjacobs  *
4355b4669Sjacobs  * The contents of this file are subject to the terms of the
5355b4669Sjacobs  * Common Development and Distribution License (the "License").
6355b4669Sjacobs  * You may not use this file except in compliance with the License.
7355b4669Sjacobs  *
8355b4669Sjacobs  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9355b4669Sjacobs  * or http://www.opensolaris.org/os/licensing.
10355b4669Sjacobs  * See the License for the specific language governing permissions
11355b4669Sjacobs  * and limitations under the License.
12355b4669Sjacobs  *
13355b4669Sjacobs  * When distributing Covered Code, include this CDDL HEADER in each
14355b4669Sjacobs  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15355b4669Sjacobs  * If applicable, add the following below this CDDL HEADER, with the
16355b4669Sjacobs  * fields enclosed by brackets "[]" replaced with your own identifying
17355b4669Sjacobs  * information: Portions Copyright [yyyy] [name of copyright owner]
18355b4669Sjacobs  *
19355b4669Sjacobs  * CDDL HEADER END
20355b4669Sjacobs  */
21355b4669Sjacobs 
22355b4669Sjacobs /*
23*6b5764c3Ssonam gupta - Sun Microsystems - Bangalore India  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
24355b4669Sjacobs  * Use is subject to license terms.
25355b4669Sjacobs  *
26355b4669Sjacobs  */
27355b4669Sjacobs 
28355b4669Sjacobs /* $Id: cancel.c 147 2006-04-25 16:51:06Z njacobs $ */
29355b4669Sjacobs 
30355b4669Sjacobs 
31355b4669Sjacobs #include <stdio.h>
32355b4669Sjacobs #include <stdlib.h>
33355b4669Sjacobs #include <unistd.h>
34355b4669Sjacobs #include <string.h>
35355b4669Sjacobs #include <locale.h>
36355b4669Sjacobs #include <libintl.h>
37355b4669Sjacobs #include <papi.h>
38355b4669Sjacobs #include "common.h"
39355b4669Sjacobs 
40355b4669Sjacobs static void
41355b4669Sjacobs usage(char *program)
42355b4669Sjacobs {
43355b4669Sjacobs 	char *name;
44355b4669Sjacobs 
45355b4669Sjacobs 	if ((name = strrchr(program, '/')) == NULL)
46355b4669Sjacobs 		name = program;
47355b4669Sjacobs 	else
48355b4669Sjacobs 		name++;
49355b4669Sjacobs 
50355b4669Sjacobs 	fprintf(stdout, "Usage: %s [-u user] (printer|request-id ...)\n", name);
51355b4669Sjacobs 	exit(1);
52355b4669Sjacobs }
53355b4669Sjacobs 
54355b4669Sjacobs int
55d6083ba5Sjc144527 cancel_jobs_for_user(char *user, papi_encryption_t encryption, char *pname) {
56d6083ba5Sjc144527 
57d6083ba5Sjc144527 	papi_status_t status;
58d6083ba5Sjc144527 	papi_service_t svc = NULL;
59d6083ba5Sjc144527 	char **printers = NULL;
60d6083ba5Sjc144527 	int i, exit_code;
61d6083ba5Sjc144527 
62d6083ba5Sjc144527 	if (pname == NULL) {
63*6b5764c3Ssonam gupta - Sun Microsystems - Bangalore India 		status = papiServiceCreate(&svc, NULL, NULL, NULL,
64d6083ba5Sjc144527 		    cli_auth_callback, encryption, NULL);
65d6083ba5Sjc144527 		printers = interest_list(svc);
66d6083ba5Sjc144527 		papiServiceDestroy(svc);
67d6083ba5Sjc144527 	} else {
68d6083ba5Sjc144527 		list_append(&printers, strdup(pname));
69d6083ba5Sjc144527 	}
70d6083ba5Sjc144527 
71d6083ba5Sjc144527 	if (printers == NULL)
72d6083ba5Sjc144527 		exit(0);
73d6083ba5Sjc144527 
74d6083ba5Sjc144527 	for (i = 0; printers[i] != NULL; i++) {
75d6083ba5Sjc144527 		char *printer = printers[i];
76d6083ba5Sjc144527 
77*6b5764c3Ssonam gupta - Sun Microsystems - Bangalore India 		status = papiServiceCreate(&svc, printer, NULL, NULL,
78d6083ba5Sjc144527 		    cli_auth_callback, encryption, NULL);
79d6083ba5Sjc144527 
80d6083ba5Sjc144527 		if (status != PAPI_OK) {
81d6083ba5Sjc144527 			fprintf(stderr, gettext(
82d6083ba5Sjc144527 			    "Failed to contact service for %s: %s\n"),
83d6083ba5Sjc144527 			    printer, verbose_papi_message(svc, status));
84d6083ba5Sjc144527 			exit(1);
85d6083ba5Sjc144527 		}
86d6083ba5Sjc144527 		exit_code = berkeley_cancel_request(svc, stdout, printer, 1,
87d6083ba5Sjc144527 		    &user);
88d6083ba5Sjc144527 
89d6083ba5Sjc144527 		papiServiceDestroy(svc);
90d6083ba5Sjc144527 		if (exit_code != 0)
91d6083ba5Sjc144527 			break;
92d6083ba5Sjc144527 	}
93d6083ba5Sjc144527 	free(printers);
94d6083ba5Sjc144527 	return (exit_code);
95d6083ba5Sjc144527 }
96d6083ba5Sjc144527 
97d6083ba5Sjc144527 int
98355b4669Sjacobs main(int ac, char *av[])
99355b4669Sjacobs {
100355b4669Sjacobs 	int exit_code = 0;
101355b4669Sjacobs 	char *user = NULL;
102355b4669Sjacobs 	papi_encryption_t encryption = PAPI_ENCRYPT_NEVER;
103355b4669Sjacobs 	int c;
104355b4669Sjacobs 
105355b4669Sjacobs 	(void) setlocale(LC_ALL, "");
106355b4669Sjacobs 	(void) textdomain("SUNW_OST_OSCMD");
107355b4669Sjacobs 
108d6083ba5Sjc144527 	if (ac == 1)
109d6083ba5Sjc144527 		usage(av[0]);
110d6083ba5Sjc144527 
111355b4669Sjacobs 	while ((c = getopt(ac, av, "Eu:")) != EOF)
112355b4669Sjacobs 		switch (c) {
113355b4669Sjacobs 		case 'E':
114355b4669Sjacobs 			encryption = PAPI_ENCRYPT_REQUIRED;
115355b4669Sjacobs 			break;
116355b4669Sjacobs 		case 'u':
117355b4669Sjacobs 			user = optarg;
118355b4669Sjacobs 			break;
119355b4669Sjacobs 		default:
120355b4669Sjacobs 			usage(av[0]);
121355b4669Sjacobs 		}
122355b4669Sjacobs 
123355b4669Sjacobs 	for (c = optind; c < ac; c++) {
124355b4669Sjacobs 		papi_status_t status;
125355b4669Sjacobs 		papi_service_t svc = NULL;
126355b4669Sjacobs 		papi_job_t *jobs = NULL;
127355b4669Sjacobs 		char *printer = NULL;
128355b4669Sjacobs 		int32_t id = -1;
129355b4669Sjacobs 
130355b4669Sjacobs 		(void) get_printer_id(av[c], &printer, &id);
131355b4669Sjacobs 
132*6b5764c3Ssonam gupta - Sun Microsystems - Bangalore India 		status = papiServiceCreate(&svc, printer, NULL, NULL,
133355b4669Sjacobs 		    cli_auth_callback, encryption, NULL);
134355b4669Sjacobs 		if (status != PAPI_OK) {
135d6083ba5Sjc144527 			fprintf(stderr,
136d6083ba5Sjc144527 			    gettext("Failed to contact service for %s: %s\n"),
137355b4669Sjacobs 			    printer, verbose_papi_message(svc, status));
138355b4669Sjacobs 			exit(1);
139355b4669Sjacobs 		}
140355b4669Sjacobs 
141355b4669Sjacobs #define	OUT	((status == PAPI_OK) ? stdout : stderr)
142355b4669Sjacobs 
143355b4669Sjacobs 		if (id != -1) {	/* it's a job */
144355b4669Sjacobs 			char *mesg = "cancelled";
145355b4669Sjacobs 
146355b4669Sjacobs 			status = papiJobCancel(svc, printer, id);
147d6083ba5Sjc144527 			if (status == PAPI_NOT_AUTHORIZED) {
148d6083ba5Sjc144527 				mesg = papiStatusString(status);
149d6083ba5Sjc144527 				exit_code = 1;
150d6083ba5Sjc144527 			} else if (status != PAPI_OK) {
151355b4669Sjacobs 				mesg = verbose_papi_message(svc, status);
152355b4669Sjacobs 				exit_code = 1;
153355b4669Sjacobs 			}
154355b4669Sjacobs 			fprintf(OUT, "%s-%d: %s\n", printer, id, mesg);
155d6083ba5Sjc144527 
156355b4669Sjacobs 		} else {	/* it's a printer */
157d6083ba5Sjc144527 			if (user == NULL) {
158d6083ba5Sjc144527 
159d6083ba5Sjc144527 				/* Remove first job from printer */
160d6083ba5Sjc144527 
161d6083ba5Sjc144527 				status = papiPrinterListJobs(svc, printer,
162d6083ba5Sjc144527 				    NULL, NULL, 0, &jobs);
163d6083ba5Sjc144527 
164355b4669Sjacobs 				if (status != PAPI_OK) {
165d6083ba5Sjc144527 					fprintf(stderr, gettext(
166d6083ba5Sjc144527 					    "ListJobs %s: %s\n"), printer,
167355b4669Sjacobs 					    verbose_papi_message(svc, status));
168355b4669Sjacobs 					exit_code = 1;
169355b4669Sjacobs 				}
170355b4669Sjacobs 
171d6083ba5Sjc144527 				if (jobs != NULL && *jobs != NULL) {
172d03e4ae8SJonathan Cowper-Andrewes 					char *mesg = "cancelled";
173d03e4ae8SJonathan Cowper-Andrewes 					id = papiJobGetId(*jobs);
174355b4669Sjacobs 
175d03e4ae8SJonathan Cowper-Andrewes 					status = papiJobCancel(svc,
176d03e4ae8SJonathan Cowper-Andrewes 					    printer, id);
177d6083ba5Sjc144527 
178d03e4ae8SJonathan Cowper-Andrewes 					if (status == PAPI_NOT_AUTHORIZED) {
179d03e4ae8SJonathan Cowper-Andrewes 						mesg = papiStatusString(status);
180d03e4ae8SJonathan Cowper-Andrewes 						exit_code = 1;
181d03e4ae8SJonathan Cowper-Andrewes 					} else if (status != PAPI_OK) {
182d03e4ae8SJonathan Cowper-Andrewes 						mesg = verbose_papi_message(
183d03e4ae8SJonathan Cowper-Andrewes 						    svc, status);
184d03e4ae8SJonathan Cowper-Andrewes 						exit_code = 1;
185d03e4ae8SJonathan Cowper-Andrewes 					}
186d03e4ae8SJonathan Cowper-Andrewes 					fprintf(OUT, "%s-%d: %s\n", printer,
187d03e4ae8SJonathan Cowper-Andrewes 					    id, mesg);
188d6083ba5Sjc144527 
189355b4669Sjacobs 				}
190d6083ba5Sjc144527 				papiJobListFree(jobs);
191355b4669Sjacobs 
192d6083ba5Sjc144527 			} else {
193d6083ba5Sjc144527 				/* Purging user's print jobs */
194d6083ba5Sjc144527 				exit_code = cancel_jobs_for_user(user,
195d6083ba5Sjc144527 				    encryption, printer);
196d6083ba5Sjc144527 			}
197d6083ba5Sjc144527 		}
198355b4669Sjacobs 		papiServiceDestroy(svc);
199355b4669Sjacobs 	}
200355b4669Sjacobs 
201d6083ba5Sjc144527 	if (optind == ac)
202d6083ba5Sjc144527 		exit_code = cancel_jobs_for_user(user, encryption, NULL);
203d6083ba5Sjc144527 
204355b4669Sjacobs 	return (exit_code);
205355b4669Sjacobs }
206