~ubuntu-branches/ubuntu/precise/checkbox/precise

« back to all changes in this revision

Viewing changes to registries/lsb.py

  • Committer: Bazaar Package Importer
  • Author(s): Marc Tardif
  • Date: 2009-01-20 16:46:15 UTC
  • Revision ID: james.westby@ubuntu.com-20090120164615-7iz6nmlef41h4vx2
Tags: 0.4
* Setup bzr-builddeb in native mode.
* Removed LGPL notice from the copyright file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Copyright (c) 2008 Canonical
 
3
#
 
4
# Written by Marc Tardif <marc@interunion.ca>
 
5
#
 
6
# This file is part of Checkbox.
 
7
#
 
8
# Checkbox is free software: you can redistribute it and/or modify
 
9
# it under the terms of the GNU General Public License as published by
 
10
# the Free Software Foundation, either version 3 of the License, or
 
11
# (at your option) any later version.
 
12
#
 
13
# Checkbox is distributed in the hope that it will be useful,
 
14
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
# GNU General Public License for more details.
 
17
#
 
18
# You should have received a copy of the GNU General Public License
 
19
# along with Checkbox.  If not, see <http://www.gnu.org/licenses/>.
 
20
#
 
21
from checkbox.lib.cache import cache
 
22
 
 
23
from checkbox.registries.command import CommandRegistry
 
24
 
 
25
 
 
26
class LsbRegistry(CommandRegistry):
 
27
    """Registry for LSB information.
 
28
 
 
29
    Each item contained in this registry consists of the information
 
30
    returned by the lsb_release command.
 
31
    """
 
32
 
 
33
    default_map = {
 
34
        "Distributor ID": "distributor_id",
 
35
        "Description": "description",
 
36
        "Release": "release",
 
37
        "Codename": "codename"}
 
38
 
 
39
    def __init__(self, config, filename=None, map=None):
 
40
        super(LsbRegistry, self).__init__(config, filename)
 
41
        self._map = map or self.default_map
 
42
 
 
43
    @cache
 
44
    def items(self):
 
45
        items = []
 
46
        for line in [l for l in self.split("\n") if l]:
 
47
            (key, value) = line.split(":\t", 1)
 
48
            if key in self._map:
 
49
                key = self._map[key]
 
50
                items.append((key, value))
 
51
 
 
52
        return items
 
53
 
 
54
 
 
55
factory = LsbRegistry