/* * 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.isup.impl.message.parameter; 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.ss7.isup.ParameterException; import org.mobicents.protocols.ss7.isup.message.parameter.Parameter; /** * @author baranowb * @author sergey vetyutnev * */ public class ParameterImpl extends AbstractAsnEncodable implements Parameter { private byte[] data; private Parameter[] parameters; private boolean primitive = true; private int tag; private int tagClass; private int encodingLength = -1; /** * @param tag2 * @param ais * @param b */ public ParameterImpl(int tag2, AsnInputStream ais, boolean b) throws ParameterException { this.tag = tag2; this.primitive = b; this.decode(ais); } public ParameterImpl() { } public byte[] getData() { return data; } public boolean isPrimitive() { return primitive; } public void setData(byte[] b) { this.data = b; if (data != null) this.setParameters(null); } 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 String toString() { return "Parameter[data=" + Arrays.toString(data) + ", parameters=" + Arrays.toString(parameters) + ", primitive=" + primitive + ", tag=" + tag + ", tagClass=" + tagClass + ", encodingLength=" + this.getEncodingLength() + "]"; } public Parameter[] getParameters() { if (this.parameters == null && !this.isPrimitive()) { // we may want to decode if (this.data == null) { return this.parameters; } List<Parameter> paramsList = new ArrayList<Parameter>(); // else we try to decode :) try { AsnInputStream ais = new AsnInputStream(this.data); while (ais.available() > 0) { int tag = ais.readTag(); Parameter _p = new ParameterImpl(tag, ais, false);// 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; } public void decode(AsnInputStream ais) throws ParameterException { try { 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 ParameterException("IOException while decoding the parameter: " + e.getMessage(), e); } catch (AsnException e) { throw new ParameterException("AsnException while decoding the parameter: " + e.getMessage(), e); } } public void encode(AsnOutputStream aos) throws ParameterException { if (data == null && parameters == null) { throw new ParameterException("Parameter data not set."); } try { aos.writeTag(tagClass, primitive, tag); if (data == null) { AsnOutputStream localAos = new AsnOutputStream(); for (Parameter p : this.parameters) { ((AbstractAsnEncodable) p).encode(localAos); } data = localAos.toByteArray(); } if (this.encodingLength >= 0) aos.writeLength(this.encodingLength); else aos.writeLength(data.length); aos.write(data); } catch (IOException e) { throw new ParameterException(e); } catch (AsnException e) { throw new ParameterException(e); } } }