vote up 0 vote down star

I need to know each time a Mac print job is created/completed, plus some information about that job (what was printed, pages, copies, etc).

The best method I've come up with thus far is to use kqueue() on /var/spool/cups/ and then parse the c##### files as they're created, but I'm wondering if there's a better way.

flag

80% accept rate
This might get more responses on serverfault.com – Ben S Sep 17 at 17:35

1 Answer

vote up 1 vote down check

I'd think about creating a filter that you can put into the CUPS pipeline that collects this information and stores it for you (say in a database). Then you can access the database to get the information using any standard database access mechanism. Basically the filter is just a command-line program that gets a number of parameters passed to it from CUPS and needs to read input on stdin and write it to stdout. You can find more information at http://www.cups.org/documentation.php/api-filter.html.

link|flag
I like this idea a lot. Any ideas on how I could tell when a job had been canceled using this route? – Lawrence Johnston Sep 17 at 22:14
I think that there are some methods to communicate with the backend. I haven't actually implemented a filter for CUPS, though I did work on some LPR filters back in the day. See the section on communicating with the backend. You'd have to be working with a backend that writes device status back to the filter, but I would think that most do so that page counting software can easily hook into it and do the right thing. – tvanfosson Sep 17 at 23:14
Excellent, thank you very much. – Lawrence Johnston Sep 17 at 23:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.