summaryrefslogtreecommitdiffstats
path: root/meta/classes/package.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-14 17:26:20 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-18 21:26:40 +0000
commitadd11fa1abfc51f1a793c84f02cd7d85d793fe14 (patch)
treee58176a867d272a57d91f61e2f954fc0249d007e /meta/classes/package.bbclass
parentcec0102647e3f2c93de5125c1de2436b4b787bdd (diff)
downloadpoky-add11fa1abfc51f1a793c84f02cd7d85d793fe14.tar.gz
package: Add cachedpath optimisation
Currently, various standard library operations like os.walk(), os.path.isdir() and os.path.islink() each call stat or lstat which involves a syscall into the kernel. There is no caching since they could conceivably have changed on disk. The result is that for something like the do_package task of the kernel we're spending over two minutes making 868,000 individual stat calls for 23,000 files. This is suboptimal. This patch adds lib/oe/cachedpath.py which are a set of replacement functions for these operations which use cached stat data rather than hitting the kernel each time. It gives a nice performance improvement halving the build time of the kernel do_package. (From OE-Core rev: 556dee0c4d6d8a87c0cddbd2f60fe5917d009f18) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/package.bbclass')
-rw-r--r--meta/classes/package.bbclass56
1 files changed, 32 insertions, 24 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass
index f3a6bc726d..b6f87674a0 100644
--- a/meta/classes/package.bbclass
+++ b/meta/classes/package.bbclass
@@ -288,7 +288,7 @@ def copydebugsources(debugsrcdir, d):
288 basepath = dvar 288 basepath = dvar
289 for p in debugsrcdir.split("/"): 289 for p in debugsrcdir.split("/"):
290 basepath = basepath + "/" + p 290 basepath = basepath + "/" + p
291 if not os.path.exists(basepath): 291 if not cpath.exists(basepath):
292 nosuchdir.append(basepath) 292 nosuchdir.append(basepath)
293 bb.utils.mkdirhier(basepath) 293 bb.utils.mkdirhier(basepath)
294 294
@@ -388,7 +388,7 @@ python package_do_split_locales() {
388 388
389 localedir = os.path.join(dvar + datadir, 'locale') 389 localedir = os.path.join(dvar + datadir, 'locale')
390 390
391 if not os.path.isdir(localedir): 391 if not cpath.isdir(localedir):
392 bb.debug(1, "No locale files in this package") 392 bb.debug(1, "No locale files in this package")
393 return 393 return
394 394
@@ -628,7 +628,7 @@ python fixup_perms () {
628 continue 628 continue
629 629
630 origin = dvar + dir 630 origin = dvar + dir
631 if not (os.path.exists(origin) and os.path.isdir(origin) and not os.path.islink(origin)): 631 if not (cpath.exists(origin) and cpath.isdir(origin) and not cpath.islink(origin)):
632 continue 632 continue
633 633
634 link = fs_perms_table[dir].link 634 link = fs_perms_table[dir].link
@@ -654,7 +654,7 @@ python fixup_perms () {
654 continue 654 continue
655 655
656 origin = dvar + dir 656 origin = dvar + dir
657 if not (os.path.exists(origin) and os.path.isdir(origin)): 657 if not (cpath.exists(origin) and cpath.isdir(origin)):
658 continue 658 continue
659 659
660 fix_perms(origin, fs_perms_table[dir].mode, fs_perms_table[dir].uid, fs_perms_table[dir].gid, dir) 660 fix_perms(origin, fs_perms_table[dir].mode, fs_perms_table[dir].uid, fs_perms_table[dir].gid, dir)
@@ -735,7 +735,7 @@ python split_and_strip_files () {
735 baselibdir = os.path.abspath(dvar + os.sep + d.getVar("base_libdir", True)) 735 baselibdir = os.path.abspath(dvar + os.sep + d.getVar("base_libdir", True))
736 if (d.getVar('INHIBIT_PACKAGE_DEBUG_SPLIT', True) != '1') and \ 736 if (d.getVar('INHIBIT_PACKAGE_DEBUG_SPLIT', True) != '1') and \
737 (d.getVar('INHIBIT_PACKAGE_STRIP', True) != '1'): 737 (d.getVar('INHIBIT_PACKAGE_STRIP', True) != '1'):
738 for root, dirs, files in os.walk(dvar): 738 for root, dirs, files in cpath.walk(dvar):
739 for f in files: 739 for f in files:
740 file = os.path.join(root, f) 740 file = os.path.join(root, f)
741 if file.endswith(".ko") and file.find("/lib/modules/") != -1: 741 if file.endswith(".ko") and file.find("/lib/modules/") != -1:
@@ -749,18 +749,20 @@ python split_and_strip_files () {
749 continue 749 continue
750 750
751 try: 751 try:
752 ltarget = oe.path.realpath(file, dvar, False) 752 ltarget = cpath.realpath(file, dvar, False)
753 s = os.lstat(ltarget) 753 s = cpath.lstat(ltarget)
754 except OSError, (err, strerror): 754 except OSError, (err, strerror):
755 if err != errno.ENOENT: 755 if err != errno.ENOENT:
756 raise 756 raise
757 # Skip broken symlinks 757 # Skip broken symlinks
758 continue 758 continue
759 if not s:
760 continue
759 # Check its an excutable 761 # Check its an excutable
760 if (s[stat.ST_MODE] & stat.S_IXUSR) or (s[stat.ST_MODE] & stat.S_IXGRP) or (s[stat.ST_MODE] & stat.S_IXOTH) \ 762 if (s[stat.ST_MODE] & stat.S_IXUSR) or (s[stat.ST_MODE] & stat.S_IXGRP) or (s[stat.ST_MODE] & stat.S_IXOTH) \
761 or ((file.startswith(libdir) or file.startswith(baselibdir)) and ".so" in f): 763 or ((file.startswith(libdir) or file.startswith(baselibdir)) and ".so" in f):
762 # If it's a symlink, and points to an ELF file, we capture the readlink target 764 # If it's a symlink, and points to an ELF file, we capture the readlink target
763 if os.path.islink(file): 765 if cpath.islink(file):
764 target = os.readlink(file) 766 target = os.readlink(file)
765 if isELF(ltarget): 767 if isELF(ltarget):
766 #bb.note("Sym: %s (%d)" % (ltarget, isELF(ltarget))) 768 #bb.note("Sym: %s (%d)" % (ltarget, isELF(ltarget)))
@@ -918,8 +920,8 @@ python populate_packages () {
918 for file in files: 920 for file in files:
919 if os.path.isabs(file): 921 if os.path.isabs(file):
920 file = '.' + file 922 file = '.' + file
921 if not os.path.islink(file): 923 if not cpath.islink(file):
922 if os.path.isdir(file): 924 if cpath.isdir(file):
923 newfiles = [ os.path.join(file,x) for x in os.listdir(file) ] 925 newfiles = [ os.path.join(file,x) for x in os.listdir(file) ]
924 if newfiles: 926 if newfiles:
925 files += newfiles 927 files += newfiles
@@ -929,7 +931,7 @@ python populate_packages () {
929 if [ file ] != globbed: 931 if [ file ] != globbed:
930 files += globbed 932 files += globbed
931 continue 933 continue
932 if (not os.path.islink(file)) and (not os.path.exists(file)): 934 if (not cpath.islink(file)) and (not cpath.exists(file)):
933 continue 935 continue
934 if file in seen: 936 if file in seen:
935 continue 937 continue
@@ -938,33 +940,33 @@ python populate_packages () {
938 def mkdir(src, dest, p): 940 def mkdir(src, dest, p):
939 src = os.path.join(src, p) 941 src = os.path.join(src, p)
940 dest = os.path.join(dest, p) 942 dest = os.path.join(dest, p)
941 bb.utils.mkdirhier(dest) 943 fstat = cpath.stat(src)
942 fstat = os.stat(src) 944 os.mkdir(dest, fstat.st_mode)
943 os.chmod(dest, fstat.st_mode)
944 os.chown(dest, fstat.st_uid, fstat.st_gid) 945 os.chown(dest, fstat.st_uid, fstat.st_gid)
945 if p not in seen: 946 if p not in seen:
946 seen.append(p) 947 seen.append(p)
948 cpath.updatecache(dest)
947 949
948 def mkdir_recurse(src, dest, paths): 950 def mkdir_recurse(src, dest, paths):
949 if os.path.exists(dest + '/' + paths): 951 if cpath.exists(dest + '/' + paths):
950 return 952 return
951 while paths.startswith("./"): 953 while paths.startswith("./"):
952 paths = paths[2:] 954 paths = paths[2:]
953 p = "." 955 p = "."
954 for c in paths.split("/"): 956 for c in paths.split("/"):
955 p = os.path.join(p, c) 957 p = os.path.join(p, c)
956 if not os.path.exists(os.path.join(dest, p)): 958 if not cpath.exists(os.path.join(dest, p)):
957 mkdir(src, dest, p) 959 mkdir(src, dest, p)
958 960
959 if os.path.isdir(file) and not os.path.islink(file): 961 if cpath.isdir(file) and not cpath.islink(file):
960 mkdir_recurse(dvar, root, file) 962 mkdir_recurse(dvar, root, file)
961 continue 963 continue
962 964
963 mkdir_recurse(dvar, root, os.path.dirname(file)) 965 mkdir_recurse(dvar, root, os.path.dirname(file))
964 fpath = os.path.join(root,file) 966 fpath = os.path.join(root,file)
965 if not os.path.islink(file): 967 if not cpath.islink(file):
966 os.link(file, fpath) 968 os.link(file, fpath)
967 fstat = os.stat(file) 969 fstat = cpath.stat(file)
968 os.chmod(fpath, fstat.st_mode) 970 os.chmod(fpath, fstat.st_mode)
969 os.chown(fpath, fstat.st_uid, fstat.st_gid) 971 os.chown(fpath, fstat.st_uid, fstat.st_gid)
970 continue 972 continue
@@ -975,7 +977,7 @@ python populate_packages () {
975 os.chdir(workdir) 977 os.chdir(workdir)
976 978
977 unshipped = [] 979 unshipped = []
978 for root, dirs, files in os.walk(dvar): 980 for root, dirs, files in cpath.walk(dvar):
979 dir = root[len(dvar):] 981 dir = root[len(dvar):]
980 if not dir: 982 if not dir:
981 dir = os.sep 983 dir = os.sep
@@ -1009,8 +1011,8 @@ python package_fixsymlinks () {
1009 for path in pkgfiles[pkg]: 1011 for path in pkgfiles[pkg]:
1010 rpath = path[len(inst_root):] 1012 rpath = path[len(inst_root):]
1011 pkg_files[pkg].append(rpath) 1013 pkg_files[pkg].append(rpath)
1012 rtarget = oe.path.realpath(path, inst_root, True, assume_dir = True) 1014 rtarget = cpath.realpath(path, inst_root, True, assume_dir = True)
1013 if not os.path.lexists(rtarget): 1015 if not cpath.lexists(rtarget):
1014 dangling_links[pkg].append(os.path.normpath(rtarget[len(inst_root):])) 1016 dangling_links[pkg].append(os.path.normpath(rtarget[len(inst_root):]))
1015 1017
1016 newrdepends = {} 1018 newrdepends = {}
@@ -1394,7 +1396,7 @@ python package_do_shlibs() {
1394 renames = list() 1396 renames = list()
1395 for file in pkgfiles[pkg]: 1397 for file in pkgfiles[pkg]:
1396 soname = None 1398 soname = None
1397 if os.path.islink(file): 1399 if cpath.islink(file):
1398 continue 1400 continue
1399 if targetos == "darwin" or targetos == "darwin8": 1401 if targetos == "darwin" or targetos == "darwin8":
1400 darwin_so(file) 1402 darwin_so(file)
@@ -1781,6 +1783,10 @@ python do_package () {
1781 # as any change to rpmdeps requires this to be rerun. 1783 # as any change to rpmdeps requires this to be rerun.
1782 # PACKAGE_BBCLASS_VERSION = "1" 1784 # PACKAGE_BBCLASS_VERSION = "1"
1783 1785
1786 # Init cachedpath
1787 global cpath
1788 cpath = oe.cachedpath.CachedPath()
1789
1784 ########################################################################### 1790 ###########################################################################
1785 # Sanity test the setup 1791 # Sanity test the setup
1786 ########################################################################### 1792 ###########################################################################
@@ -1827,6 +1833,8 @@ python do_package () {
1827 # Split up PKGD into PKGDEST 1833 # Split up PKGD into PKGDEST
1828 ########################################################################### 1834 ###########################################################################
1829 1835
1836 cpath = oe.cachedpath.CachedPath()
1837
1830 for f in (d.getVar('PACKAGESPLITFUNCS', True) or '').split(): 1838 for f in (d.getVar('PACKAGESPLITFUNCS', True) or '').split():
1831 bb.build.exec_func(f, d) 1839 bb.build.exec_func(f, d)
1832 1840
@@ -1841,7 +1849,7 @@ python do_package () {
1841 pkgdest = d.getVar('PKGDEST', True) 1849 pkgdest = d.getVar('PKGDEST', True)
1842 for pkg in packages: 1850 for pkg in packages:
1843 pkgfiles[pkg] = [] 1851 pkgfiles[pkg] = []
1844 for walkroot, dirs, files in os.walk(pkgdest + "/" + pkg): 1852 for walkroot, dirs, files in cpath.walk(pkgdest + "/" + pkg):
1845 for file in files: 1853 for file in files:
1846 pkgfiles[pkg].append(walkroot + os.sep + file) 1854 pkgfiles[pkg].append(walkroot + os.sep + file)
1847 1855