The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Conf::Libconfig - Perl extension for libconfig

SYNOPSIS

  use Conf::Libconfig;
  my $self = new Conf::Libconfig;
  $self->read_file($cfg);
  my $value = $self->lookup_value("abc.edf");
  print $value;

DESCRIPTION

The module Conf::Libconfig need use libconfig library:

        http://www.hyperrealm.com/libconfig/

You can use Conf::Libconfig for perl config, and support Salar, Array and Hash data struction etc. like C or C++ function. Conf::Libconfig could reduce your config file and quote by C/C++ transportability.

EXPORT

None by default.

$self->new()

Construct.

$self->delete()

Destructor.

$self->read_file ($file)

Read config file.

$self->lookup_value ($path)

Autocheck and get value from config file, suggest use it.

$self->setting_lookup ($path)

return setting resource.

$self->fetch_array ($path)

return array list from path.

$self->fetch_hashref ($path)

return hash refenrece from path.

$setting->length ()

return count of setting resource.

$setting->get_item ($i)

return value of the $i item.

$self->lookup_bool ($path)

Only get value type of bool from config file, please use lookup_value replace it.

$self->lookup_int ($path)

Only get value type of long int from config file, please use lookup_value replace it.

$self->lookup_int64 ($path)

Only get value type of long long int from config file, please use lookup_value replace it.

$self->lookup_float ($path)

Only get value type of float from config file, please use lookup_value replace it.

$self->lookup_string ($path)

Only get value type of string from config file, please use lookup_value replace it.

PREREQUISITES

This module uses libconfig.

INSTALLATION

To prepare install, you should install libconfig, you can use yum for redhat, like this:

        yum install libconfig libconfig-devel -y

or apt-get for debian:

        apt-get libconfig libconfig-devel

for other platform, you can compiler libconfig from source:

        http://www.hyperrealm.com/libconfig/

you can use order like this:

        wget http://www.hyperrealm.com/libconfig/libconfig-1.3.2.tar.gz
        tar -zxf libconfig-1.3.2.tar.gz
        cd libconfig-1.3.2
        ./configure --prefix=/usr
        make
        make install

If you are not soudoer or root, you need contact administrator.

    perl Makefile.PL
    make
    make test
    make install

Win32 users should replace "make" with "nmake".

SOURCE CONTROL

You can always get the latest SSH::Batch source from its public Git repository:

        http://github.com/cnangel/Conf-Libconfig/tree/master

If you have a branch for me to pull, please let me know ;)

TODO

  • Support xml config and yaml config.

SEE ALSO

You can compare this module Conf::Libconfig to Config, Config::General, Config::JSON.

http://my.huhoo.net/

AUTHOR

Cnangel, <cnangel@gmail.com<gt>

COPYRIGHT AND LICENSE

This module as well as its programs are licensed under the BSD License.

Copyright (c) 2009, Alibaba Search Center, Alibaba Inc. All rights reserved.

Copyright (C) 2009 by cnangel

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

  • Neither the name of the Alibaba Search Center, Alibaba Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

HISTORY

Wed Jul 26 09:44:23 2009 v0.001 Build first version and use link config++.

i<Wed 08 Jul 2009 04:07:46 PM CST> v0.002 Use config replace config++.

i<Wed 08 Jul 2009 05:32:50 PM CST> v0.003 Support Array list.

i<Thu 09 Jul 2009 09:46:28 PM CST> v0.004 Support Hash and list dumper.

i<Mon 13 Jul 2009 10:46:45 AM CST> v0.005 Check lib config and prompt.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.