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

« back to all changes in this revision

Viewing changes to checkbox/registries/directory.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
import os
 
22
import logging
 
23
 
 
24
from checkbox.registry import Registry
 
25
 
 
26
 
 
27
class DirectoryRegistry(Registry):
 
28
    """Base registry for containing directories.
 
29
 
 
30
    The default behavior is to return the files within a directory
 
31
    separated by newlines.
 
32
 
 
33
    Subclasses should define a directory configuration parameter.
 
34
    """
 
35
 
 
36
    optional_attributes = ["directory"]
 
37
 
 
38
    def __init__(self, config, directory=None):
 
39
        super(DirectoryRegistry, self).__init__(config)
 
40
        self._directory = directory or self._config.directory
 
41
 
 
42
    def __str__(self):
 
43
        logging.info("Reading directory: %s", self._directory)
 
44
        return "\n".join(os.listdir(self._directory))
 
45
 
 
46
    def items(self):
 
47
        return []