-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddScannerFields.pl
executable file
·174 lines (130 loc) · 4.93 KB
/
addScannerFields.pl
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
#!/usr/bin/perl
# Jonathan Harlap 2006
# Perl tool to update the tarchive table, filling in the scanner fields
# $Id: addScannerFields.pl 4 2007-12-11 20:21:51Z jharlap $
use strict;
use Cwd qw/ abs_path /;
use File::Basename qw/ dirname /;
use File::Find;
use File::Temp qw/ tempdir /;
use FindBin;
use Getopt::Tabular;
use lib "$FindBin::Bin";
use DICOM::DICOM;
use DB::DBI;
my $verbose = 0;
my $profile = undef;
my @setList = ();
my @leftovers = ();
my $targetSeriesNumber = undef;
my $Usage = "------------------------------------------
$0 updates a database to fill the scanner fields.
Usage:\n\t $0 -profile <profile>
\n\n See $0 -help for more info\n\n";
my @arg_table =
(
["Main options", "section"],
["-profile","string",1, \$profile, "Specify the name of the config file which resides in .loris_mri in the current directory."],
["-verbose", "boolean", 1, \$verbose, "Be verbose."],
["-version", "call", undef, \&handle_version_option, "Print version and revision number and exit"],
);
# Parse arguments
&GetOptions(\@arg_table, \@ARGV, \@leftovers) || exit 1;
unless(scalar(@leftovers) == 0) {
print $Usage;
exit(1);
}
# checking for profile settings
if(-f "$ENV{LORIS_CONFIG}/.loris_mri/$profile") {
{ package Settings; do "$ENV{LORIS_CONFIG}/.loris_mri/$profile" }
}
if ($profile && !defined @Settings::db) {
print "\n\tERROR: You don't have a configuration file named '$profile' in: $ENV{LORIS_CONFIG}/.loris_mri/ \n\n"; exit 33;
}
if(!$profile) { print $Usage; print "\n\tERROR: You must specify an existing profile.\n\n"; exit 33; }
# establish database connection if database option is set
my $dbh = &DB::DBI::connect_to_db(@Settings::db); print "Connecting to database.\n" if $verbose;
my $sth = $dbh->prepare("SELECT DicomArchiveID, ArchiveLocation FROM tarchive WHERE ScannerManufacturer='' AND ScannerModel=''");
$sth->execute();
if($sth->rows < 1) {
print "\n\tERROR: No tarchives found which lack manufacturer or model \n\n"; exit 33;
}
my $updatesth = $dbh->prepare("UPDATE tarchive SET ScannerManufacturer=?, ScannerModel=?, ScannerSerialNumber=?, ScannerSoftwareVersion=? WHERE DicomArchiveID=?");
TARCHIVE:
while(my @row = $sth->fetchrow_array()) {
my $tarchive = $row[1];
print "Starting to work on $tarchive\n" if $verbose;
# create the temp dir
my $tempdir = tempdir( CLEANUP => 0 );
# extract the tarchive
my $dcmdir = &extract_tarchive($tarchive, $tempdir);
# get one dicom file
my $dicomFile;
my $find_handler = sub {
return if defined $dicomFile;
my $file = $File::Find::name;
if(-f $file) {
# read the file, assuming it is dicom
my $dicom = DICOM->new();
$dicom->fill($file);
my $fileIsDicom = 1;
my $studyUID = $dicom->value('0020','000D');
# see if the file was really dicom
if($studyUID eq "") {
$fileIsDicom = 0;
}
if($fileIsDicom) {
$dicomFile = $dicom;
print "Found DICOM file $file\n" if $verbose;
}
}
};
find($find_handler, "$tempdir/$dcmdir");
unless(defined($dicomFile)) {
print "Error: Found no dicom files in $tarchive\n";
next TARCHIVE;
}
$updatesth->execute($dicomFile->value('0008','0070'),
$dicomFile->value('0008','1090'),
$dicomFile->value('0018','1000'),
$dicomFile->value('0018','1020'),
$row[0]);
print "Updated $tarchive with values ".$dbh->quote($dicomFile->value('0008','0070'))." "
.$dbh->quote($dicomFile->value('0008','1090'))." "
.$dbh->quote($dicomFile->value('0018','1000'))." "
.$dbh->quote($dicomFile->value('0018','1020'))."\n" if $verbose;
`rm -fr $tempdir`;
}
print "Done!\n";
exit 0;
sub extract_tarchive {
my ($tarchive, $tempdir) = @_;
print "Extracting tarchive\n" if $verbose;
`cd $tempdir ; tar -xf $tarchive`;
opendir TMPDIR, $tempdir;
my @tars = grep { /\.tar\.gz$/ && -f "$tempdir/$_" } readdir(TMPDIR);
closedir TMPDIR;
if(scalar(@tars) != 1) {
print "Error: Could not find inner tar in $tarchive!\n";
print @tars . "\n";
exit(1);
}
my $dcmtar = $tars[0];
my $dcmdir = $dcmtar;
$dcmdir =~ s/\.tar\.gz$//;
`cd $tempdir ; tar -xzf $dcmtar`;
return $dcmdir;
}
sub handle_version_option {
my ($opt, $args) = @_;
my $versionInfo = sprintf "%d", q$Revision: 4 $ =~ /: (\d+)/;
print "Version $versionInfo\n";
exit(0);
}
sub trimwhitespace {
my $string = shift;
$string =~ s/^\s+//;
$string =~ s/\s+$//;
return $string;
}