xref: /illumos-gate/usr/src/lib/print/libipp-listener/common/cups-accept-jobs.c (revision 355b4669e025ff377602b6fc7caaf30dbc218371)
1*355b4669Sjacobs /*
2*355b4669Sjacobs  * CDDL HEADER START
3*355b4669Sjacobs  *
4*355b4669Sjacobs  * The contents of this file are subject to the terms of the
5*355b4669Sjacobs  * Common Development and Distribution License (the "License").
6*355b4669Sjacobs  * You may not use this file except in compliance with the License.
7*355b4669Sjacobs  *
8*355b4669Sjacobs  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*355b4669Sjacobs  * or http://www.opensolaris.org/os/licensing.
10*355b4669Sjacobs  * See the License for the specific language governing permissions
11*355b4669Sjacobs  * and limitations under the License.
12*355b4669Sjacobs  *
13*355b4669Sjacobs  * When distributing Covered Code, include this CDDL HEADER in each
14*355b4669Sjacobs  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*355b4669Sjacobs  * If applicable, add the following below this CDDL HEADER, with the
16*355b4669Sjacobs  * fields enclosed by brackets "[]" replaced with your own identifying
17*355b4669Sjacobs  * information: Portions Copyright [yyyy] [name of copyright owner]
18*355b4669Sjacobs  *
19*355b4669Sjacobs  * CDDL HEADER END
20*355b4669Sjacobs  */
21*355b4669Sjacobs 
22*355b4669Sjacobs /*
23*355b4669Sjacobs  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
24*355b4669Sjacobs  * Use is subject to license terms.
25*355b4669Sjacobs  *
26*355b4669Sjacobs  */
27*355b4669Sjacobs 
28*355b4669Sjacobs /* $Id: cups-accept-jobs.c 146 2006-03-24 00:26:54Z njacobs $ */
29*355b4669Sjacobs 
30*355b4669Sjacobs #pragma ident	"%Z%%M%	%I%	%E% SMI"
31*355b4669Sjacobs 
32*355b4669Sjacobs #include <stdio.h>
33*355b4669Sjacobs #include <papi.h>
34*355b4669Sjacobs #include <ipp.h>
35*355b4669Sjacobs #include <ipp-listener.h>
36*355b4669Sjacobs 
37*355b4669Sjacobs papi_status_t
38*355b4669Sjacobs cups_accept_jobs(papi_service_t svc, papi_attribute_t **request,
39*355b4669Sjacobs 		papi_attribute_t ***response)
40*355b4669Sjacobs {
41*355b4669Sjacobs 	papi_status_t status;
42*355b4669Sjacobs 	papi_attribute_t **operational = NULL;
43*355b4669Sjacobs 
44*355b4669Sjacobs 	char *queue = NULL;
45*355b4669Sjacobs 
46*355b4669Sjacobs 	/* Get operational attributes from the request */
47*355b4669Sjacobs 	(void) papiAttributeListGetCollection(request, NULL,
48*355b4669Sjacobs 				"operational-attributes-group", &operational);
49*355b4669Sjacobs 
50*355b4669Sjacobs 	/*
51*355b4669Sjacobs 	 * The operational-attributes-group must contain:
52*355b4669Sjacobs 	 *	printer-uri
53*355b4669Sjacobs 	 */
54*355b4669Sjacobs 	get_printer_id(operational, &queue, NULL);
55*355b4669Sjacobs 	if (queue == NULL) {
56*355b4669Sjacobs 		ipp_set_status(response, status, "printer-uri: %s",
57*355b4669Sjacobs 			papiStatusString(status));
58*355b4669Sjacobs 		return (PAPI_BAD_REQUEST);
59*355b4669Sjacobs 	}
60*355b4669Sjacobs 
61*355b4669Sjacobs 	if ((status = papiPrinterResume(svc, queue)) != PAPI_OK) {
62*355b4669Sjacobs 		ipp_set_status(response, status, "accept failed: %s: %s",
63*355b4669Sjacobs 				(queue ? queue : "(null)"),
64*355b4669Sjacobs 				ipp_svc_status_mesg(svc, status));
65*355b4669Sjacobs 	}
66*355b4669Sjacobs 
67*355b4669Sjacobs 	return (status);
68*355b4669Sjacobs }
69