make biblio_record_entry be biblio_record_entry_legacy
[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                 ALTER TABLE biblio_record_entry RENAME TO biblio_record_entry_legacy;
123         END \$\$;");
124
125     return ();
126 }
127
128 sub abort {
129     my $msg = shift;
130     print STDERR "$0: $msg", "\n";
131     exit 1;
132 }
133
134 sub report_progress {
135     my ($msg, $counter) = @_;
136     if (defined $counter) {
137         print STDERR "$msg: $counter\n";
138     } else {
139         print STDERR "$msg\n";
140     }
141 }
142
143 sub stage_record {
144     my $dbh = shift;
145     my $record = shift;
146         my $source = shift;
147         my $last_xact = "'$MIGSCHEMA'";
148         $record = '$_$' . $record . '$_$';
149         my $sql;
150         if ($source eq 'default') { $sql = "INSERT INTO $MIGSCHEMA.biblio_record_entry (last_xact_id,marc) VALUES ($last_xact,$record);"; }
151                 else { $sql = "INSERT INTO $MIGSCHEMA.biblio_record_entry (last_xact_id,marc,x_source) VALUES ($last_xact,$record,'$source');";  }
152     my $sth = $dbh->prepare($sql);
153     $sth->execute();
154         return;
155 }
156
157 sub check_for_table {
158     my $dbh = shift;
159     my $table = shift;
160     my $sql = "SELECT 1 FROM information_schema.tables WHERE table_schema = '$MIGSCHEMA' AND table_name = '$table';";
161     my $sth = $dbh->prepare($sql);
162     $sth->execute();
163     my @sqlresult = $sth->fetchrow_array;
164     my $r = pop @sqlresult;
165     if ($r) { return $r; } else { return 0; }
166 }
167
168 sub check_for_column {
169     my $dbh = shift;
170     my $table = shift;
171         my $column = shift;
172     my $sql = "SELECT 1 FROM information_schema.columns WHERE table_schema = '$MIGSCHEMA' AND table_name = '$table' AND column_name = '$column';";
173     my $sth = $dbh->prepare($sql);
174     $sth->execute();
175     my @sqlresult = $sth->fetchrow_array;
176     my $r = pop @sqlresult;
177     if ($r) { return $r; } else { return 0; }
178 }
179
180 sub add_column {
181     my $dbh = shift;
182     my $table = shift;
183     my $column = shift;
184         my $column_type = shift;
185     my $sql = "ALTER TABLE $MIGSCHEMA.$table ADD COLUMN $column $column_type;";
186     my $sth = $dbh->prepare($sql);
187     $sth->execute();
188     my @sqlresult = $sth->fetchrow_array;
189         my $r = check_for_column($dbh,$table,$column);
190         if ($r == 0) { abort('failed to create column'); } else { return $r; }
191 }
192