add message to check for it being XML
[migration-tools.git] / mig-bin / mig-stagebibs
1 #!/usr/bin/perl
2
3 ###############################################################################
4 =pod
5
6 =item B<stagebibs> --file foo.xml
7
8 Takes a load of bibs from a UTF-8 MARC XML  file and loads them into mig staging 
9 table of bibio_record_entry.  This is done with no checking of file validity 
10 so records should be checked before hand and cleaned.
11
12 Takes one  optional arguments:
13
14 --source
15
16 Sets an x_source value on the staging table to the one supplied instead of the 
17 default of none.
18
19 =back
20
21 =cut
22
23 ###############################################################################
24
25 use strict;
26 use warnings;
27
28 use DBI;
29 #binmode STDIN, ':bytes';
30 use Env qw(
31     HOME PGHOST PGPORT PGUSER PGDATABASE MIGSCHEMA
32     MIGBASEWORKDIR MIGBASEGITDIR MIGGITDIR MIGWORKDIR
33 );
34 use Data::Dumper;
35 use Pod::Usage;
36 use Switch;
37 use Cwd 'abs_path';
38 use FindBin;
39 use UNIVERSAL;
40 my $mig_bin = "$FindBin::Bin/";
41 use lib "$FindBin::Bin/";
42 use Mig;
43
44 pod2usage(-verbose => 2) if defined $ARGV[0] && $ARGV[0] eq '--help';
45 pod2usage(-verbose => 1) if ! $ARGV[1];
46
47 my $next_arg_is_file = 0;
48 my $append = 0;
49 my $next_arg_is_source = 0;
50 my $next_arg_is_stage = 0;
51 my $stage_table = 'biblio_record_entry';
52 my $source = 'default';
53 my $file_is_xml = 0;
54 my $dbh = Mig::db_connect();
55 my $infile;
56 my $i = 0;
57 my $batch;
58 binmode STDIN, ':utf8';
59
60 foreach my $arg (@ARGV) {
61     if ($arg eq '--file') {
62         $next_arg_is_file = 1;
63         next;
64     }
65     if ($next_arg_is_file) {
66         $infile = $arg;
67         $next_arg_is_file = 0;
68         next;
69     }
70     if ($arg eq '--source') {
71         $next_arg_is_source = 1;
72         next;
73     }
74     if ($next_arg_is_source) {
75         $source = $arg;
76         $next_arg_is_source = 0;
77         next;
78     }
79 }
80
81 my $bre_test = check_for_table($dbh,'biblio_record_entry');
82 if ($bre_test == 0) { create_child_bre($dbh); }
83
84 my $xmig_test = check_for_column($dbh,'biblio_record_entry','x_migrate');
85 if ($xmig_test == 0) { add_column($dbh,'biblio_record_entry','x_migrate','BOOLEAN DEFAULT TRUE'); }
86
87 my $xsource_test = check_for_column($dbh,'biblio_record_entry','x_source');
88 if ($xsource_test == 0) { add_column($dbh,'biblio_record_entry','x_source','TEXT'); }
89
90 #flatten out MARC XML FILE
91 open my $xml, "<:encoding(utf8)", $infile or abort('could not open MARC XML file');
92 $i = 0;
93 my $record = '';
94 while(my $line = <$xml>) {
95         if ($line =~ /^<\/?collection/) { next; }
96         chomp $line;
97         $record = $record . $line;
98         if ($line =~ /<\/record>$/) {
99                 stage_record($dbh,$record,$source); 
100                 $record = '';
101                 $i++;
102                 if (($i % 100) == 0) { report_progress('Records stage', $i); }
103         }
104 }
105 close $xml;
106
107 if ($i == 0) { print "No XML was processed, are you sure this is an XML file?\n"; }
108 print "Finis.\n";
109
110 # beyond here be functions 
111
112 sub create_child_bre {
113     my $dbh = shift;
114     $dbh->do("DO \$\$ 
115         DECLARE
116             t   BOOLEAN;
117         BEGIN
118         SELECT EXISTS(SELECT 1 FROM information_schema.tables WHERE table_schema = '$MIGSCHEMA' AND table_name = 'biblio_record_entry') INTO t;
119         IF t = FALSE THEN
120             PERFORM migration_tools.build_specific_base_staging_table ('$MIGSCHEMA','biblio.record_entry');
121         END IF;
122         END \$\$;");
123
124     return ();
125 }
126
127 sub abort {
128     my $msg = shift;
129     print STDERR "$0: $msg", "\n";
130     exit 1;
131 }
132
133 sub report_progress {
134     my ($msg, $counter) = @_;
135     if (defined $counter) {
136         print STDERR "$msg: $counter\n";
137     } else {
138         print STDERR "$msg\n";
139     }
140 }
141
142 sub stage_record {
143     my $dbh = shift;
144     my $record = shift;
145         my $source = shift;
146         my $last_xact = "'$MIGSCHEMA'";
147         $record = '$_$' . $record . '$_$';
148         my $sql;
149         if ($source eq 'default') { $sql = "INSERT INTO $MIGSCHEMA.biblio_record_entry (last_xact_id,marc) VALUES ($last_xact,$record);"; }
150                 else { $sql = "INSERT INTO $MIGSCHEMA.biblio_record_entry (last_xact_id,marc,x_source) VALUES ($last_xact,$record,'$source');";  }
151     my $sth = $dbh->prepare($sql);
152     $sth->execute();
153         return;
154 }
155
156 sub check_for_table {
157     my $dbh = shift;
158     my $table = shift;
159     my $sql = "SELECT 1 FROM information_schema.tables WHERE table_schema = '$MIGSCHEMA' AND table_name = '$table';";
160     my $sth = $dbh->prepare($sql);
161     $sth->execute();
162     my @sqlresult = $sth->fetchrow_array;
163     my $r = pop @sqlresult;
164     if ($r) { return $r; } else { return 0; }
165 }
166
167 sub check_for_column {
168     my $dbh = shift;
169     my $table = shift;
170         my $column = shift;
171     my $sql = "SELECT 1 FROM information_schema.columns WHERE table_schema = '$MIGSCHEMA' AND table_name = '$table' AND column_name = '$column';";
172     my $sth = $dbh->prepare($sql);
173     $sth->execute();
174     my @sqlresult = $sth->fetchrow_array;
175     my $r = pop @sqlresult;
176     if ($r) { return $r; } else { return 0; }
177 }
178
179 sub add_column {
180     my $dbh = shift;
181     my $table = shift;
182     my $column = shift;
183         my $column_type = shift;
184     my $sql = "ALTER TABLE $MIGSCHEMA.$table ADD COLUMN $column $column_type;";
185     my $sth = $dbh->prepare($sql);
186     $sth->execute();
187     my @sqlresult = $sth->fetchrow_array;
188         my $r = check_for_column($dbh,$table,$column);
189         if ($r == 0) { abort('failed to create column'); } else { return $r; }
190 }
191