diff_api.py 1.6 KB
Newer Older
Y
yuyang18 已提交
1
#!/usr/bin/env python
S
seemingwang 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

# Copyright (c) 2021 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.

Y
yuyang18 已提交
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
from __future__ import print_function
import difflib
import sys

with open(sys.argv[1], 'r') as f:
    origin = f.read()
    origin = origin.splitlines()

with open(sys.argv[2], 'r') as f:
    new = f.read()
    new = new.splitlines()

differ = difflib.Differ()
result = differ.compare(origin, new)

error = False
Z
Zeng Jinle 已提交
33
diffs = []
Y
yuyang18 已提交
34 35 36 37
for each_diff in result:
    if each_diff[0] in ['-', '?']:  # delete or change API is not allowed
        error = True
    elif each_diff[0] == '+':
38
        error = True
Y
yuyang18 已提交
39 40

    if each_diff[0] != ' ':
Z
Zeng Jinle 已提交
41 42 43 44
        diffs.append(each_diff)
'''
If you modify/add/delete the API files, including code and comment, 
please follow these steps in order to pass the CI:
Y
yuyang18 已提交
45

Z
Zeng Jinle 已提交
46 47 48 49
  1. cd ${paddle_path}, compile paddle;
  2. pip install build/python/dist/(build whl package);
  3. run "python tools/print_signatures.py paddle.fluid> paddle/fluid/API.spec"
'''
Y
yuyang18 已提交
50
if error:
Z
Zeng Jinle 已提交
51 52 53
    print('API Difference is: ')
    for each_diff in diffs:
        print(each_diff)