我有一个代码块,我使用了很多次,但我试图将其变成一个子程序。 此代码块完成配置模板(路由器接口,vrf,其他网络内容)
通过查找通过摄取excel文件构建的哈希数据结构(称为%config_hash)中的数据来实现此目的:P。查找的数据位于不同模板的哈希的不同区域。
当前工作代码的一个例子是:
my @temp_source_template = @{ clone ($source_template{$switch_int_template}) };
my %regex_replacements=(); ## hash for holding regex search and replace values, keys are !name! (look in template files) values taken from DCAP
my @regex_key =(); ## temp array used for whe more then one !name! on a line
my $find_string='';
foreach my $line (@temp_source_template){
my (@regex_key) = ( $line =~ /(\!.*?\!)/g ); ## match needs to be non greedy thus .*? not .*
foreach my $hash_refs (@regex_key){
my $lookup = $hash_refs =~ s/!//gri; ## remove ! from !name! so lookup can be done in DCAP file hash
my $excel_lookup = $lookup =~ s/_/ /gri;
$regex_replacements{$hash_refs} = $config_hash{'Vlan'}{$inner}{$excel_lookup}; ## lookup DCAP file hash a write value to regex hash
if (undef eq $regex_replacements{$hash_refs}){
$regex_replacements{$hash_refs} = $config_hash{'Switch'}{$outer}{$excel_lookup};
}
if (undef eq $regex_replacements{$hash_refs}){
$regex_replacements{$hash_refs} = $config_hash{'VRF'}{$middle}{$excel_lookup};
}
$find_string= $find_string . $hash_refs . '|' ;
}
}
因此,这会创建一个散列(regex_replacements),其中包含要查找的值(regex_replacements中的散列键)和值,以替换那些(regex_replacements中的值)。它还构建了一个在regex表达式中使用的字符串($ find_string)。不同的模板将具有不同的哈希查找“路径”(例如$ config_hash {'Switch'} {$ outer} {$ excel_lookup})或不同的顺序(实际上是最具体的匹配)
为了完整性,这里是执行正则表达式替换的代码块:
foreach my $line (@temp_source_template){
my (@line_array) = split /(![A-Za-z_]*!)/, $line;
foreach my $chunk (@line_array){
my $temp_chunk = $chunk;
$chunk =~ s/($find_string)/$regex_replacements{$1}/gi;
if (!($chunk)){
$chunk = $temp_chunk;
}
}
$line = join ("", @line_array);
if ($line =~ /\!.*\!/){
print {$log} " ERROR line has unmatched variables deleting line \"$line\"\n";
$line ="";
}
}
所以我做了一些搜索,我发现了这个: Perl: How to turn array into nested hash keys 这几乎正是我想要的,但我不能让它工作,因为我的变量引用是一个哈希,它的哈希变量引用只是“REF”所以我得到错误,试图使用哈希作为参考。
所以我不会发布我尝试的内容,因为我并不真正了解该链接的魔力。
但我正在做的是传递给下面的
my @temp_source_template = @{ clone ($source_template{$test}) };
my @search_array = ( ['VRF' ,$middle] , ['Switch' ,$outer]);
my $find_string, $completed_template = dynamic_regex_replace_fine_string_gen(\%source_config,\@temp_source_template, \@search_array);
我希望返回$ find_string和regex_replacements哈希引用。需要注意的是,在sub中我需要在@search数组元素的末尾追加$ excel_lookup的值。
我不明白该怎么做的是构建变量级哈希查找。
答案 0 :(得分:1)
您可以尝试使用Data::Diver
它可以轻松访问深层嵌套结构的元素。
例如:
use feature qw(say);
use strict;
use warnings;
use Data::Diver qw(Dive);
my $hash = { a => { b => 1, c => { d => 2 }}};
my $keys = [[ 'a', 'b'], ['a','c','d']];
lookup_keys( $hash, $keys );
sub lookup_keys {
my ( $hash, $keys ) = @_;
for my $key ( @$keys ) {
my $value = Dive( $hash, @$key );
say $value;
}
}
<强>输出强>:
1
2
另见: