summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Reporting/Reports.py
blob: e91511c6030679c11948e9e970844ef4ea0777c9 (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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
#!/usr/bin/env python
"""Query reporting system for client status."""

import sys
import argparse
import datetime
import Bcfg2.DBSettings
from django.core.exceptions import ObjectDoesNotExist


def print_entries(interaction, etype):
    items = getattr(interaction, etype)()
    for item in items:
        print("%-70s %s" % (item.entry_type + ":" + item.name, etype))


class _FlagsFilterMixin(object):
    """ Mixin that allows to filter the interactions based on the
    only_important and/or the dry_run flag """

    options = [
        Bcfg2.Options.BooleanOption(
            "-n", "--no-dry-run",
            help="Do not consider interactions created with the --dry-run "
            "flag"),
        Bcfg2.Options.BooleanOption(
            "-i", "--no-only-important",
            help="Do not consider interactions created with the "
            "--only-important flag")]

    def get_interaction(self, client, setup):
        if not setup.no_dry_run and not setup.no_only_important:
            return client.current_interaction

        filter = {}
        if setup.no_dry_run:
            filter['dry_run'] = False
        if setup.no_only_important:
            filter['only_important'] = False

        from Bcfg2.Reporting.models import Interaction
        try:
            return Interaction.objects.filter(client=client, **filter).latest()
        except ObjectDoesNotExist:
            return None


class _SingleHostCmd(Bcfg2.Options.Subcommand):  # pylint: disable=W0223
    """ Base class for bcfg2-reports modes that take a single host as
    a positional argument """
    options = [Bcfg2.Options.PositionalArgument("host")]

    def get_client(self, setup):
        from Bcfg2.Reporting.models import Client
        try:
            return Client.objects.select_related().get(name=setup.host)
        except Client.DoesNotExist:
            print("No such host: %s" % setup.host)
            raise SystemExit(2)


class Show(_SingleHostCmd, _FlagsFilterMixin):
    """ Show bad, extra, modified, or all entries from a given host """

    options = _SingleHostCmd.options + _FlagsFilterMixin.options + [
        Bcfg2.Options.BooleanOption(
            "-b", "--bad", help="Show bad entries from HOST"),
        Bcfg2.Options.BooleanOption(
            "-e", "--extra", help="Show extra entries from HOST"),
        Bcfg2.Options.BooleanOption(
            "-m", "--modified", help="Show modified entries from HOST")]

    def run(self, setup):
        client = self.get_client(setup)
        show_all = not setup.bad and not setup.extra and not setup.modified
        interaction = self.get_interaction(client, setup)
        if interaction is None:
            print("No interactions found for host: %s" % client.name)
        else:
            if setup.bad or show_all:
                print_entries(interaction, "bad")
            if setup.modified or show_all:
                print_entries(interaction, "modified")
            if setup.extra or show_all:
                print_entries(interaction, "extra")


class Total(_SingleHostCmd, _FlagsFilterMixin):
    """ Show total number of managed and good entries from HOST """

    options = _SingleHostCmd.options + _FlagsFilterMixin.options

    def run(self, setup):
        client = self.get_client(setup)
        interaction = self.get_interaction(client, setup)
        if interaction is None:
            print("No interactions found for host: %s" % client.name)
        else:
            managed = interaction.total_count
            good = interaction.good_count
            print("Total managed entries: %d (good: %d)" % (managed, good))


class Expire(_SingleHostCmd):
    """ Toggle the expired/unexpired state of HOST """

    def run(self, setup):
        client = self.get_client(setup)
        if client.expiration is None:
            client.expiration = datetime.datetime.now()
            print("%s expired." % client.name)
        else:
            client.expiration = None
            print("%s un-expired." % client.name)
        client.save()


class _ClientSelectCmd(Bcfg2.Options.Subcommand, _FlagsFilterMixin):
    """ Base class for subcommands that display lists of clients """
    options = _FlagsFilterMixin.options + [
        Bcfg2.Options.Option("--fields", metavar="FIELD,FIELD,...",
                             help="Only display the listed fields",
                             type=Bcfg2.Options.Types.comma_list,
                             default=['name', 'time', 'state'])]

    def get_clients(self):
        from Bcfg2.Reporting.models import Client
        return Client.objects.exclude(current_interaction__isnull=True)

    def _print_fields(self, setup, fields, client, fmt, extra=None):
        """ Prints the fields specified in fields of client, max_name
        specifies the column width of the name column. """
        fdata = []
        if extra is None:
            extra = dict()
        interaction = self.get_interaction(client, setup)
        for field in fields:
            if field == 'time':
                fdata.append(str(interaction.timestamp))
            elif field == 'state':
                if interaction.isclean():
                    fdata.append("clean")
                else:
                    fdata.append("dirty")
            elif field == 'total':
                fdata.append(interaction.total_count)
            elif field == 'good':
                fdata.append(interaction.good_count)
            elif field == 'modified':
                fdata.append(interaction.modified_count)
            elif field == 'extra':
                fdata.append(interaction.extra_count)
            elif field == 'bad':
                fdata.append(interaction.bad_count)
            elif field == 'stale':
                fdata.append(interaction.isstale())
            else:
                try:
                    fdata.append(getattr(client, field))
                except AttributeError:
                    fdata.append(extra.get(field, "N/A"))

        print(fmt % tuple(fdata))

    def display(self, setup, result, fields, extra=None):
        if 'name' not in fields:
            fields.insert(0, "name")
        if not result:
            print("No match found")
            return
        if extra is None:
            extra = dict()
        max_name = max(len(c.name) for c in result)
        ffmt = []
        for field in fields:
            if field == "name":
                ffmt.append("%%-%ds" % max_name)
            elif field == "time":
                ffmt.append("%-19s")
            else:
                ffmt.append("%%-%ds" % len(field))
        fmt = "  ".join(ffmt)
        print(fmt % tuple(f.title() for f in fields))
        for client in result:
            if not client.expiration:
                self._print_fields(setup, fields, client, fmt,
                                   extra=extra.get(client, None))


class Clients(_ClientSelectCmd):
    """ Query hosts """
    options = _ClientSelectCmd.options + [
        Bcfg2.Options.BooleanOption(
            "-c", "--clean", help="Show only clean hosts"),
        Bcfg2.Options.BooleanOption(
            "-d", "--dirty", help="Show only dirty hosts"),
        Bcfg2.Options.BooleanOption(
            "--stale",
            help="Show hosts that haven't run in the last 24 hours")]

    def run(self, setup):
        result = []
        show_all = not setup.stale and not setup.clean and not setup.dirty
        for client in self.get_clients():
            interaction = self.get_interaction(client, setup)
            if interaction is None:
                continue

            if (show_all or
                (setup.stale and interaction.isstale()) or
                (setup.clean and interaction.isclean()) or
                (setup.dirty and not interaction.isclean())):
                result.append(client)

        self.display(setup, result, setup.fields)


class Entries(_ClientSelectCmd):
    """ Query hosts by entries """
    options = _ClientSelectCmd.options + [
        Bcfg2.Options.BooleanOption(
            "--badentry",
            help="Show hosts that have bad entries that match"),
        Bcfg2.Options.BooleanOption(
            "--modifiedentry",
            help="Show hosts that have modified entries that match"),
        Bcfg2.Options.BooleanOption(
            "--extraentry",
            help="Show hosts that have extra entries that match"),
        Bcfg2.Options.PathOption(
            "--file", type=argparse.FileType('r'),
            help="Read TYPE:NAME pairs from the specified file instead of "
            "from the command line"),
        Bcfg2.Options.PositionalArgument(
            "entries", metavar="TYPE:NAME", nargs="*")]

    def _hosts_by_entry_type(self, setup, clients, etype, entryspec):
        result = []
        for entry in entryspec:
            for client in clients:
                interaction = self.get_interaction(client, setup)
                if interaction is None:
                    continue

                items = getattr(interaction, etype)()
                for item in items:
                    if (item.entry_type == entry[0] and
                        item.name == entry[1]):
                        result.append(client)
        return result

    def run(self, setup):
        result = []
        if setup.file:
            try:
                entries = [l.strip().split(":") for l in setup.file]
            except IOError:
                err = sys.exc_info()[1]
                print("Cannot read entries from %s: %s" % (setup.file.name,
                                                           err))
                return 2
        else:
            entries = [a.split(":") for a in setup.entries]

        clients = self.get_clients()
        if setup.badentry:
            result = self._hosts_by_entry_type(setup, clients, "bad", entries)
        elif setup.modifiedentry:
            result = self._hosts_by_entry_type(setup, clients, "modified",
                                               entries)
        elif setup.extraentry:
            result = self._hosts_by_entry_type(setup, clients, "extra",
                                               entries)

        self.display(setup, result, setup.fields)


class Entry(_ClientSelectCmd):
    """ Show the status of a single entry on all hosts """

    options = _ClientSelectCmd.options + [
        Bcfg2.Options.PositionalArgument(
            "entry", metavar="TYPE:NAME", nargs=1)]

    def run(self, setup):
        from Bcfg2.Reporting.models import BaseEntry
        result = []
        fields = setup.fields
        if 'state' in fields:
            fields.remove('state')
        fields.append("entry state")

        etype, ename = setup.entry[0].split(":")
        try:
            entry_cls = BaseEntry.entry_from_type(etype)
        except ValueError:
            print("Unhandled/unknown type %s" % etype)
            return 2

        # TODO: batch fetch this.  sqlite could break
        extra = dict()
        for client in self.get_clients():
            interaction = self.get_interaction(client, setup)
            if interaction is None:
                continue

            ents = entry_cls.objects.filter(
                name=ename, interaction=interaction)
            if len(ents) == 0:
                continue
            extra[client] = {"entry state": ents[0].get_state_display(),
                             "reason": ents[0]}
            result.append(client)

        self.display(setup, result, fields, extra=extra)


class CLI(Bcfg2.Options.CommandRegistry):
    """ CLI class for bcfg2-reports """

    def __init__(self):
        Bcfg2.Options.CommandRegistry.__init__(self)
        self.register_commands(globals().values())
        parser = Bcfg2.Options.get_parser(
            description="Query the Bcfg2 reporting subsystem",
            components=[self])
        parser.add_options(self.subcommand_options)
        parser.parse()

    def run(self):
        """ Run bcfg2-reports """
        return self.runcommand()