⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 opconferencing.cxx

📁 SIP(Session Initiation Protocol)是由IETF定义
💻 CXX
字号:
/* ==================================================================== * The Vovida Software License, Version 1.0  *  * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved. *  * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: *  * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. *  * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in *    the documentation and/or other materials provided with the *    distribution. *  * 3. The names "VOCAL", "Vovida Open Communication Application Library", *    and "Vovida Open Communication Application Library (VOCAL)" must *    not be used to endorse or promote products derived from this *    software without prior written permission. For written *    permission, please contact vocal@vovida.org. * * 4. Products derived from this software may not be called "VOCAL", nor *    may "VOCAL" appear in their name, without prior written *    permission of Vovida Networks, Inc. *  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH * DAMAGE. *  * ==================================================================== *  * This software consists of voluntary contributions made by Vovida * Networks, Inc. and many individuals on behalf of Vovida Networks, * Inc.  For more information on Vovida Networks, Inc., please see * <http://www.vovida.org/>. * */static const char* const OpConferencing_cxx_Version =    "$Id: OpConferencing.cxx,v 1.23 2002/11/09 02:13:07 derekm Exp $";#include "global.h"#include "AckMsg.hxx"#include "OpConferencing.hxx"#include "UaDevice.hxx"#include "UaConfiguration.hxx"#include "UaCallInfo.hxx"#include "UaStateMachine.hxx"#include "SipVia.hxx"///using namespace Vocal;OpConferencing::OpConferencing(){}OpConferencing::~OpConferencing(){}///const char* constOpConferencing::name() const{    return "OpConferencing";}///const Sptr < State >OpConferencing::process( const Sptr < SipProxyEvent > event ){    cpLog( LOG_DEBUG, "OpConferencing operation" );    Sptr < SipEvent > sipEvent;    sipEvent.dynamicCast( event );    if ( sipEvent == 0 )    {        return 0;    }    Sptr < SipMsg > sipMsg = sipEvent->getSipMsg();    assert( sipMsg != 0 );    Sptr < StatusMsg > msg;    msg.dynamicCast( sipMsg );    if ( msg == 0 )    {        return 0;    }    Sptr < UaCallInfo > call;    call.dynamicCast( event->getCallInfo() );    assert( call != 0 );    Sptr < Contact > contact = call->getContact();    assert( contact != 0 );    // get previous INVITE message    Sptr < SipMsgQueue > sipReceive = sipEvent->getSipMsgQueue();    assert( sipReceive != 0 );    Sptr < SipMsg > prevMsg;    Sptr < InviteMsg > inviteMsg;    SipMsgQueue::reverse_iterator i = sipReceive->rbegin();    i++;     // skip the status message we just received    while ( i != sipReceive->rend() )    {        prevMsg = *i;        inviteMsg.dynamicCast( prevMsg );        if ( inviteMsg != 0 )        {            cpLog( LOG_DEBUG, "Found invite" );            break;        }        ++i;    }    if ( inviteMsg == 0 )    {        return 0;    }    if ( inviteMsg->computeCallLeg() == call->getContact()->getInviteMsg().computeCallLeg() )    {        cpLog( LOG_DEBUG, "Start Conferencing");    }    else    {        return 0;    }    bool addingUser = false;    Sptr<SipSdp> sipSdp;    sipSdp.dynamicCast ( inviteMsg->getContentData(0));    if ( sipSdp->getSdpDescriptor().isHold() == false )        return 0;    // Hold transaction    int status = msg->getStatusLine().getStatusCode();    if ( status >= 200 )    {        cpLog( LOG_DEBUG, "ACK for INVITE to transfer target" );        AckMsg ack( *msg );        vector < SipRoute* > routeList;        // add the route info        if ( *(call->getRingInvite()) == contact->getInviteMsg() )        {            cpLog( LOG_DEBUG, "adding route info for the first call" );            routeList = call->getRoute1List();        }        else        {            cpLog( LOG_DEBUG, "adding route info for the second call" );            routeList = call->getRoute2List();        }        if ( routeList.size() > 0 )        {            ack.setRouteList( routeList );            //            SipRoute siproute = ack.getRoute(0);            ack.removeRoute(0);            SipRequestLine reqLine = ack.getRequestLine();	    Sptr< BaseUrl > baseUrl = siproute.getUrl();	    reqLine.setUrl( baseUrl );            ack.setRequestLine( reqLine );        }        //send ack for the "hold" re-invite        sipEvent->getSipStack()->sendAsync( ack );        if ( status == 200 )        {            // Send TRANSFER to transferees            Sptr< SipUrl > transferToUrl = new SipUrl;            try            {                Data urlStr = Data( string("sip:") + UaConfiguration::instance()->getConfServer() );                Sptr< SipUrl > tmpUrl = new SipUrl( urlStr );                transferToUrl = tmpUrl;            }            catch ( SipUrlParserException exception )            {                cpLog( LOG_ERR, "Invalid url for conference server" );                assert( 0 );            }            Sptr < InviteMsg > msg = call->getRingInvite();            assert( msg != 0 );	    Sptr< BaseUrl > baseUrl = msg->getTo().getUrl();	    Sptr< SipUrl > tmpUrl;	    tmpUrl.dynamicCast( baseUrl );            if ( *tmpUrl == *transferToUrl )            {                addingUser = true;            }            else            {                sendTransfer( msg, transferToUrl, call, sipEvent );            }            Sptr < InviteMsg > msg2 = call->getRing2Invite();            assert( msg2 != 0 );	    baseUrl = msg2->getTo().getUrl();	    tmpUrl.dynamicCast( baseUrl );            if ( *tmpUrl == *transferToUrl )            {                addingUser = true;            }            else            {                sendTransfer( msg2, transferToUrl, call, sipEvent );            }            if ( addingUser == false )            {                //send invite msg to conference server                InviteMsg inviteMsg( *msg2 );                inviteMsg.setCallId( msg->getCallId() );                SipTo to = inviteMsg.getTo();                to.setUrl( transferToUrl );                to.setDisplayName( transferToUrl->getUserValue() );                inviteMsg.setTo( to );		//force invite to go through proxy server if a proxy exists		string proxyUrlStr = UaConfiguration::instance()->getProxyServer();		SipRequestLine reqLine = inviteMsg.getRequestLine();		reqLine.setUrl( transferToUrl );        	if ( proxyUrlStr.length() > 0 )		{		    Data urlStr = Data( string("sip:") + proxyUrlStr );		    Sptr< SipUrl > proxyUrl = new SipUrl( urlStr );		    baseUrl = reqLine.getUrl();		    assert( baseUrl != 0 );		    if( baseUrl->getType() == TEL_URL )		    {			cpLog( LOG_ERR, "TEL_URL currently not supported\n" );			assert( 0 );		    }		    // Assume we have a SIP_URL		    Sptr< SipUrl > reqUrl;		    reqUrl.dynamicCast( baseUrl );		    assert( reqUrl != 0 );		    reqUrl->setHost( proxyUrl->getHost() );		    reqUrl->setPort( proxyUrl->getPort() );		    reqLine.setUrl( reqUrl );		}		inviteMsg.setRequestLine( reqLine );                sipEvent->getSipStack()->sendAsync( inviteMsg );                // Save the invite                call->setRingInvite( new InviteMsg( inviteMsg ) );                call->setRing2Invite( 0 );                Sptr < Contact > contact = new Contact( inviteMsg );                // Set as current contact                call->setContact( contact );                // Add to contact list                call->addContact( contact );            }            else            {                //send re-invite to conference server                cpLog( LOG_DEBUG, "re-invite callee" );                Sptr < InviteMsg > reInvite;                Sptr < InviteMsg > invite = call->getRingInvite();                assert( invite != 0 );                //reInvite = *invite;                call->setRing2Invite( 0 );                //set current contact to the conference server                Sptr < Contact > contact = call->findContact(*invite);                assert( contact != 0 );                call->setContact( contact );                const StatusMsg& sMsg = contact->getStatusMsg();                if ( &msg != 0 )                {                    reInvite = new InviteMsg( sMsg );                    //add SDP                    Sptr < SipSdp > localSdp = call->getLocalSdp();                    assert( localSdp != 0 );                    SipSdp sipSdp = *localSdp;                    reInvite->setContentData( &sipSdp );                }                //TODO Is it going to be a problem if the other side also                //use the next TODO CSeq at the same time?                unsigned int cseq = contact->getCSeqNum();                contact->setCSeqNum( ++cseq );                SipCSeq sipCSeq = reInvite->getCSeq();                sipCSeq.setCSeq( cseq );                reInvite->setCSeq( sipCSeq );                //add route info                vector < SipRoute* > routeList;                // add the route info                cpLog( LOG_DEBUG, "adding route info for the first call" );                routeList = call->getRoute1List();                if ( routeList.size() > 0 )                {                    reInvite->setRouteList( routeList );                    //                    SipRoute siproute = reInvite->getRoute(0);                    reInvite->removeRoute(0);                    SipRequestLine reqLine = reInvite->getRequestLine();		    baseUrl = siproute.getUrl();                    reqLine.setUrl( baseUrl );                    reInvite->setRequestLine( reqLine );                }                //send re-invite                sipEvent->getSipStack()->sendAsync( *reInvite );            }        }        else        {            cout << "Transfer Target Hold status: " << status << endl;            cpLog( LOG_DEBUG, "Transfer target Hold failed status %d",                   status );            Sptr < UaStateMachine > stateMachine;            stateMachine.dynamicCast( event->getCallInfo()->getFeature() );            assert( stateMachine != 0 );            return stateMachine->findState( "StateReRinging" );        }    }    return 0;}///voidOpConferencing::sendTransfer( Sptr < InviteMsg > msg,			      Sptr < SipUrl > transferToUrl,			      Sptr < UaCallInfo > call,			      const Sptr < SipEvent > sipEvent ){    cpLog( LOG_DEBUG, "\nInviteMsg used to construct Transfer\n%s", msg->encode().logData() );    Sptr < Contact > contact = call->findContact( *msg );    assert( contact != 0 );    SipVia sipVia;    sipVia.setprotoVersion( "2.0" );    sipVia.setHost( Data( theSystem.gethostAddress() ) );    sipVia.setPort( atoi( UaConfiguration::instance()->getLocalSipPort().c_str() ) );    sipVia.setTransport( UaConfiguration::instance()->getSipTransport() );    if ( contact->getStatus() == 200 )    {        cpLog( LOG_DEBUG, "Send TRANSFER to original callee" );        StatusMsg status = contact->getStatusMsg();        cpLog( LOG_DEBUG, "\n\n%s", status.encode().logData() );        assert( &status != 0 );        TransferMsg transferMsg( status, transferToUrl );        transferMsg.flushViaList();        transferMsg.setVia( sipVia, 0 );        sipEvent->getSipStack()->sendAsync( transferMsg );    }    else    {        cpLog( LOG_DEBUG, "Send TRANSFER to original caller" );        TransferMsg transferMsg( *msg, transferToUrl );        transferMsg.flushViaList();        transferMsg.setVia( sipVia, 0 );        sipEvent->getSipStack()->sendAsync( transferMsg );    }    return ;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -