mirror of
https://github.com/corda/corda.git
synced 2024-12-18 20:47:57 +00:00
d1c5111567
* Remove the two header lines from the diff output to simplify the +/- check. * Revert Kt class changes as they alter the public API.
49 lines
1.1 KiB
Bash
Executable File
49 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Starting API Diff"
|
|
|
|
APIHOME=$(dirname $0)
|
|
|
|
apiCurrent=$APIHOME/api-current.txt
|
|
if [ ! -f $apiCurrent ]; then
|
|
echo "Missing $apiCurrent file - cannot check API diff. Please rebase or add it to this release"
|
|
exit -1
|
|
fi
|
|
|
|
# Remove the two header lines from the diff output.
|
|
diffContents=`diff -u $apiCurrent $APIHOME/../build/api/api-corda-*.txt | tail --lines=+3`
|
|
echo "Diff contents:"
|
|
echo "$diffContents"
|
|
echo
|
|
|
|
# A removed line means that an API was either deleted or modified.
|
|
removals=$(echo "$diffContents" | grep "^-")
|
|
removalCount=`grep -v "^$" <<EOF | wc -l
|
|
$removals
|
|
EOF
|
|
`
|
|
|
|
echo "Number of API removals/changes: "$removalCount
|
|
if [ $removalCount -gt 0 ]; then
|
|
echo "$removals"
|
|
echo
|
|
fi
|
|
|
|
# Adding new abstract methods could also break the API.
|
|
newAbstracts=$(echo "$diffContents" | grep "^+" | grep "\(public\|protected\) abstract")
|
|
abstractCount=`grep -v "^$" <<EOF | wc -l
|
|
$newAbstracts
|
|
EOF
|
|
`
|
|
|
|
echo "Number of new abstract APIs: "$abstractCount
|
|
if [ $abstractCount -gt 0 ]; then
|
|
echo "$newAbstracts"
|
|
echo
|
|
fi
|
|
|
|
badChanges=$(($removalCount + $abstractCount))
|
|
|
|
echo "Exiting with exit code" $badChanges
|
|
exit $badChanges
|