Fixed docs to show how to override configfile. Also tests!
[gitmo/MooseX-ConfigFromFile.git] / lib / MooseX / ConfigFromFile.pm
CommitLineData
c35b639e 1package MooseX::ConfigFromFile;
2
3use Moose::Role;
4use MooseX::Types::Path::Class qw( File );
0e88ec88 5use Try::Tiny qw/ try /;
870afbfa 6use Carp qw(croak);
bc5ab785 7use namespace::autoclean;
8
22b28fb3 9our $VERSION = '0.04';
870afbfa 10
c35b639e 11requires 'get_config_from_file';
12
13has configfile => (
14 is => 'ro',
15 isa => File,
16 coerce => 1,
17 predicate => 'has_configfile',
18);
19
20sub new_with_config {
21 my ($class, %opts) = @_;
22
fc44be6f 23 my $configfile;
24
25 if(defined $opts{configfile}) {
26 $configfile = $opts{configfile}
27 }
28 else {
7acf2fe9 29 # This would only succeed if the consumer had defined a new configfile
30 # sub to override the generated reader
f1040206 31 $configfile = try { $class->configfile };
7acf2fe9 32
33 # this is gross, but since a lot of users have swapped in their own
34 # default subs, we have to keep calling it rather than calling a
35 # builder sub directly - and it might not even be a coderef either
36 my $cfmeta = $class->meta->find_attribute_by_name('configfile');
0e88ec88 37 $configfile ||= $cfmeta->default if $cfmeta->has_default;
7acf2fe9 38
56e4351b 39 if (ref $configfile eq 'CODE') {
83f0ce54 40 $configfile = $configfile->($class);
56e4351b 41 }
fc44be6f 42 }
43
0e88ec88 44 if (defined $configfile) {
870afbfa 45 my $hash = $class->get_config_from_file($configfile);
46
47 no warnings 'uninitialized';
48 croak "get_config_from_file($configfile) did not return a hash (got $hash)"
49 unless ref $hash eq 'HASH';
50
51 %opts = (%$hash, %opts);
c35b639e 52 }
fc44be6f 53
c35b639e 54 $class->new(%opts);
55}
56
57no Moose::Role; 1;
58
59__END__
60
61=pod
62
63=head1 NAME
64
65MooseX::ConfigFromFile - An abstract Moose role for setting attributes from a configfile
66
67=head1 SYNOPSIS
68
69 ########
70 ## A real role based on this abstract role:
71 ########
72
73 package MooseX::SomeSpecificConfigRole;
74 use Moose::Role;
75
76 with 'MooseX::ConfigFromFile';
77
78 use Some::ConfigFile::Loader ();
79
80 sub get_config_from_file {
81 my ($class, $file) = @_;
82
83 my $options_hashref = Some::ConfigFile::Loader->load($file);
84
85 return $options_hashref;
86 }
87
88
89 ########
90 ## A class that uses it:
91 ########
92 package Foo;
93 use Moose;
94 with 'MooseX::SomeSpecificConfigRole';
95
fc44be6f 96 # optionally, default the configfile:
7acf2fe9 97 around configfile => sub { '/tmp/foo.yaml' };
fc44be6f 98
c35b639e 99 # ... insert your stuff here ...
100
101 ########
102 ## A script that uses the class with a configfile
103 ########
104
105 my $obj = Foo->new_with_config(configfile => '/etc/foo.yaml', other_opt => 'foo');
106
107=head1 DESCRIPTION
108
109This is an abstract role which provides an alternate constructor for creating
110objects using parameters passed in from a configuration file. The
111actual implementation of reading the configuration file is left to
112concrete subroles.
113
114It declares an attribute C<configfile> and a class method C<new_with_config>,
115and requires that concrete roles derived from it implement the class method
116C<get_config_from_file>.
117
fc44be6f 118Attributes specified directly as arguments to C<new_with_config> supercede those
119in the configfile.
120
c35b639e 121L<MooseX::Getopt> knows about this abstract role, and will use it if available
122to load attributes from the file specified by the commandline flag C<--configfile>
123during its normal C<new_with_options>.
124
125=head1 Attributes
126
127=head2 configfile
128
129This is a L<Path::Class::File> object which can be coerced from a regular pathname
fc44be6f 130string. This is the file your attributes are loaded from. You can add a default
7acf2fe9 131configfile in the consuming class and it will be honored at the appropriate time
132(note that a simple sub declaration is not sufficient, as there is already a
133sub by that name being added by Moose as the attribute reader)
fc44be6f 134
7acf2fe9 135 around configfile => sub { '/etc/myapp.yaml' };
c35b639e 136
4d0a4f55 137Note that you can alternately just provide a C<configfile> method which returns
138the config file when called - this will be used in preference to the default of
139the attribute.
140
c35b639e 141=head1 Class Methods
142
143=head2 new_with_config
144
145This is an alternate constructor, which knows to look for the C<configfile> option
146in its arguments and use that to set attributes. It is much like L<MooseX::Getopts>'s
147C<new_with_options>. Example:
148
149 my $foo = SomeClass->new_with_config(configfile => '/etc/foo.yaml');
150
151Explicit arguments will overide anything set by the configfile.
152
153=head2 get_config_from_file
154
155This class method is not implemented in this role, but it is required of all subroles.
156Its two arguments are the classname and the configfile, and it is expected to return
fc44be6f 157a hashref of arguments to pass to C<new()> which are sourced from the configfile.
c35b639e 158
4d0a4f55 159=head1 COPYRIGHT
c35b639e 160
4d0a4f55 161Copyright (c) 2007 - 2009 the MooseX::ConfigFromFile "AUTHOR" and "CONTRIBUTORS" as listed below.
c35b639e 162
163=head1 AUTHOR
164
165Brandon L. Black, E<lt>blblack@gmail.comE<gt>
166
4d0a4f55 167=head1 CONTRIBUTORS
168
169=over
170
171=item Tomas Doran C<< <bobtfish@bobtfish.net> >> (current maintainer).
172
173=item Karen Etheridge
174
175=item Chris Prather
176
177=item Zbigniew Lukasiak
178
179=back
180
c35b639e 181=head1 LICENSE
182
183This library is free software; you can redistribute it and/or modify
184it under the same terms as Perl itself.
185
186=cut