/* * Copyright 2009-2011, Andrea Anzani. All rights reserved. * Copyright 2009-2011, Pier Luigi Fiorini. All rights reserved. * Distributed under the terms of the MIT License. */ #ifndef _SERVER_H #define _SERVER_H #include #include #include #include "CayaConstants.h" #include "Contact.h" #include "Conversation.h" #include "User.h" class CayaProtocol; class RosterItem; class ProtocolLooper; typedef KeyMap RosterMap; typedef KeyMap UserMap; typedef KeyMap ChatMap; typedef KeyMap ProtocolLoopers; typedef KeyMap AccountInstances; class Server: public BMessageFilter { public: Server(); void Quit(); void LoginAll(); virtual filter_result Filter(BMessage* message, BHandler** target); filter_result ImMessage(BMessage* msg); void AddProtocolLooper(bigtime_t instanceId, CayaProtocol* cayap); void RemoveProtocolLooper(bigtime_t instanceId); ProtocolLooper* GetProtocolLooper(bigtime_t instanceId); AccountInstances GetAccounts(); void SendProtocolMessage(BMessage* msg); void SendAllProtocolMessage(BMessage* msg); RosterMap Contacts() const; Contact* ContactById(BString id); void AddContact(Contact* contact); UserMap Users() const; User* UserById(BString id); void AddUser(User* user); ChatMap Conversations() const; Conversation* ConversationById(BString id); void AddConversation(Conversation* chat); // TODO: there should be a contact for each account. BString GetOwnContact(); private: ProtocolLooper* _LooperFromMessage(BMessage* message); Contact* _EnsureContact(BMessage* message); User* _EnsureUser(BMessage* message); User* _EnsureUser(BString id, ProtocolLooper* protoLooper); Conversation* _EnsureConversation(BMessage* message); void _ReplicantStatusNotify(CayaStatus status); RosterMap fRosterMap; UserMap fUserMap; ChatMap fChatMap; ProtocolLoopers fLoopers; AccountInstances fAccounts; BString fMySelf; }; #endif // _SERVER_H