X-Git-Url: http://git.vrable.net/?a=blobdiff_plain;f=cumulus-util;h=6bb474992406c67e060d0ac8ff6fc153a5d84bd8;hb=63e9f9ac125ca33a3f33b255dc25c70922a804ec;hp=05043f10475cb10e438c446d8d183379ea26aaaf;hpb=eff3483101b31fad71ed936509865395ecc6cc3a;p=cumulus.git diff --git a/cumulus-util b/cumulus-util index 05043f1..6bb4749 100755 --- a/cumulus-util +++ b/cumulus-util @@ -4,6 +4,12 @@ import getpass, os, stat, sys, time from optparse import OptionParser + +# Automatically set Python path, based on script directory. This should be +# removed if the tools are properly installed somewhere. +script_directory = os.path.dirname(sys.argv[0]) +sys.path.append(os.path.join(script_directory, 'python')) + import cumulus # Compatibility @@ -90,16 +96,19 @@ def cmd_list_snapshot_sizes(): intent = 1.0 segments = d['Segments'].split() - (size, added, removed) = (0, 0, 0) + (size, added, removed, addcount, remcount) = (0, 0, 0, 0, 0) for seg in segments: segsize = lowlevel.lowlevel_stat(seg + ".tar.gpg")['size'] size += segsize - if seg not in previous: added += segsize + if seg not in previous: + added += segsize + addcount += 1 for seg in previous: if seg not in segments: removed += lowlevel.lowlevel_stat(seg + ".tar.gpg")['size'] + remcount += 1 previous = set(segments) - print "%s [%s]: %.3f +%.3f -%.3f" % (s, intent, size / 1024.0**2, added / 1024.0**2, removed / 1024.0**2) + print "%s [%s]: %.3f +%.3f -%.3f (+%d/-%d segments)" % (s, intent, size / 1024.0**2, added / 1024.0**2, removed / 1024.0**2, addcount, remcount) # Build checksum list for objects in the given segments, or all segments if # none are specified.