source: client/bin/gbq @ 7cdd65d

debianmacno-cups
Last change on this file since 7cdd65d was 7cdd65d, checked in by Kyle Brogle <broglek@…>, 14 years ago

Implemented default queue in client scripts.
Queue argument now optional for gb{r,rm,q}, and also takes form of -q QUEUE
now.

gutenbach-client-config -sset-default QUEUE will set default queue

Updated manpages accordingly.

  • Property mode set to 100755
File size: 1.2 KB
Line 
1#!/usr/bin/perl
2
3# Written by Jessica Hamrick (C) 2010
4
5use strict;
6use warnings;
7
8use Net::CUPS;
9use Net::CUPS::Destination;
10use Getopt::Long;
11
12my $usage = "Usage: gbq [-q QUEUE]\n";
13
14my $q = "";
15GetOptions ('q|queue=s' => \$q);
16
17if (!$q) {
18    $q = "DEFAULT";
19}
20
21my $configpath = "$ENV{'HOME'}/.gutenbach/$q";
22if (! -e $configpath) {
23    print "Queue '$q' does not exist!  Did you forget to add it with 'gutenbach-client-config'?\n";
24    exit 1;
25}
26
27my ($host, $queue);
28
29if (-r $configpath) {
30    local $/;
31    my $fh;
32    open $fh, $configpath;
33    eval <$fh>;
34}
35
36my $cups = Net::CUPS->new();
37$cups->setServer("$host");
38my $printer = $cups->getDestination("$queue");
39
40unless( $printer){
41    print "Cannot access queue $q...do you have network connectivity and permission to view the queue?\n";
42    exit 1;
43}
44print "Queue listing for queue '$queue' on '$host'\n\n";
45print "Job ID\t\tOwner\t\tTitle\n";
46print "-----------------------------------------------------------------\n";
47
48my @jobs = $printer->getJobs(0, 0);
49my ($job_ref, $jobid);
50
51foreach $jobid(@jobs) 
52{       
53        $job_ref = $printer->getJob($jobid);
54        my $id = $job_ref->{'id'};
55        my $user = $job_ref->{'user'};
56        my $title = $job_ref->{'title'};
57
58        print "$id\t\t$user\t\t$title\n";
59}
Note: See TracBrowser for help on using the repository browser.