getting some screwy messages about chdir from perl.
[feisty_meow.git] / scripts / archival / shared_snarfer.pl
1 #!/usr/bin/perl
2
3 ###############################################################################
4 #                                                                             #
5 #  Name   : shared_snarfer                                                    #
6 #  Author : Chris Koeritz                                                     #
7 #  Rights : Copyright (C) 1996-$now by Author                                 #
8 #                                                                             #
9 #  Purpose:                                                                   #
10 #                                                                             #
11 #    A shared library collection for "snarfing up" archives.  This uses the   #
12 #  compressed tar format for files ending in ".snarf" to store collections    #
13 #  of files, folders, hierarchies and so forth.                               #
14 #                                                                             #
15 ###############################################################################
16 #  This program is free software; you can redistribute it and/or modify it    #
17 #  under the terms of the GNU General Public License as published by the Free #
18 #  Software Foundation; either version 2 of the License or (at your option)   #
19 #  any later version.  See: "http://www.gruntose.com/Info/GNU/GPL.html" for a #
20 #  version of the License.  Please send any updates to "fred@gruntose.com".   #
21 ###############################################################################
22
23 require "filename_helper.pl";
24 require "inc_num.pl";
25
26 use Cwd;
27 use Sys::Hostname;
28 use File::Which;
29 use Env qw(FEISTY_MEOW_SCRIPTS TMP);
30
31 $null_log = "/dev/null";
32
33 $TMP =~ s/\\/\//g;  # fix the temp variable for ms-winders.
34
35 # defines an array of problematic entries we were told to deal with.
36 @missing_log = ();
37
38 # these files are considered unimportant and won't be included in the archive.
39 @junk_file_list = ("*~", "*.$$$", "3rdparty", "*.aps", "*.bak", "binaries",
40     "*.bsc", "*.cgl", "*.csm", "CVS", "Debug", "*.dll", "*.err", "*.exe",
41     "generated_*", "*.git", "*.glb", "inprogress", "ipch", "*.llm",
42     "*.log", "*.lnk",
43     "makefile.fw*", "*.mbt", "*.mrt", "*.ncb", "*.o", "obj", "*.obj",
44     "octalforty.Wizardby", "*.obr", "*.opt", "packages", 
45     "*.pch", "*.pdb", "*.plg", "*.r$p", "*.rcs", "Release",
46     "*.res", "*.RES", "*.rws", "*.sbr", "*.scc", "*.spx", "*.stackdump",
47     "*.sdf", "*.suo", ".svn", "*.sym", "*.td", "*.tds", "*.tdw", "*.tlb",
48     "*.trw", "*.tmp", "*.tr", "*.user", "*_version.h", "*_version.rc",
49     "*.vspscc", "waste");
50 #print "junk list=@junk_file_list\n";
51 @excludes = ();
52 for (local($i) = 0; $i < scalar(@junk_file_list); $i++) {
53   push(@excludes, "--exclude=$junk_file_list[$i]");
54 }
55 #print "excludes list=@excludes\n";
56
57 # generic versions work on sane OSes.
58 $find_tool = which('find');
59 $tar_tool = which('tar');
60 #print "find tool: $find_tool\n";
61 #print "tar tool: $tar_tool\n";
62
63 if ( ! -f "$find_tool" || ! -f "$tar_tool" ) {
64   print "Could not locate either tar or find tools for this platform.\n";
65   exit 3;
66 }
67
68 # this is somewhat ugly, but it sets up a global variable called
69 # "original_path" so we remember where we started.
70 sub initialize_snarfer {
71   $original_path = cwd();
72   $original_path =~ s/\\/\//g;
73 }
74
75 # returns the current hostname, but without any domain included.
76 sub short_hostname {
77   local($temphost) = hostname();
78 #&hostname();
79   $temphost =~ s/([^.]*)\..*/\1/;
80   return &lower($temphost);
81 }
82
83 # takes the base name and creates the full snarf prefix name, which includes
84 # a timestamp and hostname.
85 sub snarf_prefix {
86   local($base) = @_;
87   $date_tool = "date";
88   local($date_part) = `$date_tool +%Y-%m-%d-%H%M`;
89   while ($date_part =~ /[\r\n]$/) { chop $date_part; }
90   local($host) = &short_hostname();
91   while ($host =~ /[\r\n]$/) { chop $host; }
92   $base = $base . "_" . $host . "_" . $date_part;
93   return $base;
94 }
95
96 # returns the name of the file to create based on the prefix and the
97 # current archive number.
98 sub snarf_name {
99   local($prefix, $number) = @_;
100   local($path) = &canonicalize($original_path);
101   local($target_file) = $path . '/' . $prefix . "_" . $number . ".tar";
102   return $target_file;
103 }
104
105 # finishes up on the archive file.
106 sub finalize_snarf {
107   local($filename) = @_;
108 #print "finalizing now on filename $filename\n";
109   local($outcome) = 0xff & system "gzip", $filename;
110   if ($outcome) { die("failure to finalize"); }
111
112   if (scalar(@missing_log)) {
113     print "The following files or directories were missing:\n";
114     print "@missing_log\n";
115   }
116 }
117
118 # fixes the directory passed in, if required.  this is only needed for
119 # dos-like operating systems, where there are drives to worry about and where
120 # cygwin refuses to store the full path for an absolute pathname in the
121 # archive.  instead of letting it store partial paths, we change to the top
122 # of the drive and scoop up the files using a relative path.
123 sub chdir_to_top {
124   local($directory) = @_;
125   if ( (substr($directory, 0, 2) eq "//")
126       && (substr($directory, 3, 1) eq "/") ) {
127 #print "into special case\n";
128     # it was originally a dos path, so now we must do some directory changing
129     # magic to get the paths to work right.
130     local($drive) = substr($directory, 0, 4);  # get just drive letter biz.
131 #print "going to change to $drive\n";
132     if (length($drive) > 0) {
133       chdir($drive);
134     }
135 #print "cwd now=" . cwd() . "\n";
136     $directory = substr($directory, 4);  # rip off absolutist path.
137 #print "using dir now as $directory\n";
138     if (length($directory) == 0) {
139 #print "caught zero length dir, patching to dot now.\n";
140       $directory = ".";
141     }
142   }
143   return $directory;
144 }
145
146 # snarfer scoops up some files in a directory.
147 sub snarfer {
148   local($prefix, $number, $root, $subdir, @extra_flags) = @_;
149 #print "prefix=$prefix, num=$number, root=$root, subdir=$subdir, extra=@extra_flags\n";
150
151   $root = &chdir_to_top($root);
152
153   local($target_file) = &snarf_name($prefix, $number);
154
155   $random_num = (rand() * 1000000) % 1000000;
156   $temp_file = `mktemp "$TMP/zz_snarf_tmp.XXXXXX"`;
157   chop($temp_file);
158
159   if (! -d $root . "/" . $subdir) {
160     local($base) = &basename($root . "/" . $subdir);
161 #print "adding to missing in snarfer A: $base\n";
162     push(@missing_log, $base);
163     return 0;
164   }
165   local($currdir) = cwd();
166   chdir($root);
167
168   local($outcome) = 0;
169   my @lines = qx( $find_tool "$subdir" @extra_flags "-type" "f" );
170 #  if ( ($! != 0) || ($? != 0) ) {
171 #    die("failure to find files in $subdir"); 
172 #  }
173
174   open TEMPY_OUT, ">>$temp_file" or die "cannot open $temp_file";
175   foreach (@lines) { print TEMPY_OUT "$_"; }
176   close TEMPY_OUT;
177
178   if (-s $temp_file == 0) {
179     local($base) = &basename($root . "/" . $subdir);
180 #print "adding to missing in snarfer B: $base\n";
181     push(@missing_log, $base);
182   }
183
184   local($outcome) = 0xff & system $tar_tool, 
185       "-rf", &canonicalize($target_file), @excludes,
186       "--files-from=" . &canonicalize($temp_file);
187   if ($outcome) {
188     unlink($temp_file);
189     die("failure to archive");
190   }
191   # clean up temporaries.
192   unlink($temp_file);
193   # change back to previous directory.
194   chdir($currdir);
195 }
196
197 # snarf_file_list is like snarfer but expects a file pattern at the end rather
198 # than a directory name.
199 sub snarf_file_list {
200   local($prefix, $number, $root, $file_pattern, @extra_flags) = @_;
201
202 #print "prefix=$prefix, num=$number, root=$root, file_pattern=$file_pattern, extra=@extra_flags\n";
203
204   $root = &chdir_to_top($root);
205
206   local($target_file) = &snarf_name($prefix, $number);
207
208   local($currdir) = cwd();
209   chdir("$root");
210
211   local(@files) = &glob_list($file_pattern);
212   if (!scalar(@files)) {
213     local($base) = $root . "/" . $file_pattern;
214     $base =~ s/\/\//\//g;
215 #print "adding to missing in snarf_file_list: $base\n";
216     push(@missing_log, $base);
217   }
218
219   foreach $i (@files) {
220     if ($i =~ /^\.\//) {
221       $i = substr $i, 2, length($i) - 2;
222     }
223     local($outcome) = 0xff & system $tar_tool,
224 #"--directory=" . "$root",
225         @extra_flags, "-rf", &canonicalize($target_file), @excludes, $i;
226     if ($outcome) { die("failure to archive"); }
227   }
228   chdir("$currdir");
229 }
230
231 # backup some specific files.
232 sub backup_files {
233   local($prefix, $number, $root, $subdir, @files) = @_;
234 #print "backup_files: ref=$prefix, num=$number, subdir=$subdir, list of files=@files\n";
235   foreach $i (@files) {
236     local($new_path) = $subdir . "/" . $i;
237     if ($subdir eq ".") { $new_path = "$i"; }
238     &snarf_file_list($prefix, $number, $root, $new_path);
239   }
240 }
241
242 # backup some specific directories.
243 sub backup_directories {
244   local($prefix, $number, $root, $subdir, @dirs) = @_;
245 #print "backup_directories: ref=$prefix, num=$number, root=$root, subdir=$subdir, list of dirs=@dirs.\n";
246   foreach $i (@dirs) {
247     local($path_to_use) = $subdir . "/" . $i;
248     if ($i eq ".") {
249       $path_to_use = $subdir;
250     }
251     &snarfer($prefix, $number, $root, $path_to_use, ("-maxdepth", "1"));
252   }
253 }
254
255 # removes items from the file that match a pattern.
256 sub remove_from_backup {
257   local($prefix, $number, $pattern) = @_;
258 #print "remove_from_backup: pref=$prefix, num=$number, patt=$pattern,\n";
259   local($target_file) = &snarf_name($prefix, $number);
260
261   open(TARPROC, "$tar_tool --delete -f " . &canonicalize($target_file)
262       . " \"$pattern\" 2>$null_log |");
263   <TARPROC>;
264 }
265
266 # recursively scoops up a directory hierarchy.
267 sub backup_hierarchy {
268   local($prefix, $number, $root, $filepart) = @_;
269 #print "backup_hierarchy: pref=$prefix, num=$number, root=$root, filepart=$filepart\n";
270   local(@locus_temp) = &glob_list($root);
271   local($save_root) = $root;
272   local($root) = $locus_temp[0];
273   if (!length($root)) {
274     local($base) = $save_root . "/" . $filepart;
275 #print "adding to missing in backup_hierarchy A: $base\n";
276     push(@missing_log, $base);
277     return;
278   }
279   local($new_pattern) = "$root/$filepart";
280   if ($root =~ /\/$/) { $new_pattern = "$root$filepart"; }
281   local(@mod_locus) = &glob_list($new_pattern);
282   if (!scalar(@mod_locus)) {
283     local($base) = &basename($root . "/" . $filepart);
284 #print "adding to missing in backup_hierarchy B: $base\n";
285     push(@missing_log, $base);
286   } else {
287     foreach $i (@mod_locus) {
288       local($new_locus) = $root;
289       local $offset_len = length($root) + 1;
290       local $char_len = length($i) - length($root) - 1;
291       # make sure we don't double slashes up if one's already there.
292       if ($root =~ /\/$/) { $offset_len--; $char_len++; }
293       local($extra_portion) = substr $i, $offset_len, $char_len;
294       if (!length($extra_portion)) {
295         # well, in this case, there's nothing left of the extra part after
296         # the root.  we'll push the last component of the root down into
297         # the extra part so there's actually something to traverse.
298         $new_locus = &dirname($root);
299         $extra_portion = &basename($root);
300       }
301       &snarfer($prefix, $number, $new_locus, $extra_portion, ());
302     }
303   }
304 }
305
306 # recursively scoop up a list of directory hierarchies.
307 sub backup_hierarchies {
308   local($prefix, $number, $root, @dirs) = @_;
309 #  print "backup_hierarchy: pref=$prefix, num=$number, root=$root,\n";
310 #  print "list of dirs=@dirs.\n";
311   foreach $i (@dirs) {
312     &backup_hierarchy($prefix, $number, $root, $i);
313   }
314 }
315
316 # grab up all the files in a directory (second parm) that are named matching
317 # a simple text pattern (third parm).  if there is a fourth parameter, it is
318 # used as an extra directory component after the main directory.
319 sub snarf_by_pattern {
320   local($prefix, $dir, $pattern, $extra_component) = @_;
321   local($had_extra) = length($extra_component) != 0;
322 #print "snarf by pattern, dir = $dir, patt = $pattern, extra = $extra_component\n";
323   if ($had_extra) {
324     $dir = "$dir/$extra_component";
325   }
326   @dir_contents = &glob_list("$dir/*$pattern*"); 
327 #print "dir contents: @dir_contents\n";
328
329   if (!scalar(@dir_contents)) {
330     print "no '$pattern' directores were backed up in $dir.\n";
331   }
332   
333   foreach $item (@dir_contents) {
334     if ( ($item =~ /$pattern.*snarf/) || ($item =~ /$pattern.*tar/) ) { next; }
335     if ( ! -d "$item" ) { next; }
336 #print "now really planning to backup hier of $item\n";
337     # normal backup had no extra component.
338     local $upper_dir = &dirname($item);
339     local $dir_plus_base = &basename($item);
340     # if we did have an extra component, we do this a bit differently.
341     if ($had_extra) {
342       $upper_dir = &dirname( &dirname($item) );
343       $dir_plus_base = &basename( &dirname($item) ) . "/" . &basename($item);
344     }
345 #print "using upper=$upper_dir and dir+base=$dir_plus_base\n";
346     &backup_hierarchy($prefix, $number, $upper_dir, $dir_plus_base);
347   }
348 }
349
350 # gets the number out of the file specified by a basename.  the number file
351 # is assumed to be stored in the TMP directory and to have an extension of
352 # ".num".
353 sub retrieve_number {
354   local($number_prefix) = @_;
355   # get number from the file specified and increment it for the next use.
356   local($NUMBER_FILE) = $TMP."/$number_prefix.num";
357   local($number) = &get_number($NUMBER_FILE);
358   &next_number($NUMBER_FILE);
359   return $number;
360 }
361
362 # takes a name to use as the basename for a number file, and stores the
363 # file into the archive specified.
364 sub backup_number {
365   local($number_prefix, $snarf_prefix, $number) = @_;
366 #print "backup_number: parms are: numpref=$number_prefix, archpref=$snarf_prefix, num=$number.\n";
367   local($target_file) = $original_path ."/". $snarf_prefix . "_" . $number . ".tar";
368   local($number_file) = $number_prefix . ".num";
369
370   local($currdir) = cwd();
371   chdir($TMP);
372
373   local($outcome) = 0xff & system $tar_tool, "-cf",
374       &canonicalize($target_file), &canonicalize($number_file);
375   if ($outcome) { die("failure to archive"); }
376
377   local($prefix_file) = "prefix.bac";
378   open(NUM_PREFIX, ">" . $prefix_file);
379   print NUM_PREFIX $number_prefix;
380   close(NUM_PREFIX);
381
382   $outcome = 0xff & system $tar_tool, "-rf",
383       &canonicalize($target_file), &canonicalize($prefix_file);
384   if ($outcome) { die("failure to archive"); }
385   unlink($prefix_file);
386   chdir($currdir);
387 }
388
389 # takes a prefix for the number file and a filename where it can be found.
390 # the current number in the temporary directory is compared against the file,
391 # and the new number's used if it's greater.
392 sub restore_number {
393   local($number_prefix, $number_file) = @_;
394 #print "restore num has numpref $number_prefix and numfile $number_file\n";
395   local($comparison_file) = "$TMP" . "/" . $number_prefix . ".num";
396   local($number) = &get_number($number_file);
397   local($old_number) = &get_number($comparison_file);
398   if ($number > $old_number) {
399     &store_number($number, $comparison_file);
400   }
401   unlink($number_file);
402 }
403
404 # ensures that the special restoration program is used on the archives by
405 # renaming their extension.
406 sub rename_archive {
407   local($filename) = @_;
408 #print "rename_archive: file=$filename\n";
409   &finalize_snarf($filename);
410   local(@pieces) = split(/\.[^.]*$/, $filename, 3);
411   local($just_dir_and_base) = $pieces[0];
412   local($new_name) = $just_dir_and_base . '.snarf'; 
413   rename($filename . ".gz", $new_name)
414       || die("could not rename $filename to $new_name.");
415 }
416
417 # undoes a snarfed up archive and pulls out the number.
418 sub restore_archive {
419   local($filename) = &canonicalize(&remove_trailing_slashes(@_));
420   local(@split_name) = &split_filename($filename);
421   if ($#split_name < 1) {
422     print "The name \"$filename\" could not be parsed for restoration.\n";
423     exit 1;
424   }
425   # get the basename of the file.
426   local(@pieces) = split(/\.[^.]*$/, @split_name[1], 2);
427   # we don't want the extension.
428   local($just_dir_and_base) = $split_name[0] . $pieces[0];
429   # now just get the basename without a directory.
430   local(@name_components) = split(/\//, $just_dir_and_base);
431   local($basename) = $name_components[$#name_components];
432   local($new_dir_name) = 'snarf_' . $basename;
433
434   local($currdir) = cwd();
435
436   if (!chdir($new_dir_name)) {
437     mkdir($new_dir_name, 0777)
438         || die("could not create directory $new_dir_name.");
439     if (!chdir($new_dir_name)) {
440       die("could not change to directory $new_dir_name.");
441     }
442   }
443
444   # patch a relative path name to reflect the fact that we're now underneath
445   # the directory where we were.
446   if (! ($filename =~ /^\//) 
447       && ! ($filename =~ /^.:/) ) {
448     $filename = "../" . $filename;
449   }
450
451   local($outcome) = 0xff & system $tar_tool, "-xzf",
452       &canonicalize($filename);
453   if ($outcome) { die("failure to undo archive"); }
454
455   local($outcome) =
456       0xff & system "bash", "$FEISTY_MEOW_SCRIPTS/files/normal_perm.sh", ".";
457   if ($outcome) { die("failure to normalize permissions"); }
458
459   # remove any links that might have crept in; these can cause mischief.
460   local($outcome) = 0xff & system("$find_tool . -type l -exec rm {} ';'");
461
462   # read the name of the prefix file.
463   local($prefix_file) = "prefix.bac";
464   open(NUM_PREFIX, "<" . $prefix_file);
465   local($number_prefix) = <NUM_PREFIX>;
466   close(NUM_PREFIX);
467
468   &restore_number($number_prefix, $number_prefix . ".num");
469   unlink($prefix_file);
470
471   chdir($currdir);
472 }
473
474 1;
475