~ubuntu-branches/ubuntu/hardy/pymsn/hardy-proposed

« back to all changes in this revision

Viewing changes to pymsn/service/OfflineIM/scenario/fetch_messages.py

  • Committer: Bazaar Package Importer
  • Author(s): Laurent Bigonville, Sjoerd Simons, Laurent Bigonville, Jonny Lamb
  • Date: 2008-01-17 18:23:14 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080117182314-lwymmpnk2ut3rvr1
Tags: 0.3.1-0ubuntu1
[ Sjoerd Simons ]
* debian/rules: remove dh_python, it's no longer needed

[ Laurent Bigonville ]
* New upstream release (0.3.1)
* debian/control:
  - Add myself as an Uploaders
  - Add python:Provides for binary package
  - Add python-ctypes and python-crypto to build-deps/deps
* debian/rules: remove binary-install rule
* Add watch file
* remove pycompat file, not needed anymore
* Modify Maintainer value to match the DebianMaintainerField
  specification.

[ Jonny Lamb ]
* Added python-adns to build-deps/deps.
* Added python-pyopenssl to build-deps/deps.
* Updated copyright.
* Upped Standards-Version to 3.7.3.
* Added "XS-Dm-Upload-Allowed: yes" under the request of Sjoerd Simons.
* Added myself to Uploaders.
* Added Homepage to control.
* Added Vcs-Bzr to control.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
#
 
3
# Copyright (C) 2007 Johann Prieur <johann.prieur@gmail.com>
 
4
#
 
5
# This program is free software; you can redistribute it and/or modify
 
6
# it under the terms of the GNU General Public License as published by
 
7
# the Free Software Foundation; either version 2 of the License, or
 
8
# (at your option) any later version.
 
9
#
 
10
# This program is distributed in the hope that it will be useful,
 
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
# GNU General Public License for more details.
 
14
#
 
15
# You should have received a copy of the GNU General Public License
 
16
# along with this program; if not, write to the Free Software
 
17
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
18
#
 
19
from pymsn.service.OfflineIM.constants import *
 
20
from pymsn.service.OfflineIM.scenario.base import BaseScenario
 
21
 
 
22
__all__ = ['FetchMessagesScenario']
 
23
 
 
24
class FetchMessagesScenario(BaseScenario):
 
25
    def __init__(self, rsi, callback, errback, global_callback, message_ids=[]):
 
26
        """Accepts an invitation.
 
27
 
 
28
            @param rsi: the rsi service
 
29
            @param message_ids: id list of messages to fetch
 
30
            @param callback: tuple(callable, *args)
 
31
            @param errback: tuple(callable, *args)
 
32
        """
 
33
        BaseScenario.__init__(self, callback, errback)
 
34
        self.__rsi = rsi
 
35
        self.__global_callback = global_callback
 
36
 
 
37
        self.message_ids = message_ids
 
38
 
 
39
    def execute(self):
 
40
        for message_id in self.message_ids:
 
41
            self.__rsi.GetMessage((self.__get_message_callback, message_id),
 
42
                                  (self.__get_message_errback,),
 
43
                                  message_id, False)
 
44
 
 
45
    def __get_message_callback(self, run_id, seq_num, message, id):
 
46
        callback = self._callback
 
47
        callback[0](id, run_id, seq_num, message, *callback[1:])
 
48
        self.message_ids.remove(id)
 
49
        if self.message_ids == []:
 
50
            global_callback = self.__global_callback
 
51
            global_callback[0](*global_callback[1:])
 
52
 
 
53
    def __get_message_errback(self, error_code):
 
54
        errcode = OfflineMessagesBoxError.UNKNOWN
 
55
        errback = self._errback[0]
 
56
        args = self._errback[1:]
 
57
        errback(errcode, *args)