X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=package%2Flibipfix%2Fextra%2Fappend-wprobe-ie.pl;h=8bb658bbb9521c979d520de5cf9198cdf2f876d0;hb=c8564630f3b5e5023dbe595e8056f7a3c100b495;hp=3a8db3fe1a155747e79436d868477424f554e585;hpb=f60995ebe3f29171582fbf3eb774b5add86cae18;p=openwrt-10.03%2F.git diff --git a/package/libipfix/extra/append-wprobe-ie.pl b/package/libipfix/extra/append-wprobe-ie.pl index 3a8db3fe1..8bb658bbb 100644 --- a/package/libipfix/extra/append-wprobe-ie.pl +++ b/package/libipfix/extra/append-wprobe-ie.pl @@ -1,21 +1,17 @@ use strict; my @fields = ( - [ "_avg", "FLOAT", " - Average" ], - [ "_stdev", "FLOAT", " - Standard deviation" ], - [ "_n", "UINT", " - Number of samples" ] + [ "_n", "UINT", " - Number of samples", 4 ], + [ "_s", "UINT", " - Sum of samples", 8 ], + [ "_ss", "UINT", " - Sum of squared samples", 8 ], ); -my $file = $ARGV[0] or die "Syntax: $0 \n"; +my $file = $ARGV[0] or die "Syntax: $0 \n"; -f $file or die "File not found\n"; -my $last_ie = 0; -my $line; -open IES, "<$file" or die "Can't open file"; -while ($line = ) { - $line =~ /^(\d+)\s*,/ and $last_ie = $1; -} -close IES; -while () { +my $start = $ARGV[1]; +$start =~ /^\d+$/ or die "Invalid start number"; +open FILE, "<$file" or die "Can't open file"; +while () { /^(%?)(\w+),\s*(\w+),\s*(.+)$/ and do { my $counter = $1; my $rfield = $2; @@ -23,18 +19,20 @@ while () { my $descr = $4; my @f; if ($counter) { - @f = [ "", "UINT", "" ]; + @f = [ "", "UINT", "", 4]; } else { @f = @fields; } foreach my $f (@f) { - my $nr = ++$last_ie; + my $nr = $start++; my $n = $f->[0]; my $N = uc $n; my $ftype = $f->[1]; my $fdesc = $f->[2]; - print "$nr, IPFIX_FT_WPROBE_$rfield$N, 4, IPFIX_CODING_$ftype, \"$nfield$n\", \"$descr$fdesc\"\n"; + my $size = $f->[3]; + print "$nr, IPFIX_FT_WPROBE_$rfield$N, $size, IPFIX_CODING_$ftype, \"$nfield$n\", \"$descr$fdesc\"\n"; } }; } +close FILE;