org.cups4j.operations.ipp.IppHoldJobOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cups4j Show documentation
Show all versions of cups4j Show documentation
Java printing library for CUPS/IPP
package org.cups4j.operations.ipp;
/**
* Copyright (C) 2011 Harald Weyhing
*
* This program is free software; you can redistribute it and/or modify it under the terms of the
* GNU Lesser General Public License as published by the Free Software Foundation; either version 3
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
* even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* See the GNU Lesser General Public License for more details. You should have received a copy of
* the GNU Lesser General Public License along with this program; if not, see
* .
*/
import java.io.UnsupportedEncodingException;
import java.net.URL;
import java.nio.ByteBuffer;
import java.util.HashMap;
import java.util.Map;
import org.cups4j.CupsClient;
import org.cups4j.PrintRequestResult;
import org.cups4j.operations.IppOperation;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import ch.ethz.vppserver.ippclient.IppResult;
import ch.ethz.vppserver.ippclient.IppTag;
public class IppHoldJobOperation extends IppOperation {
private static final Logger LOG = LoggerFactory.getLogger(IppHoldJobOperation.class);
public IppHoldJobOperation() {
operationID = 0x000C;
bufferSize = 8192;
}
public IppHoldJobOperation(int port) {
this();
this.ippPort = port;
}
/**
*
* @param url
* printer-uri
* @param map
* attributes
* i.e.job-name,ipp-attribute-fidelity,document-name,compression,
* document -format,document-natural-language,job-impressions
* ,job-media-sheets, job-template-attributes
* @return IPP header
* @throws UnsupportedEncodingException
*/
public ByteBuffer getIppHeader(URL uri, Map map) throws UnsupportedEncodingException {
if (uri == null) {
LOG.error("IppHoldJobOperation.getIppHeader(): uri is null");
return null;
}
ByteBuffer ippBuf = ByteBuffer.allocateDirect(bufferSize);
ippBuf = IppTag.getOperation(ippBuf, operationID);
// ippBuf = IppTag.getUri(ippBuf, "job-uri", stripPortNumber(url));
if (map == null) {
ippBuf = IppTag.getEnd(ippBuf);
ippBuf.flip();
return ippBuf;
}
if (map.get("job-id") == null) {
ippBuf = IppTag.getUri(ippBuf, "job-uri", stripPortNumber(uri));
} else {
ippBuf = IppTag.getUri(ippBuf, "printer-uri", stripPortNumber(uri));
int jobId = Integer.parseInt(map.get("job-id"));
ippBuf = IppTag.getInteger(ippBuf, "job-id", jobId);
}
ippBuf = IppTag.getNameWithoutLanguage(ippBuf, "requesting-user-name", map.get("requesting-user-name"));
ippBuf = IppTag.getEnd(ippBuf);
ippBuf.flip();
return ippBuf;
}
/**
* Cancels a print job on the IPP server running on the given host.
*
* @param hostname
* @param userName
* @param jobID
* @param message
* @return true on successful cancelation otherwise false.
* @throws Exception
*/
public boolean holdJob(String hostname, String userName, int jobID) throws Exception {
Map map = new HashMap();
if (userName == null) {
userName = CupsClient.DEFAULT_USER;
}
map.put("requesting-user-name", userName);
URL url = new URL("http://" + hostname + "/jobs/" + Integer.toString(jobID));
map.put("job-uri", url.toString());
IppResult result = request(url, map);
// IppResultPrinter.print(result);
return new PrintRequestResult(result).isSuccessfulResult();
}
}