]> git.sur5r.net Git - bacula/rescue/blob - rescue/linux/cdrom/yaird-0.0.5/perl/PciDev.pm
Initial revision
[bacula/rescue] / rescue / linux / cdrom / yaird-0.0.5 / perl / PciDev.pm
1 #!perl -w
2 #
3 # PciDev -- the probed values for a PCI device, as found in /sys.
4 #   Copyright (C) 2005  Erik van Konijnenburg
5 #
6 #   This program is free software; you can redistribute it and/or modify
7 #   it under the terms of the GNU General Public License as published by
8 #   the Free Software Foundation; either version 2 of the License, or
9 #   (at your option) any later version.
10 #
11 #   This program is distributed in the hope that it will be useful,
12 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #   GNU General Public License for more details.
15 #
16 #   You should have received a copy of the GNU General Public License
17 #   along with this program; if not, write to the Free Software
18 #   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 #
20 use strict;
21 use warnings;
22 use Base;
23 package PciDev;
24 use base 'Obj';
25
26 sub fill {
27         my $self = shift;
28         $self->SUPER::fill();
29         $self->takeArgs ('path');
30         my $path = $self->path;
31         $self->{vendor} = Base::getHexFile ("$path/vendor");
32         $self->{device} = Base::getHexFile ("$path/device");
33         $self->{subvendor} = Base::getHexFile ("$path/subsystem_vendor");
34         $self->{subdevice} = Base::getHexFile ("$path/subsystem_device");
35         $self->{class} = Base::getHexFile ("$path/class");
36 }
37
38 sub path        { return $_[0]->{path}; }
39 sub vendor      { return $_[0]->{vendor}; }
40 sub device      { return $_[0]->{device}; }
41 sub subvendor   { return $_[0]->{subvendor}; }
42 sub subdevice   { return $_[0]->{subdevice}; }
43 sub class       { return $_[0]->{class}; }
44
45
46 1;