/******************************************************************************* * sdrtrunk * Copyright (C) 2014-2017 Dennis Sheirer * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/> * ******************************************************************************/ package module.decode.p25.message.tsbk.motorola; import alias.AliasList; import bits.BinaryMessage; import module.decode.p25.message.IBandIdentifier; import module.decode.p25.message.IdentifierReceiver; import module.decode.p25.reference.DataUnitID; public class PatchGroupVoiceChannelGrantUpdate extends MotorolaTSBKMessage implements IdentifierReceiver { public static final int[] IDENTIFIER_1 = {80, 81, 82, 83}; public static final int[] CHANNEL_1 = {84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95}; public static final int[] PATCH_GROUP_ADDRESS_1 = {96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111}; public static final int[] IDENTIFIER_2 = {112, 113, 114, 115}; public static final int[] CHANNEL_2 = {116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127}; public static final int[] PATCH_GROUP_ADDRESS_2 = {128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143}; private IBandIdentifier mIdentifierUpdate1; private IBandIdentifier mIdentifierUpdate2; public PatchGroupVoiceChannelGrantUpdate(BinaryMessage message, DataUnitID duid, AliasList aliasList) { super(message, duid, aliasList); } @Override public String getEventType() { return MotorolaOpcode.PATCH_GROUP_CHANNEL_GRANT_UPDATE.getLabel(); } @Override public String getMessage() { StringBuilder sb = new StringBuilder(); sb.append(getMessageStub()); sb.append(" PATCH GRP1:"); sb.append(getPatchGroupAddress1()); sb.append(" GRP2:"); sb.append(getPatchGroupAddress2()); sb.append(" CHAN 1:"); sb.append(getChannel1()); sb.append(" DN:" + getDownlinkFrequency1()); sb.append(" CHAN 2:"); sb.append(getChannel2()); sb.append(" DN:" + getDownlinkFrequency2()); return sb.toString(); } public String getPatchGroupAddress1() { return mMessage.getHex(PATCH_GROUP_ADDRESS_1, 4); } public String getPatchGroupAddress2() { return mMessage.getHex(PATCH_GROUP_ADDRESS_2, 4); } public int getChannelIdentifier1() { return mMessage.getInt(IDENTIFIER_1); } public int getChannelNumber1() { return mMessage.getInt(CHANNEL_1); } public String getChannel1() { return getChannelIdentifier1() + "-" + getChannelNumber1(); } public int getChannelIdentifier2() { return mMessage.getInt(IDENTIFIER_2); } public int getChannelNumber2() { return mMessage.getInt(CHANNEL_2); } public String getChannel2() { return getChannelIdentifier2() + "-" + getChannelNumber2(); } @Override public void setIdentifierMessage(int identifier, IBandIdentifier message) { if(identifier == getChannelIdentifier1()) { mIdentifierUpdate1 = message; } if(identifier == getChannelIdentifier2()) { mIdentifierUpdate2 = message; } } @Override public int[] getIdentifiers() { int[] identifiers = new int[2]; identifiers[0] = getChannelIdentifier1(); identifiers[1] = getChannelIdentifier2(); return identifiers; } public long getDownlinkFrequency1() { if(mIdentifierUpdate1 != null) { return mIdentifierUpdate1.getDownlinkFrequency(getChannelNumber1()); } return 0; } public boolean isTDMAChannel1() { if(mIdentifierUpdate1 != null) { return mIdentifierUpdate1.isTDMA(); } return false; } public long getUplinkFrequency1() { if(mIdentifierUpdate1 != null) { return mIdentifierUpdate1.getUplinkFrequency(getChannelNumber1()); } return 0; } public long getDownlinkFrequency2() { if(mIdentifierUpdate2 != null) { return mIdentifierUpdate2.getDownlinkFrequency(getChannelNumber2()); } return 0; } public boolean isTDMAChannel2() { if(mIdentifierUpdate2 != null) { return mIdentifierUpdate2.isTDMA(); } return false; } public long getUplinkFrequency2() { if(mIdentifierUpdate2 != null) { return mIdentifierUpdate2.getUplinkFrequency(getChannelNumber2()); } return 0; } }