Sophie

Sophie

distrib > Mandriva > 2011.0 > i586 > media > contrib-release-debug > by-pkgid > 69710aa523c75aae90cbd19e022a4e3b > files > 106

centerim-debug-4.22.10-1mdv2011.0.i586.rpm

/**
 * MessageHandler
 *
 * Copyright (C) 2002 Barnaby Gray <barnaby@beedesign.co.uk>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
 *
 */

#ifndef MESSAGEHANDLER_H
#define MESSAGEHANDLER_H

#include <time.h>

#include "libicq2000/sigslot.h"

#include "Contact.h"
#include "events.h"

namespace ICQ2000
{
  
  class ContactTree;
  class ICQSubType;
  class UINICQSubType;
  class FTICQSubType;
  class MessageEvent;
  class ICQMessageEvent;
  class Translator;

  /**
   *  This is the central place all message signalling to the client
   *  goes through. They can come from three sources: 1. A MessageSNAC
   *  through the server, 2. A SrvResponseSNAC - offline message, 3. a
   *  direct message
   */
  class MessageHandler : public sigslot::has_slots<>
  {
   private:
    ContactRef m_self_contact;
    ContactTree *m_contact_list;
    Translator * & m_translator;
    /* a reference to the pointer in Client */
    
    MessageEvent* ICQSubTypeToEvent(ICQSubType *st, ContactRef& contact, bool& adv);
    ICQMessageEvent* UINICQSubTypeToEvent(UINICQSubType *st, const ContactRef& contact);

    ContactRef lookupUIN(unsigned int uin);
    ContactRef lookupEmail(const std::string& email, const std::string& alias);
    ContactRef lookupMobile(const std::string& m);

    UINICQSubType* EventToUINICQSubType(MessageEvent *ev);

    void SignalLog(LogEvent::LogType type, const std::string& msg);
    
  public:
    MessageHandler(ContactRef self, ContactTree *cl, Translator * & tr);

    // incoming messages
    bool handleIncoming(ICQSubType* icq, time_t t = 0);
    FileTransferEvent* handleIncomingFT(FTICQSubType* icq, bool direct);
    
    // outgoing messages
    UINICQSubType* handleOutgoing(MessageEvent *ev);

    // incoming ACKs
    void handleIncomingACK(MessageEvent *ev, UINICQSubType* icq);
    void handleIncomingFTACK(FileTransferEvent *ev, FTICQSubType* ft);

    // filetransfer info update
    void handleUpdateFT(FileTransferEvent *ev);
    // incoming File transfer cancels
    void handleIncomingFTCancel(FileTransferEvent *ev);
    
    sigslot::signal1<MessageEvent*> messaged;
    sigslot::signal1<MessageEvent*> messageack;
    sigslot::signal1<ICQMessageEvent*> want_auto_resp;
    sigslot::signal1<LogEvent*> logger;
    sigslot::signal1<FileTransferEvent*> filetransfer_incoming_signal;
    sigslot::signal1<FileTransferEvent*> filetransfer_update_signal;
  };
}

#endif