summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Client/Tools/BundleDeps.py
blob: aaa0906333466923ba010eb33c06a74e47f4b1bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
""" Bundle dependency support """

import Bcfg2.Client.Tools


class BundleDeps(Bcfg2.Client.Tools.Tool):
    """Bundle dependency helper for Bcfg2. It handles Bundle tags inside the
    bundles that references the required other bundles that should change the
    modification status if the referenced bundles is modified."""

    name = 'Bundle'
    __handles__ = [('Bundle', None)]
    __req__ = {'Bundle': ['name']}

    def InstallBundle(self, _):
        """Simple no-op because we only need the BundleUpdated hook."""
        return dict()

    def VerifyBundle(self, entry, _):  # pylint: disable=W0613
        """Simple no-op because we only need the BundleUpdated hook."""
        return True

    def BundleUpdated(self, entry):
        """This handles the dependencies on this bundle. It searches all
        Bundle tags in other bundles that references the current bundle name
        and marks those tags as modified to trigger the modification hook on
        the other bundles."""

        bundle_name = entry.get('name')
        for bundle in self.config.findall('./Bundle/Bundle'):
            if bundle.get('name') == bundle_name and \
               bundle not in self.modified:
                self.modified.append(bundle)
        return dict()