1eb8dc403SDave Cobbley# ex:ts=4:sw=4:sts=4:et
2eb8dc403SDave Cobbley# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
3eb8dc403SDave Cobbley#
4eb8dc403SDave Cobbley# This bbclass is used for creating archive for:
5eb8dc403SDave Cobbley#  1) original (or unpacked) source: ARCHIVER_MODE[src] = "original"
6eb8dc403SDave Cobbley#  2) patched source: ARCHIVER_MODE[src] = "patched" (default)
7eb8dc403SDave Cobbley#  3) configured source: ARCHIVER_MODE[src] = "configured"
882c905dcSAndrew Geissler#  4) source mirror: ARCHIVE_MODE[src] = "mirror"
982c905dcSAndrew Geissler#  5) The patches between do_unpack and do_patch:
10eb8dc403SDave Cobbley#     ARCHIVER_MODE[diff] = "1"
11eb8dc403SDave Cobbley#     And you can set the one that you'd like to exclude from the diff:
12eb8dc403SDave Cobbley#     ARCHIVER_MODE[diff-exclude] ?= ".pc autom4te.cache patches"
1382c905dcSAndrew Geissler#  6) The environment data, similar to 'bitbake -e recipe':
14eb8dc403SDave Cobbley#     ARCHIVER_MODE[dumpdata] = "1"
1582c905dcSAndrew Geissler#  7) The recipe (.bb and .inc): ARCHIVER_MODE[recipe] = "1"
1682c905dcSAndrew Geissler#  8) Whether output the .src.rpm package:
17eb8dc403SDave Cobbley#     ARCHIVER_MODE[srpm] = "1"
1882c905dcSAndrew Geissler#  9) Filter the license, the recipe whose license in
19eb8dc403SDave Cobbley#     COPYLEFT_LICENSE_INCLUDE will be included, and in
20eb8dc403SDave Cobbley#     COPYLEFT_LICENSE_EXCLUDE will be excluded.
21eb8dc403SDave Cobbley#     COPYLEFT_LICENSE_INCLUDE = 'GPL* LGPL*'
22eb8dc403SDave Cobbley#     COPYLEFT_LICENSE_EXCLUDE = 'CLOSED Proprietary'
2382c905dcSAndrew Geissler# 10) The recipe type that will be archived:
24eb8dc403SDave Cobbley#     COPYLEFT_RECIPE_TYPES = 'target'
2582c905dcSAndrew Geissler# 11) The source mirror mode:
2682c905dcSAndrew Geissler#     ARCHIVER_MODE[mirror] = "split" (default): Sources are split into
2782c905dcSAndrew Geissler#     per-recipe directories in a similar way to other archiver modes.
2882c905dcSAndrew Geissler#     Post-processing may be required to produce a single mirror directory.
2982c905dcSAndrew Geissler#     This does however allow inspection of duplicate sources and more
3082c905dcSAndrew Geissler#     intelligent handling.
3182c905dcSAndrew Geissler#     ARCHIVER_MODE[mirror] = "combined": All sources are placed into a single
3282c905dcSAndrew Geissler#     directory suitable for direct use as a mirror. Duplicate sources are
3382c905dcSAndrew Geissler#     ignored.
3482c905dcSAndrew Geissler# 12) Source mirror exclusions:
3582c905dcSAndrew Geissler#     ARCHIVER_MIRROR_EXCLUDE is a list of prefixes to exclude from the mirror.
3682c905dcSAndrew Geissler#     This may be used for sources which you are already publishing yourself
3782c905dcSAndrew Geissler#     (e.g. if the URI starts with 'https://mysite.com/' and your mirror is
3882c905dcSAndrew Geissler#     going to be published to the same site). It may also be used to exclude
3982c905dcSAndrew Geissler#     local files (with the prefix 'file://') if these will be provided as part
4082c905dcSAndrew Geissler#     of an archive of the layers themselves.
41eb8dc403SDave Cobbley#
42eb8dc403SDave Cobbley
43eb8dc403SDave Cobbley# Create archive for all the recipe types
44eb8dc403SDave CobbleyCOPYLEFT_RECIPE_TYPES ?= 'target native nativesdk cross crosssdk cross-canadian'
45eb8dc403SDave Cobbleyinherit copyleft_filter
46eb8dc403SDave Cobbley
47eb8dc403SDave CobbleyARCHIVER_MODE[srpm] ?= "0"
48eb8dc403SDave CobbleyARCHIVER_MODE[src] ?= "patched"
49eb8dc403SDave CobbleyARCHIVER_MODE[diff] ?= "0"
50eb8dc403SDave CobbleyARCHIVER_MODE[diff-exclude] ?= ".pc autom4te.cache patches"
51eb8dc403SDave CobbleyARCHIVER_MODE[dumpdata] ?= "0"
52eb8dc403SDave CobbleyARCHIVER_MODE[recipe] ?= "0"
5382c905dcSAndrew GeisslerARCHIVER_MODE[mirror] ?= "split"
54eb8dc403SDave Cobbley
55eb8dc403SDave CobbleyDEPLOY_DIR_SRC ?= "${DEPLOY_DIR}/sources"
56eb8dc403SDave CobbleyARCHIVER_TOPDIR ?= "${WORKDIR}/deploy-sources"
57eb8dc403SDave CobbleyARCHIVER_OUTDIR = "${ARCHIVER_TOPDIR}/${TARGET_SYS}/${PF}/"
5819323693SBrad BishopARCHIVER_RPMTOPDIR ?= "${WORKDIR}/deploy-sources-rpm"
5919323693SBrad BishopARCHIVER_RPMOUTDIR = "${ARCHIVER_RPMTOPDIR}/${TARGET_SYS}/${PF}/"
60eb8dc403SDave CobbleyARCHIVER_WORKDIR = "${WORKDIR}/archiver-work/"
61eb8dc403SDave Cobbley
6282c905dcSAndrew Geissler# When producing a combined mirror directory, allow duplicates for the case
6382c905dcSAndrew Geissler# where multiple recipes use the same SRC_URI.
6482c905dcSAndrew GeisslerARCHIVER_COMBINED_MIRRORDIR = "${ARCHIVER_TOPDIR}/mirror"
6582c905dcSAndrew GeisslerSSTATE_DUPWHITELIST += "${DEPLOY_DIR_SRC}/mirror"
6619323693SBrad Bishop
67eb8dc403SDave Cobbleydo_dumpdata[dirs] = "${ARCHIVER_OUTDIR}"
68eb8dc403SDave Cobbleydo_ar_recipe[dirs] = "${ARCHIVER_OUTDIR}"
69eb8dc403SDave Cobbleydo_ar_original[dirs] = "${ARCHIVER_OUTDIR} ${ARCHIVER_WORKDIR}"
70eb8dc403SDave Cobbleydo_deploy_archives[dirs] = "${WORKDIR}"
71eb8dc403SDave Cobbley
72eb8dc403SDave Cobbley# This is a convenience for the shell script to use it
73eb8dc403SDave Cobbley
74eb8dc403SDave Cobbley
75eb8dc403SDave Cobbleypython () {
76eb8dc403SDave Cobbley    pn = d.getVar('PN')
77eb8dc403SDave Cobbley    assume_provided = (d.getVar("ASSUME_PROVIDED") or "").split()
78eb8dc403SDave Cobbley    if pn in assume_provided:
79eb8dc403SDave Cobbley        for p in d.getVar("PROVIDES").split():
80eb8dc403SDave Cobbley            if p != pn:
81eb8dc403SDave Cobbley                pn = p
82eb8dc403SDave Cobbley                break
83eb8dc403SDave Cobbley
84eb8dc403SDave Cobbley    included, reason = copyleft_should_include(d)
85eb8dc403SDave Cobbley    if not included:
86eb8dc403SDave Cobbley        bb.debug(1, 'archiver: %s is excluded: %s' % (pn, reason))
87eb8dc403SDave Cobbley        return
88eb8dc403SDave Cobbley    else:
89eb8dc403SDave Cobbley        bb.debug(1, 'archiver: %s is included: %s' % (pn, reason))
90eb8dc403SDave Cobbley
91eb8dc403SDave Cobbley
92eb8dc403SDave Cobbley    # glibc-locale: do_fetch, do_unpack and do_patch tasks have been deleted,
93eb8dc403SDave Cobbley    # so avoid archiving source here.
94eb8dc403SDave Cobbley    if pn.startswith('glibc-locale'):
95eb8dc403SDave Cobbley        return
96eb8dc403SDave Cobbley
97eb8dc403SDave Cobbley    # We just archive gcc-source for all the gcc related recipes
98eb8dc403SDave Cobbley    if d.getVar('BPN') in ['gcc', 'libgcc'] \
99eb8dc403SDave Cobbley            and not pn.startswith('gcc-source'):
100eb8dc403SDave Cobbley        bb.debug(1, 'archiver: %s is excluded, covered by gcc-source' % pn)
101eb8dc403SDave Cobbley        return
102eb8dc403SDave Cobbley
10379641f25SBrad Bishop    def hasTask(task):
10479641f25SBrad Bishop        return bool(d.getVarFlag(task, "task", False)) and not bool(d.getVarFlag(task, "noexec", False))
10579641f25SBrad Bishop
106eb8dc403SDave Cobbley    ar_src = d.getVarFlag('ARCHIVER_MODE', 'src')
107eb8dc403SDave Cobbley    ar_dumpdata = d.getVarFlag('ARCHIVER_MODE', 'dumpdata')
108eb8dc403SDave Cobbley    ar_recipe = d.getVarFlag('ARCHIVER_MODE', 'recipe')
109eb8dc403SDave Cobbley
110eb8dc403SDave Cobbley    if ar_src == "original":
111eb8dc403SDave Cobbley        d.appendVarFlag('do_deploy_archives', 'depends', ' %s:do_ar_original' % pn)
112eb8dc403SDave Cobbley        # 'patched' and 'configured' invoke do_unpack_and_patch because
113eb8dc403SDave Cobbley        # do_ar_patched resp. do_ar_configured depend on it, but for 'original'
114eb8dc403SDave Cobbley        # we have to add it explicitly.
115eb8dc403SDave Cobbley        if d.getVarFlag('ARCHIVER_MODE', 'diff') == '1':
116eb8dc403SDave Cobbley            d.appendVarFlag('do_deploy_archives', 'depends', ' %s:do_unpack_and_patch' % pn)
117eb8dc403SDave Cobbley    elif ar_src == "patched":
118eb8dc403SDave Cobbley        d.appendVarFlag('do_deploy_archives', 'depends', ' %s:do_ar_patched' % pn)
119eb8dc403SDave Cobbley    elif ar_src == "configured":
120eb8dc403SDave Cobbley        # We can't use "addtask do_ar_configured after do_configure" since it
121eb8dc403SDave Cobbley        # will cause the deptask of do_populate_sysroot to run not matter what
122eb8dc403SDave Cobbley        # archives we need, so we add the depends here.
123eb8dc403SDave Cobbley
124eb8dc403SDave Cobbley        # There is a corner case with "gcc-source-${PV}" recipes, they don't have
125eb8dc403SDave Cobbley        # the "do_configure" task, so we need to use "do_preconfigure"
1261a4b7ee2SBrad Bishop        if hasTask("do_preconfigure"):
127eb8dc403SDave Cobbley            d.appendVarFlag('do_ar_configured', 'depends', ' %s:do_preconfigure' % pn)
1281a4b7ee2SBrad Bishop        elif hasTask("do_configure"):
129eb8dc403SDave Cobbley            d.appendVarFlag('do_ar_configured', 'depends', ' %s:do_configure' % pn)
130eb8dc403SDave Cobbley        d.appendVarFlag('do_deploy_archives', 'depends', ' %s:do_ar_configured' % pn)
13182c905dcSAndrew Geissler    elif ar_src == "mirror":
13282c905dcSAndrew Geissler        d.appendVarFlag('do_deploy_archives', 'depends', '%s:do_ar_mirror' % pn)
133eb8dc403SDave Cobbley
134eb8dc403SDave Cobbley    elif ar_src:
135eb8dc403SDave Cobbley        bb.fatal("Invalid ARCHIVER_MODE[src]: %s" % ar_src)
136eb8dc403SDave Cobbley
137eb8dc403SDave Cobbley    if ar_dumpdata == "1":
138eb8dc403SDave Cobbley        d.appendVarFlag('do_deploy_archives', 'depends', ' %s:do_dumpdata' % pn)
139eb8dc403SDave Cobbley
140eb8dc403SDave Cobbley    if ar_recipe == "1":
141eb8dc403SDave Cobbley        d.appendVarFlag('do_deploy_archives', 'depends', ' %s:do_ar_recipe' % pn)
142eb8dc403SDave Cobbley
143eb8dc403SDave Cobbley    # Output the SRPM package
144eb8dc403SDave Cobbley    if d.getVarFlag('ARCHIVER_MODE', 'srpm') == "1" and d.getVar('PACKAGES'):
14579641f25SBrad Bishop        if "package_rpm" not in d.getVar('PACKAGE_CLASSES'):
14679641f25SBrad Bishop            bb.fatal("ARCHIVER_MODE[srpm] needs package_rpm in PACKAGE_CLASSES")
14779641f25SBrad Bishop
14879641f25SBrad Bishop        # Some recipes do not have any packaging tasks
14979641f25SBrad Bishop        if hasTask("do_package_write_rpm"):
150eb8dc403SDave Cobbley            d.appendVarFlag('do_deploy_archives', 'depends', ' %s:do_package_write_rpm' % pn)
15119323693SBrad Bishop            d.appendVarFlag('do_package_write_rpm', 'dirs', ' ${ARCHIVER_RPMTOPDIR}')
15219323693SBrad Bishop            d.appendVarFlag('do_package_write_rpm', 'sstate-inputdirs', ' ${ARCHIVER_RPMTOPDIR}')
15319323693SBrad Bishop            d.appendVarFlag('do_package_write_rpm', 'sstate-outputdirs', ' ${DEPLOY_DIR_SRC}')
154eb8dc403SDave Cobbley            if ar_dumpdata == "1":
155eb8dc403SDave Cobbley                d.appendVarFlag('do_package_write_rpm', 'depends', ' %s:do_dumpdata' % pn)
156eb8dc403SDave Cobbley            if ar_recipe == "1":
157eb8dc403SDave Cobbley                d.appendVarFlag('do_package_write_rpm', 'depends', ' %s:do_ar_recipe' % pn)
158eb8dc403SDave Cobbley            if ar_src == "original":
159eb8dc403SDave Cobbley                d.appendVarFlag('do_package_write_rpm', 'depends', ' %s:do_ar_original' % pn)
160eb8dc403SDave Cobbley            elif ar_src == "patched":
161eb8dc403SDave Cobbley                d.appendVarFlag('do_package_write_rpm', 'depends', ' %s:do_ar_patched' % pn)
162eb8dc403SDave Cobbley            elif ar_src == "configured":
163eb8dc403SDave Cobbley                d.appendVarFlag('do_package_write_rpm', 'depends', ' %s:do_ar_configured' % pn)
164eb8dc403SDave Cobbley}
165eb8dc403SDave Cobbley
166eb8dc403SDave Cobbley# Take all the sources for a recipe and puts them in WORKDIR/archiver-work/.
167eb8dc403SDave Cobbley# Files in SRC_URI are copied directly, anything that's a directory
168eb8dc403SDave Cobbley# (e.g. git repositories) is "unpacked" and then put into a tarball.
169eb8dc403SDave Cobbleypython do_ar_original() {
170eb8dc403SDave Cobbley
171eb8dc403SDave Cobbley    import shutil, tempfile
172eb8dc403SDave Cobbley
173eb8dc403SDave Cobbley    if d.getVarFlag('ARCHIVER_MODE', 'src') != "original":
174eb8dc403SDave Cobbley        return
175eb8dc403SDave Cobbley
176eb8dc403SDave Cobbley    ar_outdir = d.getVar('ARCHIVER_OUTDIR')
177eb8dc403SDave Cobbley    bb.note('Archiving the original source...')
178eb8dc403SDave Cobbley    urls = d.getVar("SRC_URI").split()
179eb8dc403SDave Cobbley    # destsuffix (git fetcher) and subdir (everything else) are allowed to be
180eb8dc403SDave Cobbley    # absolute paths (for example, destsuffix=${S}/foobar).
181eb8dc403SDave Cobbley    # That messes with unpacking inside our tmpdir below, because the fetchers
182eb8dc403SDave Cobbley    # will then unpack in that directory and completely ignore the tmpdir.
183eb8dc403SDave Cobbley    # That breaks parallel tasks relying on ${S}, like do_compile.
184eb8dc403SDave Cobbley    #
185eb8dc403SDave Cobbley    # To solve this, we remove these parameters from all URLs.
186eb8dc403SDave Cobbley    # We do this even for relative paths because it makes the content of the
187eb8dc403SDave Cobbley    # archives more useful (no extra paths that are only used during
188eb8dc403SDave Cobbley    # compilation).
189eb8dc403SDave Cobbley    for i, url in enumerate(urls):
190eb8dc403SDave Cobbley        decoded = bb.fetch2.decodeurl(url)
191eb8dc403SDave Cobbley        for param in ('destsuffix', 'subdir'):
192eb8dc403SDave Cobbley            if param in decoded[5]:
193eb8dc403SDave Cobbley                del decoded[5][param]
194eb8dc403SDave Cobbley        encoded = bb.fetch2.encodeurl(decoded)
195eb8dc403SDave Cobbley        urls[i] = encoded
196*1e34c2d0SAndrew Geissler
197*1e34c2d0SAndrew Geissler    # Cleanup SRC_URI before call bb.fetch2.Fetch() since now SRC_URI is in the
198*1e34c2d0SAndrew Geissler    # variable "urls", otherwise there might be errors like:
199*1e34c2d0SAndrew Geissler    # The SRCREV_FORMAT variable must be set when multiple SCMs are used
200*1e34c2d0SAndrew Geissler    ld = bb.data.createCopy(d)
201*1e34c2d0SAndrew Geissler    ld.setVar('SRC_URI', '')
202*1e34c2d0SAndrew Geissler    fetch = bb.fetch2.Fetch(urls, ld)
203eb8dc403SDave Cobbley    tarball_suffix = {}
204eb8dc403SDave Cobbley    for url in fetch.urls:
205eb8dc403SDave Cobbley        local = fetch.localpath(url).rstrip("/");
206eb8dc403SDave Cobbley        if os.path.isfile(local):
207eb8dc403SDave Cobbley            shutil.copy(local, ar_outdir)
208eb8dc403SDave Cobbley        elif os.path.isdir(local):
209eb8dc403SDave Cobbley            tmpdir = tempfile.mkdtemp(dir=d.getVar('ARCHIVER_WORKDIR'))
210eb8dc403SDave Cobbley            fetch.unpack(tmpdir, (url,))
211eb8dc403SDave Cobbley            # To handle recipes with more than one source, we add the "name"
212eb8dc403SDave Cobbley            # URL parameter as suffix. We treat it as an error when
213eb8dc403SDave Cobbley            # there's more than one URL without a name, or a name gets reused.
214eb8dc403SDave Cobbley            # This is an additional safety net, in practice the name has
215eb8dc403SDave Cobbley            # to be set when using the git fetcher, otherwise SRCREV cannot
216eb8dc403SDave Cobbley            # be set separately for each URL.
217eb8dc403SDave Cobbley            params = bb.fetch2.decodeurl(url)[5]
218eb8dc403SDave Cobbley            type = bb.fetch2.decodeurl(url)[0]
219eb8dc403SDave Cobbley            location = bb.fetch2.decodeurl(url)[2]
220eb8dc403SDave Cobbley            name = params.get('name', '')
221eb8dc403SDave Cobbley            if type.lower() == 'file':
222eb8dc403SDave Cobbley                name_tmp = location.rstrip("*").rstrip("/")
223eb8dc403SDave Cobbley                name = os.path.basename(name_tmp)
224eb8dc403SDave Cobbley            else:
225eb8dc403SDave Cobbley                if name in tarball_suffix:
226eb8dc403SDave Cobbley                    if not name:
227eb8dc403SDave Cobbley                        bb.fatal("Cannot determine archive names for original source because 'name' URL parameter is unset in more than one URL. Add it to at least one of these: %s %s" % (tarball_suffix[name], url))
228eb8dc403SDave Cobbley                    else:
229eb8dc403SDave Cobbley                        bb.fatal("Cannot determine archive names for original source because 'name=' URL parameter '%s' is used twice. Make it unique in: %s %s" % (tarball_suffix[name], url))
230eb8dc403SDave Cobbley            tarball_suffix[name] = url
231eb8dc403SDave Cobbley            create_tarball(d, tmpdir + '/.', name, ar_outdir)
232eb8dc403SDave Cobbley
233eb8dc403SDave Cobbley    # Emit patch series files for 'original'
234eb8dc403SDave Cobbley    bb.note('Writing patch series files...')
235eb8dc403SDave Cobbley    for patch in src_patches(d):
236eb8dc403SDave Cobbley        _, _, local, _, _, parm = bb.fetch.decodeurl(patch)
237eb8dc403SDave Cobbley        patchdir = parm.get('patchdir')
238eb8dc403SDave Cobbley        if patchdir:
239eb8dc403SDave Cobbley            series = os.path.join(ar_outdir, 'series.subdir.%s' % patchdir.replace('/', '_'))
240eb8dc403SDave Cobbley        else:
241eb8dc403SDave Cobbley            series = os.path.join(ar_outdir, 'series')
242eb8dc403SDave Cobbley
243eb8dc403SDave Cobbley        with open(series, 'a') as s:
244eb8dc403SDave Cobbley            s.write('%s -p%s\n' % (os.path.basename(local), parm['striplevel']))
245eb8dc403SDave Cobbley}
246eb8dc403SDave Cobbley
247eb8dc403SDave Cobbleypython do_ar_patched() {
248eb8dc403SDave Cobbley
249eb8dc403SDave Cobbley    if d.getVarFlag('ARCHIVER_MODE', 'src') != 'patched':
250eb8dc403SDave Cobbley        return
251eb8dc403SDave Cobbley
252eb8dc403SDave Cobbley    # Get the ARCHIVER_OUTDIR before we reset the WORKDIR
253eb8dc403SDave Cobbley    ar_outdir = d.getVar('ARCHIVER_OUTDIR')
254a34c030eSBrad Bishop    if not is_work_shared(d):
255eb8dc403SDave Cobbley        ar_workdir = d.getVar('ARCHIVER_WORKDIR')
256eb8dc403SDave Cobbley        d.setVar('WORKDIR', ar_workdir)
257a34c030eSBrad Bishop    bb.note('Archiving the patched source...')
258eb8dc403SDave Cobbley    create_tarball(d, d.getVar('S'), 'patched', ar_outdir)
259eb8dc403SDave Cobbley}
260eb8dc403SDave Cobbley
261eb8dc403SDave Cobbleypython do_ar_configured() {
262eb8dc403SDave Cobbley    import shutil
263eb8dc403SDave Cobbley
264eb8dc403SDave Cobbley    # Forcibly expand the sysroot paths as we're about to change WORKDIR
265eb8dc403SDave Cobbley    d.setVar('STAGING_DIR_HOST', d.getVar('STAGING_DIR_HOST'))
266eb8dc403SDave Cobbley    d.setVar('STAGING_DIR_TARGET', d.getVar('STAGING_DIR_TARGET'))
267eb8dc403SDave Cobbley    d.setVar('RECIPE_SYSROOT', d.getVar('RECIPE_SYSROOT'))
268eb8dc403SDave Cobbley    d.setVar('RECIPE_SYSROOT_NATIVE', d.getVar('RECIPE_SYSROOT_NATIVE'))
269eb8dc403SDave Cobbley
270eb8dc403SDave Cobbley    ar_outdir = d.getVar('ARCHIVER_OUTDIR')
271eb8dc403SDave Cobbley    if d.getVarFlag('ARCHIVER_MODE', 'src') == 'configured':
272eb8dc403SDave Cobbley        bb.note('Archiving the configured source...')
273eb8dc403SDave Cobbley        pn = d.getVar('PN')
274eb8dc403SDave Cobbley        # "gcc-source-${PV}" recipes don't have "do_configure"
275eb8dc403SDave Cobbley        # task, so we need to run "do_preconfigure" instead
276eb8dc403SDave Cobbley        if pn.startswith("gcc-source-"):
277eb8dc403SDave Cobbley            d.setVar('WORKDIR', d.getVar('ARCHIVER_WORKDIR'))
278eb8dc403SDave Cobbley            bb.build.exec_func('do_preconfigure', d)
279eb8dc403SDave Cobbley
280eb8dc403SDave Cobbley        # The libtool-native's do_configure will remove the
281eb8dc403SDave Cobbley        # ${STAGING_DATADIR}/aclocal/libtool.m4, so we can't re-run the
282eb8dc403SDave Cobbley        # do_configure, we archive the already configured ${S} to
283eb8dc403SDave Cobbley        # instead of.
284eb8dc403SDave Cobbley        elif pn != 'libtool-native':
2851a4b7ee2SBrad Bishop            def runTask(task):
2861a4b7ee2SBrad Bishop                prefuncs = d.getVarFlag(task, 'prefuncs') or ''
2871a4b7ee2SBrad Bishop                for func in prefuncs.split():
288eb8dc403SDave Cobbley                    if func != "sysroot_cleansstate":
289eb8dc403SDave Cobbley                        bb.build.exec_func(func, d)
2901a4b7ee2SBrad Bishop                bb.build.exec_func(task, d)
2911a4b7ee2SBrad Bishop                postfuncs = d.getVarFlag(task, 'postfuncs') or ''
2921a4b7ee2SBrad Bishop                for func in postfuncs.split():
2931a4b7ee2SBrad Bishop                    if func != 'do_qa_configure':
294eb8dc403SDave Cobbley                        bb.build.exec_func(func, d)
2951a4b7ee2SBrad Bishop
2961a4b7ee2SBrad Bishop            # Change the WORKDIR to make do_configure run in another dir.
2971a4b7ee2SBrad Bishop            d.setVar('WORKDIR', d.getVar('ARCHIVER_WORKDIR'))
2981a4b7ee2SBrad Bishop
2991a4b7ee2SBrad Bishop            preceeds = bb.build.preceedtask('do_configure', False, d)
3001a4b7ee2SBrad Bishop            for task in preceeds:
3011a4b7ee2SBrad Bishop                if task != 'do_patch' and task != 'do_prepare_recipe_sysroot':
3021a4b7ee2SBrad Bishop                    runTask(task)
3031a4b7ee2SBrad Bishop            runTask('do_configure')
3041a4b7ee2SBrad Bishop
305eb8dc403SDave Cobbley        srcdir = d.getVar('S')
306eb8dc403SDave Cobbley        builddir = d.getVar('B')
307eb8dc403SDave Cobbley        if srcdir != builddir:
308eb8dc403SDave Cobbley            if os.path.exists(builddir):
309eb8dc403SDave Cobbley                oe.path.copytree(builddir, os.path.join(srcdir, \
310eb8dc403SDave Cobbley                    'build.%s.ar_configured' % d.getVar('PF')))
311eb8dc403SDave Cobbley        create_tarball(d, srcdir, 'configured', ar_outdir)
312eb8dc403SDave Cobbley}
313eb8dc403SDave Cobbley
31482c905dcSAndrew Geisslerpython do_ar_mirror() {
31582c905dcSAndrew Geissler    import subprocess
31682c905dcSAndrew Geissler
31782c905dcSAndrew Geissler    src_uri = (d.getVar('SRC_URI') or '').split()
31882c905dcSAndrew Geissler    if len(src_uri) == 0:
31982c905dcSAndrew Geissler        return
32082c905dcSAndrew Geissler
32182c905dcSAndrew Geissler    dl_dir = d.getVar('DL_DIR')
32282c905dcSAndrew Geissler    mirror_exclusions = (d.getVar('ARCHIVER_MIRROR_EXCLUDE') or '').split()
32382c905dcSAndrew Geissler    mirror_mode = d.getVarFlag('ARCHIVER_MODE', 'mirror')
32482c905dcSAndrew Geissler    have_mirror_tarballs = d.getVar('BB_GENERATE_MIRROR_TARBALLS')
32582c905dcSAndrew Geissler
32682c905dcSAndrew Geissler    if mirror_mode == 'combined':
32782c905dcSAndrew Geissler        destdir = d.getVar('ARCHIVER_COMBINED_MIRRORDIR')
32882c905dcSAndrew Geissler    elif mirror_mode == 'split':
32982c905dcSAndrew Geissler        destdir = d.getVar('ARCHIVER_OUTDIR')
33082c905dcSAndrew Geissler    else:
33182c905dcSAndrew Geissler        bb.fatal('Invalid ARCHIVER_MODE[mirror]: %s' % (mirror_mode))
33282c905dcSAndrew Geissler
33382c905dcSAndrew Geissler    if not have_mirror_tarballs:
33482c905dcSAndrew Geissler        bb.fatal('Using `ARCHIVER_MODE[src] = "mirror"` depends on setting `BB_GENERATE_MIRROR_TARBALLS = "1"`')
33582c905dcSAndrew Geissler
33682c905dcSAndrew Geissler    def is_excluded(url):
33782c905dcSAndrew Geissler        for prefix in mirror_exclusions:
33882c905dcSAndrew Geissler            if url.startswith(prefix):
33982c905dcSAndrew Geissler                return True
34082c905dcSAndrew Geissler        return False
34182c905dcSAndrew Geissler
34282c905dcSAndrew Geissler    bb.note('Archiving the source as a mirror...')
34382c905dcSAndrew Geissler
34482c905dcSAndrew Geissler    bb.utils.mkdirhier(destdir)
34582c905dcSAndrew Geissler
34682c905dcSAndrew Geissler    fetcher = bb.fetch2.Fetch(src_uri, d)
34782c905dcSAndrew Geissler
34882c905dcSAndrew Geissler    for url in fetcher.urls:
34982c905dcSAndrew Geissler        if is_excluded(url):
35082c905dcSAndrew Geissler            bb.note('Skipping excluded url: %s' % (url))
35182c905dcSAndrew Geissler            continue
35282c905dcSAndrew Geissler
35382c905dcSAndrew Geissler        bb.note('Archiving url: %s' % (url))
35482c905dcSAndrew Geissler        ud = fetcher.ud[url]
35582c905dcSAndrew Geissler        ud.setup_localpath(d)
35682c905dcSAndrew Geissler        localpath = None
35782c905dcSAndrew Geissler
35882c905dcSAndrew Geissler        # Check for mirror tarballs first. We will archive the first mirror
35982c905dcSAndrew Geissler        # tarball that we find as it's assumed that we just need one.
36082c905dcSAndrew Geissler        for mirror_fname in ud.mirrortarballs:
36182c905dcSAndrew Geissler            mirror_path = os.path.join(dl_dir, mirror_fname)
36282c905dcSAndrew Geissler            if os.path.exists(mirror_path):
36382c905dcSAndrew Geissler                bb.note('Found mirror tarball: %s' % (mirror_path))
36482c905dcSAndrew Geissler                localpath = mirror_path
36582c905dcSAndrew Geissler                break
36682c905dcSAndrew Geissler
36782c905dcSAndrew Geissler        if len(ud.mirrortarballs) and not localpath:
36882c905dcSAndrew Geissler            bb.warn('Mirror tarballs are listed for a source but none are present. ' \
36982c905dcSAndrew Geissler                    'Falling back to original download.\n' \
37082c905dcSAndrew Geissler                    'SRC_URI = %s' % (url))
37182c905dcSAndrew Geissler
37282c905dcSAndrew Geissler        # Check original download
37382c905dcSAndrew Geissler        if not localpath:
37482c905dcSAndrew Geissler            bb.note('Using original download: %s' % (ud.localpath))
37582c905dcSAndrew Geissler            localpath = ud.localpath
37682c905dcSAndrew Geissler
37782c905dcSAndrew Geissler        if not localpath or not os.path.exists(localpath):
37882c905dcSAndrew Geissler            bb.fatal('Original download is missing for a source.\n' \
37982c905dcSAndrew Geissler                        'SRC_URI = %s' % (url))
38082c905dcSAndrew Geissler
38182c905dcSAndrew Geissler        # We now have an appropriate localpath
38282c905dcSAndrew Geissler        bb.note('Copying source mirror')
38382c905dcSAndrew Geissler        cmd = 'cp -fpPRH %s %s' % (localpath, destdir)
38482c905dcSAndrew Geissler        subprocess.check_call(cmd, shell=True)
38582c905dcSAndrew Geissler}
38682c905dcSAndrew Geissler
387c4ea075dSBrad Bishopdef exclude_useless_paths(tarinfo):
388c4ea075dSBrad Bishop    if tarinfo.isdir():
389c4ea075dSBrad Bishop        if tarinfo.name.endswith('/temp') or tarinfo.name.endswith('/patches') or tarinfo.name.endswith('/.pc'):
390c4ea075dSBrad Bishop            return None
391c4ea075dSBrad Bishop        elif tarinfo.name == 'temp' or tarinfo.name == 'patches' or tarinfo.name == '.pc':
392c4ea075dSBrad Bishop            return None
393c4ea075dSBrad Bishop    return tarinfo
394c4ea075dSBrad Bishop
395eb8dc403SDave Cobbleydef create_tarball(d, srcdir, suffix, ar_outdir):
396eb8dc403SDave Cobbley    """
397eb8dc403SDave Cobbley    create the tarball from srcdir
398eb8dc403SDave Cobbley    """
399eb8dc403SDave Cobbley    import tarfile
400eb8dc403SDave Cobbley
401eb8dc403SDave Cobbley    # Make sure we are only creating a single tarball for gcc sources
402eb8dc403SDave Cobbley    if (d.getVar('SRC_URI') == ""):
403eb8dc403SDave Cobbley        return
404eb8dc403SDave Cobbley
405eb8dc403SDave Cobbley    # For the kernel archive, srcdir may just be a link to the
406eb8dc403SDave Cobbley    # work-shared location. Use os.path.realpath to make sure
407eb8dc403SDave Cobbley    # that we archive the actual directory and not just the link.
408eb8dc403SDave Cobbley    srcdir = os.path.realpath(srcdir)
409eb8dc403SDave Cobbley
410eb8dc403SDave Cobbley    bb.utils.mkdirhier(ar_outdir)
411eb8dc403SDave Cobbley    if suffix:
412eb8dc403SDave Cobbley        filename = '%s-%s.tar.gz' % (d.getVar('PF'), suffix)
413eb8dc403SDave Cobbley    else:
414eb8dc403SDave Cobbley        filename = '%s.tar.gz' % d.getVar('PF')
415eb8dc403SDave Cobbley    tarname = os.path.join(ar_outdir, filename)
416eb8dc403SDave Cobbley
417eb8dc403SDave Cobbley    bb.note('Creating %s' % tarname)
418eb8dc403SDave Cobbley    tar = tarfile.open(tarname, 'w:gz')
419c4ea075dSBrad Bishop    tar.add(srcdir, arcname=os.path.basename(srcdir), filter=exclude_useless_paths)
420eb8dc403SDave Cobbley    tar.close()
421eb8dc403SDave Cobbley
422eb8dc403SDave Cobbley# creating .diff.gz between source.orig and source
423eb8dc403SDave Cobbleydef create_diff_gz(d, src_orig, src, ar_outdir):
424eb8dc403SDave Cobbley
425eb8dc403SDave Cobbley    import subprocess
426eb8dc403SDave Cobbley
427eb8dc403SDave Cobbley    if not os.path.isdir(src) or not os.path.isdir(src_orig):
428eb8dc403SDave Cobbley        return
429eb8dc403SDave Cobbley
430eb8dc403SDave Cobbley    # The diff --exclude can't exclude the file with path, so we copy
431eb8dc403SDave Cobbley    # the patched source, and remove the files that we'd like to
432eb8dc403SDave Cobbley    # exclude.
433eb8dc403SDave Cobbley    src_patched = src + '.patched'
434eb8dc403SDave Cobbley    oe.path.copyhardlinktree(src, src_patched)
435eb8dc403SDave Cobbley    for i in d.getVarFlag('ARCHIVER_MODE', 'diff-exclude').split():
436eb8dc403SDave Cobbley        bb.utils.remove(os.path.join(src_orig, i), recurse=True)
437eb8dc403SDave Cobbley        bb.utils.remove(os.path.join(src_patched, i), recurse=True)
438eb8dc403SDave Cobbley
439eb8dc403SDave Cobbley    dirname = os.path.dirname(src)
440eb8dc403SDave Cobbley    basename = os.path.basename(src)
441eb8dc403SDave Cobbley    bb.utils.mkdirhier(ar_outdir)
442eb8dc403SDave Cobbley    cwd = os.getcwd()
443eb8dc403SDave Cobbley    try:
444eb8dc403SDave Cobbley        os.chdir(dirname)
445eb8dc403SDave Cobbley        out_file = os.path.join(ar_outdir, '%s-diff.gz' % d.getVar('PF'))
446eb8dc403SDave Cobbley        diff_cmd = 'diff -Naur %s.orig %s.patched | gzip -c > %s' % (basename, basename, out_file)
447eb8dc403SDave Cobbley        subprocess.check_call(diff_cmd, shell=True)
448eb8dc403SDave Cobbley        bb.utils.remove(src_patched, recurse=True)
449eb8dc403SDave Cobbley    finally:
450eb8dc403SDave Cobbley        os.chdir(cwd)
451eb8dc403SDave Cobbley
452eb8dc403SDave Cobbleydef is_work_shared(d):
453eb8dc403SDave Cobbley    pn = d.getVar('PN')
454eb8dc403SDave Cobbley    return bb.data.inherits_class('kernel', d) or pn.startswith('gcc-source')
455eb8dc403SDave Cobbley
456eb8dc403SDave Cobbley# Run do_unpack and do_patch
457eb8dc403SDave Cobbleypython do_unpack_and_patch() {
458eb8dc403SDave Cobbley    if d.getVarFlag('ARCHIVER_MODE', 'src') not in \
459eb8dc403SDave Cobbley            [ 'patched', 'configured'] and \
460eb8dc403SDave Cobbley            d.getVarFlag('ARCHIVER_MODE', 'diff') != '1':
461eb8dc403SDave Cobbley        return
462eb8dc403SDave Cobbley    ar_outdir = d.getVar('ARCHIVER_OUTDIR')
463eb8dc403SDave Cobbley    ar_workdir = d.getVar('ARCHIVER_WORKDIR')
464eb8dc403SDave Cobbley    ar_sysroot_native = d.getVar('STAGING_DIR_NATIVE')
465eb8dc403SDave Cobbley    pn = d.getVar('PN')
466eb8dc403SDave Cobbley
467eb8dc403SDave Cobbley    # The kernel class functions require it to be on work-shared, so we dont change WORKDIR
468eb8dc403SDave Cobbley    if not is_work_shared(d):
469eb8dc403SDave Cobbley        # Change the WORKDIR to make do_unpack do_patch run in another dir.
470eb8dc403SDave Cobbley        d.setVar('WORKDIR', ar_workdir)
471eb8dc403SDave Cobbley        # Restore the original path to recipe's native sysroot (it's relative to WORKDIR).
472eb8dc403SDave Cobbley        d.setVar('STAGING_DIR_NATIVE', ar_sysroot_native)
473eb8dc403SDave Cobbley
474eb8dc403SDave Cobbley        # The changed 'WORKDIR' also caused 'B' changed, create dir 'B' for the
475eb8dc403SDave Cobbley        # possibly requiring of the following tasks (such as some recipes's
476eb8dc403SDave Cobbley        # do_patch required 'B' existed).
477eb8dc403SDave Cobbley        bb.utils.mkdirhier(d.getVar('B'))
478eb8dc403SDave Cobbley
479eb8dc403SDave Cobbley        bb.build.exec_func('do_unpack', d)
480eb8dc403SDave Cobbley
481eb8dc403SDave Cobbley    # Save the original source for creating the patches
482eb8dc403SDave Cobbley    if d.getVarFlag('ARCHIVER_MODE', 'diff') == '1':
483eb8dc403SDave Cobbley        src = d.getVar('S').rstrip('/')
484eb8dc403SDave Cobbley        src_orig = '%s.orig' % src
485eb8dc403SDave Cobbley        oe.path.copytree(src, src_orig)
486eb8dc403SDave Cobbley
487eb8dc403SDave Cobbley    # Make sure gcc and kernel sources are patched only once
488eb8dc403SDave Cobbley    if not (d.getVar('SRC_URI') == "" or is_work_shared(d)):
489eb8dc403SDave Cobbley        bb.build.exec_func('do_patch', d)
490eb8dc403SDave Cobbley
491eb8dc403SDave Cobbley    # Create the patches
492eb8dc403SDave Cobbley    if d.getVarFlag('ARCHIVER_MODE', 'diff') == '1':
493eb8dc403SDave Cobbley        bb.note('Creating diff gz...')
494eb8dc403SDave Cobbley        create_diff_gz(d, src_orig, src, ar_outdir)
495eb8dc403SDave Cobbley        bb.utils.remove(src_orig, recurse=True)
496eb8dc403SDave Cobbley}
497eb8dc403SDave Cobbley
498eb8dc403SDave Cobbley# BBINCLUDED is special (excluded from basehash signature
499eb8dc403SDave Cobbley# calculation). Using it in a task signature can cause "basehash
500eb8dc403SDave Cobbley# changed" errors.
501eb8dc403SDave Cobbley#
502eb8dc403SDave Cobbley# Depending on BBINCLUDED also causes do_ar_recipe to run again
503eb8dc403SDave Cobbley# for unrelated changes, like adding or removing buildhistory.bbclass.
504eb8dc403SDave Cobbley#
505eb8dc403SDave Cobbley# For these reasons we ignore the dependency completely. The versioning
506eb8dc403SDave Cobbley# of the output file ensures that we create it each time the recipe
507eb8dc403SDave Cobbley# gets rebuilt, at least as long as a PR server is used. We also rely
508eb8dc403SDave Cobbley# on that mechanism to catch changes in the file content, because the
509eb8dc403SDave Cobbley# file content is not part of of the task signature either.
510eb8dc403SDave Cobbleydo_ar_recipe[vardepsexclude] += "BBINCLUDED"
511eb8dc403SDave Cobbleypython do_ar_recipe () {
512eb8dc403SDave Cobbley    """
513eb8dc403SDave Cobbley    archive the recipe, including .bb and .inc.
514eb8dc403SDave Cobbley    """
515eb8dc403SDave Cobbley    import re
516eb8dc403SDave Cobbley    import shutil
517eb8dc403SDave Cobbley
518eb8dc403SDave Cobbley    require_re = re.compile( r"require\s+(.+)" )
519eb8dc403SDave Cobbley    include_re = re.compile( r"include\s+(.+)" )
520eb8dc403SDave Cobbley    bbfile = d.getVar('FILE')
521eb8dc403SDave Cobbley    outdir = os.path.join(d.getVar('WORKDIR'), \
522eb8dc403SDave Cobbley            '%s-recipe' % d.getVar('PF'))
523eb8dc403SDave Cobbley    bb.utils.mkdirhier(outdir)
524eb8dc403SDave Cobbley    shutil.copy(bbfile, outdir)
525eb8dc403SDave Cobbley
526eb8dc403SDave Cobbley    pn = d.getVar('PN')
527eb8dc403SDave Cobbley    bbappend_files = d.getVar('BBINCLUDED').split()
528eb8dc403SDave Cobbley    # If recipe name is aa, we need to match files like aa.bbappend and aa_1.1.bbappend
529eb8dc403SDave Cobbley    # Files like aa1.bbappend or aa1_1.1.bbappend must be excluded.
530eb8dc403SDave Cobbley    bbappend_re = re.compile( r".*/%s_[^/]*\.bbappend$" % re.escape(pn))
531eb8dc403SDave Cobbley    bbappend_re1 = re.compile( r".*/%s\.bbappend$" % re.escape(pn))
532eb8dc403SDave Cobbley    for file in bbappend_files:
533eb8dc403SDave Cobbley        if bbappend_re.match(file) or bbappend_re1.match(file):
534eb8dc403SDave Cobbley            shutil.copy(file, outdir)
535eb8dc403SDave Cobbley
536eb8dc403SDave Cobbley    dirname = os.path.dirname(bbfile)
537eb8dc403SDave Cobbley    bbpath = '%s:%s' % (dirname, d.getVar('BBPATH'))
538eb8dc403SDave Cobbley    f = open(bbfile, 'r')
539eb8dc403SDave Cobbley    for line in f.readlines():
540eb8dc403SDave Cobbley        incfile = None
541eb8dc403SDave Cobbley        if require_re.match(line):
542eb8dc403SDave Cobbley            incfile = require_re.match(line).group(1)
543eb8dc403SDave Cobbley        elif include_re.match(line):
544eb8dc403SDave Cobbley            incfile = include_re.match(line).group(1)
545eb8dc403SDave Cobbley        if incfile:
546eb8dc403SDave Cobbley            incfile = d.expand(incfile)
5471d80a2eaSBrad Bishop        if incfile:
548eb8dc403SDave Cobbley            incfile = bb.utils.which(bbpath, incfile)
549eb8dc403SDave Cobbley        if incfile:
550eb8dc403SDave Cobbley            shutil.copy(incfile, outdir)
551eb8dc403SDave Cobbley
552eb8dc403SDave Cobbley    create_tarball(d, outdir, 'recipe', d.getVar('ARCHIVER_OUTDIR'))
553eb8dc403SDave Cobbley    bb.utils.remove(outdir, recurse=True)
554eb8dc403SDave Cobbley}
555eb8dc403SDave Cobbley
556eb8dc403SDave Cobbleypython do_dumpdata () {
557eb8dc403SDave Cobbley    """
558eb8dc403SDave Cobbley    dump environment data to ${PF}-showdata.dump
559eb8dc403SDave Cobbley    """
560eb8dc403SDave Cobbley
561eb8dc403SDave Cobbley    dumpfile = os.path.join(d.getVar('ARCHIVER_OUTDIR'), \
562eb8dc403SDave Cobbley        '%s-showdata.dump' % d.getVar('PF'))
563eb8dc403SDave Cobbley    bb.note('Dumping metadata into %s' % dumpfile)
564eb8dc403SDave Cobbley    with open(dumpfile, "w") as f:
565eb8dc403SDave Cobbley        # emit variables and shell functions
566eb8dc403SDave Cobbley        bb.data.emit_env(f, d, True)
567eb8dc403SDave Cobbley        # emit the metadata which isn't valid shell
568eb8dc403SDave Cobbley        for e in d.keys():
569eb8dc403SDave Cobbley            if d.getVarFlag(e, "python", False):
570eb8dc403SDave Cobbley                f.write("\npython %s () {\n%s}\n" % (e, d.getVar(e, False)))
571eb8dc403SDave Cobbley}
572eb8dc403SDave Cobbley
573eb8dc403SDave CobbleySSTATETASKS += "do_deploy_archives"
574eb8dc403SDave Cobbleydo_deploy_archives () {
575eb8dc403SDave Cobbley    echo "Deploying source archive files from ${ARCHIVER_TOPDIR} to ${DEPLOY_DIR_SRC}."
576eb8dc403SDave Cobbley}
577eb8dc403SDave Cobbleypython do_deploy_archives_setscene () {
578eb8dc403SDave Cobbley    sstate_setscene(d)
579eb8dc403SDave Cobbley}
580eb8dc403SDave Cobbleydo_deploy_archives[dirs] = "${ARCHIVER_TOPDIR}"
581eb8dc403SDave Cobbleydo_deploy_archives[sstate-inputdirs] = "${ARCHIVER_TOPDIR}"
582eb8dc403SDave Cobbleydo_deploy_archives[sstate-outputdirs] = "${DEPLOY_DIR_SRC}"
583eb8dc403SDave Cobbleyaddtask do_deploy_archives_setscene
584eb8dc403SDave Cobbley
585eb8dc403SDave Cobbleyaddtask do_ar_original after do_unpack
586eb8dc403SDave Cobbleyaddtask do_unpack_and_patch after do_patch
587eb8dc403SDave Cobbleyaddtask do_ar_patched after do_unpack_and_patch
588eb8dc403SDave Cobbleyaddtask do_ar_configured after do_unpack_and_patch
58982c905dcSAndrew Geissleraddtask do_ar_mirror after do_fetch
590eb8dc403SDave Cobbleyaddtask do_dumpdata
591eb8dc403SDave Cobbleyaddtask do_ar_recipe
592*1e34c2d0SAndrew Geissleraddtask do_deploy_archives
593*1e34c2d0SAndrew Geisslerdo_build[recrdeptask] += "do_deploy_archives"
594*1e34c2d0SAndrew Geisslerdo_populate_sdk[recrdeptask] += "do_deploy_archives"
595eb8dc403SDave Cobbley
596eb8dc403SDave Cobbleypython () {
597eb8dc403SDave Cobbley    # Add tasks in the correct order, specifically for linux-yocto to avoid race condition.
598eb8dc403SDave Cobbley    # sstatesig.py:sstate_rundepfilter has special support that excludes this dependency
599eb8dc403SDave Cobbley    # so that do_kernel_configme does not need to run again when do_unpack_and_patch
600eb8dc403SDave Cobbley    # gets added or removed (by adding or removing archiver.bbclass).
601eb8dc403SDave Cobbley    if bb.data.inherits_class('kernel-yocto', d):
602eb8dc403SDave Cobbley        bb.build.addtask('do_kernel_configme', 'do_configure', 'do_unpack_and_patch', d)
603eb8dc403SDave Cobbley}
604