xref: /illumos-gate/usr/src/cmd/print/bsd-sysv-commands/lprm.c (revision 5d9d9091f564c198a760790b0bfa72c44e17912b)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 
22 /*
23  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  *
26  */
27 
28 /* $Id: lprm.c 146 2006-03-24 00:26:54Z njacobs $ */
29 
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <unistd.h>
33 #include <string.h>
34 #include <locale.h>
35 #include <libintl.h>
36 #include <papi.h>
37 #include "common.h"
38 
39 static void
40 usage(char *program)
41 {
42 	char *name;
43 
44 	if ((name = strrchr(program, '/')) == NULL)
45 		name = program;
46 	else
47 		name++;
48 
49 	fprintf(stdout, gettext("Usage: %s [-P printer] (user|id ...)\n"),
50 			name);
51 	exit(1);
52 }
53 
54 int
55 main(int ac, char *av[])
56 {
57 	papi_status_t status;
58 	papi_service_t svc = NULL;
59 	papi_encryption_t encryption = PAPI_ENCRYPT_NEVER;
60 	char *printer = NULL;
61 	int c;
62 
63 	(void) setlocale(LC_ALL, "");
64 	(void) textdomain("SUNW_OST_OSCMD");
65 
66 	while ((c = getopt(ac, av, "EP:")) != EOF)
67 		switch (c) {
68 		case 'E':
69 			encryption = PAPI_ENCRYPT_REQUIRED;
70 			break;
71 		case 'P':
72 			printer = optarg;
73 			break;
74 		default:
75 			usage(av[0]);
76 		}
77 
78 	if ((printer == NULL) &&
79 	    ((printer = getenv("PRINTER")) == NULL) &&
80 	    ((printer = getenv("LPDEST")) == NULL))
81 		printer = DEFAULT_DEST;
82 
83 	status = papiServiceCreate(&svc, printer, NULL, NULL, cli_auth_callback,
84 					encryption, NULL);
85 	if (status != PAPI_OK) {
86 		fprintf(stderr, gettext(
87 			"Failed to contact service for %s: %s\n"),
88 			printer, verbose_papi_message(svc, status));
89 		papiServiceDestroy(svc);
90 		return (1);
91 	}
92 
93 	berkeley_cancel_request(svc, stdout, printer,
94 				ac - optind, &av[optind]);
95 
96 	papiServiceDestroy(svc);
97 
98 	return (0);
99 }
100