useragent.java
来自「结构非常清晰的SIP协议栈」· Java 代码 · 共 778 行 · 第 1/3 页
JAVA
778 行
/*
* Copyright (C) 2005 Luca Veltri - University of Parma - Italy
*
* This source code 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 source code 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 source code; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Author(s):
* Luca Veltri (luca.veltri@unipr.it)
*/
package local.ua;
import local.media.AudioClipPlayer;
import org.zoolu.sip.call.*;
import org.zoolu.sip.address.*;
import org.zoolu.sip.provider.SipStack;
import org.zoolu.sip.provider.SipProvider;
import org.zoolu.sip.header.ExpiresHeader;
import org.zoolu.sip.header.ContactHeader;
import org.zoolu.sip.header.CallIdHeader;
import org.zoolu.sip.header.StatusLine;
import org.zoolu.sip.transaction.TransactionClient;
import org.zoolu.sip.transaction.TransactionClientListener;
import org.zoolu.sip.call.*;
import org.zoolu.sip.message.*;
import org.zoolu.sdp.*;
import org.zoolu.tools.Log;
import org.zoolu.tools.LogLevel;
import org.zoolu.tools.Parser;
import org.zoolu.tools.Archive;
//import java.util.Iterator;
import java.util.Enumeration;
import java.util.Vector;
import java.io.*;
/** Simple SIP user agent (UA).
* It includes audio/video applications.
* <p>
* It can use external audio/video tools as media applications.
* Currently only RAT (Robust Audio Tool) and VIC are supported as external applications.
*/
public class UserAgent extends CallListenerAdapter
{
/** Event logger. */
Log log;
/** UserAgentProfile */
protected UserAgentProfile user_profile;
/** SipProvider */
protected SipProvider sip_provider;
/** Call */
//Call call;
protected ExtendedCall call;
/** Call transfer */
protected ExtendedCall call_transfer;
/** Audio application */
protected MediaLauncher audio_app=null;
/** Video application */
protected MediaLauncher video_app=null;
/** Local sdp */
protected String local_session=null;
/** UserAgent listener */
protected UserAgentListener listener=null;
/** Media file path */
final String MEDIA_PATH="media/local/ua/";
/** On wav file */
final String CLIP_ON=MEDIA_PATH+"on.wav";
/** Off wav file */
final String CLIP_OFF=MEDIA_PATH+"off.wav";
/** Ring wav file */
final String CLIP_RING=MEDIA_PATH+"ring.wav";
/** Ring sound */
AudioClipPlayer clip_ring;
/** On sound */
AudioClipPlayer clip_on;
/** Off sound */
AudioClipPlayer clip_off;
// *********************** Startup Configuration ***********************
/** UA_IDLE=0 */
static final String UA_IDLE="IDLE";
/** UA_INCOMING_CALL=1 */
static final String UA_INCOMING_CALL="INCOMING_CALL";
/** UA_OUTGOING_CALL=2 */
static final String UA_OUTGOING_CALL="OUTGOING_CALL";
/** UA_ONCALL=3 */
static final String UA_ONCALL="ONCALL";
/** Call state
* <P>UA_IDLE=0, <BR>UA_INCOMING_CALL=1, <BR>UA_OUTGOING_CALL=2, <BR>UA_ONCALL=3 */
String call_state=UA_IDLE;
// *************************** Basic methods ***************************
/** Changes the call state */
protected void changeStatus(String state)
{ call_state=state;
//printLog("state: "+call_state,LogLevel.MEDIUM);
}
/** Checks the call state */
protected boolean statusIs(String state)
{ return call_state.equals(state);
}
/** Gets the call state */
protected String getStatus()
{ return call_state;
}
/** Sets the automatic answer time (default is -1 that means no auto accept mode) */
public void setAcceptTime(int accept_time)
{ user_profile.accept_time=accept_time;
}
/** Sets the automatic hangup time (default is 0, that corresponds to manual hangup mode) */
public void setHangupTime(int time)
{ user_profile.hangup_time=time;
}
/** Sets the redirection url (default is null, that is no redircetion) */
public void setRedirection(String url)
{ user_profile.redirect_to=url;
}
/** Sets the no offer mode for the invite (default is false) */
public void setNoOfferMode(boolean nooffer)
{ user_profile.no_offer=nooffer;
}
/** Enables audio */
public void setAudio(boolean enable)
{ user_profile.audio=enable;
}
/** Enables video */
public void setVideo(boolean enable)
{ user_profile.video=enable;
}
/** Sets the receive only mode */
public void setReceiveOnlyMode(boolean r_only)
{ user_profile.recv_only=r_only;
}
/** Sets the send only mode */
public void setSendOnlyMode(boolean s_only)
{ user_profile.send_only=s_only;
}
/** Sets the send tone mode */
public void setSendToneMode(boolean s_tone)
{ user_profile.send_tone=s_tone;
}
/** Sets the send file */
public void setSendFile(String file_name)
{ user_profile.send_file=file_name;
}
/** Sets the recv file */
public void setRecvFile(String file_name)
{ user_profile.recv_file=file_name;
}
/** Gets the local SDP */
public String getSessionDescriptor()
{ return local_session;
}
/** Sets the local SDP */
public void setSessionDescriptor(String sdp)
{ local_session=sdp;
}
/** Inits the local SDP (no media spec) */
public void initSessionDescriptor()
{ SessionDescriptor sdp=new SessionDescriptor(user_profile.from_url,sip_provider.getViaAddress());
local_session=sdp.toString();
}
/** Adds a media to the SDP */
public void addMediaDescriptor(String media, int port, int avp, String codec, int rate)
{ if (local_session==null) initSessionDescriptor();
SessionDescriptor sdp=new SessionDescriptor(local_session);
String attr_param=String.valueOf(avp);
if (codec!=null) attr_param+=" "+codec+"/"+rate;
sdp.addMedia(new MediaField(media,port,0,"RTP/AVP",String.valueOf(avp)),new AttributeField("rtpmap",attr_param));
local_session=sdp.toString();
}
// *************************** Public Methods **************************
/** Costructs a UA with a default media port */
public UserAgent(SipProvider sip_provider, UserAgentProfile user_profile, UserAgentListener listener)
{ this.sip_provider=sip_provider;
log=sip_provider.getLog();
this.listener=listener;
this.user_profile=user_profile;
// if no contact_url and/or from_url has been set, create it now
user_profile.initContactAddress(sip_provider);
// load sounds
// ################# patch to make audio working with javax.sound.. #################
// currently AudioSender must be started before any AudioClipPlayer is initialized,
// since there is a problem with the definition of the audio format
if (!user_profile.use_rat && !user_profile.use_jmf)
{ if (user_profile.audio && !user_profile.recv_only && user_profile.send_file==null && !user_profile.send_tone) local.media.AudioInput.initAudioLine();
if (user_profile.audio && !user_profile.send_only && user_profile.recv_file==null) local.media.AudioOutput.initAudioLine();
}
// ################# patch to make rat working.. #################
// in case of rat, do not load and play audio clips
if (!user_profile.use_rat)
{ try
{ String jar_file=user_profile.ua_jar;
clip_on=new AudioClipPlayer(Archive.getAudioInputStream(Archive.getJarURL(jar_file,CLIP_ON)),null);
clip_off=new AudioClipPlayer(Archive.getAudioInputStream(Archive.getJarURL(jar_file,CLIP_OFF)),null);
clip_ring=new AudioClipPlayer(Archive.getAudioInputStream(Archive.getJarURL(jar_file,CLIP_RING)),null);
}
catch (Exception e)
{ printException(e,LogLevel.HIGH);
}
//clip_ring=new AudioClipPlayer(CLIP_RING,null);
//clip_on=new AudioClipPlayer(CLIP_ON,null);
//clip_off=new AudioClipPlayer(CLIP_OFF,null);
}
// set local sdp
initSessionDescriptor();
if (user_profile.audio || !user_profile.video) addMediaDescriptor("audio",user_profile.audio_port,user_profile.audio_avp,user_profile.audio_codec,user_profile.audio_sample_rate);
if (user_profile.video) addMediaDescriptor("video",user_profile.video_port,user_profile.video_avp,null,0);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?