cpython/Tools/scripts/byteyears.py

57 lines
1.4 KiB
Python
Raw Normal View History

#! /usr/bin/env python
1991-06-04 17:36:54 -03:00
# Print the product of age and size of each file, in suitable units.
1991-06-04 17:36:54 -03:00
#
# Usage: byteyears [ -a | -m | -c ] file ...
#
# Options -[amc] select atime, mtime (default) or ctime as age.
1991-06-04 17:36:54 -03:00
1992-03-30 07:15:26 -04:00
import sys, os, time
1991-06-04 17:36:54 -03:00
from stat import *
# Use lstat() to stat files if it exists, else stat()
try:
2001-01-17 04:48:39 -04:00
statfunc = os.lstat
1992-03-30 07:15:26 -04:00
except AttributeError:
2001-01-17 04:48:39 -04:00
statfunc = os.stat
# Parse options
1992-01-01 15:35:13 -04:00
if sys.argv[1] == '-m':
2001-01-17 04:48:39 -04:00
itime = ST_MTIME
del sys.argv[1]
1992-01-01 15:35:13 -04:00
elif sys.argv[1] == '-c':
2001-01-17 04:48:39 -04:00
itime = ST_CTIME
del sys.argv[1]
1992-01-01 15:35:13 -04:00
elif sys.argv[1] == '-a':
2001-01-17 04:48:39 -04:00
itime = ST_CTIME
del sys.argv[1]
else:
2001-01-17 04:48:39 -04:00
itime = ST_MTIME
2001-01-17 04:48:39 -04:00
secs_per_year = 365.0 * 24.0 * 3600.0 # Scale factor
now = time.time() # Current time, for age computations
status = 0 # Exit status, set to 1 on errors
# Compute max file name length
maxlen = 1
for filename in sys.argv[1:]:
maxlen = max(maxlen, len(filename))
1991-06-04 17:36:54 -03:00
# Process each argument in turn
for filename in sys.argv[1:]:
2001-01-17 04:48:39 -04:00
try:
st = statfunc(filename)
2001-01-17 04:48:39 -04:00
except os.error, msg:
sys.stderr.write("can't stat %r: %r\n" % (filename, msg))
2001-01-17 04:48:39 -04:00
status = 1
st = ()
if st:
anytime = st[itime]
size = st[ST_SIZE]
age = now - anytime
byteyears = float(size) * float(age) / secs_per_year
print filename.ljust(maxlen),
print repr(int(byteyears)).rjust(8)
1991-06-04 17:36:54 -03:00
sys.exit(status)