You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdenetwork/kopete/protocols/jabber/jingle/libjingle/talk/examples/call/callclient.h

89 lines
2.5 KiB

/*
* Jingle call example
* Copyright 2004--2005, Google Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1307 USA
*/
#ifndef CRICKET_EXAMPLES_CALL_CALLCLIENT_H__
#define CRICKET_EXAMPLES_CALL_CALLCLIENT_H__
#include <map>
#include <string>
#include "talk/p2p/base/session.h"
#include "talk/p2p/client/sessionclient.h"
#include "talk/xmpp/xmppclient.h"
#include "talk/examples/call/status.h"
namespace buzz {
class PresencePushTask;
class Status;
}
namespace cricket {
class Thread;
class NetworkManager;
class PortAllocator;
class PhoneSessionClient;
class Receiver;
class Call;
}
struct RosterItem {
buzz::Jid jid;
buzz::Status::Show show;
std::string status;
};
class CallClient: public sigslot::has_slots<> {
public:
CallClient(buzz::XmppClient* xmpp_client);
~CallClient();
cricket::PhoneSessionClient* phone_client() const { return phone_client_; }
void PrintRoster();
void MakeCallTo(const std::string& name);
private:
typedef std::map<std::string,RosterItem> RosterMap;
buzz::XmppClient* xmpp_client_;
cricket::Thread* worker_thread_;
cricket::NetworkManager* network_manager_;
cricket::PortAllocator* port_allocator_;
cricket::SessionManager* session_manager_;
cricket::PhoneSessionClient* phone_client_;
cricket::Receiver* receiver_;
buzz::PresencePushTask* presence_push_;
RosterMap* roster_;
void OnStateChange(buzz::XmppEngine::State state);
void InitPhone();
void OnRequestSignaling();
void OnCallCreate(cricket::Call* call);
const std::string strerror(buzz::XmppEngine::Error err);
void OnSessionState(cricket::Call* call,
cricket::Session* session,
cricket::Session::State state);
void OnSendStanza(cricket::SessionClient *client, const buzz::XmlElement* stanza);
void InitPresence();
void OnStatusUpdate(const buzz::Status& status);
};
#endif // CRICKET_EXAMPLES_CALL_CALLCLIENT_H__