I am trying to use AppConfig::File for handling a config file. However, I am always getting an empty value from the object. The following is the code:

my $state = AppConfig::State->new( {
    CREATE=>1,
  } );
my $cfgfile = AppConfig::File->new($state);
$cfgfile->parse('sample.cfg');
my $temp = $cfgfile->{foo};
print "foo value: $temp\n";

This is in the sample.cfg:

## comment
foo = me

What did I do wrong? Thanks in advance.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

The solution was to include the ARGCOUNT setting in the definition of the variable. Not sure how to do it dynamically from the file.

use warnings;
use strict;

use AppConfig ':argcount';
use AppConfig::File;

my $state = AppConfig::State->new( {
    CREATE=>1,
  } );
$state->define('foo', { ARGCOUNT => ARGCOUNT_ONE });
my $cfgfile = AppConfig::File->new($state);
$cfgfile->parse('sample.cfg');
print "state value: '", $state->foo(), "'\n";
link|improve this answer
I tried this way before but it shows error: Can't locate object method "foo" via package "AppConfig::File" at testAppConfig.pl line 55. Any other idea? – Ken Jul 18 '11 at 3:50
In AppConfig::State you have more ways to retrieve variables, such as ->get("foo"). Perhaps you need to do $state->foo()? The variables might be saved in State, but parsed in File. – TLP Jul 18 '11 at 4:02
$state->foo() returns a 1.... not the me I am expecting. Any other thinking? – Ken Jul 18 '11 at 4:11
print ref $state->foo(). Might be an array of 1 in a scalar context. Or just print $state->foo(). – TLP Jul 18 '11 at 4:36
Nope.. still doesn't wory.. I have tried print ref $state->foo(); but it prints nothing. Then for print $state->foo(); it prints a 1. – Ken Jul 18 '11 at 4:42
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.