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: set-job-attributes.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_set_job_attributes(papi_service_t svc, papi_attribute_t **request,
355b4669e025ff377602b6fc7caaf30dbc218371jacobs papi_attribute_t ***response, ipp_reader_t iread, void *fd)
355b4669e025ff377602b6fc7caaf30dbc218371jacobs{
355b4669e025ff377602b6fc7caaf30dbc218371jacobs papi_status_t status;
355b4669e025ff377602b6fc7caaf30dbc218371jacobs papi_stream_t s = NULL;
355b4669e025ff377602b6fc7caaf30dbc218371jacobs papi_job_t j = NULL;
355b4669e025ff377602b6fc7caaf30dbc218371jacobs papi_attribute_t **operational = NULL;
355b4669e025ff377602b6fc7caaf30dbc218371jacobs papi_attribute_t **job_attributes = NULL;
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
355b4669e025ff377602b6fc7caaf30dbc218371jacobs char *queue = NULL;
355b4669e025ff377602b6fc7caaf30dbc218371jacobs int32_t id = -1;
355b4669e025ff377602b6fc7caaf30dbc218371jacobs ssize_t rc;
355b4669e025ff377602b6fc7caaf30dbc218371jacobs char buf[BUFSIZ];
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
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 /* get the job-attributes-group attributes for the PAPI call */
355b4669e025ff377602b6fc7caaf30dbc218371jacobs papiAttributeListGetCollection(request, NULL,
355b4669e025ff377602b6fc7caaf30dbc218371jacobs "job-attributes-group", &job_attributes);
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
355b4669e025ff377602b6fc7caaf30dbc218371jacobs /* request job modification */
355b4669e025ff377602b6fc7caaf30dbc218371jacobs status = papiJobModify(svc, queue, id, job_attributes, &j);
355b4669e025ff377602b6fc7caaf30dbc218371jacobs if (status != PAPI_OK) {
355b4669e025ff377602b6fc7caaf30dbc218371jacobs ipp_set_status(response, status, "job modification: %s",
355b4669e025ff377602b6fc7caaf30dbc218371jacobs ipp_svc_status_mesg(svc, status));
355b4669e025ff377602b6fc7caaf30dbc218371jacobs return (status);
355b4669e025ff377602b6fc7caaf30dbc218371jacobs }
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
355b4669e025ff377602b6fc7caaf30dbc218371jacobs /* add the job attributes to the response in a job-attributes-group */
355b4669e025ff377602b6fc7caaf30dbc218371jacobs if (j != NULL) {
355b4669e025ff377602b6fc7caaf30dbc218371jacobs papi_to_ipp_job_group(response, request, PAPI_ATTR_REPLACE, j);
355b4669e025ff377602b6fc7caaf30dbc218371jacobs papiJobFree(j);
355b4669e025ff377602b6fc7caaf30dbc218371jacobs }
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
355b4669e025ff377602b6fc7caaf30dbc218371jacobs return (status);
355b4669e025ff377602b6fc7caaf30dbc218371jacobs}