gov.nist.javax.sip.parser.chars.extensions.JoinParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-jain-sip-ext Show documentation
Show all versions of android-jain-sip-ext Show documentation
Restcomm JAIN SIP Extensions
The newest version!
/*
* JBoss, Home of Professional Open Source
* Copyright 2011, Red Hat, Inc. and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package android.gov.nist.javax.sip.parser.chars.extensions;
import android.gov.nist.javax.sip.header.*;
import android.gov.nist.javax.sip.header.extensions.*;
import android.gov.nist.javax.sip.parser.*;
import java.text.ParseException;
// Parser for Join Header (RFC3911)
// Extension by jean deruelle
//
// Join = "Join" HCOLON callid *(SEMI join-param)
// join-param = to-tag / from-tag / generic-param
// to-tag = "to-tag" EQUAL token
// from-tag = "from-tag" EQUAL token
//
//
public class JoinParser extends ParametersParser {
/**
* Creates new CallIDParser
* @param callID message to parse
*/
public JoinParser(String callID) {
super(callID);
}
/**
* Constructor
* @param lexer Lexer to set
*/
protected JoinParser(Lexer lexer) {
super(lexer);
}
/**
* parse the String message
* @return SIPHeader (CallID object)
* @throws ParseException if the message does not respect the spec.
*/
public SIPHeader parse() throws ParseException {
if (debug)
dbg_enter("parse");
try {
headerName(TokenTypes.JOIN_TO);
Join join = new Join();
this.lexer.SPorHT();
String callId = lexer.byteStringNoSemicolon();
this.lexer.SPorHT();
super.parse(join);
join.setCallId(callId);
return join;
} finally {
if (debug)
dbg_leave("parse");
}
}
public static void main(String args[]) throws ParseException {
String to[] =
{ "Join: 12345th5z8z\n",
"Join: 12345th5z8z;to-tag=tozght6-45;from-tag=fromzght789-337-2\n",
};
for (int i = 0; i < to.length; i++) {
JoinParser tp = new JoinParser(to[i]);
Join t = (Join) tp.parse();
System.out.println("Parsing => " + to[i]);
System.out.print("encoded = " + t.encode() + "==> ");
System.out.println("callId " + t.getCallId() + " from-tag=" + t.getFromTag()
+ " to-tag=" + t.getToTag()) ;
}
}
}