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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
# $Id: Input.pm 1179 2006-08-05 08:30:57Z warly $
package Youri::Check::Input;
=head1 NAME
Youri::Check::Input - Abstract input plugin
=head1 DESCRIPTION
This abstract class defines input plugin interface.
=cut
use warnings;
use strict;
use Carp;
use Youri::Utils;
use constant WARNING => 'warning';
use constant ERROR => 'error';
=head1 CLASS METHODS
=head2 new(%args)
Creates and returns a new Youri::Check::Input object.
No generic parameters (subclasses may define additional ones).
Warning: do not call directly, call subclass constructor instead.
=cut
sub new {
my $class = shift;
croak "Abstract class" if $class eq __PACKAGE__;
my %options = (
id => '', # object id
test => 0, # test mode
verbose => 0, # verbose mode
resolver => undef, # maintainer resolver
preferences => undef, # maintainer preferences
@_
);
if ($options{resolver}) {
croak "resolver should be a Youri::Check::Maintainer::Resolver object" unless $options{resolver}->isa("Youri::Check::Maintainer::Resolver");
}
if ($options{preferences}) {
croak "preferences should be a Youri::Check::Maintainer::Preferences object" unless $options{preferences}->isa("Youri::Check::Maintainer::Preferences");
}
my $self = bless {
_id => $options{id},
_test => $options{test},
_verbose => $options{verbose},
_resolver => $options{resolver},
_preferences => $options{preferences},
}, $class;
$self->_init(%options);
return $self;
}
sub _init {
# do nothing
}
=head1 INSTANCE METHODS
=head2 get_id()
Returns plugin identity.
=cut
sub get_id {
my ($self) = @_;
croak "Not a class method" unless ref $self;
return $self->{_id};
}
=head2 prepare(@medias)
Perform optional preliminary initialisation, using given list of
<Youri::Media> objects.
=cut
sub prepare {
# do nothing
}
=head2 run($media, $resultset)
Check the packages from given L<Youri::Media> object, and store the
result in given L<Youri::Check::Resultset> object.
=head1 SUBCLASSING
The following methods have to be implemented:
=over
=item run
=back
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2002-2006, YOURI project
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
=cut
1;
|