#include #include #include #include #include "PluginGUIHandler.h" #include #include #include "gui/chat/ChatWidget.h" void PluginGUIHandler::ReceivedInvitation(const QString& /*peer_id*/) { std::cerr << "****** Plugin GUI handler: received Invitation!" << std::endl; } void PluginGUIHandler::ReceivedVoipHangUp(const QString& /*peer_id*/) { std::cerr << "****** Plugin GUI handler: received HangUp!" << std::endl; } void PluginGUIHandler::ReceivedVoipAccept(const QString& /*peer_id*/) { std::cerr << "****** Plugin GUI handler: received VoipAccept!" << std::endl; } void PluginGUIHandler::ReceivedVoipData(const QString& qpeer_id) { RsPeerId peer_id(qpeer_id.toStdString()) ; std::vector chunks ; if(!rsVoip->getIncomingData(peer_id,chunks)) { std::cerr << "PluginGUIHandler::ReceivedVoipData(): No data chunks to get. Weird!" << std::endl; return ; } ChatDialog *di = ChatDialog::getExistingChat(peer_id) ; if (di) { ChatWidget *cw = di->getChatWidget(); if (cw) { const QList &chatWidgetHolderList = cw->chatWidgetHolderList(); foreach (ChatWidgetHolder *chatWidgetHolder, chatWidgetHolderList) { VOIPChatWidgetHolder *acwh = dynamic_cast(chatWidgetHolder) ; if (acwh) { for (unsigned int i = 0; i < chunks.size(); ++i) { for (unsigned int chunkIndex=0; chunkIndex(chunks[chunkIndex].data),chunks[chunkIndex].size); if(chunks[chunkIndex].type == RsVoipDataChunk::RS_VOIP_DATA_TYPE_AUDIO) acwh->addAudioData(QString::fromStdString(peer_id.toStdString()),&qb); else if(chunks[chunkIndex].type == RsVoipDataChunk::RS_VOIP_DATA_TYPE_VIDEO) acwh->addVideoData(QString::fromStdString(peer_id.toStdString()),&qb); else std::cerr << "Unknown data type received. type=" << chunks[chunkIndex].type << std::endl; } } break; } } } } else { std::cerr << "Error: received audio data for a chat dialog that does not stand Audio (Peer id = " << peer_id.toStdString() << "!" << std::endl; } for(unsigned int chunkIndex=0; chunkIndexgetChatWidget(); if(!cw) { return ; } const QList &chatWidgetHolderList = cw->chatWidgetHolderList(); foreach (ChatWidgetHolder *chatWidgetHolder, chatWidgetHolderList) { VOIPChatWidgetHolder *acwh = dynamic_cast(chatWidgetHolder) ; if (acwh) acwh->setAcceptedBandwidth(QString::fromStdString(peer_id.toStdString()),bytes_per_sec); } }