3 ###############################################################################
5 # Name : shared_snarfer #
6 # Author : Chris Koeritz #
7 # Rights : Copyright (C) 1996-$now by Author #
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. #
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 ###############################################################################
23 require "filename_helper.pl";
29 use Env qw(FEISTY_MEOW_SCRIPTS TMP);
31 $null_log = "/dev/null";
33 $TMP =~ s/\\/\//g; # fix the temp variable for ms-winders.
35 # defines an array of problematic entries we were told to deal with.
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",
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",
50 #print "junk list=@junk_file_list\n";
52 for (local($i) = 0; $i < scalar(@junk_file_list); $i++) {
53 push(@excludes, "--exclude=$junk_file_list[$i]");
55 #print "excludes list=@excludes\n";
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";
63 if ( ! -f "$find_tool" || ! -f "$tar_tool" ) {
64 print "Could not locate either tar or find tools for this platform.\n";
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;
75 # returns the current hostname, but without any domain included.
77 local($temphost) = hostname();
79 $temphost =~ s/([^.]*)\..*/\1/;
80 return &lower($temphost);
83 # takes the base name and creates the full snarf prefix name, which includes
84 # a timestamp and hostname.
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;
96 # returns the name of the file to create based on the prefix and the
97 # current archive number.
99 local($prefix, $number) = @_;
100 local($path) = &canonicalize($original_path);
101 local($target_file) = $path . '/' . $prefix . "_" . $number . ".tar";
105 # finishes up on the archive file.
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"); }
112 if (scalar(@missing_log)) {
113 print "The following files or directories were missing:\n";
114 print "@missing_log\n";
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.
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";
133 #print "cwd now=" . cwd() . "\n";
134 $directory = substr($directory, 4); # rip off absolutist path.
135 #print "using dir now as $directory\n";
136 if (length($directory) == 0) {
137 #print "caught zero length dir, patching to dot now.\n";
144 # snarfer scoops up some files in a directory.
146 local($prefix, $number, $root, $subdir, @extra_flags) = @_;
147 #print "prefix=$prefix, num=$number, root=$root, subdir=$subdir, extra=@extra_flags\n";
149 $root = &chdir_to_top($root);
151 local($target_file) = &snarf_name($prefix, $number);
153 $random_num = (rand() * 1000000) % 1000000;
154 $temp_file = `mktemp "$TMP/zz_snarf_tmp.XXXXXX"`;
157 if (! -d $root . "/" . $subdir) {
158 local($base) = &basename($root . "/" . $subdir);
159 #print "adding to missing in snarfer A: $base\n";
160 push(@missing_log, $base);
163 local($currdir) = cwd();
167 my @lines = qx( $find_tool "$subdir" @extra_flags "-type" "f" );
168 # if ( ($! != 0) || ($? != 0) ) {
169 # die("failure to find files in $subdir");
172 open TEMPY_OUT, ">>$temp_file" or die "cannot open $temp_file";
173 foreach (@lines) { print TEMPY_OUT "$_"; }
176 if (-s $temp_file == 0) {
177 local($base) = &basename($root . "/" . $subdir);
178 #print "adding to missing in snarfer B: $base\n";
179 push(@missing_log, $base);
182 local($outcome) = 0xff & system $tar_tool,
183 "-rf", &canonicalize($target_file), @excludes,
184 "--files-from=" . &canonicalize($temp_file);
187 die("failure to archive");
189 # clean up temporaries.
191 # change back to previous directory.
195 # snarf_file_list is like snarfer but expects a file pattern at the end rather
196 # than a directory name.
197 sub snarf_file_list {
198 local($prefix, $number, $root, $file_pattern, @extra_flags) = @_;
200 #print "prefix=$prefix, num=$number, root=$root, file_pattern=$file_pattern, extra=@extra_flags\n";
202 $root = &chdir_to_top($root);
204 local($target_file) = &snarf_name($prefix, $number);
206 local($currdir) = cwd();
209 local(@files) = &glob_list($file_pattern);
210 if (!scalar(@files)) {
211 local($base) = $root . "/" . $file_pattern;
212 $base =~ s/\/\//\//g;
213 #print "adding to missing in snarf_file_list: $base\n";
214 push(@missing_log, $base);
217 foreach $i (@files) {
219 $i = substr $i, 2, length($i) - 2;
221 local($outcome) = 0xff & system $tar_tool,
222 #"--directory=" . "$root",
223 @extra_flags, "-rf", &canonicalize($target_file), @excludes, $i;
224 if ($outcome) { die("failure to archive"); }
229 # backup some specific files.
231 local($prefix, $number, $root, $subdir, @files) = @_;
232 #print "backup_files: ref=$prefix, num=$number, subdir=$subdir, list of files=@files\n";
233 foreach $i (@files) {
234 local($new_path) = $subdir . "/" . $i;
235 if ($subdir eq ".") { $new_path = "$i"; }
236 &snarf_file_list($prefix, $number, $root, $new_path);
240 # backup some specific directories.
241 sub backup_directories {
242 local($prefix, $number, $root, $subdir, @dirs) = @_;
243 #print "backup_directories: ref=$prefix, num=$number, root=$root, subdir=$subdir, list of dirs=@dirs.\n";
245 local($path_to_use) = $subdir . "/" . $i;
247 $path_to_use = $subdir;
249 &snarfer($prefix, $number, $root, $path_to_use, ("-maxdepth", "1"));
253 # removes items from the file that match a pattern.
254 sub remove_from_backup {
255 local($prefix, $number, $pattern) = @_;
256 #print "remove_from_backup: pref=$prefix, num=$number, patt=$pattern,\n";
257 local($target_file) = &snarf_name($prefix, $number);
259 open(TARPROC, "$tar_tool --delete -f " . &canonicalize($target_file)
260 . " \"$pattern\" 2>$null_log |");
264 # recursively scoops up a directory hierarchy.
265 sub backup_hierarchy {
266 local($prefix, $number, $root, $filepart) = @_;
267 #print "backup_hierarchy: pref=$prefix, num=$number, root=$root, filepart=$filepart\n";
268 local(@locus_temp) = &glob_list($root);
269 local($save_root) = $root;
270 local($root) = $locus_temp[0];
271 if (!length($root)) {
272 local($base) = $save_root . "/" . $filepart;
273 #print "adding to missing in backup_hierarchy A: $base\n";
274 push(@missing_log, $base);
277 local($new_pattern) = "$root/$filepart";
278 if ($root =~ /\/$/) { $new_pattern = "$root$filepart"; }
279 local(@mod_locus) = &glob_list($new_pattern);
280 if (!scalar(@mod_locus)) {
281 local($base) = &basename($root . "/" . $filepart);
282 #print "adding to missing in backup_hierarchy B: $base\n";
283 push(@missing_log, $base);
285 foreach $i (@mod_locus) {
286 local($new_locus) = $root;
287 local $offset_len = length($root) + 1;
288 local $char_len = length($i) - length($root) - 1;
289 # make sure we don't double slashes up if one's already there.
290 if ($root =~ /\/$/) { $offset_len--; $char_len++; }
291 local($extra_portion) = substr $i, $offset_len, $char_len;
292 if (!length($extra_portion)) {
293 # well, in this case, there's nothing left of the extra part after
294 # the root. we'll push the last component of the root down into
295 # the extra part so there's actually something to traverse.
296 $new_locus = &dirname($root);
297 $extra_portion = &basename($root);
299 &snarfer($prefix, $number, $new_locus, $extra_portion, ());
304 # recursively scoop up a list of directory hierarchies.
305 sub backup_hierarchies {
306 local($prefix, $number, $root, @dirs) = @_;
307 # print "backup_hierarchy: pref=$prefix, num=$number, root=$root,\n";
308 # print "list of dirs=@dirs.\n";
310 &backup_hierarchy($prefix, $number, $root, $i);
314 # grab up all the files in a directory (second parm) that are named matching
315 # a simple text pattern (third parm). if there is a fourth parameter, it is
316 # used as an extra directory component after the main directory.
317 sub snarf_by_pattern {
318 local($prefix, $dir, $pattern, $extra_component) = @_;
319 local($had_extra) = length($extra_component) != 0;
320 #print "snarf by pattern, dir = $dir, patt = $pattern, extra = $extra_component\n";
322 $dir = "$dir/$extra_component";
324 @dir_contents = &glob_list("$dir/*$pattern*");
325 #print "dir contents: @dir_contents\n";
327 if (!scalar(@dir_contents)) {
328 print "no '$pattern' directores were backed up in $dir.\n";
331 foreach $item (@dir_contents) {
332 if ( ($item =~ /$pattern.*snarf/) || ($item =~ /$pattern.*tar/) ) { next; }
333 if ( ! -d "$item" ) { next; }
334 #print "now really planning to backup hier of $item\n";
335 # normal backup had no extra component.
336 local $upper_dir = &dirname($item);
337 local $dir_plus_base = &basename($item);
338 # if we did have an extra component, we do this a bit differently.
340 $upper_dir = &dirname( &dirname($item) );
341 $dir_plus_base = &basename( &dirname($item) ) . "/" . &basename($item);
343 #print "using upper=$upper_dir and dir+base=$dir_plus_base\n";
344 &backup_hierarchy($prefix, $number, $upper_dir, $dir_plus_base);
348 # gets the number out of the file specified by a basename. the number file
349 # is assumed to be stored in the TMP directory and to have an extension of
351 sub retrieve_number {
352 local($number_prefix) = @_;
353 # get number from the file specified and increment it for the next use.
354 local($NUMBER_FILE) = $TMP."/$number_prefix.num";
355 local($number) = &get_number($NUMBER_FILE);
356 &next_number($NUMBER_FILE);
360 # takes a name to use as the basename for a number file, and stores the
361 # file into the archive specified.
363 local($number_prefix, $snarf_prefix, $number) = @_;
364 #print "backup_number: parms are: numpref=$number_prefix, archpref=$snarf_prefix, num=$number.\n";
365 local($target_file) = $original_path ."/". $snarf_prefix . "_" . $number . ".tar";
366 local($number_file) = $number_prefix . ".num";
368 local($currdir) = cwd();
371 local($outcome) = 0xff & system $tar_tool, "-cf",
372 &canonicalize($target_file), &canonicalize($number_file);
373 if ($outcome) { die("failure to archive"); }
375 local($prefix_file) = "prefix.bac";
376 open(NUM_PREFIX, ">" . $prefix_file);
377 print NUM_PREFIX $number_prefix;
380 $outcome = 0xff & system $tar_tool, "-rf",
381 &canonicalize($target_file), &canonicalize($prefix_file);
382 if ($outcome) { die("failure to archive"); }
383 unlink($prefix_file);
387 # takes a prefix for the number file and a filename where it can be found.
388 # the current number in the temporary directory is compared against the file,
389 # and the new number's used if it's greater.
391 local($number_prefix, $number_file) = @_;
392 #print "restore num has numpref $number_prefix and numfile $number_file\n";
393 local($comparison_file) = "$TMP" . "/" . $number_prefix . ".num";
394 local($number) = &get_number($number_file);
395 local($old_number) = &get_number($comparison_file);
396 if ($number > $old_number) {
397 &store_number($number, $comparison_file);
399 unlink($number_file);
402 # ensures that the special restoration program is used on the archives by
403 # renaming their extension.
405 local($filename) = @_;
406 #print "rename_archive: file=$filename\n";
407 &finalize_snarf($filename);
408 local(@pieces) = split(/\.[^.]*$/, $filename, 3);
409 local($just_dir_and_base) = $pieces[0];
410 local($new_name) = $just_dir_and_base . '.snarf';
411 rename($filename . ".gz", $new_name)
412 || die("could not rename $filename to $new_name.");
415 # undoes a snarfed up archive and pulls out the number.
416 sub restore_archive {
417 local($filename) = &canonicalize(&remove_trailing_slashes(@_));
418 local(@split_name) = &split_filename($filename);
419 if ($#split_name < 1) {
420 print "The name \"$filename\" could not be parsed for restoration.\n";
423 # get the basename of the file.
424 local(@pieces) = split(/\.[^.]*$/, @split_name[1], 2);
425 # we don't want the extension.
426 local($just_dir_and_base) = $split_name[0] . $pieces[0];
427 # now just get the basename without a directory.
428 local(@name_components) = split(/\//, $just_dir_and_base);
429 local($basename) = $name_components[$#name_components];
430 local($new_dir_name) = 'snarf_' . $basename;
432 local($currdir) = cwd();
434 if (!chdir($new_dir_name)) {
435 mkdir($new_dir_name, 0777)
436 || die("could not create directory $new_dir_name.");
437 if (!chdir($new_dir_name)) {
438 die("could not change to directory $new_dir_name.");
442 # patch a relative path name to reflect the fact that we're now underneath
443 # the directory where we were.
444 if (! ($filename =~ /^\//)
445 && ! ($filename =~ /^.:/) ) {
446 $filename = "../" . $filename;
449 local($outcome) = 0xff & system $tar_tool, "-xzf",
450 &canonicalize($filename);
451 if ($outcome) { die("failure to undo archive"); }
454 0xff & system "bash", "$FEISTY_MEOW_SCRIPTS/files/normal_perm.sh", ".";
455 if ($outcome) { die("failure to normalize permissions"); }
457 # remove any links that might have crept in; these can cause mischief.
458 local($outcome) = 0xff & system("$find_tool . -type l -exec rm {} ';'");
460 # read the name of the prefix file.
461 local($prefix_file) = "prefix.bac";
462 open(NUM_PREFIX, "<" . $prefix_file);
463 local($number_prefix) = <NUM_PREFIX>;
466 &restore_number($number_prefix, $number_prefix . ".num");
467 unlink($prefix_file);