All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tuwien.auto.calimero.link.medium.KNXMediumSettings Maven / Gradle / Ivy

There is a newer version: 2.6-rc1
Show newest version
/*
    Calimero 2 - A library for KNX network access
    Copyright (c) 2006, 2015 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.link.medium;

import tuwien.auto.calimero.IndividualAddress;
import tuwien.auto.calimero.exception.KNXIllegalArgumentException;

/**
 * Container for device and medium specific settings for the KNX network.
 * 

* Used by a KNX link interface to obtain medium/device information necessary to handle * communication with the KNX network based on the particular communication medium. * * @author B. Malinowsky */ public abstract class KNXMediumSettings { // medium codes are equal to the ones specified in KNXnet/IP /** * KNX medium code for twisted pair 1 (9600 bit/s). */ public static final int MEDIUM_TP1 = 0x02; /** * KNX medium code for power line 110 kHz (1200 bit/s). */ public static final int MEDIUM_PL110 = 0x04; /** * @deprecated Phased out in the KNX specification, not used any longer. (KNX medium code for * power line 132 kHz (2400 bit/s), inherited from EHS.) */ public static final int MEDIUM_PL132 = 0x08; /** * KNX medium code for radio frequency (868 MHz). */ public static final int MEDIUM_RF = 0x10; /** * KNX medium code for KNX IP. */ public static final int MEDIUM_KNXIP = 0x20; // local device address if in transparent server mode private IndividualAddress dev; /** * Creates the medium settings for the specified KNX medium. *

* * @param medium the KNX medium type code, see definitions in {@link KNXMediumSettings} * @param device individual address to use as source address in KNX messages, supplying * null will use the individual address 0.0.0 * @return the initialized medium-specific settings * @throws KNXIllegalArgumentException on unknown medium code */ public static KNXMediumSettings create(final int medium, final IndividualAddress device) { switch (medium) { case MEDIUM_TP1: return new TPSettings(device); case MEDIUM_PL110: return new PLSettings(device, null); case MEDIUM_RF: return new RFSettings(device); case MEDIUM_KNXIP: return new KnxIPSettings(device); } throw new KNXIllegalArgumentException("unknown medium type " + medium); } /** * Creates a new container for KNX device/medium settings. *

* * @param device individual device address to use as source address in KNX messages, * specifying null uses the individual address 0.0.0 */ protected KNXMediumSettings(final IndividualAddress device) { dev = device != null ? device : new IndividualAddress(0); } /** * Sets the device individual address. *

* * @param device individual address to use as new source address in KNX messages */ public final synchronized void setDeviceAddress(final IndividualAddress device) { dev = device; } /** * Returns the device individual address. *

* * @return individual address */ public final synchronized IndividualAddress getDeviceAddress() { return dev; } /** * Returns the KNX medium type identifier specifying the communication medium this * object represents. *

* * @return KNX medium type ID */ public abstract int getMedium(); /** * Returns the KNX medium type code for the specified medium type name. *

* Allowed type names are, case is ignored: *

    *
  • TP1
  • *
  • PL110, P110
  • *
  • PL132, P132
  • *
  • RF
  • *
  • KNXIP, KNX IP
  • *
* * @param mediumName the textual representation of a medium type as returned by * {@link #getMediumString()}, case-insensitive * @return the KNX medium type code * @throws KNXIllegalArgumentException on unknown medium code */ public static int getMedium(final String mediumName) { if ("tp1".equalsIgnoreCase(mediumName)) return MEDIUM_TP1; else if ("p110".equalsIgnoreCase(mediumName) || "pl110".equalsIgnoreCase(mediumName)) return MEDIUM_PL110; else if ("p132".equalsIgnoreCase(mediumName) || "pl132".equalsIgnoreCase(mediumName)) return MEDIUM_PL132; else if ("rf".equalsIgnoreCase(mediumName)) return MEDIUM_RF; else if ("knxip".equalsIgnoreCase(mediumName) || "knx ip".equalsIgnoreCase(mediumName)) return MEDIUM_KNXIP; else throw new KNXIllegalArgumentException("unknown medium type " + mediumName); } /** * Returns a textual representation of the KNX medium type. *

* * @return KNX medium as string * @see #getMedium() */ public String getMediumString() { return getMediumString(getMedium()); } /** * Returns a textual representation of the KNX medium type. *

* * @param knxMedium the KNX medium type identifier * @return KNX medium as string, or "unknown" on unknown medium type * @see #getMedium() */ public static String getMediumString(final int knxMedium) { switch (knxMedium) { case MEDIUM_TP1: return "TP1"; case MEDIUM_PL110: return "PL110"; case MEDIUM_PL132: return "PL132"; case MEDIUM_RF: return "RF"; case MEDIUM_KNXIP: return "KNX IP"; default: return "unknown"; } } /* (non-Javadoc) * @see java.lang.Object#toString() */ public String toString() { return getMediumString() + " medium, device " + dev; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy