355b4669e025ff377602b6fc7caaf30dbc218371jacobs/*
355b4669e025ff377602b6fc7caaf30dbc218371jacobs * CDDL HEADER START
355b4669e025ff377602b6fc7caaf30dbc218371jacobs *
355b4669e025ff377602b6fc7caaf30dbc218371jacobs * The contents of this file are subject to the terms of the
355b4669e025ff377602b6fc7caaf30dbc218371jacobs * Common Development and Distribution License (the "License").
355b4669e025ff377602b6fc7caaf30dbc218371jacobs * You may not use this file except in compliance with the License.
355b4669e025ff377602b6fc7caaf30dbc218371jacobs *
355b4669e025ff377602b6fc7caaf30dbc218371jacobs * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
355b4669e025ff377602b6fc7caaf30dbc218371jacobs * or http://www.opensolaris.org/os/licensing.
355b4669e025ff377602b6fc7caaf30dbc218371jacobs * See the License for the specific language governing permissions
355b4669e025ff377602b6fc7caaf30dbc218371jacobs * and limitations under the License.
355b4669e025ff377602b6fc7caaf30dbc218371jacobs *
355b4669e025ff377602b6fc7caaf30dbc218371jacobs * When distributing Covered Code, include this CDDL HEADER in each
355b4669e025ff377602b6fc7caaf30dbc218371jacobs * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
355b4669e025ff377602b6fc7caaf30dbc218371jacobs * If applicable, add the following below this CDDL HEADER, with the
355b4669e025ff377602b6fc7caaf30dbc218371jacobs * fields enclosed by brackets "[]" replaced with your own identifying
355b4669e025ff377602b6fc7caaf30dbc218371jacobs * information: Portions Copyright [yyyy] [name of copyright owner]
355b4669e025ff377602b6fc7caaf30dbc218371jacobs *
355b4669e025ff377602b6fc7caaf30dbc218371jacobs * CDDL HEADER END
355b4669e025ff377602b6fc7caaf30dbc218371jacobs */
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
355b4669e025ff377602b6fc7caaf30dbc218371jacobs/*
355b4669e025ff377602b6fc7caaf30dbc218371jacobs * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
355b4669e025ff377602b6fc7caaf30dbc218371jacobs * Use is subject to license terms.
355b4669e025ff377602b6fc7caaf30dbc218371jacobs *
355b4669e025ff377602b6fc7caaf30dbc218371jacobs */
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
355b4669e025ff377602b6fc7caaf30dbc218371jacobs/* $Id: cancel-job.c 146 2006-03-24 00:26:54Z njacobs $ */
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
355b4669e025ff377602b6fc7caaf30dbc218371jacobs#pragma ident "%Z%%M% %I% %E% SMI"
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
355b4669e025ff377602b6fc7caaf30dbc218371jacobs#include <stdio.h>
355b4669e025ff377602b6fc7caaf30dbc218371jacobs#include <papi.h>
355b4669e025ff377602b6fc7caaf30dbc218371jacobs#include <ipp.h>
355b4669e025ff377602b6fc7caaf30dbc218371jacobs#include <ipp-listener.h>
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
355b4669e025ff377602b6fc7caaf30dbc218371jacobspapi_status_t
355b4669e025ff377602b6fc7caaf30dbc218371jacobsipp_cancel_job(papi_service_t svc, papi_attribute_t **request,
355b4669e025ff377602b6fc7caaf30dbc218371jacobs papi_attribute_t ***response)
355b4669e025ff377602b6fc7caaf30dbc218371jacobs{
355b4669e025ff377602b6fc7caaf30dbc218371jacobs papi_status_t status;
355b4669e025ff377602b6fc7caaf30dbc218371jacobs papi_attribute_t **operational = NULL;
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
355b4669e025ff377602b6fc7caaf30dbc218371jacobs char *message = NULL;
355b4669e025ff377602b6fc7caaf30dbc218371jacobs char *queue = NULL;
355b4669e025ff377602b6fc7caaf30dbc218371jacobs int id = -1;
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
355b4669e025ff377602b6fc7caaf30dbc218371jacobs /* Get operational attributes from the request */
355b4669e025ff377602b6fc7caaf30dbc218371jacobs (void) papiAttributeListGetCollection(request, NULL,
355b4669e025ff377602b6fc7caaf30dbc218371jacobs "operational-attributes-group", &operational);
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
355b4669e025ff377602b6fc7caaf30dbc218371jacobs /*
355b4669e025ff377602b6fc7caaf30dbc218371jacobs * the operational-attributes-group must contain:
355b4669e025ff377602b6fc7caaf30dbc218371jacobs * job-uri (or printer-uri/job-id)
355b4669e025ff377602b6fc7caaf30dbc218371jacobs */
355b4669e025ff377602b6fc7caaf30dbc218371jacobs get_printer_id(operational, &queue, &id);
355b4669e025ff377602b6fc7caaf30dbc218371jacobs if (id < 0) {
355b4669e025ff377602b6fc7caaf30dbc218371jacobs ipp_set_status(response, PAPI_BAD_REQUEST,
355b4669e025ff377602b6fc7caaf30dbc218371jacobs "missing job-uri or job-id");
355b4669e025ff377602b6fc7caaf30dbc218371jacobs return (PAPI_BAD_REQUEST);
355b4669e025ff377602b6fc7caaf30dbc218371jacobs } else if (queue == NULL) {
355b4669e025ff377602b6fc7caaf30dbc218371jacobs ipp_set_status(response, PAPI_BAD_REQUEST,
355b4669e025ff377602b6fc7caaf30dbc218371jacobs "missing printer-uri or job-uri");
355b4669e025ff377602b6fc7caaf30dbc218371jacobs return (PAPI_BAD_REQUEST);
355b4669e025ff377602b6fc7caaf30dbc218371jacobs }
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
355b4669e025ff377602b6fc7caaf30dbc218371jacobs /*
355b4669e025ff377602b6fc7caaf30dbc218371jacobs * the operational-attributes-group may contain:
355b4669e025ff377602b6fc7caaf30dbc218371jacobs * message
355b4669e025ff377602b6fc7caaf30dbc218371jacobs */
355b4669e025ff377602b6fc7caaf30dbc218371jacobs (void) papiAttributeListGetString(operational, NULL,
355b4669e025ff377602b6fc7caaf30dbc218371jacobs "message", &message);
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
355b4669e025ff377602b6fc7caaf30dbc218371jacobs status = papiJobCancel(svc, queue, id);
355b4669e025ff377602b6fc7caaf30dbc218371jacobs if (status != PAPI_OK) {
355b4669e025ff377602b6fc7caaf30dbc218371jacobs ipp_set_status(response, status,
355b4669e025ff377602b6fc7caaf30dbc218371jacobs "cancel failed: %s-%d: %s",
355b4669e025ff377602b6fc7caaf30dbc218371jacobs (queue ? queue : "(null)"), id,
355b4669e025ff377602b6fc7caaf30dbc218371jacobs ipp_svc_status_mesg(svc, status));
355b4669e025ff377602b6fc7caaf30dbc218371jacobs } else if (message != NULL) { /* add unsupported attribute group */
355b4669e025ff377602b6fc7caaf30dbc218371jacobs papi_attribute_t **unsupported = NULL;
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
355b4669e025ff377602b6fc7caaf30dbc218371jacobs papiAttributeListAddValue(&unsupported, PAPI_ATTR_EXCL,
355b4669e025ff377602b6fc7caaf30dbc218371jacobs "message", PAPI_COLLECTION, NULL);
355b4669e025ff377602b6fc7caaf30dbc218371jacobs (void) papiAttributeListAddCollection(response,
355b4669e025ff377602b6fc7caaf30dbc218371jacobs PAPI_ATTR_REPLACE, "unsupported-attributes-group",
355b4669e025ff377602b6fc7caaf30dbc218371jacobs unsupported);
355b4669e025ff377602b6fc7caaf30dbc218371jacobs papiAttributeListFree(unsupported);
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
355b4669e025ff377602b6fc7caaf30dbc218371jacobs status = PAPI_OK_SUBST;
355b4669e025ff377602b6fc7caaf30dbc218371jacobs ipp_set_status(response, status,
355b4669e025ff377602b6fc7caaf30dbc218371jacobs "unsupported attribute in request");
355b4669e025ff377602b6fc7caaf30dbc218371jacobs }
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
355b4669e025ff377602b6fc7caaf30dbc218371jacobs return (status);
355b4669e025ff377602b6fc7caaf30dbc218371jacobs}