1991-07-01 15:23:06 -03:00
|
|
|
#! /ufs/guido/bin/sgi/python
|
1991-06-04 17:36:54 -03:00
|
|
|
#! /usr/local/python
|
|
|
|
|
|
|
|
# xxci
|
|
|
|
#
|
|
|
|
# check in files for which rcsdiff returns nonzero exit status
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import posix
|
1992-03-02 12:13:27 -04:00
|
|
|
from stat import *
|
1991-06-04 17:36:54 -03:00
|
|
|
import path
|
|
|
|
import commands
|
1992-03-02 12:13:27 -04:00
|
|
|
import fnmatch
|
|
|
|
import string
|
1991-06-04 17:36:54 -03:00
|
|
|
|
1991-12-18 09:39:16 -04:00
|
|
|
EXECMAGIC = '\001\140\000\010'
|
|
|
|
|
1991-06-04 17:36:54 -03:00
|
|
|
MAXSIZE = 200*1024 # Files this big must be binaries and are skipped.
|
|
|
|
|
|
|
|
def getargs():
|
|
|
|
args = sys.argv[1:]
|
|
|
|
if args:
|
|
|
|
return args
|
1992-03-02 12:13:27 -04:00
|
|
|
print 'No arguments, checking almost *, in "ls -t" order'
|
|
|
|
list = []
|
1991-06-04 17:36:54 -03:00
|
|
|
for file in posix.listdir('.'):
|
|
|
|
if not skipfile(file):
|
1992-03-02 12:13:27 -04:00
|
|
|
list.append((getmtime(file), file))
|
|
|
|
list.sort()
|
|
|
|
if not list:
|
1991-06-04 17:36:54 -03:00
|
|
|
print 'Nothing to do -- exit 1'
|
|
|
|
sys.exit(1)
|
1992-03-02 12:13:27 -04:00
|
|
|
list.sort()
|
|
|
|
list.reverse()
|
|
|
|
for mtime, file in list: args.append(file)
|
1991-06-04 17:36:54 -03:00
|
|
|
return args
|
|
|
|
|
1992-03-02 12:13:27 -04:00
|
|
|
def getmtime(file):
|
|
|
|
try:
|
|
|
|
st = posix.stat(file)
|
|
|
|
return st[ST_MTIME]
|
|
|
|
except posix.error:
|
|
|
|
return -1
|
|
|
|
|
1991-06-04 17:44:11 -03:00
|
|
|
badnames = ['tags', 'TAGS', 'xyzzy', 'nohup.out', 'core']
|
1991-06-04 17:36:54 -03:00
|
|
|
badprefixes = ['.', ',', '@', '#', 'o.']
|
|
|
|
badsuffixes = \
|
1991-12-18 09:39:16 -04:00
|
|
|
['~', '.a', '.o', '.old', '.bak', '.orig', '.new', '.prev', '.not', \
|
|
|
|
'.pyc', '.elc']
|
1992-03-02 12:13:27 -04:00
|
|
|
|
|
|
|
def setup():
|
|
|
|
global ignore
|
|
|
|
ignore = badnames[:]
|
|
|
|
for p in badprefixes:
|
|
|
|
ignore.append(p + '*')
|
|
|
|
for p in badsuffixes:
|
|
|
|
ignore.append('*' + p)
|
|
|
|
try:
|
|
|
|
f = open('.xxcign', 'r')
|
|
|
|
except IOError:
|
|
|
|
return
|
|
|
|
ignore = ignore + string.split(f.read())
|
1991-06-04 17:36:54 -03:00
|
|
|
|
|
|
|
def skipfile(file):
|
1992-03-02 12:13:27 -04:00
|
|
|
for p in ignore:
|
|
|
|
if fnmatch.fnmatch(file, p): return 1
|
1991-06-04 17:36:54 -03:00
|
|
|
try:
|
1992-03-02 12:13:27 -04:00
|
|
|
st = posix.lstat(file)
|
1991-06-04 17:36:54 -03:00
|
|
|
except posix.error:
|
|
|
|
return 1 # Doesn't exist -- skip it
|
1992-03-02 12:13:27 -04:00
|
|
|
# Skip non-plain files.
|
|
|
|
if not S_ISREG(st[ST_MODE]): return 1
|
|
|
|
# Skip huge files -- probably binaries.
|
|
|
|
if st[ST_SIZE] >= MAXSIZE: return 1
|
1991-12-18 09:39:16 -04:00
|
|
|
# Skip executables
|
|
|
|
try:
|
|
|
|
data = open(file, 'r').read(len(EXECMAGIC))
|
1992-01-01 15:35:13 -04:00
|
|
|
if data == EXECMAGIC: return 1
|
1991-12-18 09:39:16 -04:00
|
|
|
except:
|
|
|
|
pass
|
|
|
|
return 0
|
1991-06-04 17:36:54 -03:00
|
|
|
|
|
|
|
def badprefix(file):
|
|
|
|
for bad in badprefixes:
|
1992-01-01 15:35:13 -04:00
|
|
|
if file[:len(bad)] == bad: return 1
|
1991-06-04 17:36:54 -03:00
|
|
|
return 0
|
|
|
|
|
|
|
|
def badsuffix(file):
|
|
|
|
for bad in badsuffixes:
|
1992-01-01 15:35:13 -04:00
|
|
|
if file[-len(bad):] == bad: return 1
|
1991-06-04 17:36:54 -03:00
|
|
|
return 0
|
|
|
|
|
|
|
|
def go(args):
|
|
|
|
for file in args:
|
|
|
|
print file + ':'
|
1991-07-01 15:23:06 -03:00
|
|
|
if differing(file):
|
|
|
|
sts = posix.system('rcsdiff ' + file) # ignored
|
1991-06-04 17:36:54 -03:00
|
|
|
if askyesno('Check in ' + file + ' ? '):
|
1991-07-01 15:23:06 -03:00
|
|
|
sts = posix.system('rcs -l ' + file) # ignored
|
1991-06-04 17:36:54 -03:00
|
|
|
sts = posix.system('ci -l ' + file)
|
|
|
|
|
1991-07-01 15:23:06 -03:00
|
|
|
def differing(file):
|
|
|
|
try:
|
|
|
|
this = open(file, 'r').read()
|
|
|
|
that = posix.popen('co -p '+file+' 2>/dev/null', 'r').read()
|
|
|
|
return this <> that
|
|
|
|
except:
|
|
|
|
return 1
|
1991-06-04 17:36:54 -03:00
|
|
|
|
|
|
|
def askyesno(prompt):
|
|
|
|
s = raw_input(prompt)
|
|
|
|
return s in ['y', 'yes']
|
|
|
|
|
1992-03-02 12:13:27 -04:00
|
|
|
setup()
|
1991-06-04 17:36:54 -03:00
|
|
|
go(getargs())
|