changes all issue tracking in preparation for switch to github issues
[bioperl-live.git] / Bio / Factory / ObjectFactory.pm
blobd0081cd7ae745e28b74d48b5f1aa13966f30e5a5
2 # BioPerl module for Bio::Factory::ObjectFactory
4 # Please direct questions and support issues to <bioperl-l@bioperl.org>
6 # Cared for by Hilmar Lapp <hlapp at gmx.net>
8 # Copyright Hilmar Lapp
10 # You may distribute this module under the same terms as perl itself
13 # (c) Hilmar Lapp, hlapp at gmx.net, 2003.
14 # (c) GNF, Genomics Institute of the Novartis Research Foundation, 2003.
16 # You may distribute this module under the same terms as perl itself.
17 # Refer to the Perl Artistic License (see the license accompanying this
18 # software package, or see http://www.perl.com/language/misc/Artistic.html)
19 # for the terms under which you may use, modify, and redistribute this module.
21 # THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
22 # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
23 # MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
26 # POD documentation - main docs before the code
28 =head1 NAME
30 Bio::Factory::ObjectFactory - Instantiates a new Bio::Root::RootI (or derived class) through a factory
32 =head1 SYNOPSIS
34 use Bio::Factory::ObjectFactory;
36 my $factory = Bio::Factory::ObjectFactory->new(-type => 'Bio::Ontology::GOterm');
37 my $term = $factory->create_object(-name => 'peroxisome',
38 -ontology => 'Gene Factory',
39 -identifier => 'GO:0005777');
42 =head1 DESCRIPTION
44 This object will build L<Bio::Root::RootI> objects generically.
46 =head1 FEEDBACK
48 =head2 Mailing Lists
50 User feedback is an integral part of the evolution of this and other
51 Bioperl modules. Send your comments and suggestions preferably to
52 the Bioperl mailing list. Your participation is much appreciated.
54 bioperl-l@bioperl.org - General discussion
55 http://bioperl.org/wiki/Mailing_lists - About the mailing lists
57 =head2 Support
59 Please direct usage questions or support issues to the mailing list:
61 I<bioperl-l@bioperl.org>
63 rather than to the module maintainer directly. Many experienced and
64 reponsive experts will be able look at the problem and quickly
65 address it. Please include a thorough description of the problem
66 with code and data examples if at all possible.
68 =head2 Reporting Bugs
70 Report bugs to the Bioperl bug tracking system to help us keep track
71 of the bugs and their resolution. Bug reports can be submitted via the
72 web:
74 https://github.com/bioperl/bioperl-live/issues
76 =head1 AUTHOR - Hilmar Lapp
78 Email hlapp at gmx.net
81 =head1 CONTRIBUTORS
83 This is mostly copy-and-paste with subsequent adaptation from
84 Bio::Seq::SeqFactory by Jason Stajich. Most credits should in fact go
85 to him.
87 =head1 APPENDIX
89 The rest of the documentation details each of the object methods.
90 Internal methods are usually preceded with a _
92 =cut
95 # Let the code begin...
98 package Bio::Factory::ObjectFactory;
99 use strict;
102 use base qw(Bio::Root::Root Bio::Factory::ObjectFactoryI);
104 =head2 new
106 Title : new
107 Usage : my $obj = Bio::Factory::ObjectFactory->new();
108 Function: Builds a new Bio::Factory::ObjectFactory object
109 Returns : Bio::Factory::ObjectFactory
110 Args : -type => string, name of a L<Bio::Root::RootI> derived class.
111 There is no default.
112 -interface => string, name of the interface or class any type
113 specified needs to at least implement.
114 The default is Bio::Root::RootI.
116 =cut
118 sub new {
119 my($class,@args) = @_;
121 my $self = $class->SUPER::new(@args);
123 my ($type,$interface) = $self->_rearrange([qw(TYPE INTERFACE)], @args);
125 $self->{'_loaded_types'} = {};
126 $self->interface($interface || "Bio::Root::RootI");
127 $self->type($type) if $type;
129 return $self;
133 =head2 create_object
135 Title : create_object
136 Usage : my $seq = $factory->create_object(<named parameters>);
137 Function: Instantiates a new object of the previously set type.
139 This object allows us to genericize the instantiation of
140 objects.
142 You must have provided -type at instantiation, or have
143 called type($mytype) before you can call this method.
145 Returns : an object of the type returned by type()
147 The return type is configurable using new(-type =>"..."),
148 or by calling $self->type("My::Fancy::Class").
149 Args : Initialization parameters specific to the type of
150 object we want. Check the POD of the class you set as type.
152 =cut
154 sub create_object {
155 my ($self,@args) = @_;
157 my $type = $self->type(); # type has already been loaded upon set
158 return $type->new(-verbose => $self->verbose, @args);
161 =head2 type
163 Title : type
164 Usage : $obj->type($newval)
165 Function: Get/set the type of object to be created.
167 This may be changed at any time during the lifetime of this
168 factory.
170 Returns : value of type (a string)
171 Args : newvalue (optional, a string)
174 =cut
176 sub type{
177 my $self = shift;
179 if(@_) {
180 my $type = shift;
181 if($type && (! $self->{'_loaded_types'}->{$type})) {
182 eval {
183 $self->_load_module($type);
185 if( $@ ) {
186 $self->throw("module for '$type' failed to load: ".
187 $@);
189 my $o = bless {},$type;
190 if(!$self->_validate_type($o)) { # this may throw an exception
191 $self->throw("'$type' is not valid for factory ".ref($self));
193 $self->{'_loaded_types'}->{$type} = 1;
195 return $self->{'type'} = $type;
197 return $self->{'type'};
200 =head2 interface
202 Title : interface
203 Usage : $obj->interface($newval)
204 Function: Get/set the interface or base class that supplied types
205 must at least implement (inherit from).
206 Example :
207 Returns : value of interface (a scalar)
208 Args : on set, new value (a scalar or undef, optional)
211 =cut
213 sub interface{
214 my $self = shift;
215 my $interface = shift;
217 if($interface) {
218 return $self->{'interface'} = $interface;
220 return $self->{'interface'};
223 =head2 _validate_type
225 Title : _validate_type
226 Usage : $factory->_validate_type($object)
227 Function: Called to let derived factories validate the type set
228 via type().
230 The default implementation here checks whether the supplied
231 object skeleton implements the interface set via -interface
232 upon factory instantiation.
234 Example :
235 Returns : TRUE if the type is to be considered valid, and FALSE otherwise.
236 Instead of returning FALSE this method may also just throw
237 an informative exception.
239 The default implementation here will throw an exception
240 if the supplied object does not inherit from the interface
241 provided by the interface() method.
243 Args : A hash reference blessed into the specified type, allowing
244 queries like isa().
247 =cut
249 sub _validate_type{
250 my ($self,$obj) = @_;
252 if(! $obj->isa($self->interface())) {
253 $self->throw("invalid type: '".ref($obj).
254 "' does not implement '".$self->interface()."'");
256 return 1;
259 #####################################################################
260 # aliases for naming consistency or other reasons #
261 #####################################################################
263 *create = \&create_object;