The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

AI::FreeHAL::Config - Load and save configuration files in a standard format

VERSION

This document describes AI::FreeHAL::Config version 0.0.4

SYNOPSIS

    use AI::FreeHAL::Config;

    # Load named config file into specified hash...
    read_config 'demo2.cfg' => my %config;

    # Extract the value of a key/value pair from a specified section...
    $config_value = $config{Section_label}{key};

    # Change (or create) the value of a key/value pair...
    $config{Other_section_label}{other_key} = $new_val;

    # Update the config file from which this hash was loaded...
    write_config %config;

    # Write the config information to another file as well...
    write_config %config, $other_file_name;

  

DESCRIPTION

This module implements yet another damn configuration-file system.

The configuration language is deliberately simple and limited, and the module works hard to preserve as much information (section order, comments, etc.) as possible when a configuration file is updated.

See Chapter 19 of "Perl Best Practices" (O'Reilly, 2005) for the rationale for this approach.

Configuration language

The configuration language is a slight extension of the Windows INI format.

Comments

A comment starts with a # character and runs to the end of the same line:

    # This is a comment

Comments can be placed almost anywhere in a configuration file, except inside a section label, or in the key or value of a configuration variable:

    # Valid comment
    [ # Not a comment, just a weird section label ]

    # Valid comment
    key: value  # Not a comment, just part of the value

Sections

A configuration file consists of one or more sections, each of which is introduced by a label in square brackets:

    [SECTION1]        # Almost anything is a valid section label

    [SECTION 2]       # Internal whitespace is allowed (except newlines)

    [%^$%^&!!!]       # The label doesn't have to be alphanumeric

    [ETC. ETC. AS MANY AS YOU WANT]

The only restriction on section labels is that they must be by themselves on a single line (except for any surrounding whitespace or trailing comments), and they cannot contain the character ].

Every line after a given section label until the next section label (or the end of the config file) belongs to the given section label. If no section label is currently in effect, the current section has an empty label. In other words, there is an implicit:

    []                # Label is the empty string

at the start of each config file.

Configuration variables

Each non-empty line within a section must consist of the specification of a configuration variable. Each such variable consists of a key and a string value. For example:

    name: George
     age: 47

    his weight! : 185

The key consists of every character (including internal whitespace) from the start of the line until the key/value separator. So, the previous example declares three keys: 'name', 'age', and 'his weight!'.

Note that whitespace before and after the key is removed. This makes it easier to format keys cleanly:

           name : George
            age : 47
    his weight! : 185

The key/value separator can be either a colon (as above) or an equals sign, like so:

           name= George
            age=  47
    his weight! = 185

Both types of separators can be used in the same file, but neither can be used as part of a key. Newlines are not allowed in keys either.

When writing out a config file, AI::FreeHAL::Config tries to preserve whichever separator was used in the original data (if that data was read in). New data is written back with a colon as its default separator, unless you specify otherwise when the module is loaded:

    use AI::FreeHAL::Config { def_sep => '=' };

Everything from the first non-whitespace character after the separator, up to the end of the line, is treated as the value for the config variable. So all of the above examples define the same three values: 'George', '47', and '185'.

In other words, any whitespace immediately surrounding the separator character is part of the separator, not part of the key or value.

Note that you can't put a comment on the same line as a configuration variable. The # etc. is simply considered part of the value:

    [Delimiters]

    block delims:    { }
    string delims:   " "
    comment delims:  # \n

You can comment a config var on the preceding or succeeding line:

    [Delimiters]

    # Use braces to delimit blocks...
    block delims:    { }

    # Use double quotes to delimit strings

    string delims:   " "

    # Use octothorpe/newline to delimit comments
    comment delims:  # \n
    

Multi-line configuration values

A single value can be continued over two or more lines. If the line immediately after a configuration variable starts with the separator character used in the variable's definition, then the value of the variable continues on that line. For example:

    address: 742 Evergreen Terrace
           : Springfield
           : USA

The newlines then form part of the value, so the value specified in the previous example is: "742 Evergreen Terrace\nSpringfield\nUSA"

Note that the second and subsequent lines of a continued value are considered to start where the whitespace after the original separator finished, not where the whitespace after their own separator finishes. For example, if the previous example had been:

    address: 742 Evergreen Terrace
           :   Springfield
           :     USA

then the value would be:

    "742 Evergreen Terrace\n  Springfield\n    USA"

If a continuation line has less leading whitespace that the first line:

    address:   742 Evergreen Terrace
           :  Springfield
           : USA

it's treated as having no leading whitespace:

    "742 Evergreen Terrace\nSpringfield\nUSA"

Multi-part configuration values

If the particular key appears more than once in the same section, it is considered to be part of the same configuration variable. The value of that configuration value is then a list, containing all the individual values for each instance of the key. For example, given the definition:

    cast: Homer
    cast: Marge
    cast: Lisa
    cast: Bart
    cast: Maggie

the corresponding value of the 'cast' configuration variable is: ['Homer', 'Marge', 'Lisa', 'Bart', 'Maggie']

Individual values in a multi-part list can also be multi-line (see above). For example, given:

    extras: Moe
          : (the bartender)

    extras: Smithers
          : (the dogsbody)

the value for the 'extras' config variable is: ["Moe\n(the bartender)", "Smithers\n(the dogsbody)"]

Internal representation

Each section label in a configuration file becomes a top-level hash key whe the configuration file is read in. The corresponding value is a nested hash reference.

Each configuration variable's key becomes a key in that nested hash reference. Each configuration variable's value becomes the corresponding value in that nested hash reference.

Single-line and multi-line values become strings. Multi-part values become references to arrays of strings.

For example, the following configuration file:

    # A simple key (just an identifier)...
    simple : simple value

    # A more complex key (with whitespace)...
    more complex key : more complex value

    # A new section...
    [MULTI-WHATEVERS]

    # A value spread over several lines...
    multi-line : this is line 1
               : this is line 2
               : this is line 3

    # Several values for the same key...
    multi-value: this is value 1
    multi-value: this is value 2
    multi-value: this is value 3

would be read into a hash whose internal structure looked like this:

    {
       # Default section...
       '' => {
          'simple'           => 'simple value',
          'more complex key' => 'more complex value',
       },

       # Named section...
       'MULTI-WHATEVERS' => {
            'multi-line'  => "this is line 1\nthis is line 2\nthis is line 3",

            'multi-value' => [ 'this is value 1',
                               'this is value 2',
                               'this is value 3'
                             ],
        }
    }

INTERFACE

The following subroutines are exported automatically whenever the module is loaded...

read_config($filename => %config_hash)
read_config($filename => $config_hash_ref)

The read_config() subroutine takes two arguments: the filename of a configuration file, and a variable into which the contents of that configuration file are to be loaded.

If the variable is a hash, then the configuration sections and their key/value pairs are loaded into nested subhashes of the hash.

If the variable is a scalar with an undefined value, a reference to an anonymous hash is first assigned to that scalar, and that hash is then filled as described above.

The subroutine returns true on success, and throws an exception on failure.

write_config(%config_hash => $filename)
write_config($config_hash_ref => $filename)
write_config(%config_hash)
write_config($config_hash_ref)

The write_config() subroutine takes two arguments: the hash or hash reference containing the configuration data to be written out to disk, and an optional filename specifying which file it is to be written to.

The data hash must conform to the two-level structure described earlier: with top-level keys naming sections and their values being references to second-level hashes that store the keys and values of the configuartion variables. If the structure of the hash differs from this, an exception is thrown.

If a filename is also specified, the subroutine opens that file and writes to it. It no filename is specified, the subroutine uses the name of the file from which the hash was originally loaded using read_config(). It no filename is specified and the hash wasn't originally loaded using read_config(), an exception is thrown.

The subroutine returns true on success and throws and exception on failure.

If necessary (typically to avoid conflicts with other modules), you can have the module export its two subroutines with different names by loading it with the appropriate options:

    use AI::FreeHAL::Config { read_config => 'get_ini', write_config => 'update_ini' };

    # and later...

    get_ini($filename => %config_hash);

    # and later still...

    update_ini(%config_hash);

DIAGNOSTICS

Can't open config file '%s' (%s)

You tried to read in a configuration file, but the file you specified didn't exist. Perhaps the filepath you specified was wrong. Or maybe your application didn't have permission to access the file you specified.

Can't read from locked config file '$filename'

You tried to read in a configuration file, but the file you specified was being written by someone else (they had a file lock active on it). Either try again later, or work out who else is using the file.

Scalar second argument to 'read_config' must be empty

You passed a scalar variable as the destination into read_config() was supposed to load a configuration file, but that variable already had a defined value, so read_config() couldn't autovivify a new hash for you. Did you mean to pass the subroutine a hash instead of a scalar?

Can't save %s value for key '%s' (only scalars or array refs)

You called write_config and passed it a hash containing a configuration variable whose value wasn't a single string, or a list of strings. The configuration file format supported by this module only supports those two data types as values. If you really need to store other kinds of data in a configuration file, you should consider using Data::Dumper or YAML instead.

Missing filename in call to write_config()

You tried to calll write_config() with only a configuration hash, but that hash wasn't originally loaded using read_config(), so write_config() has no idea where to write it to. Either make sure the hash you're trying to save was originally loaded using read_config(), or else provide an explicit filename as the second argument to write_config().

Can't open config file '%s' for writing (%s)

You tried to update or create a configuration file, but the file you specified could not be opened for writing (for the reason given in the parentheses). This is often caused by incorrect filepaths or lack of write permissions on a directory.

Can't write to locked config file '%s'

You tried to update or create a configuration file, but the file you specified was being written at the time by someone else (they had a file lock active on it). Either try again later, or work out who else is using the file.

CONFIGURATION AND ENVIRONMENT

AI::FreeHAL::Config requires no configuration files or environment variables.

DEPENDENCIES

This module requires the AI::FreeHAL::Class module (available from the CPAN)

INCOMPATIBILITIES

None reported.

BUGS AND LIMITATIONS

No bugs have been reported.

Please report any bugs or feature requests to bug-config-FreeHAL@rt.cpan.org, or through the web interface at http://rt.cpan.org.

AUTHOR

Damian Conway <DCONWAY@cpan.org>

LICENCE AND COPYRIGHT

Copyright (c) 2005, Damian Conway <DCONWAY@cpan.org>. All rights reserved.

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

DISCLAIMER OF WARRANTY

BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION.

IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.