我正在处理一些我需要使用kstat -p
获取一些信息的东西。所以我想创建一个所有输出为kstat -p
的哈希变量。
Sample output from kstat -p
cpu_stat:0:cpu_stat0:user 18804249
访问值
@{$kstat->{cpu_stat}{0}{cpu_stat0}}{qw(user)};
我还查看了任何可用模块的CPAN,并找到Sun::Solaris::Kstat
,但我的Sun版本不提供。请建议使用kstat -p
中的输出值创建哈希变量的代码。
答案 0 :(得分:6)
通过引用,创建分层数据结构只是有点棘手;唯一有趣的部分来自于我们想要以不同方式处理最终级别的事实(分配值而不是创建新的哈希级别)。
# If you don't create the ref here then assigning $target won't do
# anything useful later on.
my $kstat = {};
open my $fh, '-|', qw(kstat -p) or die "$! execing kstat";
while (<$fh>) {
chomp;
my ($compound_key, $value) = split " ", $_, 2;
my @hier = split /:/, $compound_key;
my $last_key = pop @hier; # handle this one differently.
my $target = $kstat;
for my $key (@hier) { # All intermediate levels
# Drill down to the next level, creating it if we have to.
$target = ($target->{$key} ||= {});
}
$target->{$last_key} = $value; # Then write the final value in place.
}