aboutsummaryrefslogtreecommitdiff
blob: faf1baa0a0465c6145a309aa5bf86260cf8fc6bb (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# Copyright 2010-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

import io

import portage
from portage import os
from portage.dep import Atom, _repo_name_re
from portage.eapi import eapi_has_repo_deps
from portage.elog import messages as elog_messages
from portage.exception import InvalidAtom
from portage.package.ebuild._ipc.IpcCommand import IpcCommand
from portage.util import normalize_path, no_color
from portage.versions import best


class QueryCommand(IpcCommand):
    __slots__ = (
        "phase",
        "settings",
    )

    _db = None

    @classmethod
    def get_db(cls):
        if cls._db is not None:
            return cls._db
        return portage.db

    def __init__(self, settings, phase):
        IpcCommand.__init__(self)
        self.settings = settings
        self.phase = phase

    def __call__(self, argv):
        """
        @return: tuple of (stdout, stderr, returncode)
        """

        # Python 3:
        # cmd, root, *args = argv
        cmd = argv[0]
        root = argv[1]
        args = argv[2:]

        warnings = []
        warnings_str = ""

        db = self.get_db()
        eapi = self.settings.get("EAPI")

        root = normalize_path(root or os.sep).rstrip(os.sep) + os.sep
        if root not in db:
            return ("", f"{cmd}: Invalid ROOT: {root}\n", 3)

        portdb = db[root]["porttree"].dbapi
        vardb = db[root]["vartree"].dbapi

        if cmd in ("best_version", "has_version"):
            allow_repo = eapi_has_repo_deps(eapi)
            try:
                atom = Atom(args[0], allow_repo=allow_repo)
            except InvalidAtom:
                return ("", f"{cmd}: Invalid atom: {args[0]}\n", 2)

            try:
                atom = Atom(args[0], allow_repo=allow_repo, eapi=eapi)
            except InvalidAtom as e:
                warnings.append(f"QA Notice: {cmd}: {e}")

            use = self.settings.get("PORTAGE_BUILT_USE")
            if use is None:
                use = self.settings["PORTAGE_USE"]

            use = frozenset(use.split())
            atom = atom.evaluate_conditionals(use)

        if warnings:
            warnings_str = self._elog("eqawarn", warnings)

        if cmd == "has_version":
            if vardb.match(atom):
                returncode = 0
            else:
                returncode = 1
            return ("", warnings_str, returncode)
        if cmd == "best_version":
            m = best(vardb.match(atom))
            return (f"{m}\n", warnings_str, 0)
        if cmd in (
            "master_repositories",
            "repository_path",
            "available_eclasses",
            "eclass_path",
            "license_path",
        ):
            repo = _repo_name_re.match(args[0])
            if repo is None:
                return ("", f"{cmd}: Invalid repository: {args[0]}\n", 2)
            try:
                repo = portdb.repositories[args[0]]
            except KeyError:
                return ("", warnings_str, 1)

            if cmd == "master_repositories":
                return (
                    f"{' '.join(x.name for x in repo.masters)}\n",
                    warnings_str,
                    0,
                )
            if cmd == "repository_path":
                return (f"{repo.location}\n", warnings_str, 0)
            if cmd == "available_eclasses":
                return (
                    f"{' '.join(sorted(repo.eclass_db.eclasses))}\n",
                    warnings_str,
                    0,
                )
            if cmd == "eclass_path":
                try:
                    eclass = repo.eclass_db.eclasses[args[1]]
                except KeyError:
                    return ("", warnings_str, 1)
                return (f"{eclass.location}\n", warnings_str, 0)
            if cmd == "license_path":
                paths = reversed(
                    [
                        os.path.join(x.location, "licenses", args[1])
                        for x in list(repo.masters) + [repo]
                    ]
                )
                for path in paths:
                    if os.path.exists(path):
                        return (f"{path}\n", warnings_str, 0)
                return ("", warnings_str, 1)
        return ("", f"Invalid command: {cmd}\n", 3)

    def _elog(self, elog_funcname, lines):
        """
        This returns a string, to be returned via ipc and displayed at the
        appropriate place in the build output. We wouldn't want to open the
        log here since it is already opened by AbstractEbuildProcess and we
        don't want to corrupt it, especially if it is being written with
        compression.
        """
        out = io.StringIO()
        phase = self.phase
        elog_func = getattr(elog_messages, elog_funcname)
        global_havecolor = portage.output.havecolor
        try:
            portage.output.havecolor = not no_color(self.settings)
            for line in lines:
                elog_func(line, phase=phase, key=self.settings.mycpv, out=out)
        finally:
            portage.output.havecolor = global_havecolor
        msg = out.getvalue()
        return msg