]> git.notmuchmail.org Git - notmuch/blob - bindings/python/notmuch/tag.py
d6abf2865986600d20479b749d32ee127cd692bd
[notmuch] / bindings / python / notmuch / tag.py
1 """
2 This file is part of notmuch.
3
4 Notmuch is free software: you can redistribute it and/or modify it
5 under the terms of the GNU General Public License as published by the
6 Free Software Foundation, either version 3 of the License, or (at your
7 option) any later version.
8
9 Notmuch is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with notmuch.  If not, see <http://www.gnu.org/licenses/>.
16
17 Copyright 2010 Sebastian Spaeth <Sebastian@SSpaeth.de>'
18 """
19 from ctypes import c_char_p
20 from notmuch.globals import nmlib, STATUS, NotmuchError
21
22
23 class Tags(object):
24     """Represents a list of notmuch tags
25
26     This object provides an iterator over a list of notmuch tags (which
27     are unicode instances).
28
29     Do note that the underlying library only provides a one-time
30     iterator (it cannot reset the iterator to the start). Thus iterating
31     over the function will "exhaust" the list of tags, and a subsequent
32     iteration attempt will raise a :exc:`NotmuchError`
33     STATUS.NOT_INITIALIZED. Also note, that any function that uses
34     iteration (nearly all) will also exhaust the tags. So both::
35
36       for tag in tags: print tag
37
38     as well as::
39
40        number_of_tags = len(tags)
41
42     and even a simple::
43
44        #str() iterates over all tags to construct a space separated list
45        print(str(tags))
46
47     will "exhaust" the Tags. If you need to re-iterate over a list of
48     tags you will need to retrieve a new :class:`Tags` object.
49     """
50
51     #notmuch_tags_get
52     _get = nmlib.notmuch_tags_get
53     _get.restype = c_char_p
54
55     def __init__(self, tags_p, parent=None):
56         """
57         :param tags_p: A pointer to an underlying *notmuch_tags_t*
58              structure. These are not publically exposed, so a user
59              will almost never instantiate a :class:`Tags` object
60              herself. They are usually handed back as a result,
61              e.g. in :meth:`Database.get_all_tags`.  *tags_p* must be
62              valid, we will raise an :exc:`NotmuchError`
63              (STATUS.NULL_POINTER) if it is `None`.
64         :type tags_p: :class:`ctypes.c_void_p`
65         :param parent: The parent object (ie :class:`Database` or
66              :class:`Message` these tags are derived from, and saves a
67              reference to it, so we can automatically delete the db object
68              once all derived objects are dead.
69         :TODO: Make the iterator optionally work more than once by
70                cache the tags in the Python object(?)
71         """
72         if tags_p is None:
73             NotmuchError(STATUS.NULL_POINTER)
74
75         self._tags = tags_p
76         #save reference to parent object so we keep it alive
77         self._parent = parent
78
79     def __iter__(self):
80         """ Make Tags an iterator """
81         return self
82
83     def next(self):
84         if self._tags is None:
85             raise NotmuchError(STATUS.NOT_INITIALIZED)
86         if not nmlib.notmuch_tags_valid(self._tags):
87             self._tags = None
88             raise StopIteration
89         tag = Tags._get(self._tags).decode('utf-8')
90         nmlib.notmuch_tags_move_to_next(self._tags)
91         return tag
92
93     def __nonzero__(self):
94         """Implement bool(Tags) check that can be repeatedly used
95
96         If __nonzero__ is not implemented, "if Tags()"
97         will implicitly call __len__, using up our iterator, so it is
98         important that this function is defined.
99
100         :returns: True if the Tags() iterator has at least one more Tag
101             left."""
102         return nmlib.notmuch_tags_valid(self._tags) > 0
103
104     def __str__(self):
105         """The str() representation of Tags() is a space separated list of tags
106
107         .. note:: As this iterates over the tags, we will not be able
108                to iterate over them again (as in retrieve them)! If
109                the tags have been exhausted already, this will raise a
110                :exc:`NotmuchError` STATUS.NOT_INITIALIZED on
111                subsequent attempts.
112         """
113         return " ".join(self)
114
115     def __del__(self):
116         """Close and free the notmuch tags"""
117         if self._tags is not None:
118             nmlib.notmuch_tags_destroy(self._tags)