~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-22 12:52:24 UTC
  • Revision ID: william.grant@canonical.com-20120122125224-z19p0uvnb7ch6tc7
Comment and document.

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
23
22
import uuid
24
23
 
25
24
import pycassa
28
27
    SystemManager,
29
28
    TIME_UUID_TYPE,
30
29
    )
31
 
from pycassa.util import convert_time_to_uuid
32
30
 
33
31
from grackle.cassandra import workaround_1779
34
32
 
80
78
    return date, message_dict
81
79
 
82
80
 
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
 
 
107
81
class CassandraConnection(object):
108
82
 
109
83
    def __init__(self, keyspace, host):
128
102
        self.messages.insert(message_uuid, message_dict)
129
103
        self.archive_messages.insert(
130
104
            archive_uuid,
131
 
            {_utc_timestamp(message_date): message_uuid})
 
105
            {message_date.astimezone(dateutil.tz.tzutc()): message_uuid})
132
106
        logging.debug(
133
107
            'Imported %s into %s'
134
108
            % (message_dict.get('message-id', None), archive_uuid))
153
127
        else:
154
128
            return sequence[1:]
155
129
 
156
 
    def get_messages(self, archive_uuid, order, count, memo, backward=False,
157
 
                     start_date=None, finish_date=None):
 
130
    def get_messages(self, archive_uuid, order, count, memo, backward=False):
158
131
        if order in ("date", "-date"):
159
132
            reversed = order[0] == '-'
160
133
        else:
167
140
        else:
168
141
            start = memo
169
142
            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
143
 
177
144
        # Get up to n+1 messages from the memo: the last item of the
178
145
        # previous batch (because that's where the memo starts) + this