forked from psychopy/psychopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
searchCopyrightYear.py
executable file
·118 lines (105 loc) · 4.8 KB
/
searchCopyrightYear.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""looks for lines containing 'Copyright|(C)', <last-year>, and 'Peirce'
in all files in or below the current directory
and writes out an executable file, replaceCopyright<year>, with commands that
could be used to update last-year to the current year.
usage steps:
- run tests
- ./searchCopyrightYear.py
- review the new file, replaceCopyright<Year>.sh, edit as needed
- ./replaceCopyrightYear.sh -- this does the replacing
- run tests again -- make sure we didn't break anything
- commit
relies on: perl -pi -e 's/\Qold\E/new/' <file>
I couldn't figure out a pythonic way to do in-place changes to files
import fileinput # looked promising but a) don't really want to copy every line
of every file, and b) doesn't actually work easily...
for line in fileinput.input(file, inplace = 1):
print line.replace(...).strip() #--> loses initial whitespace
line.replace(....) #--> adds quote marks around line
"""
from __future__ import absolute_import, print_function
from builtins import str
__author__ = 'Jeremy Gray'
import os, sys, time, glob
from psychopy import core
assert sys.platform == 'darwin' or sys.platform.startswith('linux')
perlVersion = core.shellCall('perl -V').splitlines()[0]
assert perlVersion.find('perl5') > -1 # not completely sure what will happen with other perl versions...
newYear = str(time.localtime()[0]) # current year
oldYear = str(int(newYear)-1) # last year; will need to set manually if you miss a year
print("copyright %s -> %s: searching for files" % (oldYear, newYear))
#find relevant files:
files = []
for root, dirs, tmpfiles in os.walk('.'):
for f in tmpfiles:
file = root+'/'+f
try: tail = f.rsplit('.',2)[1]
except: tail = 'NONE'
if tail in ['html','orig','pickle','doctree','pyc','pdf','dll','pyw', 'mov',
'wav','mp4','mpg','ico','jpg','gif','png','DS_Store','xlsx', 'icns','svg']:
continue
if not file.find('build/pygame/Contents/Packages') > -1 \
and not file.find('build/pyobjc') > -1 \
and not file.find('/sandbox/') > -1 \
and not file.find('/docs/build/') > -1 \
and not file.startswith('./.git'):
#print tail, file
files.append(file)
print(len(files), 'files found, screening each')
badLines = 0 # ['$/] will mess with perl search-replace; other characters might too
targetFiles = 0 # count of files to be updated
tmpFile = './replaceCopyright'+oldYear+'_'+newYear+'.sh'
try: del files[files.index(tmpFile)]
except: pass
tmp = open(tmpFile, 'w')
tmp.write('#!/bin/sh \necho Updating...\n')
# check each line of each relevant file:
for file in files:
if os.path.isdir(file) or file.endswith(sys.argv[0]):
continue
contents = open(r''+file+'', 'r').readlines()
lines = [line for line in contents if \
line.find("Peirce") > -1 and \
line.find(oldYear) > -1 and \
(line.lower().find("(c)") > -1 or line.lower().find("copyright") > -1)
]
for i,line in enumerate(lines): #allow multiple lines per file, each gets its own replace command
#print i+1, file
line = line.strip()
#print line
if line.find("'") > -1: # capture stuff in between single-quotes, hopefully including the year
line = line[line.find("'")+1:]
line = line[:line.find("'")]
if line.find(oldYear) == -1:
badLines += 1
print(file+": expected <last-year> somewhere between single-quotes:", line)
continue # skip the line
if '$' in line:
badLines += 1
print(file+": cannot handle '$' in line:", line)
continue
sep = '/' # perl search-replace separator
if sep in line:
sep = '|' # try this one instead
if sep in line:
badLines += 1
print(file+": cannot handle '"+sep+"' in line:", line)
continue
newLine = line.replace(oldYear, newYear) # should not contain characters that will mess with perl 's/oldLine/newLine/'
cmd = "echo "+file+"\n " # helps with debugging, if the perl s/// flails due to a bad character -> you know what file to look at
cmd += "perl -pi -e 's"+sep+"\Q"+line+"\E"+sep+newLine+sep+"' '"+file+"'\n" # only match one line, avoid s///g
tmp.write(cmd)
targetFiles += 1
tmp.write('echo Updated %d files.\n' % targetFiles)
tmp.close()
core.shellCall('chmod u+x '+tmpFile) # make executable
if targetFiles:
print('To make %d changes, inspect then run:\n '%targetFiles, tmpFile)
print('If something looks amiss, you can manually edit then run it.')
if badLines:
print("Warning: %d lines were skipped" % badLines)
else:
print('No matching files found for year', oldYear)
os.unlink(tmpFile)