| 
									
										
										
										
											1992-12-09 23:12:59 +00:00
										 |  |  | #! /usr/local/bin/python | 
					
						
							| 
									
										
										
										
											1991-06-04 20:36:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # xxci | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # check in files for which rcsdiff returns nonzero exit status | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import sys | 
					
						
							| 
									
										
										
										
											1992-03-30 11:13:59 +00:00
										 |  |  | import os | 
					
						
							| 
									
										
										
										
											1992-03-02 16:13:27 +00:00
										 |  |  | from stat import * | 
					
						
							| 
									
										
										
										
											1991-06-04 20:36:54 +00:00
										 |  |  | import commands | 
					
						
							| 
									
										
										
										
											1992-03-02 16:13:27 +00:00
										 |  |  | import fnmatch | 
					
						
							|  |  |  | import string | 
					
						
							| 
									
										
										
										
											1991-06-04 20:36:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1991-12-18 13:39:16 +00:00
										 |  |  | EXECMAGIC = '\001\140\000\010' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1991-06-04 20:36:54 +00: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 16:13:27 +00:00
										 |  |  | 	print 'No arguments, checking almost *, in "ls -t" order' | 
					
						
							|  |  |  | 	list = [] | 
					
						
							| 
									
										
										
										
											1992-03-30 11:13:59 +00:00
										 |  |  | 	for file in os.listdir(os.curdir): | 
					
						
							| 
									
										
										
										
											1991-06-04 20:36:54 +00:00
										 |  |  | 		if not skipfile(file): | 
					
						
							| 
									
										
										
										
											1992-03-02 16:13:27 +00:00
										 |  |  | 			list.append((getmtime(file), file)) | 
					
						
							|  |  |  | 	list.sort() | 
					
						
							|  |  |  | 	if not list: | 
					
						
							| 
									
										
										
										
											1991-06-04 20:36:54 +00:00
										 |  |  | 		print 'Nothing to do -- exit 1' | 
					
						
							|  |  |  | 		sys.exit(1) | 
					
						
							| 
									
										
										
										
											1992-03-02 16:13:27 +00:00
										 |  |  | 	list.sort() | 
					
						
							|  |  |  | 	list.reverse() | 
					
						
							|  |  |  | 	for mtime, file in list: args.append(file) | 
					
						
							| 
									
										
										
										
											1991-06-04 20:36:54 +00:00
										 |  |  | 	return args | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1992-03-02 16:13:27 +00:00
										 |  |  | def getmtime(file): | 
					
						
							|  |  |  | 	try: | 
					
						
							| 
									
										
										
										
											1992-03-30 11:13:59 +00:00
										 |  |  | 		st = os.stat(file) | 
					
						
							| 
									
										
										
										
											1992-03-02 16:13:27 +00:00
										 |  |  | 		return st[ST_MTIME] | 
					
						
							| 
									
										
										
										
											1992-03-30 11:13:59 +00:00
										 |  |  | 	except os.error: | 
					
						
							| 
									
										
										
										
											1992-03-02 16:13:27 +00:00
										 |  |  | 		return -1 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1991-06-04 20:44:11 +00:00
										 |  |  | badnames = ['tags', 'TAGS', 'xyzzy', 'nohup.out', 'core'] | 
					
						
							| 
									
										
										
										
											1991-06-04 20:36:54 +00:00
										 |  |  | badprefixes = ['.', ',', '@', '#', 'o.'] | 
					
						
							|  |  |  | badsuffixes = \ | 
					
						
							| 
									
										
										
										
											1991-12-18 13:39:16 +00:00
										 |  |  | 	['~', '.a', '.o', '.old', '.bak', '.orig', '.new', '.prev', '.not', \ | 
					
						
							| 
									
										
										
										
											1993-06-05 18:03:30 +00:00
										 |  |  | 	 '.pyc', '.fdc', '.rgb', '.elc', ',v'] | 
					
						
							| 
									
										
										
										
											1992-05-19 13:49:16 +00:00
										 |  |  | ignore = [] | 
					
						
							| 
									
										
										
										
											1992-03-02 16:13:27 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def setup(): | 
					
						
							| 
									
										
										
										
											1992-05-19 13:49:16 +00:00
										 |  |  | 	ignore[:] = badnames | 
					
						
							| 
									
										
										
										
											1992-03-02 16:13:27 +00:00
										 |  |  | 	for p in badprefixes: | 
					
						
							|  |  |  | 		ignore.append(p + '*') | 
					
						
							|  |  |  | 	for p in badsuffixes: | 
					
						
							|  |  |  | 		ignore.append('*' + p) | 
					
						
							|  |  |  | 	try: | 
					
						
							|  |  |  | 		f = open('.xxcign', 'r') | 
					
						
							|  |  |  | 	except IOError: | 
					
						
							|  |  |  | 		return | 
					
						
							| 
									
										
										
										
											1992-05-19 13:49:16 +00:00
										 |  |  | 	ignore[:] = ignore + string.split(f.read()) | 
					
						
							| 
									
										
										
										
											1991-06-04 20:36:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def skipfile(file): | 
					
						
							| 
									
										
										
										
											1992-03-02 16:13:27 +00:00
										 |  |  | 	for p in ignore: | 
					
						
							|  |  |  | 		if fnmatch.fnmatch(file, p): return 1 | 
					
						
							| 
									
										
										
										
											1991-06-04 20:36:54 +00:00
										 |  |  | 	try: | 
					
						
							| 
									
										
										
										
											1992-03-30 11:13:59 +00:00
										 |  |  | 		st = os.lstat(file) | 
					
						
							|  |  |  | 	except os.error: | 
					
						
							| 
									
										
										
										
											1991-06-04 20:36:54 +00:00
										 |  |  | 		return 1 # Doesn't exist -- skip it | 
					
						
							| 
									
										
										
										
											1992-03-02 16:13:27 +00: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 13:39:16 +00:00
										 |  |  | 	# Skip executables | 
					
						
							|  |  |  | 	try: | 
					
						
							|  |  |  | 		data = open(file, 'r').read(len(EXECMAGIC)) | 
					
						
							| 
									
										
										
										
											1992-01-01 19:35:13 +00:00
										 |  |  | 		if data == EXECMAGIC: return 1 | 
					
						
							| 
									
										
										
										
											1991-12-18 13:39:16 +00:00
										 |  |  | 	except: | 
					
						
							|  |  |  | 		pass | 
					
						
							|  |  |  | 	return 0 | 
					
						
							| 
									
										
										
										
											1991-06-04 20:36:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def badprefix(file): | 
					
						
							|  |  |  | 	for bad in badprefixes: | 
					
						
							| 
									
										
										
										
											1992-01-01 19:35:13 +00:00
										 |  |  | 		if file[:len(bad)] == bad: return 1 | 
					
						
							| 
									
										
										
										
											1991-06-04 20:36:54 +00:00
										 |  |  | 	return 0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def badsuffix(file): | 
					
						
							|  |  |  | 	for bad in badsuffixes: | 
					
						
							| 
									
										
										
										
											1992-01-01 19:35:13 +00:00
										 |  |  | 		if file[-len(bad):] == bad: return 1 | 
					
						
							| 
									
										
										
										
											1991-06-04 20:36:54 +00:00
										 |  |  | 	return 0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def go(args): | 
					
						
							|  |  |  | 	for file in args: | 
					
						
							|  |  |  | 		print file + ':' | 
					
						
							| 
									
										
										
										
											1991-07-01 18:23:06 +00:00
										 |  |  | 		if differing(file): | 
					
						
							| 
									
										
										
										
											1992-03-30 11:13:59 +00:00
										 |  |  | 			showdiffs(file) | 
					
						
							| 
									
										
										
										
											1991-06-04 20:36:54 +00:00
										 |  |  | 			if askyesno('Check in ' + file + ' ? '): | 
					
						
							| 
									
										
										
										
											1992-03-30 11:13:59 +00:00
										 |  |  | 				sts = os.system('rcs -l ' + file) # ignored | 
					
						
							|  |  |  | 				sts = os.system('ci -l ' + file) | 
					
						
							| 
									
										
										
										
											1991-06-04 20:36:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1991-07-01 18:23:06 +00:00
										 |  |  | def differing(file): | 
					
						
							| 
									
										
										
										
											1992-03-30 11:13:59 +00:00
										 |  |  | 	cmd = 'co -p ' + file + ' 2>/dev/null | cmp -s - ' + file | 
					
						
							|  |  |  | 	sts = os.system(cmd) | 
					
						
							|  |  |  | 	return sts != 0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def showdiffs(file): | 
					
						
							|  |  |  | 	cmd = 'rcsdiff ' + file + ' 2>&1 | ${PAGER-more}' | 
					
						
							|  |  |  | 	sts = os.system(cmd) | 
					
						
							| 
									
										
										
										
											1991-06-04 20:36:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def askyesno(prompt): | 
					
						
							|  |  |  | 	s = raw_input(prompt) | 
					
						
							|  |  |  | 	return s in ['y', 'yes'] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1992-12-09 23:12:59 +00:00
										 |  |  | try: | 
					
						
							|  |  |  | 	setup() | 
					
						
							|  |  |  | 	go(getargs()) | 
					
						
							|  |  |  | except KeyboardInterrupt: | 
					
						
							|  |  |  | 	print '[Intr]' |