-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqtc_dump_msg.pl
executable file
·42 lines (37 loc) · 1.07 KB
/
qtc_dump_msg.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/perl
use Data::Dumper;
use qtc::msg;
use File::Basename;
my $file=shift(@ARGV);
my $verbose=0;
if ($file eq "-v") {
$file=shift(@ARGV);
$verbose=1;
}
my $msg=qtc::msg->new(path=>dirname($file), filename=>basename($file));
$msg->has_valid_type;
$msg->is_object_valid;
if ( $verbose ) {
print "Printing verbose Output of perl Object $file \n\n";
print Dumper($msg);
} else {
print "\n--- !".basename($file)."\n";
print "type: ".$msg->type."\n";
print "version: ".$msg->version."\n";
print "call: ".$msg->call."\n";
print "hr_refnum: ".$msg->hr_refnum."\n";
print "checksum: ".$msg->checksum."\n";
if ( $msg->checksum_period ) {
print "checksum_period: ".$msg->checksum_period."\n";
print "prev_checksum: ".$msg->prev_checksum."\n";
print "next_checksum: ".$msg->next_checksum."\n";
}
print "signature: ".$msg->signature."\n";
print "signature_key_id: ".$msg->signature_key_id."\n";
foreach my $field (sort keys %{$qtc::msg::msg_types{$msg->type}}) {
foreach my $val ($msg->value($field)) {
print "$field: $val\n";
}
}
}
print "\n";