blob: 6261363d6b0dfb9b5b2b274aafc6bc22cbbbeed3 (
plain)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
#!/usr/bin/perl -w
use strict;
# this tool manipulates fixed length cch tax files by comparing the
# update files in the $update_dir to the initial install files
# in the $init_dir
#
# it produces .DOIT files in $update_dir which are suitable for
# syncing a database initialzed with the files in $init_dir to
# the state represented by the files in $update_dir
#
# how one acquires update files from cch that overlap with initial
# full install remains a mystery
my $init_dir = "cchinit/";
my $update_dir = "cchupdate/";
foreach my $file (qw (CODE DETAIL PLUS4 GEOCODE TXMATRIX ZIP)) {
my $tfile = $update_dir. $file. "T";
$tfile = $update_dir. "TXMATRIT" if $tfile =~ /TXMATRIXT$/;
open FILE, "$tfile.TXT" or die "Can't open $tfile.TXT\n";
open INSERT, ">$tfile.INS" or die "Can't open $tfile.INS\n";
open DELETE, ">$tfile.DEL" or die "Can't open $tfile.DEL\n";
while(<FILE>){
chomp;
print INSERT "$_\n" if s/I$//;
print DELETE "$_\n" if s/D$//;
}
close FILE;
close INSERT;
close DELETE;
system "sort $tfile.INS > $tfile.INSSORT";
system "sort $tfile.DEL > $tfile.DELSORT";
system "sort $init_dir$file.txt > $tfile.ORGINSSORT";
system "comm -12 $tfile.INSSORT $tfile.ORGINSSORT > $tfile.PREINS";
system "comm -23 $tfile.INSSORT $tfile.ORGINSSORT > $tfile.2BEINS";
system "comm -23 $tfile.DELSORT $tfile.ORGINSSORT > $tfile.PREDEL";
system "comm -12 $tfile.DELSORT $tfile.ORGINSSORT > $tfile.2BEDEL";
}
foreach my $file (qw (CODET DETAILT PLUS4T GEOCODET TXMATRIT ZIPT)) {
my $tfile = $update_dir. $file;
$tfile = "TXMATRIT" if $tfile eq "TXMATRIXT";
open INSERT, "$tfile.2BEINS" or die "Can't open $tfile.2BEINS\n";
open DELETE, "$tfile.2BEDEL" or die "Can't open $tfile.2BEDEL\n";
open FILE, ">$tfile.DOIT" or die "Can't open $tfile.DOIT\n";
while(<INSERT>){
chomp;
print FILE $_, "I\n";
}
while(<DELETE>){
chomp;
print FILE $_, "D\n";
}
close FILE;
close INSERT;
close DELETE;
}
|