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 121 122 123 124
|
# NAME
MooseX::ConfigFromFile - An abstract Moose role for setting attributes from a configfile
# VERSION
version 0.13
# SYNOPSIS
########
## A real role based on this abstract role:
########
package MooseX::SomeSpecificConfigRole;
use Moose::Role;
with 'MooseX::ConfigFromFile';
use Some::ConfigFile::Loader ();
sub get_config_from_file {
my ($class, $file) = @_;
my $options_hashref = Some::ConfigFile::Loader->load($file);
return $options_hashref;
}
########
## A class that uses it:
########
package Foo;
use Moose;
with 'MooseX::SomeSpecificConfigRole';
# optionally, default the configfile:
sub _get_default_configfile { '/tmp/foo.yaml' }
# ... insert your stuff here ...
########
## A script that uses the class with a configfile
########
my $obj = Foo->new_with_config(configfile => '/etc/foo.yaml', other_opt => 'foo');
# DESCRIPTION
This is an abstract role which provides an alternate constructor for creating
objects using parameters passed in from a configuration file. The
actual implementation of reading the configuration file is left to
concrete sub-roles.
It declares an attribute `configfile` and a class method `new_with_config`,
and requires that concrete roles derived from it implement the class method
`get_config_from_file`.
Attributes specified directly as arguments to `new_with_config` supersede those
in the configfile.
[MooseX::Getopt](https://metacpan.org/pod/MooseX::Getopt) knows about this abstract role, and will use it if available
to load attributes from the file specified by the command line flag `--configfile`
during its normal `new_with_options`.
# Attributes
## configfile
This is a [Path::Tiny](https://metacpan.org/pod/Path::Tiny) object which can be coerced from a regular path
string or any object that supports stringification.
This is the file your attributes are loaded from. You can add a default
configfile in the consuming class and it will be honored at the appropriate
time; see below at ["_get_default_configfile"](#_get_default_configfile).
If you have [MooseX::Getopt](https://metacpan.org/pod/MooseX::Getopt) installed, this attribute will also have the
`Getopt` trait supplied, so you can also set the configfile from the
command line.
# Class Methods
## new\_with\_config
This is an alternate constructor, which knows to look for the `configfile` option
in its arguments and use that to set attributes. It is much like [MooseX::Getopts](https://metacpan.org/pod/MooseX::Getopts)'s
`new_with_options`. Example:
my $foo = SomeClass->new_with_config(configfile => '/etc/foo.yaml');
Explicit arguments will override anything set by the configfile.
## get\_config\_from\_file
This class method is not implemented in this role, but it is required of all
classes or roles that consume this role.
Its two arguments are the class name and the configfile, and it is expected to return
a hashref of arguments to pass to `new()` which are sourced from the configfile.
## \_get\_default\_configfile
This class method is not implemented in this role, but can and should be defined
in a consuming class or role to return the default value of the configfile (if not
passed into the constructor explicitly).
# AUTHOR
Brandon L. Black, <blblack@gmail.com>
# COPYRIGHT AND LICENSE
This software is copyright (c) 2013 by Brandon L. Black.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
# CONTRIBUTORS
- Brandon L Black <blblack@gmail.com>
- Chris Prather <chris@prather.org>
- Karen Etheridge <ether@cpan.org>
- Tomas Doran <bobtfish@bobtfish.net>
- Yuval Kogman <nothingmuch@woobling.org>
|