/*
* #%L
* OW2 Chameleon - Fuchsia Framework
* %%
* Copyright (C) 2009 - 2014 OW2 Chameleon
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
/*
Calimero - A library for KNX network access
Copyright (C) 2006-2008 B. Malinowsky
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 2
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, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Linking this library statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under terms
of your choice, provided that you also meet, for each linked independent
module, the terms and conditions of the license of that module. An
independent module is a module which is not derived from or based on
this library. If you modify this library, you may extend this exception
to your version of the library, but you are not obligated to do so. If
you do not wish to do so, delete this exception statement from your
version.
*/
package tuwien.auto.calimero.mgmt;
/**
* Holds description information of a KNX interface object property.
* <p>
* The supported description information and the expected description structure layout is
* according to the application layer property description read service.<br>
* This Description type also supports the property object type and the number of current
* elements.
* <p>
* When used together with local device management, not all description information will
* be available.
* <p>
* Objects of this type are immutable.
*
* @author B. Malinowsky
*/
public final class Description
{
private final short oindex;
private final short otype;
private final short id;
private final short pindex;
private final int maxElems;
// current elements are set after object creation
private int currElems;
// data type is set to -1 after object creation if not available
private byte pdt;
private final byte rLevel;
private final byte wLevel;
private final boolean write;
/**
* Creates a new description object for a property out of a byte array.
* <p>
* The description structure layout of <code>data</code> is according to the
* application layer property description read service.
*
* @param objType interface object type the property belongs to
* @param data byte array containing property description, starting at
* <code>data[0]</code>
*/
public Description(int objType, byte[] data)
{
otype = (short) objType;
oindex = (short) (data[0] & 0xff);
id = (short) (data[1] & 0xff);
pindex = (short) (data[2] & 0xff);
write = (data[3] & 0x80) == 0x80 ? true : false;
pdt = (byte) (data[3] & 0x3f);
maxElems = ((data[4] & 0xff) << 8) | (data[5] & 0xff);
rLevel = (byte) ((data[6] & 0xff) >> 4);
wLevel = (byte) (data[6] & 0x0f);
}
/**
* Creates a new description object for a property out of a data byte array, together
* with object type and number of current elements.
* <p>
*
* @param objType interface object type the property belongs to
* @param currentElements current number of elements in the property
* @param data byte array holding the description information, the structure is
* according to the ASDU of a property description service response
*/
public Description(int objType, int currentElements, byte[] data)
{
this(objType, data);
currElems = currentElements;
}
/**
* Creates a new description object for a property using the given parameters.
* <p>
*
* @param objIndex index of the object in the device, starting with 0
* @param objType interface object type the property belongs to
* @param pid property identifier, a 6 Bit identifier
* @param propIndex property index in the object, starting with 0
* @param pdt property data type
* @param writeEnable specifies if the property is write-enabled or read only
* @param currentElements current number of elements in the property
* @param maxElements maximum number of elements allowed in the property
* @param readLevel read access level, 0 <= level <= 15
* @param writeLevel write access level, 0 <= level <= 15
*/
public Description(int objIndex, int objType, int pid, int propIndex, int pdt,
boolean writeEnable, int currentElements, int maxElements, int readLevel,
int writeLevel)
{
otype = (short) objType;
oindex = (short) objIndex;
id = (short) pid;
pindex = (short) propIndex;
this.pdt = (byte) pdt;
write = writeEnable;
currElems = currentElements;
maxElems = maxElements;
rLevel = (byte) readLevel;
wLevel = (byte) writeLevel;
}
/**
* Returns the device unique object index contained the property.
* <p>
*
* @return the object index
*/
public short getObjectIndex()
{
return oindex;
}
/**
* Returns the object type to which the property belongs to.
*
* @return the object type
*/
public int getObjectType()
{
return otype;
}
/**
* Returns the property index.
* <p>
*
* @return the property index
*/
public short getPropIndex()
{
return pindex;
}
/**
* Returns the property identifier.
* <p>
*
* @return the PID
*/
public short getPID()
{
return id;
}
/**
* Returns the property data type.
* <p>
* With local device management, the PDT is not available and -1 is returned.
*
* @return the PDT or -1 for no PDT
*/
public byte getPDT()
{
return pdt;
}
/**
* Returns the current number of elements in the property.
* <p>
*
* @return current elements
*/
public int getCurrentElements()
{
return currElems;
}
/**
* Returns the maximum number of elements allowed in the property.
* <p>
* With local device management, this attribute is not available and 0 is returned.
*
* @return maximum elements, or 0
*/
public int getMaxElements()
{
return maxElems;
}
/**
* Returns the read access level for the property.
* <p>
* The level is between 0 (maximum access rights) and 15 (minimum access rights).
*
* @return the read level as 4 bit value
*/
public byte getReadLevel()
{
return rLevel;
}
/**
* Returns the write access level for the property.
* <p>
* The level is between 0 (maximum access rights) and 15 (minimum access rights).
*
* @return the write level as 4 bit value
*/
public byte getWriteLevel()
{
return wLevel;
}
/**
* Returns whether the property is write-enabled or read only.
* <p>
*
* @return <code>true</code> if write enabled, <code>false</code> otherwise
*/
public boolean isWriteEnabled()
{
return write;
}
/**
* Returns the property description in textual representation.
* <p>
*
* @return a string representation of the description
*/
public String toString()
{
return "OT " + otype + " OI " + oindex + " PID " + id + " PI " + pindex + " PDT "
+ (pdt == -1 ? "-" : Integer.toString(getPDT())) + ", elements (curr/max) "
+ currElems + "/" + maxElems + ", access level (r/w) " + rLevel + "/"
+ wLevel + (write ? " write-enabled" : " read-only");
}
// set 2 or 4 byte data array with element count, big endian
void setCurrentElements(byte[] data)
{
int elems = 0;
for (int i = 0; i < data.length; ++i)
elems = elems << 8 | data[i] & 0xff;
currElems = elems;
}
void setPDT(int type)
{
pdt = (byte) type;
}
}