X-Git-Url: http://git.equinoxoli.org/?p=migration-tools.git;a=blobdiff_plain;f=mig-bin%2Fmig-reporter;h=8e9e81d56e4e0bf23c22b0e41d414afeb7d6d42c;hp=cb7e4e6153a79f26dd3011ea6c2c8791c3d6043a;hb=8ac648a9a0d7bf9f2df03ec8fc952d088fe0d740;hpb=91f3fc3c89d088788f7064bc06764ff83a40e607 diff --git a/mig-bin/mig-reporter b/mig-bin/mig-reporter index cb7e4e6..8e9e81d 100755 --- a/mig-bin/mig-reporter +++ b/mig-bin/mig-reporter @@ -1,5 +1,40 @@ #!/usr/bin/perl +############################################################################### +=pod + +=item B --analyst "Analyst Name" --report_title "Report Title" + +Generates an asciidoc file in the git working directory that can be converted to +any appropriate format. The analyst and report parameters are required. + +Optional parameters are : + +--added_page_title and --added_page_file + +If one is used both must be. The added page file can be plain text or asciidoc. This +adds an extra arbitrary page of notes to the report. Mig assumes the page file is in the mig git directory. + +--tags + +This will define a set of tags to use, if not set it will default to Circs, +Holds, Actors, Bibs, Assets & Money. + +--debug + +Gives more information about what is happening. + +--reports_xml + +Allows you to override the default evergreen_staged_report.xml in the mig-xml folder. + + +=back + +=cut + +############################################################################### + use strict; use warnings; @@ -20,6 +55,7 @@ use Mig; use open ':encoding(utf8)'; pod2usage(-verbose => 2) if defined $ARGV[0] && $ARGV[0] eq '--help'; +pod2usage(-verbose => 1) if ! $ARGV[1]; my $analyst; my $next_arg_is_analyst; @@ -36,6 +72,7 @@ my $next_arg_is_added_page_file; my $i = 0; my $parser = XML::LibXML->new(); my $lines_per_page = 42; +my $debug_flag = 0; foreach my $arg (@ARGV) { if ($arg eq '--report_title') { @@ -92,6 +129,10 @@ foreach my $arg (@ARGV) { $next_arg_is_added_page_file = 0; next; } + if ($arg eq '--debug') { + $debug_flag = 1; + next; + } } if (!defined $tags) {$tags = 'circs.holds.actors.bibs.assets.money'}; @@ -102,20 +143,18 @@ my $mig_path = abs_path($0); $mig_path =~ s|[^/]+$||; if (!defined $reports_xml) { $reports_xml = $mig_path . '../mig-xml/evergreen_staged_report.xml'; } else { $reports_xml = $mig_path . '/../mig-xml/' . $reports_xml; } -print "$reports_xml \n"; my $dom = $parser->parse_file($reports_xml); if (defined $added_page_file or defined $added_page_title) { abort('must specify --added_page_file and --added_page_title') unless defined $added_page_file and defined $added_page_title; } if (defined $added_page_file) { $added_page_file = $MIGGITDIR . $added_page_file; } -if ($MIGSCHEMA eq 'full') { $MIGSCHEMA = ''; } my $dbh = Mig::db_connect(); my $report_file = create_report_name($report_title); $report_file = $MIGGITDIR . $report_file; -open(my $fh, '>', $report_file) or die "Could not open output file!"; +open(my $fh, '>', $report_file) or abort("Could not open output file!"); write_title_page($report_title,$fh,$analyst); @@ -123,7 +162,7 @@ if (defined $added_page_file and defined $added_page_title) { print $fh "<<<\n"; print $fh "== $added_page_title\n"; print "$added_page_file\t$added_page_title\n"; - open(my $an,'<:encoding(UTF-8)', $added_page_file) or die "Could not open $added_page_file !"; + open(my $an,'<:encoding(UTF-8)', $added_page_file) or abort("Could not open $added_page_file!"); while ( my $line = <$an> ) { print $fh $line; } @@ -147,37 +186,59 @@ $tags = lc($tags); my @report_tags = split(/\./,$tags); foreach my $t (@report_tags) { print "\n\n=========== Starting to process tag $t\n"; - print "==========================================\n"; + print "==========================================\n\n"; + + my @asset_files; + foreach my $asset ($dom->findnodes('//asset')) { + if (index($asset->findvalue('./tag'),$t) != -1) { + push @asset_files, $asset->findvalue('./file'); + } + } + + foreach my $fname (@asset_files) { + my $asset_path = $mig_path . '../mig-asc/' . $fname; + open my $a, $asset_path or abort("Could not open $fname."); + while ( my $l = <$a> ) { + print $fh $l; + } + print $fh "<<<\n"; + } + print_section_header(ucfirst($t),$fh); my $linecount = $lines_per_page; my $r; - my @report_names; + undef @asset_files; + foreach my $asset ($dom->findnodes('//asset')) { + if (index($asset->findvalue('./tag'),$t) != -1) { + push @asset_files, $asset->findvalue('./file'); + } + } + my @report_names; foreach my $report ($dom->findnodes('//report')) { if (index($report->findvalue('./tag'),$t) != -1 and $report->findvalue('./iteration') eq '0') { push @report_names, $report->findvalue('./name'); } } - - print Dumper(@report_names); #only has one level of failover now but could change to array of hashes and loops + #but this keeps it simple and in practice I haven't needed more than two foreach my $rname (@report_names) { my %report0; my %report1; my $check_tables0; my $check_tables1; - print "\nchecking for $rname ... "; - %report0 = find_report($dom,$t,$rname,'0'); - $check_tables0 = check_table($report0{query},$MIGSCHEMA); + if ($debug_flag == 1) {print "\nchecking for $rname ... ";} + %report0 = find_report($dom,$t,$rname,'0',$debug_flag); + $check_tables0 = check_table($report0{query},$MIGSCHEMA,$debug_flag,$rname); if ($check_tables0 == 1) { $r = print_query($fh,%report0); } else { - %report1 = find_report($dom,$t,$rname,'1'); + %report1 = find_report($dom,$t,$rname,'1',$debug_flag); if (defined $report1{query}) { - $check_tables1 = check_table($report1{query},$MIGSCHEMA); + $check_tables1 = check_table($report1{query},$MIGSCHEMA,$debug_flag,$rname); if ($check_tables1 == 1) {$r = print_query($fh,%report1);} } } @@ -194,12 +255,13 @@ sub find_report { my $tag = shift; my $name = shift; my $iteration = shift; + my $debug_flag = shift; my %report; - print "iteration $iteration "; + if ($debug_flag == 1) {print "iteration $iteration ";} foreach my $node ($dom->findnodes('//report')) { if ($node->findvalue('./tag') =~ $tag and $node->findvalue('./iteration') eq $iteration and $node->findvalue('./name') eq $name) { - print "succeeded ... "; + if ($debug_flag == 1) {print "succeeded ... \n";} %report = ( name => $node->findvalue('./name'), report_title => $node->findvalue('./report_title'), @@ -212,7 +274,7 @@ sub find_report { return %report; } } - print "failed ... "; + if ($debug_flag == 1) {print "failed ... \n";} return %report = ( name => "eaten by grue" ); @@ -258,18 +320,43 @@ sub write_title_page { sub check_table { my $query = shift; my $MIGSCHEMA = shift; + my $debug_flag = shift; + my $report_name = shift; - my $i = 0; + if ($debug_flag == 1) {print "$query\n";} + + my $i; my $return_flag = 1; my @qe = split(/ /,$query); - my @tables = grep /MIGSCHEMA/, @qe; + $i = @qe; + $i--; + my @tables; + while ($i > -1) { + if ($qe[$i] eq 'FROM' or $qe[$i] eq 'JOIN') { + my $q = $i + 1; + if ($qe[$q] ne '(SELECT') { + push @tables, $qe[$q]; + } + } + $i--; + } + if ($debug_flag == 1) {print "checking tables ... ";} - print "checking tables ... "; + $i = 0; foreach my $table (@tables) { - $table =~ s/MIGSCHEMA.//g; - $table =~ s/\)//g; - $table =~ s/\prepare($sql); $sth->execute(); while (my @row = $sth->fetchrow_array) { @@ -277,19 +364,29 @@ sub check_table { next; } else { $return_flag = 0; + if ($debug_flag == 1) {print "detecting $table failed...\n";} } if ($row[0] eq '0') {$return_flag = 0;} } } - if ($return_flag == 1) {print "succeeded ... ";} else {print "failed ... ";} + if ($return_flag == 1 and $debug_flag == 1) {print "succeeded ...\n";} + if ($return_flag == 0) {print "!!!!! a table failed the find test for report $report_name\n\n";} return $return_flag; } +sub clean_query_string { + my $str = shift; + + $str =~ s/(?!_)[[:punct:]]//g; #remove punct except underscores + $str =~ s/\n//g; + $str =~ s/\r//g; + return $str; +} + sub print_query { my $fh = shift; my %report = @_; my $query = $report{query}; - print $query; my $sth = $dbh->prepare($query); $sth->execute();