blob: 0e0a3ae89cab096c9e7d66833068ad244aed569e [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001# Copyright (C) 2012 Linux Foundation
2# Author: Richard Purdie
3# Some code and influence taken from srctree.bbclass:
4# Copyright (C) 2009 Chris Larson <clarson@kergoth.com>
5# Released under the MIT license (see COPYING.MIT for the terms)
6#
7# externalsrc.bbclass enables use of an existing source tree, usually external to
8# the build system to build a piece of software rather than the usual fetch/unpack/patch
9# process.
10#
11# To use, add externalsrc to the global inherit and set EXTERNALSRC to point at the
12# directory you want to use containing the sources e.g. from local.conf for a recipe
13# called "myrecipe" you would do:
14#
15# INHERIT += "externalsrc"
16# EXTERNALSRC_pn-myrecipe = "/path/to/my/source/tree"
17#
18# In order to make this class work for both target and native versions (or with
19# multilibs/cross or other BBCLASSEXTEND variants), B is set to point to a separate
20# directory under the work directory (split source and build directories). This is
21# the default, but the build directory can be set to the source directory if
22# circumstances dictate by setting EXTERNALSRC_BUILD to the same value, e.g.:
23#
24# EXTERNALSRC_BUILD_pn-myrecipe = "/path/to/my/source/tree"
25#
26
27SRCTREECOVEREDTASKS ?= "do_patch do_unpack do_fetch"
28EXTERNALSRC_SYMLINKS ?= "oe-workdir:${WORKDIR} oe-logs:${T}"
29
30python () {
31 externalsrc = d.getVar('EXTERNALSRC')
32 externalsrcbuild = d.getVar('EXTERNALSRC_BUILD')
33
34 if externalsrc and not externalsrc.startswith("/"):
35 bb.error("EXTERNALSRC must be an absolute path")
36 if externalsrcbuild and not externalsrcbuild.startswith("/"):
37 bb.error("EXTERNALSRC_BUILD must be an absolute path")
38
39 # If this is the base recipe and EXTERNALSRC is set for it or any of its
40 # derivatives, then enable BB_DONT_CACHE to force the recipe to always be
41 # re-parsed so that the file-checksums function for do_compile is run every
42 # time.
43 bpn = d.getVar('BPN')
44 classextend = (d.getVar('BBCLASSEXTEND') or '').split()
45 if bpn == d.getVar('PN') or not classextend:
46 if (externalsrc or
47 ('native' in classextend and
48 d.getVar('EXTERNALSRC_pn-%s-native' % bpn)) or
49 ('nativesdk' in classextend and
50 d.getVar('EXTERNALSRC_pn-nativesdk-%s' % bpn)) or
51 ('cross' in classextend and
52 d.getVar('EXTERNALSRC_pn-%s-cross' % bpn))):
53 d.setVar('BB_DONT_CACHE', '1')
54
55 if externalsrc:
56 import oe.recipeutils
57 import oe.path
58
59 d.setVar('S', externalsrc)
60 if externalsrcbuild:
61 d.setVar('B', externalsrcbuild)
62 else:
63 d.setVar('B', '${WORKDIR}/${BPN}-${PV}/')
64
65 local_srcuri = []
66 fetch = bb.fetch2.Fetch((d.getVar('SRC_URI') or '').split(), d)
67 for url in fetch.urls:
68 url_data = fetch.ud[url]
69 parm = url_data.parm
70 if (url_data.type == 'file' or
71 'type' in parm and parm['type'] == 'kmeta'):
72 local_srcuri.append(url)
73
74 d.setVar('SRC_URI', ' '.join(local_srcuri))
75
76 # Dummy value because the default function can't be called with blank SRC_URI
77 d.setVar('SRCPV', '999')
78
79 if d.getVar('CONFIGUREOPT_DEPTRACK') == '--disable-dependency-tracking':
80 d.setVar('CONFIGUREOPT_DEPTRACK', '')
81
82 tasks = filter(lambda k: d.getVarFlag(k, "task"), d.keys())
83
84 for task in tasks:
85 if task.endswith("_setscene"):
86 # sstate is never going to work for external source trees, disable it
87 bb.build.deltask(task, d)
88 else:
89 # Since configure will likely touch ${S}, ensure only we lock so one task has access at a time
90 d.appendVarFlag(task, "lockfiles", " ${S}/singletask.lock")
91
92 # We do not want our source to be wiped out, ever (kernel.bbclass does this for do_clean)
93 cleandirs = oe.recipeutils.split_var_value(d.getVarFlag(task, 'cleandirs', False) or '')
94 setvalue = False
95 for cleandir in cleandirs[:]:
96 if oe.path.is_path_parent(externalsrc, d.expand(cleandir)):
97 cleandirs.remove(cleandir)
98 setvalue = True
99 if setvalue:
100 d.setVarFlag(task, 'cleandirs', ' '.join(cleandirs))
101
102 fetch_tasks = ['do_fetch', 'do_unpack']
103 # If we deltask do_patch, there's no dependency to ensure do_unpack gets run, so add one
104 # Note that we cannot use d.appendVarFlag() here because deps is expected to be a list object, not a string
105 d.setVarFlag('do_configure', 'deps', (d.getVarFlag('do_configure', 'deps', False) or []) + ['do_unpack'])
106
107 for task in d.getVar("SRCTREECOVEREDTASKS").split():
108 if local_srcuri and task in fetch_tasks:
109 continue
110 bb.build.deltask(task, d)
111 if bb.data.inherits_class('reproducible_build', d) and task == 'do_unpack':
112 # The reproducible_build's create_source_date_epoch_stamp function must
113 # be run after the source is available and before the
114 # do_deploy_source_date_epoch task. In the normal case, it's attached
115 # to do_unpack as a postfuncs, but since we removed do_unpack (above)
116 # we need to move the function elsewhere. The easiest thing to do is
117 # move it into the prefuncs of the do_deploy_source_date_epoch task.
118 # This is safe, as externalsrc runs with the source already unpacked.
119 d.prependVarFlag('do_deploy_source_date_epoch', 'prefuncs', 'create_source_date_epoch_stamp ')
120
121 d.prependVarFlag('do_compile', 'prefuncs', "externalsrc_compile_prefunc ")
122 d.prependVarFlag('do_configure', 'prefuncs', "externalsrc_configure_prefunc ")
123
124 d.setVarFlag('do_compile', 'file-checksums', '${@srctree_hash_files(d)}')
125 d.setVarFlag('do_configure', 'file-checksums', '${@srctree_configure_hash_files(d)}')
126
127 # We don't want the workdir to go away
128 d.appendVar('RM_WORK_EXCLUDE', ' ' + d.getVar('PN'))
129
130 bb.build.addtask('do_buildclean',
131 'do_clean' if d.getVar('S') == d.getVar('B') else None,
132 None, d)
133
134 # If B=S the same builddir is used even for different architectures.
135 # Thus, use a shared CONFIGURESTAMPFILE and STAMP directory so that
136 # change of do_configure task hash is correctly detected and stamps are
137 # invalidated if e.g. MACHINE changes.
138 if d.getVar('S') == d.getVar('B'):
139 configstamp = '${TMPDIR}/work-shared/${PN}/${EXTENDPE}${PV}-${PR}/configure.sstate'
140 d.setVar('CONFIGURESTAMPFILE', configstamp)
141 d.setVar('STAMP', '${STAMPS_DIR}/work-shared/${PN}/${EXTENDPE}${PV}-${PR}')
142 d.setVar('STAMPCLEAN', '${STAMPS_DIR}/work-shared/${PN}/*-*')
143}
144
145python externalsrc_configure_prefunc() {
146 s_dir = d.getVar('S')
147 # Create desired symlinks
148 symlinks = (d.getVar('EXTERNALSRC_SYMLINKS') or '').split()
149 newlinks = []
150 for symlink in symlinks:
151 symsplit = symlink.split(':', 1)
152 lnkfile = os.path.join(s_dir, symsplit[0])
153 target = d.expand(symsplit[1])
154 if len(symsplit) > 1:
155 if os.path.islink(lnkfile):
156 # Link already exists, leave it if it points to the right location already
157 if os.readlink(lnkfile) == target:
158 continue
159 os.unlink(lnkfile)
160 elif os.path.exists(lnkfile):
161 # File/dir exists with same name as link, just leave it alone
162 continue
163 os.symlink(target, lnkfile)
164 newlinks.append(symsplit[0])
165 # Hide the symlinks from git
166 try:
167 git_exclude_file = os.path.join(s_dir, '.git/info/exclude')
168 if os.path.exists(git_exclude_file):
169 with open(git_exclude_file, 'r+') as efile:
170 elines = efile.readlines()
171 for link in newlinks:
172 if link in elines or '/'+link in elines:
173 continue
174 efile.write('/' + link + '\n')
175 except IOError as ioe:
176 bb.note('Failed to hide EXTERNALSRC_SYMLINKS from git')
177}
178
179python externalsrc_compile_prefunc() {
180 # Make it obvious that this is happening, since forgetting about it could lead to much confusion
181 bb.plain('NOTE: %s: compiling from external source tree %s' % (d.getVar('PN'), d.getVar('EXTERNALSRC')))
182}
183
184do_buildclean[dirs] = "${S} ${B}"
185do_buildclean[nostamp] = "1"
186do_buildclean[doc] = "Call 'make clean' or equivalent in ${B}"
187externalsrc_do_buildclean() {
188 if [ -e Makefile -o -e makefile -o -e GNUmakefile ]; then
189 rm -f ${@' '.join([x.split(':')[0] for x in (d.getVar('EXTERNALSRC_SYMLINKS') or '').split()])}
190 if [ "${CLEANBROKEN}" != "1" ]; then
191 oe_runmake clean || die "make failed"
192 fi
193 else
194 bbnote "nothing to do - no makefile found"
195 fi
196}
197
198def srctree_hash_files(d, srcdir=None):
199 import shutil
200 import subprocess
201 import tempfile
202 import hashlib
203
204 s_dir = srcdir or d.getVar('EXTERNALSRC')
205 git_dir = None
206
207 try:
208 git_dir = os.path.join(s_dir,
209 subprocess.check_output(['git', '-C', s_dir, 'rev-parse', '--git-dir'], stderr=subprocess.DEVNULL).decode("utf-8").rstrip())
210 top_git_dir = os.path.join(s_dir, subprocess.check_output(['git', '-C', d.getVar("TOPDIR"), 'rev-parse', '--git-dir'],
211 stderr=subprocess.DEVNULL).decode("utf-8").rstrip())
212 if git_dir == top_git_dir:
213 git_dir = None
214 except subprocess.CalledProcessError:
215 pass
216
217 ret = " "
218 if git_dir is not None:
219 oe_hash_file = os.path.join(git_dir, 'oe-devtool-tree-sha1-%s' % d.getVar('PN'))
220 with tempfile.NamedTemporaryFile(prefix='oe-devtool-index') as tmp_index:
221 # Clone index
222 shutil.copyfile(os.path.join(git_dir, 'index'), tmp_index.name)
223 # Update our custom index
224 env = os.environ.copy()
225 env['GIT_INDEX_FILE'] = tmp_index.name
226 subprocess.check_output(['git', 'add', '-A', '.'], cwd=s_dir, env=env)
227 git_sha1 = subprocess.check_output(['git', 'write-tree'], cwd=s_dir, env=env).decode("utf-8")
228 submodule_helper = subprocess.check_output(['git', 'submodule--helper', 'list'], cwd=s_dir, env=env).decode("utf-8")
229 for line in submodule_helper.splitlines():
230 module_dir = os.path.join(s_dir, line.rsplit(maxsplit=1)[1])
231 if os.path.isdir(module_dir):
232 proc = subprocess.Popen(['git', 'add', '-A', '.'], cwd=module_dir, env=env, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
233 proc.communicate()
234 proc = subprocess.Popen(['git', 'write-tree'], cwd=module_dir, env=env, stdout=subprocess.PIPE, stderr=subprocess.DEVNULL)
235 stdout, _ = proc.communicate()
236 git_sha1 += stdout.decode("utf-8")
237 sha1 = hashlib.sha1(git_sha1.encode("utf-8")).hexdigest()
238 with open(oe_hash_file, 'w') as fobj:
239 fobj.write(sha1)
240 ret = oe_hash_file + ':True'
241 else:
242 ret = s_dir + '/*:True'
243 return ret
244
245def srctree_configure_hash_files(d):
246 """
247 Get the list of files that should trigger do_configure to re-execute,
248 based on the value of CONFIGURE_FILES
249 """
250 in_files = (d.getVar('CONFIGURE_FILES') or '').split()
251 out_items = []
252 search_files = []
253 for entry in in_files:
254 if entry.startswith('/'):
255 out_items.append('%s:%s' % (entry, os.path.exists(entry)))
256 else:
257 search_files.append(entry)
258 if search_files:
259 s_dir = d.getVar('EXTERNALSRC')
260 for root, _, files in os.walk(s_dir):
261 for f in files:
262 if f in search_files:
263 out_items.append('%s:True' % os.path.join(root, f))
264 return ' '.join(out_items)
265
266EXPORT_FUNCTIONS do_buildclean