Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | # Local file checksum cache implementation |
| 2 | # |
| 3 | # Copyright (C) 2012 Intel Corporation |
| 4 | # |
| 5 | # This program is free software; you can redistribute it and/or modify |
| 6 | # it under the terms of the GNU General Public License version 2 as |
| 7 | # published by the Free Software Foundation. |
| 8 | # |
| 9 | # This program is distributed in the hope that it will be useful, |
| 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | # GNU General Public License for more details. |
| 13 | # |
| 14 | # You should have received a copy of the GNU General Public License along |
| 15 | # with this program; if not, write to the Free Software Foundation, Inc., |
| 16 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
| 17 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 18 | import glob |
| 19 | import operator |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 20 | import os |
| 21 | import stat |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 22 | import pickle |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 23 | import bb.utils |
| 24 | import logging |
| 25 | from bb.cache import MultiProcessCache |
| 26 | |
| 27 | logger = logging.getLogger("BitBake.Cache") |
| 28 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 29 | # mtime cache (non-persistent) |
| 30 | # based upon the assumption that files do not change during bitbake run |
| 31 | class FileMtimeCache(object): |
| 32 | cache = {} |
| 33 | |
| 34 | def cached_mtime(self, f): |
| 35 | if f not in self.cache: |
| 36 | self.cache[f] = os.stat(f)[stat.ST_MTIME] |
| 37 | return self.cache[f] |
| 38 | |
| 39 | def cached_mtime_noerror(self, f): |
| 40 | if f not in self.cache: |
| 41 | try: |
| 42 | self.cache[f] = os.stat(f)[stat.ST_MTIME] |
| 43 | except OSError: |
| 44 | return 0 |
| 45 | return self.cache[f] |
| 46 | |
| 47 | def update_mtime(self, f): |
| 48 | self.cache[f] = os.stat(f)[stat.ST_MTIME] |
| 49 | return self.cache[f] |
| 50 | |
| 51 | def clear(self): |
| 52 | self.cache.clear() |
| 53 | |
| 54 | # Checksum + mtime cache (persistent) |
| 55 | class FileChecksumCache(MultiProcessCache): |
| 56 | cache_file_name = "local_file_checksum_cache.dat" |
| 57 | CACHE_VERSION = 1 |
| 58 | |
| 59 | def __init__(self): |
| 60 | self.mtime_cache = FileMtimeCache() |
| 61 | MultiProcessCache.__init__(self) |
| 62 | |
| 63 | def get_checksum(self, f): |
| 64 | entry = self.cachedata[0].get(f) |
| 65 | cmtime = self.mtime_cache.cached_mtime(f) |
| 66 | if entry: |
| 67 | (mtime, hashval) = entry |
| 68 | if cmtime == mtime: |
| 69 | return hashval |
| 70 | else: |
| 71 | bb.debug(2, "file %s changed mtime, recompute checksum" % f) |
| 72 | |
| 73 | hashval = bb.utils.md5_file(f) |
| 74 | self.cachedata_extras[0][f] = (cmtime, hashval) |
| 75 | return hashval |
| 76 | |
| 77 | def merge_data(self, source, dest): |
| 78 | for h in source[0]: |
| 79 | if h in dest: |
| 80 | (smtime, _) = source[0][h] |
| 81 | (dmtime, _) = dest[0][h] |
| 82 | if smtime > dmtime: |
| 83 | dest[0][h] = source[0][h] |
| 84 | else: |
| 85 | dest[0][h] = source[0][h] |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 86 | |
| 87 | def get_checksums(self, filelist, pn): |
| 88 | """Get checksums for a list of files""" |
| 89 | |
| 90 | def checksum_file(f): |
| 91 | try: |
| 92 | checksum = self.get_checksum(f) |
| 93 | except OSError as e: |
| 94 | bb.warn("Unable to get checksum for %s SRC_URI entry %s: %s" % (pn, os.path.basename(f), e)) |
| 95 | return None |
| 96 | return checksum |
| 97 | |
| 98 | def checksum_dir(pth): |
| 99 | # Handle directories recursively |
Brad Bishop | 220d553 | 2018-08-14 00:59:39 +0100 | [diff] [blame] | 100 | if pth == "/": |
| 101 | bb.fatal("Refusing to checksum /") |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 102 | dirchecksums = [] |
| 103 | for root, dirs, files in os.walk(pth): |
| 104 | for name in files: |
| 105 | fullpth = os.path.join(root, name) |
| 106 | checksum = checksum_file(fullpth) |
| 107 | if checksum: |
| 108 | dirchecksums.append((fullpth, checksum)) |
| 109 | return dirchecksums |
| 110 | |
| 111 | checksums = [] |
| 112 | for pth in filelist.split(): |
| 113 | exist = pth.split(":")[1] |
| 114 | if exist == "False": |
| 115 | continue |
| 116 | pth = pth.split(":")[0] |
| 117 | if '*' in pth: |
| 118 | # Handle globs |
| 119 | for f in glob.glob(pth): |
| 120 | if os.path.isdir(f): |
| 121 | if not os.path.islink(f): |
| 122 | checksums.extend(checksum_dir(f)) |
| 123 | else: |
| 124 | checksum = checksum_file(f) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 125 | if checksum: |
| 126 | checksums.append((f, checksum)) |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 127 | elif os.path.isdir(pth): |
| 128 | if not os.path.islink(pth): |
| 129 | checksums.extend(checksum_dir(pth)) |
| 130 | else: |
| 131 | checksum = checksum_file(pth) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 132 | if checksum: |
| 133 | checksums.append((pth, checksum)) |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 134 | |
| 135 | checksums.sort(key=operator.itemgetter(1)) |
| 136 | return checksums |