/* * 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:17:31:22 2009-03-30<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.ClosedUserGroupInterlockCode; /** * Start time:17:31:22 2009-03-30<br> * Project: mobicents-isup-stack<br> * * @author <a href="mailto:baranowb@gmail.com"> Bartosz Baranowski </a> */ public class ClosedUserGroupInterlockCodeImpl extends AbstractISUPParameter implements ClosedUserGroupInterlockCode { // XXX: this parameter is weird, it does not follow general convention of // parameters :/ private byte[] niDigits = null; private int binaryCode = 0; public ClosedUserGroupInterlockCodeImpl(byte[] b) throws ParameterException { super(); decode(b); } public ClosedUserGroupInterlockCodeImpl() { super(); } /** * * @param niDigits - arrays of NetworkIdentiti digits, it must be of length 4, if only 2 digits are required - last two must * be empty (zero, default int value) * @param binaryCode */ public ClosedUserGroupInterlockCodeImpl(byte[] niDigits, int binaryCode) { super(); // FIXME: add check for range ? this.setNiDigits(niDigits); this.binaryCode = binaryCode; } public int decode(byte[] b) throws ParameterException { if (b == null || b.length != 4) { throw new ParameterException("byte[] must not be null and must have length of 4"); } int v = 0; this.niDigits = new byte[4]; for (int i = 0; i < 2; i++) { v = 0; v = b[i]; this.niDigits[i * 2] = (byte) ((v >> 4) & 0x0F); this.niDigits[i * 2 + 1] = (byte) (v & 0x0F); } this.binaryCode = (b[2] << 8) & 0xFF00; this.binaryCode |= b[3]; return 4; } public byte[] encode() throws ParameterException { byte[] b = new byte[4]; int 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] = (byte) v; } b[2] = (byte) (this.binaryCode >> 8); b[3] = (byte) this.binaryCode; return b; } public byte[] getNiDigits() { return niDigits; } public void setNiDigits(byte[] niDigits) { if (niDigits == null || niDigits.length != 4) { throw new IllegalArgumentException(); } this.niDigits = niDigits; } public int getBinaryCode() { return binaryCode; } public void setBinaryCode(int binaryCode) { this.binaryCode = binaryCode; } public int getCode() { return _PARAMETER_CODE; } }