tuwien.auto.calimero.mgmt.ManagementProcedures Maven / Gradle / Ivy
Show all versions of calimero-core Show documentation
/*
Calimero 2 - A library for KNX network access
Copyright (c) 2006, 2012 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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;
import java.util.List;
import tuwien.auto.calimero.IndividualAddress;
import tuwien.auto.calimero.exception.KNXException;
import tuwien.auto.calimero.exception.KNXInvalidResponseException;
import tuwien.auto.calimero.exception.KNXRemoteException;
import tuwien.auto.calimero.exception.KNXTimeoutException;
import tuwien.auto.calimero.link.KNXLinkClosedException;
/**
* KNX management procedures.
*
* Offers services following the KNX management procedures, for KNX network management and
* KNX device management.
* For procedures performed in connection-oriented mode, each management procedure takes
* care of satisfying the required connection modes.
* If an object implementing this interface is not used any longer, {@link #detach()} has
* to be called to release its resources and detach from the KNX network link.
*
* @author B. Malinowsky
*/
public interface ManagementProcedures
{
// addressing procedures
/**
* Reads out the individual addresses of all KNX devices in programming mode.
*
* This method corresponds to the KNX NM_IndividualAddress_Read procedure.
* Depending on whether none, one, or several devices are in programming mode, the
* returned array length of addresses is 0, 1, or >1, respectively. If more than one
* device with the same individual address is in programming mode, the returned array
* will contain the same addresses several times.
* The read timeout is 3 seconds.
*
* @return a new array with {@link IndividualAddress}es of devices in programming
* mode, with the array length equal to the number of device responses
* @throws KNXLinkClosedException if network link to KNX network is closed
* @throws KNXRemoteException on invalid response behavior from a remote endpoint
* @throws KNXException and subtypes on other errors
* @throws InterruptedException
*/
IndividualAddress[] readAddress() throws KNXException, InterruptedException;
/**
* Writes the individual address of a single KNX device set to programming mode.
*
* This method corresponds to the KNX NM_IndividualAddress_Write procedure.
* This procedure verifies that no other devices share the same individual address as
* supplied by newAddress
, and waits until exactly one device is in
* programming mode. It checks for successful address programming and requests a
* restart of the remote endpoint (thereby switching off its programming).
*
* @param newAddress the new address for the device in programming mode
* @return true
if address was written successfully, false
* if device with address exists but was not set to programming mode
* @throws KNXException on error attempting to write the new individual device address
* @throws InterruptedException
*/
boolean writeAddress(IndividualAddress newAddress) throws KNXException, InterruptedException;
/**
* Sets the individual address of all devices which are in programming mode to the
* default individual address.
*
* This method corresponds to the KNX NM_IndividualAddress_Reset procedure.
* The default individual address is 0xffff. After setting the default address,
* devices in programming mode are restarted.
*
* @throws KNXException
* @throws InterruptedException
*/
void resetAddress() throws KNXException, InterruptedException;
/**
* Determines whether the supplied devAddr
is occupied by a device in the
* KNX network or not.
*
* This method corresponds to the KNX NM_IndividualAddress_Check procedure.
*
* @param devAddr the individual address to check
* @return true
if address is occupied, false
if not
* occupied
* @throws KNXException on network or send errors
* @throws InterruptedException
*/
boolean isAddressOccupied(IndividualAddress devAddr) throws KNXException, InterruptedException;
/**
* Reads the individual address of a KNX device with known serial number.
*
* This method corresponds to the KNX NM_IndividualAddress_SerialNumber_Read procedure.
*
*
* @param serialNo byte array with serial number, serialNo.length
= 6
* @return the individual address
* @throws KNXTimeoutException on a timeout during send or no address response was received
* @throws KNXInvalidResponseException on invalid read response message
* @throws KNXLinkClosedException if network link to KNX network is closed
* @throws KNXException on other read address errors
* @throws InterruptedException
*/
IndividualAddress readAddress(byte[] serialNo) throws KNXException, InterruptedException;
/**
* Writes the individual address of a single KNX device with known serial number.
*
* This method corresponds to the KNX NM_IndividualAddress_SerialNumber_Write procedure.
* Before writing the address, the procedure verifies the assigned individual address is unique,
* and checks for successful address programming.
* Note that this procedure, in contrast to {@link #writeAddress(IndividualAddress)}, does not
* restart the programmed device.
*
* @param serialNo the device serial number to be programmed, serialNo.length = 6
* @param newAddress the new address for the device identified by serialNo
* @return true
if the new address is set and was verified successfully,
* false
if the device reports back a differing (e.g., old) address on
* verification
* @throws KNXException on any errors attempting to write or verify the written individual
* device address
* @throws InterruptedException
*/
boolean writeAddress(byte[] serialNo, IndividualAddress newAddress) throws KNXException,
InterruptedException;
// NYI DOA+Ind.Addr procedures: its unclear how to associate domain to ind.addr of
// several responses; it's not that important, power-line isn't common anyway
// scanning procedures
/**
* Determines the installed KNX routers in a KNX network.
*
* This method corresponds to the KNX network management router scan procedure
* NM_Router_Scan.
* A list of device addresses of the responding routers is returned, representing the installed
* KNX routers.
* For routers to be found by this procedure, the individual address and domain address have to
* be configured.
*
* @return a new array with {@link IndividualAddress}es of the installed KNX routers, with the
* array length equal to the number of installed routers
* @throws KNXTimeoutException on communication timeouts during the scanning
* @throws KNXLinkClosedException on a closed KNXNetworkLink to the KNX network
* @throws InterruptedException if this thread was interrupted during scanning the network
* routers
*/
IndividualAddress[] scanNetworkRouters() throws KNXTimeoutException, KNXLinkClosedException,
InterruptedException;
/**
* Determines the existing KNX network devices on a specific KNX subnetwork.
*
* This method corresponds to the KNX network management subnetwork devices scan
* procedure NM_SubnetworkDevices_Scan.
* It scans a specific KNX subnetwork, identified by the area
and
* line
of the KNX network.
* For this procedure, the individual address of used routers in the KNX network and
* the domain address have to be configured.
*
* @param area the KNX network area to scan for network devices,
* 0 <= area <= 0x0F
, devices in the backbone line of areas are
* assigned area address 0; for a definition of area, see
* {@link IndividualAddress}
* @param line the KNX network line to scan for network devices,
* 0 <= line <= 0x0F
, devices in the main line of an area are
* assigned line address 0; for a definition of line, see
* {@link IndividualAddress}
* @return an array of {@link IndividualAddress}es of the existing network devices,
* with the array length equal to the number of existing devices
* @throws KNXTimeoutException on communication timeouts during the scanning
* @throws KNXLinkClosedException on a closed KNXNetworkLink to the KNX network
* @throws InterruptedException if this thread was interrupted during scanning the
* network devices
*/
IndividualAddress[] scanNetworkDevices(int area, int line) throws KNXTimeoutException,
KNXLinkClosedException, InterruptedException;
/**
* Determines the serial numbers of all KNX devices that have its individual address set to the
* default individual address.
*
* This method corresponds to the KNX NM_SerialNumberDefaultIA_Scan procedure.
* The default individual address differs (in its subnet part) according to the KNX network
* medium.
* Recognized network media:
*
* - 1: TP 0
* - 2: TP 1
* - 3: PL 132
* - 4: PL 110
* - 5: RF
*
* Choose one of the listed entries for the medium
parameter.
* Implementation note: The number of each list entry for a medium equals the default subnetwork
* address part for that medium.
*
* @param medium KNX network medium (for the medium-dependent default subnetwork identifier),
* 0 < medium < 6
* @return a new list with byte arrays of serial numbers, corresponding to KNX devices having
* the default individual address set
* @throws KNXException on network or reading error obtaining the serial numbers
* @throws InterruptedException
*/
// ??? can we automatically detect the medium in this procedure?
List scanSerialNumbers(int medium) throws KNXException, InterruptedException;
// mode querying/setting procedures
/**
* Sets the programming mode of a KNX network device.
*
* This method corresponds to the KNX DM_ProgMode_Switch
* (DMP_ProgModeSwitch_RCo) procedure.
*
* @param device the addressed KNX network device
* @param programming true
to set the device into programming mode,
* false
to switch off programming mode
* @throws KNXException on communication error or device access problems
* @throws InterruptedException
*/
void setProgrammingMode(IndividualAddress device, boolean programming) throws KNXException,
InterruptedException;
// memory procedures
/**
* Writes a contiguous block of data to a the specified memory address of a device.
*
* This method corresponds to the KNX DM_MemWrite (DMP_MemWrite_RCo and
* DMP_MemWrite_RCoV) procedure.
* This procedure allows to write bigger blocks of contiguous memory, splitting up the data into
* suitable packets for transfer over the KNX network, if necessary.
* The memory is written in the order given by data
, starting from
* data[0]
, to the device memory, starting from startAddress
* (inclusive).
*
* @param device the destination device address
* @param startAddress the memory destination start address,
* 0 <= startAddress <= 0xFFFFFFFF
* @param data the data to be written, with data.length
equal to the number of
* bytes to write
* @param verifyWrite true
to read back and compare any written memory for
* equality, false
otherwise; if true
,
* verifyByServer
has to be set to false
* @param verifyByServer true
to enable verification by the management server of
* any written memory, false
otherwise; if true
,
* verifyWrite
has to be set to false
* @throws KNXException on communication error or device access problems
* @throws InterruptedException
*/
void writeMemory(IndividualAddress device, long startAddress, byte[] data, boolean verifyWrite,
boolean verifyByServer) throws KNXException, InterruptedException;
/**
* Reads a contiguous block of data from the specified memory address of a device.
*
* This method corresponds to the KNX DM_MemRead (DMP_MemRead_RCo) procedure.
* This method allows to read bigger blocks of contiguous memory, splitting up the
* data into suitable packets for transfer over the KNX network, if necessary.
* The memory is read in increasing steps of memory addresses, starting from
* startAddress
(inclusive).
*
* @param device the destination device address
* @param startAddress the memory source start address,
* 0 <= startAddress <= 0xFFFFFFFF
* @param bytes number of bytes to read, 0 < bytes
* @return an array of bytes, with the length of the array equal to bytes
* @throws KNXException on communication error or device access problems
* @throws InterruptedException
*/
byte[] readMemory(IndividualAddress device, long startAddress, int bytes) throws KNXException,
InterruptedException;
/**
* Detaches the network link from this management procedures instance.
*
* Calling this method will not detach or release any helper objects not created by
* this instance, e.g., a management client passed during construction.
* The state of a KNX network link being detached is not changed. If no network link
* is attached, no action is performed.
*
* Note that a detach does not close the used network link.
*
* @see ManagementClient#detach()
*/
void detach();
}