Upload packaging folder
[platform/upstream/iotjs.git] / tools / check_license.py
1 #!/usr/bin/env python
2
3 # Copyright 2015-present Samsung Electronics Co., Ltd. and other contributors
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 import re
18
19
20 class CheckLicenser(object):
21     _license = re.compile(
22 u"""((#|//|\*) Copyright .* Samsung Electronics Co., Ltd. and other contribu.*)+
23 \s?\\2
24 \s?\\2 Licensed under the Apache License, Version 2.0 \(the "License"\);
25 \s?\\2 you may not use this file except in compliance with the License.
26 \s?\\2 You may obtain a copy of the License at
27 \s?\\2
28 \s?\\2     http://www.apache.org/licenses/LICENSE-2.0
29 \s?\\2
30 \s?\\2 Unless required by applicable law or agreed to in writing, software
31 \s?\\2 distributed under the License is distributed on an "AS IS" BASIS
32 \s?\\2 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33 \s?\\2 See the License for the specific language governing permissions and
34 \s?\\2 limitations under the License.""")
35
36     @staticmethod
37     def check(filename):
38         with open(filename, 'r') as f:
39             contents = f.read()
40             return bool(CheckLicenser._license.search(contents))