~unity-2d-team/unity-2d/Shell-MultiMonitor

« back to all changes in this revision

Viewing changes to grackle/model.py

  • Committer: William Grant
  • Date: 2012-01-23 00:16:52 UTC
  • Revision ID: william.grant@canonical.com-20120123001652-ovzxocugasunitdw
DropĀ unusedĀ import

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
import email.parser
20
20
from email.utils import parsedate_tz
21
21
import logging
 
22
import time
22
23
import uuid
23
24
 
24
25
import pycassa
27
28
    SystemManager,
28
29
    TIME_UUID_TYPE,
29
30
    )
 
31
from pycassa.util import convert_time_to_uuid
30
32
 
31
33
from grackle.cassandra import workaround_1779
32
34
 
78
80
    return date, message_dict
79
81
 
80
82
 
 
83
def _utc_datetime(dt):
 
84
    return dt.astimezone(dateutil.tz.tzutc())
 
85
 
 
86
 
 
87
def _utc_timestamp(dt):
 
88
    return time.mktime(_utc_datetime(dt).timetuple()) - time.timezone
 
89
 
 
90
 
 
91
def _utc_timeuuid(dt, lowest_val=True):
 
92
    return convert_time_to_uuid(_utc_timestamp(dt), lowest_val)
 
93
 
 
94
 
 
95
def _cmp_timeuuid(a, b):
 
96
    if a.time != b.time:
 
97
        return cmp(a.time, b.time)
 
98
    return cmp(a, b)
 
99
 
 
100
 
 
101
def _bound_timeuuid(a, b, max=False):
 
102
    if a == '' or _cmp_timeuuid(b, a) == (1 if max else -1):
 
103
        return b
 
104
    return a
 
105
 
 
106
 
81
107
class CassandraConnection(object):
82
108
 
83
109
    def __init__(self, keyspace, host):
102
128
        self.messages.insert(message_uuid, message_dict)
103
129
        self.archive_messages.insert(
104
130
            archive_uuid,
105
 
            {message_date.astimezone(dateutil.tz.tzutc()): message_uuid})
 
131
            {_utc_timestamp(message_date): message_uuid})
106
132
        logging.debug(
107
133
            'Imported %s into %s'
108
134
            % (message_dict.get('message-id', None), archive_uuid))
113
139
            'date': message.get('date'),
114
140
            'from': message.get('from'),
115
141
            'subject': message.get('subject'),
 
142
            'message-id': message.get('message-id'),
116
143
            }
117
144
 
118
 
    def get_messages(self, archive_uuid, order, count, start):
 
145
    def _trim(self, sequence, end):
 
146
        """Return the sequence with one of the ends trimmed.
 
147
 
 
148
        :param end: if true, remove the last element. otherwise remove
 
149
            the first.
 
150
        """
 
151
        if end:
 
152
            return sequence[:-1]
 
153
        else:
 
154
            return sequence[1:]
 
155
 
 
156
    def get_messages(self, archive_uuid, order, count, memo, backward=False,
 
157
                     start_date=None, finish_date=None):
119
158
        if order in ("date", "-date"):
120
159
            reversed = order[0] == '-'
121
160
        else:
122
161
            raise AssertionError("Unsupported order.")
 
162
        if memo != '':
 
163
            memo = uuid.UUID(memo)
 
164
        if backward:
 
165
            start = ''
 
166
            finish = memo
 
167
        else:
 
168
            start = memo
 
169
            finish = ''
 
170
        if start_date is not None:
 
171
            start = _bound_timeuuid(
 
172
                start, _utc_timeuuid(start_date, lowest_val=False), max=True)
 
173
        if finish_date is not None:
 
174
            finish = _bound_timeuuid(
 
175
                finish, _utc_timeuuid(finish_date, lowest_val=False))
 
176
 
 
177
        # Get up to n+1 messages from the memo: the last item of the
 
178
        # previous batch (because that's where the memo starts) + this
 
179
        # batch.
123
180
        pairs = self.archive_messages.get(
124
 
            archive_uuid, column_count=count + 1,
125
 
            column_start=start, column_reversed=reversed).items()
 
181
            archive_uuid, column_count=count + 1, column_start=start,
 
182
            column_finish=finish, column_reversed=reversed).items()
 
183
 
 
184
        if len(pairs) and memo and pairs[0][0] <= memo:
 
185
            # The memo (from the previous batch) was included in the result.
 
186
            # Trim it.
 
187
            pairs = self._trim(pairs, False ^ backward)
 
188
        elif len(pairs) > count:
 
189
            # There was no memo in the result, so the n+1th element is
 
190
            # unnecessary. Kill it.
 
191
            pairs = self._trim(pairs, True ^ backward)
 
192
 
 
193
        if len(pairs) == 0:
 
194
            return (None, [], None)
 
195
 
 
196
        assert 0 < len(pairs) <= count
 
197
 
 
198
        # We've narrowed down the message references. Fetch the messages.
126
199
        ids = [v for k, v in pairs]
127
200
        messages = self.messages.multiget(
128
 
            ids, columns=['date', 'from', 'subject'])
129
 
        actual_count = len(pairs)
130
 
        if len(pairs) > count:
131
 
            assert len(pairs) == count + 1
132
 
            actual_count -= 1
133
 
            next_memo = str(pairs[count][0])
134
 
        else:
135
 
            next_memo = None
 
201
            ids, columns=['date', 'from', 'subject', 'message-id'])
 
202
 
136
203
        return (
137
 
            [self._format_message(messages[id]) for id in ids[:actual_count]],
138
 
            next_memo,
 
204
            str(pairs[0][0]),
 
205
            [self._format_message(messages[id]) for id in ids],
 
206
            str(pairs[-1][0]),
139
207
            )