I'm working on the printing system, and need to add arbitrary text to each printed document (like author, document hash, some sysvars and else). We use Java Printing Service (javax.print) as printing client and Cups as server.
Cups has some procedures of document postprocessing called "filters".
Filter - is a program, that will be launched by Cups. Cups passes filter some params - "job attributes" among them.
So, I decided to pass custom attributes from java to cups and add attributes as text to document in filter. Everything works without exception, document is printed, but I don't get my attributes in filter. They are not even passed to Cups (saw that in packet sniffer).
I already used getSupportedAttributeCategories() to see the list of supported (by printer?) attributes. Maybe I should somehow add mine to that list, but I don't understand how.
I'm not limited to "attributes", I just need to pass arbitary data from java to Cups filter. How can I do it?
My java code is like:
MyAttrSet attrs = new MyAttrSet();
attrs.add(new MyAttr(42));
attrs.add(new Copies(18));
PrintService service = PrintServiceLookup.lookupDefaultPrintService();
DocFlavor flavor = DocFlavor.INPUT_STREAM.AUTOSENSE;
Doc doc = new SimpleDoc(is, flavor, null);
DocPrintJob job = service.createPrintJob();
job.print(doc, attrs);
Filter is a simple bash script, that prints everything passed to it:
#!/bin/bash
echo "All args:" > /tmp/f1.log
for var in "$@"
do
echo "$var, " >> /tmp/f1.log
done
/tmp/f1.log looks like:
All args:
87,
oroboros,
Java Printing,
18, <- number of pages is passed! But not MyAttr
some useless crap like job uuid and else...
MyAttr:
class MyAttr extends IntegerSyntax implements PrintRequestAttribute {
protected MyAttr(int value) {
super(value);
}
public Class<? extends Attribute> getCategory() {
// TODO Auto-generated method stub
return MyAttr.class;
}
public String getName() {
// TODO Auto-generated method stub
return "somemycustop5";
}
}