]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/extras/import/pg_loader.pl
bbd08d6250f6dd195bdd3ea4d0351e47d190c49e
[Evergreen.git] / Open-ILS / src / extras / import / pg_loader.pl
1 #!/usr/bin/perl
2 use strict;
3
4 use lib '/openils/lib/perl5/';
5
6 use OpenSRF::System;
7 use OpenSRF::EX qw/:try/;
8 use OpenSRF::Utils::SettingsClient;
9 use OpenILS::Utils::Fieldmapper;
10 use OpenSRF::Utils::JSON;
11 use FileHandle;
12
13 use Time::HiRes qw/time/;
14 use Getopt::Long;
15
16 my @files;
17 my ($config, $output, @auto, @order, @wipe, $quiet) =
18         ('/openils/conf/opensrf_core.xml');
19
20 GetOptions(
21         'config=s'      => \$config,
22         'output=s'      => \$output,
23         'wipe=s'        => \@wipe,
24         'autoprimary=s' => \@auto,
25         'order=s'       => \@order,
26         'quiet'         => \$quiet,
27 );
28
29 my %lineset;
30 my %fieldcache;
31
32 OpenSRF::System->bootstrap_client( config_file => $config );
33 Fieldmapper->import(IDL => OpenSRF::Utils::SettingsClient->new->config_value("IDL"));
34
35 my $count = 0;
36 my $starttime = time;
37 while ( my $rec = <> ) {
38         next unless ($rec);
39
40         my $row;
41         try {
42                 $row = OpenSRF::Utils::JSON->JSON2perl($rec);
43         } catch Error with {
44                 my $e = shift;
45                 warn "\n\n !!! Error : $e \n\n at or around line $count\n";
46         };
47         next unless ($row);
48
49         my $class = $row->class_name;
50         my $hint = $row->json_hint;
51
52         if (!$lineset{$hint}) {
53                 $lineset{$hint} = [];
54                 my @cols = $row->real_fields;
55                 if (grep { $_ eq $hint} @auto) {
56                         @cols = grep { $_ ne $class->Identity } @cols;
57                 }
58
59                 $fieldcache{$hint} =
60                         { table => $class->Table,
61                           sequence => $class->Sequence,
62                           pkey => $class->Identity,
63                           fields => \@cols,
64                         };
65
66         #XXX it burnnnsssessss
67         $fieldcache{$hint}{table} =~ s/\.full_rec/.real_full_rec/o if ($hint eq 'mfr');
68         }
69
70         push @{ $lineset{$hint} }, [map { $row->$_ } @{ $fieldcache{$hint}{fields} }];
71
72         if (!$quiet && !($count % 500)) {
73                 print STDERR "\r$count\t". $count / (time - $starttime);
74         }
75
76         $count++;
77 }
78
79 print STDERR "\nWriting file ...\n" if (!$quiet);
80
81 $output = '&STDOUT' unless ($output);
82 $output = FileHandle->new(">$output") if ($output);
83
84 binmode($output,'utf8');
85
86 $output->print("SET CLIENT_ENCODING TO 'UNICODE';\n\n");
87 $output->print("BEGIN;\n\n");
88
89 for my $h (@order) {
90         # continue if there was no data for this table
91         next unless ($fieldcache{$h});
92
93         my $fields = join(',', @{ $fieldcache{$h}{fields} });
94         $output->print( "DELETE FROM $fieldcache{$h}{table};\n" ) if (grep {$_ eq $h } @wipe);
95         $output->print( "COPY $fieldcache{$h}{table} ($fields) FROM STDIN;\n" );
96
97         for my $line (@{ $lineset{$h} }) {
98                 my @data;
99                 my $x = 0;
100                 for my $d (@$line) {
101                         if (!defined($d)) {
102                                 $d = '\N';
103                         } else {
104                                 $d =~ s/\f/\\f/gos;
105                                 $d =~ s/\n/\\n/gos;
106                                 $d =~ s/\r/\\r/gos;
107                                 $d =~ s/\t/\\t/gos;
108                                 $d =~ s/\\/\\\\/gos;
109                         }
110                         if ($h eq 'bre' and $fieldcache{$h}{fields}[$x] eq 'quality') {
111                                 $d = int($d);
112                         }
113                         push @data, $d;
114                         $x++;
115                 }
116                 $output->print( join("\t", @data)."\n" );
117         }
118
119         $output->print('\.'."\n\n");
120         
121         $output->print("SELECT setval('$fieldcache{$h}{sequence}'::TEXT, (SELECT MAX($fieldcache{$h}{pkey}) FROM $fieldcache{$h}{table}), TRUE);\n\n")
122                 if (!grep { $_ eq $h} @auto);
123 }
124
125 $output->print("COMMIT;\n\n");
126 $output->close;