python-efl: API coverage script now handles all bindings. Check --help

for usage.


SVN revision: 84413
This commit is contained in:
Kai Huuhko 2013-03-08 16:15:59 +00:00
parent 8345d464b4
commit c0b9350447
1 changed files with 71 additions and 48 deletions

View File

@ -4,66 +4,89 @@ import os
import sys
import re
import subprocess
import argparse
def pkg_config(name, require, min_vers=None):
def pkg_config(require, min_vers=None):
name = require.capitalize()
try:
sys.stdout.write("Checking for " + name + ": ")
ver = subprocess.check_output(["pkg-config", "--modversion", require]).decode("utf-8").strip()
if min_vers is not None:
assert 0 == subprocess.call(["pkg-config", "--atleast-version", min_vers, require])
cflags = subprocess.check_output(["pkg-config", "--cflags", require]).decode("utf-8").split()
libs = subprocess.check_output(["pkg-config", "--libs", require]).decode("utf-8").split()
sys.stdout.write("OK, found " + ver + "\n")
return (cflags, libs)
return cflags
except (OSError, subprocess.CalledProcessError):
raise SystemExit("Failed to find Evas with 'pkg-config'. Please make sure that it is installed and available on your system path.")
raise SystemExit("Failed to find" + name + "with 'pkg-config'. Please make sure that it is installed and available on your system path.")
except (AssertionError):
raise SystemExit("Failed to match version. Found: " + ver + " Needed: " + min_vers)
eo_cflags, eo_libs = pkg_config('Eo', 'eo', "1.7.99")
evas_cflags, evas_libs = pkg_config('Evas', 'evas', "1.7.99")
ecore_cflags, ecore_libs = pkg_config('Ecore', 'ecore', "1.7.99")
efile_cflags, efile_libs = pkg_config('EcoreFile', 'ecore-file', "1.7.99")
edje_cflags, edje_libs = pkg_config('Edje', 'edje', "1.7.99")
emotion_cflags, emotion_libs = pkg_config('Emotion', 'emotion', "1.7.99")
edbus_cflags, edbus_libs = pkg_config('EDBus', 'edbus2', "1.7.99")
elm_cflags, elm_libs = pkg_config('Elementary', 'elementary', "1.7.99")
def get_capis(inc_path, prefix):
capis = []
elm_capis = []
elm_pyapis = []
for path, dirs, files in os.walk(inc_path):
for f in files:
with open(os.path.join(path, f), "r") as header:
capi = header.read()
matches = re.finditer("^ *EAPI [A-Za-z_ *\n]+(" + prefix + "_\w+)\(", capi, re.S|re.M)
for match in matches:
func = match.group(1)
#print(func)
capis.append(func)
return capis
elm_inc = elm_cflags[0]
elm_inc = elm_inc[2:]
for path, dirs, files in os.walk(elm_inc):
for f in files:
with open(os.path.join(path, f), "r") as header:
capi = header.read()
matches = re.finditer("^ *EAPI [A-Za-z_ *\n]+(elm_\w+)\(", capi, re.S|re.M)
for match in matches:
func = match.group(1)
#print(func)
elm_capis.append(func)
def get_pyapis(pxd_path, header_name, prefix):
pyapis = []
for path, dirs, files in os.walk("efl/elementary"):
for f in files:
if f.endswith(".pxd"):
with open(os.path.join(path, f), "r") as pxd:
pyapif = pxd.read()
cdef = re.search('(cdef extern from "Elementary\.h":\n)(.+)', pyapif, re.S)
if cdef:
matches = re.finditer(" .+(elm_\w+)\(", cdef.group(2))
for match in matches:
func = match.group(1)
#print(func)
elm_pyapis.append(func)
ecs = set(elm_capis)
eps = set(elm_pyapis)
print("C api functions: {0}".format(len(ecs)))
print("py api functions: {0}".format(len(eps)))
differences = sorted(ecs.union(eps) - ecs.intersection(eps))
for d in differences:
if d in ecs:
print("{0} is missing from py api".format(d))
else:
pass#print("{0} is missing from c api".format(d))
for path, dirs, files in os.walk(pxd_path):
for f in files:
if f.endswith(".pxd"):
with open(os.path.join(path, f), "r") as pxd:
pyapi = pxd.read()
cdef = re.search('(cdef extern from "' + header_name + '\.h":\n)(.+)', pyapi, re.S)
if cdef:
matches = re.finditer(" .+(" + prefix + "_\w+)\(", cdef.group(2))
for match in matches:
func = match.group(1)
#print(func)
pyapis.append(func)
return pyapis
parser = argparse.ArgumentParser()
parser.add_argument("libs", nargs="+", help="Possible values are eo, evas, ecore, efile, edje, emotion, edbus, elementary and all.")
args = parser.parse_args()
if args.libs is "all":
args.libs = ["eo", "evas", "ecore", "efile", "edje", "emotion", "edbus", "elementary"]
params = {
"eo": ("include", "Eo", "eo"),
"evas": ("include", "Evas", "evas"),
"ecore": ("include", "Ecore", "ecore"),
"efile": ("include", "Ecore_File", "ecore_file"),
"edje": ("include", "Edje", "edje"),
"emotion": ("include", "Emotion", "emotion"),
"edbus2": ("efl/edbus", "EDBus", "edbus"),
"elementary": ("efl/elementary", "Elementary", "elm"),
}
for key in args.libs:
inc_path = pkg_config(key, "1.7.99")[0][2:]
pxd_path, header_name, prefix = params[key]
capis = get_capis(inc_path, prefix)
pyapis = get_pyapis(pxd_path, header_name, prefix)
ecs = set(capis)
eps = set(pyapis)
differences = sorted(ecs.union(eps) - ecs.intersection(eps))
for d in differences:
if d in ecs:
print("{0} is missing from py api".format(d))
else:
pass#print("{0} is missing from c api".format(d))
print(header_name + " C api functions: {0}".format(len(ecs)))
print(header_name + " py api functions: {0}".format(len(eps)))