summaryrefslogtreecommitdiff
path: root/src/buildstream/sandbox/_config.py
blob: 614f22063c9a844421f6e05f62b2325ad18e4ca7 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#
#  Copyright (C) 2018 Codethink Limited
#
#  This program is free software; you can redistribute it and/or
#  modify it under the terms of the GNU Lesser General Public
#  License as published by the Free Software Foundation; either
#  version 2 of the License, or (at your option) any later version.
#
#  This library is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the GNU
#  Lesser General Public License for more details.
#
#  You should have received a copy of the GNU Lesser General Public
#  License along with this library. If not, see <http://www.gnu.org/licenses/>.
#
#  Authors:
#        Jim MacArthur <jim.macarthur@codethink.co.uk>


# SandboxConfig
#
# A container for sandbox configuration data. We want the internals
# of this to be opaque, hence putting it in its own private file.
class SandboxConfig:
    def __init__(self, build_uid, build_gid, build_os=None, build_arch=None):
        self.build_uid = build_uid
        self.build_gid = build_gid
        self.build_os = build_os
        self.build_arch = build_arch

    # get_unique_key():
    #
    # This returns the SandboxConfig's contribution
    # to an element's cache key.
    #
    # Returns:
    #    (dict): A dictionary to add to an element's cache key
    #
    def get_unique_key(self):

        # Currently operating system and machine architecture
        # are not configurable and we have no sandbox implementation
        # which can conform to such configurations.
        #
        # However this should be the right place to support
        # such configurations in the future.
        #
        unique_key = {"os": self.build_os, "arch": self.build_arch}

        # Avoid breaking cache key calculation with
        # the addition of configurabuild build uid/gid
        if self.build_uid != 0:
            unique_key["build-uid"] = self.build_uid

        if self.build_gid != 0:
            unique_key["build-gid"] = self.build_gid

        return unique_key