X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Farchival%2Fshared_snarfer.pl;h=998cc5f72bd55abd84b5e145aab7f598e832b3ed;hb=a6d593934f34d35642cdc8a79421404560f89fe1;hp=54ece73e517a18014b350578df2045c96b40528d;hpb=12271e032cc820565839dc4029666edac84de8ba;p=feisty_meow.git diff --git a/scripts/archival/shared_snarfer.pl b/scripts/archival/shared_snarfer.pl index 54ece73e..998cc5f7 100644 --- a/scripts/archival/shared_snarfer.pl +++ b/scripts/archival/shared_snarfer.pl @@ -46,7 +46,8 @@ $TMP =~ s/\\/\//g; # fix the temp variable for ms-winders. # these files are considered unimportant and won't be included in the archive. @junk_file_list = ("*~", "*.$$$", "3rdparty", "*.aps", "*.bak", "binaries", "*.bsc", "*.cgl", "*.csm", "CVS", "Debug", "*.dll", "*.err", "*.exe", - "generated_*", "*.glb", "inprogress", "ipch", "*.llm", "*.log", "*.lnk", + "generated_*", "*.git", "*.glb", "inprogress", "ipch", "*.llm", + "*.log", "*.lnk", "makefile.fw*", "*.mbt", "*.mrt", "*.ncb", "*.o", "obj", "*.obj", "octalforty.Wizardby", "*.obr", "*.opt", "packages", "*.pch", "*.pdb", "*.plg", "*.r$p", "*.rcs", "Release", @@ -54,7 +55,6 @@ $TMP =~ s/\\/\//g; # fix the temp variable for ms-winders. "*.sdf", "*.suo", ".svn", "*.sym", "*.td", "*.tds", "*.tdw", "*.tlb", "*.trw", "*.tmp", "*.tr", "*.user", "*_version.h", "*_version.rc", "*.vspscc", "waste"); -###, "*.wav" #print "junk list=@junk_file_list\n"; @excludes = (); for (local($i) = 0; $i < scalar(@junk_file_list); $i++) { @@ -177,7 +177,7 @@ sub snarfer { chdir($root); local($outcome) = 0; - my @lines = qx( $find_tool $subdir @extra_flags "-type" "f" ); + my @lines = qx( $find_tool "$subdir" @extra_flags "-type" "f" ); # if ( ($! != 0) || ($? != 0) ) { # die("failure to find files in $subdir"); # } @@ -324,22 +324,30 @@ sub backup_hierarchies { } } -# grab up all the files in a directory (first parm) that are named matching -# a simple text pattern (second parm). +# grab up all the files in a directory (second parm) that are named matching +# a simple text pattern (third parm). if there is a fourth parameter, it is +# used as an extra directory component after the main directory. sub snarf_by_pattern { - local($dir, $pattern) = @_; + local($prefix, $dir, $pattern, $extra_component) = @_; # print "dir = $dir and patt = $pattern\n"; + $extra_piece = ""; + $dir_for_hierarchy = "."; + if (length($extra_component)) { + $extra_piece = "/" . $extra_component; + $dir_for_hierarchy = $extra_component; + } - @dir_contents = &glob_list("$dir/*$pattern*"); + @dir_contents = &glob_list("$dir$extra_piece/*$pattern*"); # print "dir contents: @dir_contents\n"; if (!scalar(@dir_contents)) { - print "no $pattern directores were backed up in $dir.\n"; + print "no '$pattern' directores were backed up in $dir.\n"; } + foreach $item (@dir_contents) { if ( ($item =~ /$pattern.*snarf/) || ($item =~ /$pattern.*tar/) ) { next; } if ( ! -d "$item" ) { next; } - &backup_hierarchy($base, $number, $item, "."); + &backup_hierarchy($prefix, $number, $dir, "$dir_for_hierarchy" . "/" . &basename($item)); } } @@ -449,7 +457,7 @@ sub restore_archive { if ($outcome) { die("failure to undo archive"); } local($outcome) = - 0xff & system "bash", "$SHELLDIR/files/normal_perm.sh", "."; + 0xff & system "bash", "$FEISTY_MEOW_SCRIPTS/files/normal_perm.sh", "."; if ($outcome) { die("failure to normalize permissions"); } # remove any links that might have crept in; these can cause mischief.