/* * TeleStax, Open Source Cloud Communications * Copyright 2012, Telestax 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. */ /** * Start time:08:42:25 2009-04-02<br> * Project: mobicents-isup-stack<br> * * @author <a href="mailto:baranowb@gmail.com"> Bartosz Baranowski * </a> * */ package org.mobicents.protocols.ss7.isup.impl.message.parameter; import org.mobicents.protocols.ss7.isup.ParameterException; import org.mobicents.protocols.ss7.isup.message.parameter.MLPPPrecedence; /** * Start time:08:42:25 2009-04-02<br> * Project: mobicents-isup-stack<br> * * @author <a href="mailto:baranowb@gmail.com"> Bartosz Baranowski </a> */ public class MLPPPrecedenceImpl extends AbstractISUPParameter implements MLPPPrecedence { private int lfb; private int precedenceLevel; private int mllpServiceDomain; // FIXME: ensure zero in first digit.? private byte[] niDigits; public MLPPPrecedenceImpl() { super(); } public MLPPPrecedenceImpl(byte[] b) throws ParameterException { super(); decode(b); } public MLPPPrecedenceImpl(byte lfb, byte precedenceLevel, int mllpServiceDomain, byte[] niDigits) { super(); this.lfb = lfb; this.precedenceLevel = precedenceLevel; this.mllpServiceDomain = mllpServiceDomain; setNiDigits(niDigits); } public int decode(byte[] b) throws ParameterException { if (b == null || b.length != 6) { throw new ParameterException("byte[] must not be null and length must be 6"); } this.precedenceLevel = (byte) (b[0] & 0x0F); this.lfb = (byte) ((b[0] >> 5) & 0x03); byte v = 0; this.niDigits = new byte[4]; for (int i = 0; i < 2; i++) { v = 0; v = b[i + 1]; this.niDigits[i * 2] = (byte) (v & 0x0F); this.niDigits[i * 2 + 1] = (byte) ((v >> 4) & 0x0F); } this.mllpServiceDomain = b[3] << 16; this.mllpServiceDomain |= b[4] << 8; this.mllpServiceDomain |= b[5]; return 6; } public byte[] encode() throws ParameterException { byte[] b = new byte[6]; b[0] = (byte) ((this.lfb & 0x03) << 5); b[0] |= this.precedenceLevel & 0x0F; byte v = 0; for (int i = 0; i < 2; i++) { v = 0; v |= (this.niDigits[i * 2] & 0x0F) << 4; v |= (this.niDigits[i * 2 + 1] & 0x0F); b[i + 1] = v; } b[3] = (byte) (this.mllpServiceDomain >> 16); b[4] = (byte) (this.mllpServiceDomain >> 8); b[5] = (byte) this.mllpServiceDomain; return b; } public byte getLfb() { return (byte) lfb; } public void setLfb(byte lfb) { this.lfb = lfb; } public byte getPrecedenceLevel() { return (byte) precedenceLevel; } public void setPrecedenceLevel(byte precedenceLevel) { this.precedenceLevel = precedenceLevel; } public int getMllpServiceDomain() { return mllpServiceDomain; } public void setMllpServiceDomain(int mllpServiceDomain) { this.mllpServiceDomain = mllpServiceDomain; } public byte[] getNiDigits() { return niDigits; } public void setNiDigits(byte[] niDigits) { if (niDigits == null || niDigits.length != 4) { throw new IllegalArgumentException(); } this.niDigits = niDigits; } public int getCode() { return _PARAMETER_CODE; } @Override public String toString(){ StringBuilder sb = new StringBuilder(); sb.append("MLPPPrecedence ["); sb.append("lfb="); sb.append(lfb); sb.append(", "); sb.append("precedenceLevel="); sb.append(precedenceLevel); sb.append(", "); sb.append("mllpServiceDomain="); sb.append(mllpServiceDomain); if (niDigits != null) { sb.append(", "); sb.append("niDigits="); for (int i1 = 1; i1 < niDigits.length; i1++) { sb.append((int) niDigits[i1]); sb.append(", "); } } sb.append("]"); return sb.toString(); } }