messageprocessing.java
来自「java 开发的sip软电话 源码 jain sip」· Java 代码 · 共 545 行 · 第 1/2 页
JAVA
545 行
/* ====================================================================
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000 The Apache Software Foundation. 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 end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "Apache" and "Apache Software Foundation" must
* not be used to endorse or promote products derived from this
* software without prior written permission. For written
* permission, please contact apache@apache.org.
*
* 5. Products derived from this software may not be called "Apache",
* nor may "Apache" appear in their name, without prior written
* permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 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 many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*
* Portions of this software are based upon public domain software
* originally written at the National Center for Supercomputing Applications,
* University of Illinois, Urbana-Champaign.
*/
package net.java.mais.sip.simple;
import java.text.ParseException;
import java.util.ArrayList;
import javax.sip.ClientTransaction;
import javax.sip.InvalidArgumentException;
import javax.sip.ServerTransaction;
import javax.sip.SipException;
import javax.sip.TransactionUnavailableException;
import javax.sip.address.Address;
import javax.sip.address.URI;
import javax.sip.header.CSeqHeader;
import javax.sip.header.CallIdHeader;
import javax.sip.header.ContentLengthHeader;
import javax.sip.header.ContentTypeHeader;
import javax.sip.header.ExpiresHeader;
import javax.sip.header.FromHeader;
import javax.sip.header.MaxForwardsHeader;
import javax.sip.header.ToHeader;
import javax.sip.message.Request;
import javax.sip.message.Response;
import net.java.mais.common.Utils;
import net.java.mais.sip.CommunicationsException;
import net.java.mais.sip.SipManager;
import net.java.mais.sip.security.SipSecurityException;
/**
* <p>Title: Netsite TudoMais</p>
* <p>Description:JAIN-SIP Audio/Video phone application</p>
* <p>Copyright: Copyright (c) 2006</p>
* <p>Organisation: CTBC Telecom / Netsite </p>
* @author Thiago Rocha Camargo (barata7@yahoo.com)
*/
/**
* <p>Title: SIP COMMUNICATOR-1.1</p>
* <p>Description: JAIN-SIP-1.1 Audio/Video Phone Application</p>
* <p>Copyright: Copyright (c) 2003</p>
* <p>Company: Organisation: LSIIT Laboratory (http://lsiit.u-strasbg.fr)<p>
* </p>Network Research Team (http://www-r2.u-strasbg.fr))<p>
* </p>Louis Pasteur University - Strasbourg - France</p>
* @author Emil Ivov
* @version 1.1
*/
public class MessageProcessing
{
protected SipManager sipManCallback = null;
public MessageProcessing()
{
try {
}
finally {
}
}
public MessageProcessing(SipManager sipManCallback)
{
this.sipManCallback = sipManCallback;
}
public void setSipManagerCallBack(SipManager sipManCallback)
{
this.sipManCallback = sipManCallback;
}
/**
* Attempts to re-generate the corresponding request with the proper
* credentials and terminates the call if it fails.
*
* @param clientTransaction the corresponding transaction
* @param response the challenge
*/
void processAuthenticationChallenge(ClientTransaction clientTransaction,
Response response)
{
try {
Request challengedRequest = clientTransaction.getRequest();
Request reoriginatedRequest = null;
ClientTransaction retryTran = sipManCallback.sipSecurityManager.
handleChallenge(response, clientTransaction);
retryTran.sendRequest();
}
catch (SipSecurityException exc) {
sipManCallback.fireCommunicationsError(
new CommunicationsException("Authorization failed!", exc));
}
catch (Exception exc) {
sipManCallback.fireCommunicationsError(
new CommunicationsException("Failed to resend a request "
+ "after a security challenge!",
exc)
);
}
finally {
}
}
/**
* Process MESSAGE requests and send OK response.
*
* @param serverTransaction
* @param request
*/
public void processMessageRequest(ServerTransaction serverTransaction, Request request)
{
try {
//Send OK
Response ok = null;
try {
ok = sipManCallback.messageFactory.
createResponse(Response.OK, request);
//sipManCallback.attachToTag(ok, serverTransaction.getDialog());
}
catch (ParseException ex) {
sipManCallback.fireCommunicationsError(
new CommunicationsException(
"Failed to construct an OK response to a MESSAGE request!",
ex)
);
return;
}
try {
serverTransaction.sendResponse(ok);
}
catch (SipException ex) {
//This is not really a problem according to the RFC
//so just dump to stdout should someone be interested
}
}
finally {
}
}
public void sendKeepAlive()
throws CommunicationsException
{
String to= "";
byte[] messageBody = "".getBytes();
try
{
to = to.trim();
//Handle default domain name (i.e. transform 1234 -> 1234@sip.com
String defaultDomainName =
Utils.getProperty("net.java.mais.sip.DEFAULT_DOMAIN_NAME");
if (defaultDomainName != null //no sip scheme
&& !to.trim().startsWith("tel:")
&& to.indexOf('@') == -1 //most probably a sip uri
) {
to = to + "@" + defaultDomainName;
}
//Let's be uri fault tolerant
if (to.toLowerCase().indexOf("sip:") == -1 //no sip scheme
&& to.indexOf('@') != -1 //most probably a sip uri
) {
to = "sip:" + to;
}
//Request URI
URI requestURI;
try {
requestURI = sipManCallback.addressFactory.createURI(to);
}
catch (ParseException ex) {
throw new CommunicationsException(to +
" is not a legal SIP uri!", ex);
}
//Call ID
CallIdHeader callIdHeader = sipManCallback.sipProvider.getNewCallId();
//CSeq
CSeqHeader cSeqHeader;
try {
cSeqHeader = sipManCallback.headerFactory.createCSeqHeader(1,
Request.MESSAGE);
}
catch (Exception ex) {
//Shouldn't happen
throw new CommunicationsException(
"An unexpected erro occurred while"
+ "constructing the CSeqHeadder", ex);
}
//FromHeader
FromHeader fromHeader = sipManCallback.getFromHeader();
//ToHeader
Address toAddress = sipManCallback.addressFactory.createAddress(
requestURI);
ToHeader toHeader;
try {
toHeader = sipManCallback.headerFactory.createToHeader(
toAddress, null);
}
catch (ParseException ex) {
//Shouldn't happen
throw new CommunicationsException(
"Null is not an allowed tag for the to header!", ex);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?