org.mobicents.protocols.ss7.tcapAnsi.asn.ParameterImpl Maven / Gradle / Ivy
/*
* TeleStax, Open Source Cloud Communications Copyright 2012.
* 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 org.mobicents.protocols.ss7.tcapAnsi.asn;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.mobicents.protocols.asn.AsnException;
import org.mobicents.protocols.asn.AsnInputStream;
import org.mobicents.protocols.asn.AsnOutputStream;
import org.mobicents.protocols.asn.Tag;
import org.mobicents.protocols.ss7.tcapAnsi.api.asn.EncodeException;
import org.mobicents.protocols.ss7.tcapAnsi.api.asn.ParseException;
import org.mobicents.protocols.ss7.tcapAnsi.api.asn.comp.Parameter;
import org.mobicents.protocols.ss7.tcapAnsi.api.asn.comp.RejectProblem;
/**
* @author baranowb
* @author sergey vetyutnev
*
*/
public class ParameterImpl implements Parameter {
private byte[] data;
private Parameter[] parameters;
private boolean primitive = true;
private int tag;
private int tagClass;
private int encodingLength = -1;
/*
* (non-Javadoc)
*
* @see org.mobicents.protocols.ss7.tcap.asn.comp.Parameter#getData()
*/
public byte[] getData() {
return data;
}
/*
* (non-Javadoc)
*
* @see org.mobicents.protocols.ss7.tcap.asn.comp.Parameter#isPrimitive()
*/
public boolean isPrimitive() {
return primitive;
}
/*
* (non-Javadoc)
*
* @see org.mobicents.protocols.ss7.tcap.asn.comp.Parameter#setData(byte[])
*/
public void setData(byte[] b) {
this.data = b;
if (data != null)
this.setParameters(null);
}
/*
* (non-Javadoc)
*
* @see org.mobicents.protocols.ss7.tcap.asn.comp.Parameter#setPrimitive(boolean)
*/
public void setPrimitive(boolean b) {
if (this.parameters != null && b) {
// bad
throw new IllegalArgumentException("Can not set primitive flag since Parameter[] is present!");
}
this.primitive = b;
}
public int getEncodingLength() {
if (encodingLength >= 0) {
return encodingLength;
} else if (this.data != null) {
return this.data.length;
} else {
return 0;
}
}
public void setEncodingLength(int val) {
encodingLength = val;
}
/**
* @return the tag
*/
public int getTag() {
return tag;
}
/**
* @param tag the tag to set
*/
public void setTag(int tag) {
this.tag = tag;
}
/**
* @return the tagClass
*/
public int getTagClass() {
return tagClass;
}
/**
* @param tagClass the tagClass to set
*/
public void setTagClass(int tagClass) {
this.tagClass = tagClass;
}
public Parameter[] getParameters() {
if (this.parameters == null && !this.isPrimitive()) {
// we may want to decode
if (this.data == null) {
return this.parameters;
}
List paramsList = new ArrayList();
// else we try to decode :)
try {
AsnInputStream ais = new AsnInputStream(this.data);
while (ais.available() > 0) {
int tag = ais.readTag();
Parameter _p = TcapFactory.createParameter(tag, ais, false);
paramsList.add(_p);
}
this.parameters = new Parameter[paramsList.size()];
this.parameters = paramsList.toArray(this.parameters);
} catch (Exception e) {
throw new IllegalArgumentException("Failed to parse raw data into constructed parameter", e);
}
}
return this.parameters;
}
public void setParameters(Parameter[] paramss) {
this.parameters = paramss;
if (this.parameters != null) {
this.setData(null);
this.setPrimitive(false);
}
}
private boolean singleParameterInAsn = false;
public void setSingleParameterInAsn() {
singleParameterInAsn = true;
}
/*
* (non-Javadoc)
*
* @see org.mobicents.protocols.ss7.tcap.asn.Encodable#decode(org.mobicents.protocols .asn.AsnInputStream)
*/
public void decode(AsnInputStream ais) throws ParseException {
try {
tag = ais.getTag();
primitive = ais.isTagPrimitive();
tagClass = ais.getTagClass();
data = ais.readSequence();
this.encodingLength = data.length;
if (singleParameterInAsn && ais.available() > 0) { // extra data found after main array
byte[] buf = new byte[data.length + ais.available()];
System.arraycopy(data, 0, buf, 0, data.length);
ais.read(buf, data.length, ais.available());
data = buf;
}
} catch (IOException e) {
throw new ParseException(RejectProblem.generalBadlyStructuredCompPortion, "IOException while decoding the parameter: " + e.getMessage(), e);
} catch (AsnException e) {
throw new ParseException(RejectProblem.generalBadlyStructuredCompPortion, "AsnException while decoding the parameter: " + e.getMessage(), e);
}
}
/*
* (non-Javadoc)
*
* @see org.mobicents.protocols.ss7.tcap.asn.Encodable#encode(org.mobicents.protocols .asn.AsnOutputStream)
*/
public void encode(AsnOutputStream aos) throws EncodeException {
try {
aos.writeTag(tagClass, primitive, tag);
if (data == null && parameters != null) {
AsnOutputStream localAos = new AsnOutputStream();
for (Parameter p : this.parameters) {
p.encode(localAos);
}
data = localAos.toByteArray();
}
if (data != null) {
if (this.encodingLength >= 0)
aos.writeLength(this.encodingLength);
else
aos.writeLength(data.length);
aos.write(data);
} else {
aos.writeLength(0);
}
} catch (IOException e) {
throw new EncodeException("IOException while encoding Parameter: " + e.getMessage(), e);
} catch (AsnException e) {
throw new EncodeException("AsnException while encoding Parameter: " + e.getMessage(), e);
}
}
protected static void encodeEmptyParameter(AsnOutputStream aos) throws EncodeException {
try {
aos.writeTag(Tag.CLASS_PRIVATE, false, Parameter._TAG_SEQUENCE);
aos.writeLength(0);
} catch (IOException e) {
throw new EncodeException("IOException while encoding EmptyParameter: " + e.getMessage(), e);
} catch (AsnException e) {
throw new EncodeException("AsnException while encoding EmptyParameter: " + e.getMessage(), e);
}
}
public String toString() {
return "Parameter[data=" + Arrays.toString(data) + ", parameters=" + Arrays.toString(parameters) + ", primitive="
+ primitive + ", tag=" + tag + ", tagClass=" + tagClass + ", encodingLength=" + this.getEncodingLength() + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy