/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package net.java.sip.communicator.impl.protocol.jabber;
import net.java.sip.communicator.service.protocol.*;
import net.java.sip.communicator.service.protocol.OperationFailedException;
import net.java.sip.communicator.service.protocol.media.*;
import net.java.sip.communicator.util.*;
import org.jitsi.service.neomedia.*;
import org.jitsi.service.protocol.*;
/**
* Class responsible for sending a DTMF Tone using using rfc4733 or Inband.
*
* @author Damian Minkov
*/
public class OperationSetDTMFJabberImpl
extends AbstractOperationSetDTMF
{
/**
* Our class logger.
*/
private static final Logger logger
= Logger.getLogger(OperationSetDTMFJabberImpl.class);
/**
* Constructor.
*
* @param pps the Jabber Protocol provider service
*/
public OperationSetDTMFJabberImpl(ProtocolProviderServiceJabberImpl pps)
{
super(pps);
}
/**
* Sends the DTMFTone tone to callPeer.
*
* @param callPeer the call peer to send tone to.
* @param tone the DTMF tone to send to callPeer.
*
* @throws OperationFailedException with code OPERATION_NOT_SUPPORTED if
* DTMF tones are not supported for callPeer.
*
* @throws NullPointerException if one of the arguments is null.
*
* @throws IllegalArgumentException in case the call peer does not
* belong to the underlying implementation.
*/
public synchronized void startSendingDTMF(CallPeer callPeer, DTMFTone tone)
throws OperationFailedException
{
if (callPeer == null || tone == null)
{
throw new NullPointerException("Argument is null");
}
if (! (callPeer instanceof CallPeerJabberImpl))
{
throw new IllegalArgumentException();
}
CallPeerJabberImpl cp = (CallPeerJabberImpl)callPeer;
DTMFMethod cpDTMFMethod = dtmfMethod;
// If "auto" DTMF mode selected, automatically selects RTP DTMF is
// telephon-event is available. Otherwise selects INBAND DMTF.
if(this.dtmfMethod == DTMFMethod.AUTO_DTMF)
{
if(isRFC4733Active(cp))
{
cpDTMFMethod = DTMFMethod.RTP_DTMF;
}
else
{
cpDTMFMethod = DTMFMethod.INBAND_DTMF;
}
}
// If the account is configured to use RTP DTMF method and the call
// does not manage telephone events. Then, we log it for future
// debugging.
if(this.dtmfMethod == DTMFMethod.RTP_DTMF && !isRFC4733Active(cp))
{
logger.debug("RTP DTMF used without telephone-event capacities");
}
((AudioMediaStream)cp.getMediaHandler().getStream(MediaType.AUDIO))
.startSendingDTMF(
tone,
cpDTMFMethod,
minimalToneDuration,
maximalToneDuration,
volume);
}
/**
* Stops sending DTMF.
*
* @param callPeer the call peer that we'd like to stop sending DTMF to.
*/
public synchronized void stopSendingDTMF(CallPeer callPeer)
{
if (callPeer == null)
{
throw new NullPointerException("Argument is null");
}
if (! (callPeer instanceof CallPeerJabberImpl))
{
throw new IllegalArgumentException();
}
CallPeerJabberImpl cp = (CallPeerJabberImpl) callPeer;
DTMFMethod cpDTMFMethod = dtmfMethod;
// If "auto" DTMF mode selected, automatically selects RTP DTMF is
// telephon-event is available. Otherwise selects INBAND DMTF.
if(this.dtmfMethod == DTMFMethod.AUTO_DTMF)
{
if(isRFC4733Active(cp))
{
cpDTMFMethod = DTMFMethod.RTP_DTMF;
}
else
{
cpDTMFMethod = DTMFMethod.INBAND_DTMF;
}
}
// If the account is configured to use RTP DTMF method and the call
// does not manage telephone events. Then, we log it for future
// debugging.
if(this.dtmfMethod == DTMFMethod.RTP_DTMF && !isRFC4733Active(cp))
{
logger.debug("RTP DTMF used without telephone-event capacities");
}
((AudioMediaStream)cp.getMediaHandler().getStream(MediaType.AUDIO))
.stopSendingDTMF(cpDTMFMethod);
}
}