ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/OSUT3Analysis/DBTools/scripts/osudb
Revision: 1.13
Committed: Mon Oct 22 13:50:25 2012 UTC (12 years, 6 months ago) by ahart
Branch: MAIN
Changes since 1.12: +19 -7 lines
Log Message:
Add a recipe option to the uploadRelease command.

File Contents

# User Rev Content
1 ahart 1.1 #!/usr/bin/env perl
2    
3     use strict;
4     use Mysql;
5     use Getopt::Long;
6 ahart 1.4 use File::Copy;
7 ahart 1.1
8     sub getDataset;
9     sub dbUpdate;
10 ahart 1.8 sub dbUpdateOther;
11 ahart 1.4 sub dbDelete;
12 ahart 1.8 sub dbDeleteOther;
13 ahart 1.1 sub addSlashes;
14 ahart 1.4 sub uploadRelease;
15 ahart 1.11 sub downloadRelease;
16 ahart 1.8 sub datasetExists;
17 ahart 1.1
18 ahart 1.4 our $db = Mysql->connect ("cmshead.mps.ohio-state.edu", "ntuple", "osuT3User") or die "Failed to connect to Tier 3, stopped";
19 ahart 1.1
20     my %opt;
21     Getopt::Long::Configure ("bundling");
22 ahart 1.13 GetOptions (\%opt, "comment|c=s", "format|f=s", "pyConfig|p=s", "crabCfg|b=s", "jsonFile|j=s", "lumiSummary|s=s", "location|l=s", "fileList|t=s", "release|r=s", "other|o", "recipe|e=s", "help|h");
23 ahart 1.1 my $argc = @ARGV;
24    
25 ahart 1.4 printHelp ($ARGV[0]) if $opt{"help"};
26 ahart 1.8 printHelp () if $argc != 2 && $ARGV[0] ne "createOther";
27 ahart 1.11 printHelp () if $ARGV[0] ne "create" && $ARGV[0] ne "createOther" && $ARGV[0] ne "update" && $ARGV[0] ne "finish" && $ARGV[0] ne "deprecate" && $ARGV[0] ne "uploadRelease" && $ARGV[0] ne "downloadRelease" && $ARGV[0] ne "deleteEntry";
28 ahart 1.4 if (($ARGV[0] eq "create" || $ARGV[0] eq "finish") && !$opt{"location"})
29     {
30     print "The directory containing the ntuples must be given!\n";
31     exit;
32     }
33 ahart 1.13 if ($ARGV[0] eq "uploadRelease" && (!$opt{"pyConfig"} || !$opt{"release"} || !$opt{"recipe"}))
34 ahart 1.4 {
35 ahart 1.13 print "The Python config, CMSSW release directory, and recipe file must be given!\n";
36 ahart 1.4 exit;
37     }
38 ahart 1.8 if ($ARGV[0] eq "uploadRelease")
39     {
40     my $parentDir = "./$opt{'release'}";
41     $parentDir =~ s/CMSSW_[^\/]*//g;
42     $parentDir =~ s/\/\/*/\//g;
43     my $cmsswRelease = $opt{'release'};
44     $cmsswRelease =~ s/^.*CMSSW_([^\/]*).*$/CMSSW_$1/;
45     `tar -C $parentDir -czf $ARGV[1].tar.gz $opt{"release"}`;
46     $opt{"format"} = "BEAN" if !$opt{"format"};
47 ahart 1.13 uploadRelease ($opt{"format"}, $cmsswRelease, "$ARGV[1].tar.gz", $opt{"pyConfig"}, $ARGV[1], "$ENV{'USER'}", $opt{"comment"}, $opt{"recipe"});
48 ahart 1.8 }
49 ahart 1.11 elsif ($ARGV[0] eq "downloadRelease")
50     {
51     downloadRelease ($ARGV[1], $opt{"pyConfig"});
52     }
53 ahart 1.8 elsif ($ARGV[0] eq "createOther")
54     {
55     my @listOfFiles = @ARGV;
56     @listOfFiles = reverse (@listOfFiles);
57     pop (@listOfFiles);
58     @listOfFiles = reverse (@listOfFiles);
59 ahart 1.12 dbOtherCreate ("$ENV{'USER'}", \@listOfFiles, $opt{"comment"});
60 ahart 1.8 }
61     else
62 ahart 1.4 {
63     my $id = -1;
64 ahart 1.5 my $fullDataset;
65 ahart 1.8 ($id, $fullDataset) = getDataset ($ARGV[0], $ARGV[1]) if $ARGV[0] ne "create" && ($ARGV[0] ne "update" || !$opt{"other"}) && ($ARGV[0] ne "deleteEntry" || !$opt{"other"});
66     $id = $ARGV[1] if ($ARGV[0] eq "update" && $opt{"other"}) || ($ARGV[0] eq "deleteEntry" && $opt{"other"});
67 ahart 1.5 $fullDataset = $ARGV[1] if $id < 0;
68 ahart 1.4 $ARGV[0] = "create" if $id < 0;
69     my $status = "present";
70     $status = "" if $ARGV[0] eq "update";
71     $status = "deprecated" if $ARGV[0] eq "deprecate";
72     $opt{"format"} = "BEAN" if $ARGV[0] eq "create" && !$opt{"format"};
73 ahart 1.10 dbUpdate ($id, $fullDataset, "$ENV{'USER'}\@$ENV{'HOSTNAME'}", $opt{"format"}, $opt{"location"}, $opt{"fileList"}, $status, $opt{"comment"}, $opt{"pyConfig"}, $opt{"crabCfg"}, $opt{"jsonFile"}, $opt{"lumiSummary"}, $opt{"release"}) if !$opt{"other"};
74     dbUpdateOther ($id, $opt{"comment"}, "$ENV{'USER'}\@$ENV{'HOSTNAME'}") if $opt{"other"};
75 ahart 1.8 dbDelete ($id) if $ARGV[0] eq "deleteEntry" && !$opt{"other"};
76     dbDeleteOther ($id) if $ARGV[0] eq "deleteEntry" && $opt{"other"};
77 ahart 1.4 }
78 ahart 1.1
79     sub
80     addSlashes
81 ahart 1.2 {
82 ahart 1.1 my $string = shift;
83    
84     $string =~ s/\\/\\\\/g;
85     $string =~ s/'/\\'/g;
86     $string =~ s/"/\\"/g;
87     $string =~ s/\\0/\\\\0/g;
88    
89     return $string;
90     }
91    
92     sub
93     getDataset
94     {
95 ahart 1.4 my $command = shift;
96 ahart 1.1 my $dataset = shift;
97    
98     my $results;
99 ahart 1.3 my $queryDataset = $dataset;
100     $queryDataset =~ s/\*/%/g;
101     $queryDataset =~ s/(.*)/%$1%/g;
102 ahart 1.8 my $query = "select id,dataset,user,creationTime from ntuple where dataset like '$queryDataset' order by creationTime";
103 ahart 1.1 $db->selectdb ("ntuple");
104     $results = $db->query ($query);
105     if ($results->numrows () == 1)
106     {
107     my @row = $results->fetchrow ();
108 ahart 1.5 return ($row[0], $row[1]);
109 ahart 1.1 }
110     if ($results->numrows () == 0)
111     {
112 ahart 1.4 if ($command ne "deleteEntry" && $command ne "deprecate")
113     {
114     print "Database entry does not exist. Create it? (Y/n): ";
115     my $response = <STDIN>;
116     $response =~ s/\n//g;
117     $response = "y" if !$response;
118     exit if substr (lc ($response), 0, 1) ne 'y';
119 ahart 1.5 return (-1, "");
120 ahart 1.4 }
121     else
122     {
123     print "Database entry does not exist.\n";
124     exit;
125     }
126 ahart 1.1 }
127 ahart 1.5 my %id;
128     my %fullDataset;
129 ahart 1.1 print "Found multiple database entries matching\n";
130     print "\"$dataset\":\n";
131 ahart 1.4 print "( 0) new\n" if $command ne "deleteEntry" && $command ne "deprecate";
132 ahart 1.1 for (my $i = 1; $i <= $results->numrows (); $i++)
133     {
134     my @row = $results->fetchrow ();
135 ahart 1.5 $id{"$i"} = $row[0];
136     $fullDataset{"$i"} = $row[1];
137 ahart 1.3 printf "(%2d) $row[1]\n", $i;
138     print " created by $row[2] on $row[3]\n";
139 ahart 1.1 }
140 ahart 1.4 print "\nWhich entry would you like to modify?";
141     if ($command ne "deleteEntry" && $command ne "deprecate")
142     {
143     print " (Select 0 to create a new entry): "
144     }
145     else
146     {
147     print ": ";
148     }
149 ahart 1.1 my $response = <STDIN>;
150     $response =~ s/[ \t\n]//g;
151 ahart 1.5 return (-1, "") if $response == 0 && $command ne "deleteEntry" && $command ne "deprecate";
152     if (!(exists $id{$response}))
153 ahart 1.1 {
154     print "Your selection \"$response\" was not a valid option! Quitting.\n";
155     exit;
156     }
157    
158 ahart 1.5 return ($id{$response}, $fullDataset{$response});
159 ahart 1.1 }
160    
161     sub
162     dbUpdate
163     {
164     my $id = shift;
165     my $dataset = shift;
166     my $user = shift;
167     my $format = shift;
168     my $location = shift;
169 ahart 1.4 my $fileListName = shift;
170 ahart 1.1 my $status = shift;
171     my $comment = shift;
172     my $psetName = shift;
173     my $crabCfgName = shift;
174     my $jsonFileName = shift;
175     my $lumiSummaryName = shift;
176 ahart 1.5 my $release = shift;
177 ahart 1.1
178 ahart 1.4 my $fileList;
179 ahart 1.1 my $pset;
180     my $crabCfg;
181     my $jsonFile;
182     my $lumiSummary;
183     my $size = 0;
184     my $nFiles = 0;
185 ahart 1.4 if ($fileListName)
186     {
187     if (!(-e $fileListName))
188     {
189     print "$fileListName does not exist!\n";
190     exit;
191     }
192     open (FILE_LIST, "<$fileListName");
193     my @fileList = <FILE_LIST>;
194     close (FILE_LIST);
195     $fileList = join ("", @fileList);
196     }
197 ahart 1.1 if ($psetName)
198     {
199     if (!(-e $psetName))
200     {
201     print "$psetName does not exist!\n";
202     exit;
203     }
204     open (PY_CONFIG, "<$psetName");
205     my @pset = <PY_CONFIG>;
206     close (PY_CONFIG);
207     $pset = join ("", @pset);
208     }
209     if ($crabCfgName)
210     {
211     if (!(-e $crabCfgName))
212     {
213     print "$crabCfgName does not exist!\n";
214     exit;
215     }
216     open (CRAB_CONFIG, "<$crabCfgName");
217     my @crabCfg = <CRAB_CONFIG>;
218     close (CRAB_CONFIG);
219     $crabCfg = join ("", @crabCfg);
220     }
221     if ($jsonFileName)
222     {
223     if (!(-e $jsonFileName))
224     {
225     print "$jsonFileName does not exist!\n";
226     exit;
227     }
228     open (JSON_FILE, "<$jsonFileName");
229     my @jsonFile = <JSON_FILE>;
230     close (JSON_FILE);
231     $jsonFile = join ("", @jsonFile);
232     }
233     if ($lumiSummaryName)
234     {
235     if (!(-e $lumiSummaryName))
236     {
237     print "$lumiSummaryName does not exist!\n";
238     exit;
239     }
240     open (LUMI_SUMMARY, "<$lumiSummaryName");
241     my @lumiSummary = <LUMI_SUMMARY>;
242     close (LUMI_SUMMARY);
243     $lumiSummary = join ("", @lumiSummary);
244     }
245 ahart 1.5 if ($release)
246     {
247     my $query = "select id from ntupleRelease where name='$release'";
248     $db->selectdb ("ntuple");
249     my $results = $db->query ($query);
250     if ($results->numrows () != 1)
251     {
252     print "Ntuple release \"$release\" not found!\n";
253     exit;
254     }
255     }
256 ahart 1.4 ($nFiles, $size) = sizeOfDataset ($dataset, $location, $fileList);
257 ahart 1.7 my $fullLocation = $location;
258     $fullLocation = "$ENV{'PWD'}/$location" if !($location =~ m/^\//);
259 ahart 1.1
260     $dataset = addSlashes ($dataset);
261     $user = addSlashes ($user);
262     $format = addSlashes ($format);
263     $pset = addSlashes ($pset);
264     $crabCfg = addSlashes ($crabCfg);
265     $jsonFile = addSlashes ($jsonFile);
266     $lumiSummary = addSlashes ($lumiSummary);
267 ahart 1.6 $fullLocation = addSlashes ($fullLocation);
268 ahart 1.4 $fileList = addSlashes ($fileList);
269 ahart 1.1 $status = addSlashes ($status);
270     $comment = addSlashes ($comment);
271 ahart 1.5 $release = addSlashes ($release);
272 ahart 1.1
273     my $results;
274     my $query;
275     if ($id < 0)
276     {
277     $query = "select max(id) from ntuple";
278     $db->selectdb ("ntuple");
279     $results = $db->query ($query);
280     my @row = $results->fetchrow ();
281     my $id = 1;
282     $id = $row[0] + 1 if $results->numrows ();
283    
284 ahart 1.9 $query = "insert into ntuple (id, dataset, creationTime, lastUpdateTime, lastUpdateUser, user, format, location, fileList, nFiles, sizeInGB, status, comment, pset, crabCfg, jsonFile, lumiSummary, version) values ($id, '$dataset', now(), now(), '$user', '$user', '$format', '$fullLocation', '$fileList', $nFiles, $size, '$status', '$comment', '$pset', '$crabCfg', '$jsonFile', '$lumiSummary', '$release')";
285 ahart 1.1 }
286     if ($id > 0)
287     {
288     my $fields;
289     my $values;
290    
291     $values .= ", dataset='$dataset'" if $dataset;
292     $values .= ", lastUpdateTime=now()";
293 ahart 1.9 $values .= ", lastUpdateUser='$user'";
294 ahart 1.1 $values .= ", format='$format'" if $format;
295 ahart 1.6 $values .= ", location='$fullLocation'" if $location;
296 ahart 1.4 $values .= ", fileList='$fileList'" if $fileList;
297     $values .= ", nFiles=$nFiles" if $nFiles;
298     $values .= ", sizeInGB=$size" if $size;
299 ahart 1.1 $values .= ", status='$status'" if $status;
300     $values .= ", comment='$comment'" if $comment;
301     $values .= ", pset='$pset'" if $pset;
302     $values .= ", crabCfg='$crabCfg'" if $crabCfg;
303     $values .= ", jsonFile='$jsonFile'" if $jsonFile;
304     $values .= ", lumiSummary='$lumiSummary'" if $lumiSummary;
305 ahart 1.5 $values .= ", version='$release'" if $release;
306 ahart 1.1
307     $values =~ s/^, //;
308     $query = "update ntuple set $values where id=$id";
309     }
310     $results = $db->query ($query);
311    
312     return $results;
313     }
314    
315     sub
316 ahart 1.8 dbUpdateOther
317     {
318     my $id = shift;
319     my $comment = shift;
320 ahart 1.9 my $user = shift;
321 ahart 1.8
322     $comment = addSlashes ($comment);
323    
324 ahart 1.9 my $query = "update other set lastUpdateTime=now(), lastUpdateUser='$user', comment='$comment' where id=$id";
325 ahart 1.8 $db->selectdb ("ntuple");
326     my $results = $db->query ($query);
327    
328     return $results;
329     }
330    
331     sub
332 ahart 1.4 dbDelete
333     {
334     my $id = shift;
335    
336     my $query = "delete from ntuple where id=$id";
337     $db->selectdb ("ntuple");
338     my $results = $db->query ($query);
339     }
340    
341     sub
342 ahart 1.8 dbDeleteOther
343     {
344     my $id = shift;
345    
346     my $query = "delete from other where id=$id";
347     $db->selectdb ("ntuple");
348     my $results = $db->query ($query);
349     }
350    
351     sub
352 ahart 1.1 printHelp
353     {
354 ahart 1.4 my $command = shift;
355    
356 ahart 1.1 my $exeName = $0;
357     $exeName =~ s/^.*\/([^\/]*)$/$1/;
358    
359 ahart 1.4 if ($command eq "create")
360     {
361     print "Usage: $exeName -l DIRECTORY [OPTION]... create NAME\n";
362     print "Creates an entry in the database for dataset NAME. The ntuples are assumed to\n";
363     print "be present on the Tier 3, with the status being set accordingly.\n";
364     print "\n";
365     print "Mandatory arguments to long options are mandatory for short options too.\n";
366     printf "%-29s%s\n", " -b, --crabCfg FILE", "CRAB config used to submit ntuple jobs";
367     printf "%-29s%s\n", " -c, --comment COMMENT", "comment for the database entry";
368     printf "%-29s%s\n", " -f, --format FORMAT", "ntuple format (default: BEAN)";
369     printf "%-29s%s\n", " -j, --jsonFile FILE", "JSON file used for this dataset";
370     printf "%-29s%s\n", " -l, --location DIRECTORY", "directory containing the ntuples";
371     printf "%-29s%s\n", " -p, --pyConfig FILE", "Python config used to produce ntuples";
372 ahart 1.5 printf "%-29s%s\n", " -r, --release NAME", "ntuple release used to produce ntuples";
373 ahart 1.4 printf "%-29s%s\n", " -s, --lumiSummary FILE", "lumiSummary.json reported by CRAB";
374     }
375 ahart 1.8 elsif ($command eq "createOther")
376     {
377     print "Usage: $exeName [OPTION]... createOther DIRECTORIES_AND_FILES\n";
378     print "Creates an entry in the database for non-ntuple data.\n";
379     print "\n";
380     print "Mandatory arguments to long options are mandatory for short options too.\n";
381     printf "%-29s%s\n", " -c, --comment COMMENT", "comment for the database entry";
382     }
383 ahart 1.4 elsif ($command eq "update")
384     {
385     print "Usage: $exeName [OPTION]... update NAME\n";
386     print "Updates an existing database entry for dataset NAME.\n";
387     print "\n";
388     print "Mandatory arguments to long options are mandatory for short options too.\n";
389     printf "%-29s%s\n", " -b, --crabCfg FILE", "CRAB config used to submit ntuple jobs";
390     printf "%-29s%s\n", " -c, --comment COMMENT", "comment for the database entry";
391     printf "%-29s%s\n", " -f, --format FORMAT", "ntuple format";
392     printf "%-29s%s\n", " -j, --jsonFile FILE", "JSON file used for this dataset";
393     printf "%-29s%s\n", " -l, --location DIRECTORY", "directory containing the ntuples";
394 ahart 1.8 printf "%-29s%s\n", " -o, --other", "update an entry in the non-ntuple database";
395 ahart 1.4 printf "%-29s%s\n", " -p, --pyConfig FILE", "Python config used to produce ntuples";
396 ahart 1.5 printf "%-29s%s\n", " -r, --release NAME", "ntuple release used to produce ntuples";
397 ahart 1.4 printf "%-29s%s\n", " -s, --lumiSummary FILE", "lumiSummary.json reported by CRAB";
398     }
399     elsif ($command eq "finish")
400     {
401     print "Usage: $exeName -l DIRECTORY finish NAME\n";
402    
403     print "Finalizes the database entry for dataset NAME, changing its status to\n";
404     print "\"present\". This is intended to be the final step in command-line based ntuple\n";
405     print "production.\n";
406     print "\n";
407     print "Mandatory arguments to long options are mandatory for short options too.\n";
408     printf "%-29s%s\n", " -l, --location DIRECTORY", "directory containing the ntuples";
409     }
410     elsif ($command eq "deleteEntry")
411     {
412 ahart 1.8 print "Usage: $exeName [OPTION]... deleteEntry NAME\n";
413 ahart 1.4 print "Deletes the database entry for dataset NAME. This is intended primarily for\n";
414     print "mistaken database entries. If you wish to actually delete a set of ntuples,\n";
415     print "please use the \"deprecate\" command instead.\n";
416 ahart 1.8 print "\n";
417     printf "%-29s%s\n", " -o, --other", "update an entry in the non-ntuple database";
418 ahart 1.4 }
419     elsif ($command eq "deprecate")
420     {
421     print "Usage: $exeName deprecate NAME\n";
422     print "Marks the dataset NAME for deletion. WARNING: The dataset will be deleted from\n";
423     print "the Tier 3 within one week of this action. If you wish to simply delete a\n";
424     print "mistaken database entry, use the \"deleteEntry\" command instead.\n";
425     }
426     elsif ($command eq "uploadRelease")
427     {
428 ahart 1.13 print "Usage: $exeName -e FILE -p FILE -r DIRECTORY [OPTION]... uploadRelease NAME\n";
429 ahart 1.4 print "Copies an ntuple release to the appropriate area on the Tier 3, and creates a\n";
430     print "database entry for it, with NAME being the name of the release. An ntuple\n";
431     print "release is a CMSSW release with all the necessary packages added for creating\n";
432     print "ntuples, along with a default Python config file.\n";
433     print "\n";
434     print "Mandatory arguments to long options are mandatory for short options too.\n";
435     printf "%-29s%s\n", " -c, --comment COMMENT", "comment for the database entry";
436 ahart 1.13 printf "%-29s%s\n", " -e, --recipe FILE", "file containing the recipe for the release";
437 ahart 1.4 printf "%-29s%s\n", " -f, --format FORMAT", "ntuple format (default: BEAN)";
438     printf "%-29s%s\n", " -p, --pyConfig FILE", "default Python config for the release";
439     printf "%-29s%s\n", " -r, --release DIRECTORY", "CMSSW release containing ntuple packages";
440     }
441 ahart 1.11 elsif ($command eq "downloadRelease")
442     {
443     print "Usage: $exeName [OPTION]... downloadRelease NAME\n";
444     print "Copies an ntuple release to the current directory on the Tier 3. Optionally\n";
445     print "copies the corresponding Python configuration file registered in the database.\n";
446     print "\n";
447     print "Mandatory arguments to long options are mandatory for short options too.\n";
448     printf "%-29s%s\n", " -p, --pyConfig FILE", "Python configuration file name";
449     }
450 ahart 1.4 else
451     {
452     print "Usage: $exeName [OPTION]... COMMAND NAME\n";
453     print "Manipulates entry in the OSU Tier 3 ntuple database given by NAME.\n";
454     print "\n";
455     print "Mandatory arguments to long options are mandatory for short options too.\n";
456     printf "%-29s%s\n", " -h, --help", "print help. If COMMAND is present, print help";
457     printf "%-29s%s\n", " ", "specific to COMMAND.";
458     print "\n";
459     print "COMMAND may be one of the following:\n";
460     printf "%-29s%s\n", " create", "creates the entry";
461 ahart 1.11 printf "%-29s%s\n", " createOther", "creates an entry for non-ntuple data";
462 ahart 1.4 printf "%-29s%s\n", " update", "updates the entry";
463     printf "%-29s%s\n", " finish", "finalizes the database entry";
464     printf "%-29s%s\n", " deleteEntry", "removes the database entry";
465     printf "%-29s%s\n", " deprecate", "marks the dataset for deletion";
466     printf "%-29s%s\n", " uploadRelease", "upload an ntuple release";
467 ahart 1.11 printf "%-29s%s\n", " downloadRelease", "download an ntuple release";
468 ahart 1.4 }
469 ahart 1.1
470     exit;
471     }
472 ahart 1.4
473     sub
474     sizeOfDataset
475     {
476     my $dataset = shift;
477     my $location = shift;
478     my $fileList = shift;
479    
480     my $size = 0.0;
481     my $nFiles = 0;
482 ahart 1.6 if ($location && !$fileList)
483 ahart 1.4 {
484     if (!(-e $location))
485     {
486     print "$location does not exist!\n";
487     exit;
488     }
489     $nFiles = `ls $location | wc -l`;
490     $size = `du -s $location`;
491     $size =~ s/([^ ]*) .*/$1/;
492     $size /= 1024 * 1024;
493     $size = sprintf "%.2f", $size;
494     }
495     elsif ($fileList)
496     {
497     foreach my $file (split (/\n/, $fileList))
498     {
499     $nFiles++;
500     my $fileSize = `du -s $file`;
501     $fileSize =~ s/([^ ]*) .*/$1/;
502     $size += $fileSize;
503     }
504     $size /= 1024 * 1024;
505     $size = sprintf "%.2f", $size;
506     }
507    
508     return ($nFiles, $size);
509     }
510    
511     sub
512     uploadRelease
513     {
514     my $format = shift;
515     my $cmsswRelease = shift;
516     my $release = shift;
517     my $psetName = shift;
518     my $name = shift;
519     my $user = shift;
520     my $comment = shift;
521 ahart 1.13 my $recipeName = shift;
522 ahart 1.4
523     if (!(-e $psetName))
524     {
525     print "$psetName does not exist!\n";
526     exit;
527     }
528 ahart 1.13 if (!(-e $recipeName))
529     {
530     print "$recipeName does not exist!\n";
531     exit;
532     }
533     move ($release, "/home/hart/public_html/releases/$name.tar.gz") or die "Ntuple releases may only be uploaded on the Tier 3, stopped";
534 ahart 1.4 open (PY_CONFIG, "<$psetName");
535     my @pset = <PY_CONFIG>;
536     close (PY_CONFIG);
537     my $pset = join ("", @pset);
538 ahart 1.13 open (RECIPE, "<$recipeName");
539     my @recipe = <RECIPE>;
540     close (RECIPE);
541     my $recipe = join ("\n", @recipe);
542 ahart 1.4
543     my $query = "select max(id) from ntupleRelease";
544     $db->selectdb ("ntuple");
545     my $results = $db->query ($query);
546     my @row = $results->fetchrow ();
547     my $id = 1;
548     $id = $row[0] + 1 if $results->numrows ();
549    
550     $name = addSlashes ($name);
551     $pset = addSlashes ($pset);
552     $user = addSlashes ($user);
553     $format = addSlashes ($format);
554     $cmsswRelease = addSlashes ($cmsswRelease);
555     $comment = addSlashes ($comment);
556 ahart 1.13 $recipe = addSlashes ($recipe);
557 ahart 1.4
558 ahart 1.13 my $query = "insert into ntupleRelease (id, name, pset, user, pending, format, cmsswRelease, comment, recipe) values ($id, '$name', '$pset', '$user', 1, '$format', '$cmsswRelease', '$comment', '$recipe')";
559 ahart 1.4 $db->selectdb ("ntuple");
560     my $results = $db->query ($query);
561     }
562 ahart 1.8
563     sub
564 ahart 1.11 downloadRelease
565     {
566     my $release = shift;
567     my $pyConfigName = shift;
568    
569     my $query = "select id,pset from ntupleRelease where name='$release'";
570     $db->selectdb ("ntuple");
571     my $results = $db->query ($query);
572     if ($results->numrows () != 1)
573     {
574     print "Ntuple release \"$release\" not found!\n";
575     exit;
576     }
577     if (!(-e "/home/hart/public_html/releases/$release.tar.gz"))
578     {
579     print "Release is in the database but no package exists!\n";
580     exit;
581     }
582     if ($pyConfigName)
583     {
584     my @row = $results->fetchrow ();
585     open (PY_CONFIG, ">$pyConfigName");
586     print PY_CONFIG $row[1];
587     close (PY_CONFIG);
588     }
589     copy ("/home/hart/public_html/releases/$release.tar.gz", "$release.tar.gz");
590     }
591    
592     sub
593 ahart 1.8 dbOtherCreate
594     {
595     my $user = shift;
596     my $listOfFiles = shift;
597     my $comment = shift;
598    
599     my $size = 0.0;
600     my $nFiles = 0.0;
601     for (my $i = 0; $i < @$listOfFiles; $i++)
602     {
603     if (!(-e $$listOfFiles[$i]))
604     {
605     print "$$listOfFiles[$i] does not exist!\n";
606     exit;
607     }
608     $nFiles += `ls -R $$listOfFiles[$i] | grep -v ':\$' | grep -v '^\$' | wc -l`;
609     my $fileSize = `du -s $$listOfFiles[$i]`;
610     $fileSize =~ s/([^ ]*) .*/$1/;
611     $fileSize /= 1024 * 1024;
612     $size += $fileSize;
613     $$listOfFiles[$i] = "$ENV{'PWD'}/$$listOfFiles[$i]" if !($$listOfFiles[$i] =~ m/^\//);
614     }
615     $size = sprintf "%.2f", $size;
616     my $location = join ("<br />", @$listOfFiles);
617    
618     my $query = "select max(id) from other";
619     $db->selectdb ("ntuple");
620     my $results = $db->query ($query);
621     my @row = $results->fetchrow ();
622     my $id = 1;
623     $id = $row[0] + 1 if $results->numrows ();
624    
625     $user = addSlashes ($user);
626     $location = addSlashes ($location);
627     $comment = addSlashes ($comment);
628    
629 ahart 1.9 my $query = "insert into other (id, creationTime, lastUpdateTime, lastUpdateUser, user, location, nFiles, sizeInGB, comment) values ($id, now(), now(), '$user', '$user', '$location', $nFiles, $size, '$comment')";
630 ahart 1.8 $db->selectdb ("ntuple");
631     my $results = $db->query ($query);
632    
633     print "ID $id\n";
634     }