summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/listsupportedprinters
blob: efd3344098ae153c7931980ca9720f0d00fb6236 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/perl
#
# Copyright (C) 2003-2004 Mandrakesoft
#
# Till Kamppeter <till@mandrakesoft.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License Version 2 as
# published by the Free Software Foundation.
#
# 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#

use strict;
use lib qw(/usr/lib/libDrakX);
use standalone;
use printer::main;

# Data structure for printer data
my $printer;

# printer::main::read_printer_db() needs a spooler name ...
$printer->{SPOOLER} = 'cups';

# ... and the user mode (expert mode gives us more info)
$printer->{expert} = 1;

# Read the command line options
my $commandline = join ('', @ARGV);

# HELP !!!
$commandline =~ /-(h\b|help)/i and print "
Uasge: $ARGV[0] [--only-models] [--help]

Shows list of supported printers and the drivers which support them.
Manufacturer-supplied PPDs of native PostScript printers, manually added
drivers, or installed updates are taken into account.

--only-models: Show only the model names, not the drivers

--help: This help page.

" and exit 0;

# Do we only need models and not drivers? Beginner's mode gives us the
# needed info then.
$commandline =~ /-only-models/i and $printer->{expert} = 0;

# Build the list of supported printers
printer::main::read_printer_db($printer, $printer->{SPOOLER});

# Show the list on STDOUT
foreach my $item (sort keys %printer::main::thedb) {
    print "$item\n";
}