-
Notifications
You must be signed in to change notification settings - Fork 164
/
.copyright.hook
137 lines (107 loc) · 4.08 KB
/
.copyright.hook
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# Copyright (c) 2024 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import argparse
import datetime
import os
import re
import sys
COPYRIGHT = '''Copyright (c) {year} PaddlePaddle Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.'''
def _generate_copyright(comment_mark):
year = datetime.datetime.now().year
copyright = COPYRIGHT.format(year=year)
return [
(
f"{comment_mark} {line}{os.linesep}"
if line
else f"{comment_mark}{os.linesep}"
)
for line in copyright.splitlines()
]
def _get_comment_mark(path):
lang_type = re.compile(r"\.(py|pyi|sh)$")
if lang_type.search(path) is not None:
return "#"
lang_type = re.compile(r"\.(h|c|hpp|cc|cpp|cu|go|cuh|proto)$")
if lang_type.search(path) is not None:
return "//"
return None
RE_ENCODE = re.compile(r"^[ \t\v]*#.*?coding[:=]", re.IGNORECASE)
RE_COPYRIGHT = re.compile(r".*Copyright \(c\) \d{4}", re.IGNORECASE)
RE_SHEBANG = re.compile(r"^[ \t\v]*#[ \t]?\!")
def _check_copyright(path):
head = []
try:
with open(path, 'r', encoding='utf-8') as f:
head = [next(f) for x in range(4)]
except StopIteration:
pass
for idx, line in enumerate(head):
if RE_COPYRIGHT.search(line) is not None:
return True
return False
def generate_copyright(path, comment_mark):
original_contents = open(path, 'r', encoding="utf-8").readlines()
head = original_contents[0:4]
insert_line_no = 0
for i, line in enumerate(head):
if RE_ENCODE.search(line) or RE_SHEBANG.search(line):
insert_line_no = i + 1
copyright = _generate_copyright(comment_mark)
if insert_line_no == 0:
new_contents = copyright
if (
len(original_contents) > 0
and len(original_contents[0].strip()) != 0
):
new_contents.append(os.linesep)
new_contents.extend(original_contents)
else:
new_contents = original_contents[0:insert_line_no]
new_contents.append(os.linesep)
new_contents.extend(copyright)
if (
len(original_contents) > insert_line_no
and len(original_contents[insert_line_no].strip()) != 0
):
new_contents.append(os.linesep)
new_contents.extend(original_contents[insert_line_no:])
new_contents = "".join(new_contents)
with open(path, 'w', encoding='utf-8') as output_file:
output_file.write(new_contents)
def main(argv=None):
parser = argparse.ArgumentParser(
description='Checker for copyright declaration.'
)
parser.add_argument('filenames', nargs='*', help='Filenames to check')
args = parser.parse_args(argv)
retv = 0
for path in args.filenames:
comment_mark = _get_comment_mark(path)
if comment_mark is None:
print("warning:Unsupported file", path, file=sys.stderr)
continue
if _check_copyright(path):
continue
generate_copyright(path, comment_mark)
if __name__ == '__main__':
sys.exit(main())