~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to fai/pylon/misc.py

  • Committer: Robert Collins
  • Date: 2005-09-13 15:11:39 UTC
  • mto: (147.2.6) (364.1.3 bzrtools)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: robertc@robertcollins.net-20050913151139-9ac920fc9d7bda31
TODOification

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2004 Aaron Bentley
 
2
# <aaron.bentley@utoronto.ca>
 
3
#
 
4
#    This program is free software; you can redistribute it and/or modify
 
5
#    it under the terms of the GNU General Public License as published by
 
6
#    the Free Software Foundation; either version 2 of the License, or
 
7
#    (at your option) any later version.
 
8
#
 
9
#    This program is distributed in the hope that it will be useful,
 
10
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
#    GNU General Public License for more details.
 
13
#
 
14
#    You should have received a copy of the GNU General Public License
 
15
#    along with this program; if not, write to the Free Software
 
16
#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
 
 
18
__docformat__ = "restructuredtext"
 
19
__doc__ = "A miscellany of stuff"
 
20
 
 
21
 
 
22
class rewind_iterator:
 
23
    """A rewindable iterator wrapper"""
 
24
    def __init__(self, base_iterator):
 
25
        """Initializer.
 
26
        
 
27
        :param base_iterator: The iterator to make rewindable
 
28
        :type base_iterator: Iterable of anything
 
29
        """
 
30
        self.base_iterator = base_iterator.__iter__()
 
31
        self.read_items = []
 
32
        self.list_iterator = self.read_items.__iter__()
 
33
        self.use_list = True
 
34
 
 
35
    def next(self):
 
36
        if self.use_list:
 
37
            try:
 
38
                return self.list_iterator.next()
 
39
            except StopIteration:
 
40
                self.use_list = False
 
41
 
 
42
        item = self.base_iterator.next()
 
43
        self.read_items.append(item)
 
44
        return item
 
45
 
 
46
    def rewind(self):
 
47
        """Rewind and start iterating again from the sequence beginning."""
 
48
        self.use_list = True
 
49
        self.list_iterator = self.read_items.__iter__()
 
50
 
 
51
    def __iter__(self):
 
52
        return self
 
53
 
 
54
 
 
55
def invert_dict(dict):
 
56
    newdict = {}
 
57
    for (key,value) in dict.iteritems():
 
58
        newdict[value] = key
 
59
    return newdict
 
60
 
 
61
 
 
62
# arch-tag: 9573f21a-15c4-4b9a-9f26-e744b3a58aa5