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

tuwien.auto.calimero.link.Connector Maven / Gradle / Ivy

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

import java.time.Duration;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
import java.util.concurrent.ScheduledThreadPoolExecutor;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicBoolean;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import tuwien.auto.calimero.CloseEvent;
import tuwien.auto.calimero.FrameEvent;
import tuwien.auto.calimero.KNXAddress;
import tuwien.auto.calimero.KNXException;
import tuwien.auto.calimero.KNXIllegalArgumentException;
import tuwien.auto.calimero.KNXRemoteException;
import tuwien.auto.calimero.KNXTimeoutException;
import tuwien.auto.calimero.Priority;
import tuwien.auto.calimero.cemi.CEMILData;
import tuwien.auto.calimero.link.medium.KNXMediumSettings;

/**
 * Connector for KNX network links.
 *
 * @author B. Malinowsky
 */
public final class Connector
{
	// TODO with functional interfaces, we should move away from checked exceptions
	@FunctionalInterface
	public interface TSupplier
	{
		T get() throws KNXException, InterruptedException;
	}

	private boolean onSend = true;
	private long reconnectDelay = 2000; // [ms]
	// reconnect on disconnect caused by:
	private boolean initialError;
	private boolean serverError = true;
	private boolean internalError = true;

	// runs out earliest after (2^63-1)/1000/3600/24/365 ~ 3×10^8 years. Safe bet KNX got canned by then
	public static final long NoMaxAttempts = Long.MAX_VALUE;
	private long maxAttempts = 10;

	public Connector() {}

	// copy ctor
	private Connector(final Connector rhs)
	{
		this.onSend = rhs.onSend;
		this.reconnectDelay = rhs.reconnectDelay;
		this.initialError = rhs.initialError;
		this.serverError = rhs.serverError;
		this.internalError = rhs.internalError;
		this.maxAttempts = rhs.maxAttempts;
	}

	// on successful connection, the attempts are reset to maxAttempts
	public Connector maxConnectAttempts(final long maxAttempts)
	{
		if (maxAttempts < 1)
			throw new KNXIllegalArgumentException("max. connect attempts " + maxAttempts + " < 1");
		this.maxAttempts = maxAttempts;
		return this;
	}

	public Connector connectOnSend(final boolean connect)
	{
		onSend = connect;
		return this;
	}

	@Deprecated
	public Connector reconnectWait(final long wait, final TimeUnit unit)
	{
		reconnectDelay = unit.toMillis(wait);
		return this;
	}

	public Connector reconnectDelay(final Duration delay) {
		reconnectDelay = delay.toMillis();
		return this;
	}

	public Connector reconnectOn(final boolean errorOnCreation, final boolean serverDisconnect,
		final boolean internalDisconnect)
	{
		initialError = errorOnCreation;
		serverError = serverDisconnect;
		internalError = internalDisconnect;
		return this;
	}

	/**
	 * Returns a new KNXNetworkLink with the specified behavior for (re-)connection to the KNX network.
	 *
	 * @param creator supplies the specific KNX network link
	 * @return a new KNX network link with the specified (re-)connection behavior configured
	 * @throws KNXException on error creating the network link
	 * @throws InterruptedException on interrupted thread
	 */
	public KNXNetworkLink newLink(final TSupplier creator)
		throws KNXException, InterruptedException
	{
		return new Link(creator, this);
	}

	/**
	 * Returns a new KNXNetworMonitor with the specified behavior for (re-)connection to the KNX network.
	 *
	 * @param creator supplies the specific KNX network monitor
	 * @return a new KNX network monitor with the specified (re-)connection behavior configured
	 * @throws KNXException on error creating the monitor link
	 * @throws InterruptedException on interrupted thread
	 */
	public KNXNetworkMonitor newMonitor(final TSupplier creator)
		throws KNXException, InterruptedException
	{
		return new Link(creator, this);
	}

	// interruption policy: close link resource
	public static final class Link
			implements KNXNetworkLink, KNXNetworkMonitor, NetworkLinkListener
	{
		private volatile T impl;
		private final List listeners = new ArrayList<>();
		private volatile KNXMediumSettings settings;
		private volatile int hopCount;
		// monitor: decode raw frames
		private volatile boolean decodeRawFrames;

		private final TSupplier creator;

		private static final ThreadFactory tf = Executors.defaultThreadFactory();
		// we should replace this with a scheduled _cached_ thread pool executor implementation,
		// this one is a fixed sized pool, with thread time-out enabled
		private static ScheduledThreadPoolExecutor reconnect = new ScheduledThreadPoolExecutor(4, runnable -> {
			final Thread t = tf.newThread(runnable);
			t.setName("Calimero Connector (" + t.getName() + ")");
			t.setDaemon(true);
			return t;
		});

		static {
			// try to remove idle threads after a while
			reconnect.setKeepAliveTime(61, TimeUnit.SECONDS);
			reconnect.allowCoreThreadTimeOut(true);
		}

		// we save a copy of the connector options that won't get modified
		private final Connector connector;

		private volatile boolean closed;
		private volatile Future f = CompletableFuture.completedFuture(Void.TYPE);
		private final AtomicBoolean connecting = new AtomicBoolean();
		private final Object lock = new Object();

		private Link(final TSupplier creator, final Connector options)
			throws KNXException, InterruptedException
		{
			this.creator = creator;
			connector = new Connector(options);
			try {
				connect();
			}
			catch (final KNXException e) {
				if (!connector.initialError)
					throw e;
				logger().error("initial connection attempt", e);
				scheduleConnect(connector.maxAttempts - 1);
			}
		}

		/**
		 * @return the currently used connection instance of type {@link KNXNetworkLink} or
		 *         {@link KNXNetworkMonitor}, or null
		 */
		public AutoCloseable target()
		{
			return impl;
		}

		@Override
		public void setKNXMedium(final KNXMediumSettings settings)
		{
			final T t = impl;
			if (t instanceof KNXNetworkLink)
				((KNXNetworkLink) t).setKNXMedium(settings);
			else if (t instanceof KNXNetworkMonitor)
				((KNXNetworkMonitor) t).setKNXMedium(settings);
			this.settings = settings;
		}

		@Override
		public KNXMediumSettings getKNXMedium()
		{
			final T t = impl;
			if (t instanceof KNXNetworkLink)
				return ((KNXNetworkLink) t).getKNXMedium();
			if (t instanceof KNXNetworkMonitor)
				return ((KNXNetworkMonitor) t).getKNXMedium();
			return settings;
		}

		@Override
		public void addLinkListener(final NetworkLinkListener l)
		{
			if (impl instanceof KNXNetworkLink)
				((KNXNetworkLink) impl).addLinkListener(l);
			listeners.add(l);
		}

		@Override
		public void removeLinkListener(final NetworkLinkListener l)
		{
			listeners.remove(l);
			if (impl instanceof KNXNetworkLink)
				((KNXNetworkLink) impl).removeLinkListener(l);
		}

		@Override
		public void addMonitorListener(final LinkListener l)
		{
			if (impl instanceof KNXNetworkMonitor)
				((KNXNetworkMonitor) impl).addMonitorListener(l);
			listeners.add(l);
		}

		@Override
		public void removeMonitorListener(final LinkListener l)
		{
			listeners.remove(l);
			if (impl instanceof KNXNetworkMonitor)
				((KNXNetworkMonitor) impl).removeMonitorListener(l);
		}

		@Override
		public void setDecodeRawFrames(final boolean decode)
		{
			decodeRawFrames = decode;
			if (impl instanceof KNXNetworkMonitor)
				((KNXNetworkMonitor) impl).setDecodeRawFrames(decode);
		}

		@Override
		public void setHopCount(final int count)
		{
			if (impl instanceof KNXNetworkLink)
				((KNXNetworkLink) impl).setHopCount(count);
			hopCount = count;
		}

		@Override
		public int getHopCount()
		{
			return impl != null ? ((KNXNetworkLink) impl).getHopCount() : hopCount;
		}

		@Override
		public void sendRequest(final KNXAddress dst, final Priority p, final byte[] nsdu)
			throws KNXTimeoutException, KNXLinkClosedException
		{
			link().sendRequest(dst, p, nsdu);
		}

		@Override
		public void sendRequestWait(final KNXAddress dst, final Priority p, final byte[] nsdu)
			throws KNXTimeoutException, KNXLinkClosedException
		{
			link().sendRequestWait(dst, p, nsdu);
		}

		@Override
		public void send(final CEMILData msg, final boolean waitForCon) throws KNXTimeoutException,
			KNXLinkClosedException
		{
			link().send(msg, waitForCon);
		}

		@Override
		public String getName()
		{
			final T t = impl;
			if (t instanceof KNXNetworkLink)
				return ((KNXNetworkLink) t).getName();
			if (t instanceof KNXNetworkMonitor)
				return ((KNXNetworkMonitor) t).getName();
			return "connector";
		}

		@Override
		public boolean isOpen()
		{
			return !closed;
		}

		@Override
		public void close()
		{
			closed = true;
			f.cancel(true);
			try {
				if (impl != null)
					impl.close();
			}
			catch (final Exception ignore) {}
		}

		@Override
		public void linkClosed(final CloseEvent e)
		{
			if ((e.getInitiator() == CloseEvent.INTERNAL && connector.internalError)
					|| (e.getInitiator() == CloseEvent.SERVER_REQUEST && connector.serverError))
				scheduleConnect(connector.maxAttempts);
		}

		@Override
		public void indication(final FrameEvent e)
		{}

		@Override
		public void confirmation(final FrameEvent e)
		{}

		// only called for network link send
		private KNXNetworkLink link() throws KNXLinkClosedException
		{
			try {
				final KNXNetworkLink l = (KNXNetworkLink) impl;
				// ??? should immediate connects here also count for scheduled connects, and
				// increment the attempt counter?
				return (KNXNetworkLink) (l == null ? connect()
						: l.isOpen() ? l : connector.onSend ? connect() : l);
			}
			catch (final InterruptedException e) {
				Thread.currentThread().interrupt();
				throw new KNXLinkClosedException("interrupt on reconnecting link", e);
			}
			catch (final KNXLinkClosedException e) {
				throw e;
			}
			catch (final KNXException e) {
				throw new KNXLinkClosedException("reconnecting link", e);
			}
		}

		private void scheduleConnect(final long remainingAttempts)
		{
			if (closed || remainingAttempts <= 0)
				return;
			final long max = connector.maxAttempts;
			final long remaining = remainingAttempts - 1;
			final long attempt = max - remaining;
			final Runnable s = () -> {
				try {
					if (connector.maxAttempts == NoMaxAttempts)
						logger().info("execute scheduled connect {} (no max)", attempt);
					else
						logger().info("execute scheduled connect {}/{} ({} remaining)", attempt,
								max, remaining);
					connect();
				}
				catch (KNXException | RuntimeException | InterruptedException e) {
					logger().warn("connection attempt {}: {}", attempt, e.getMessage());
					scheduleConnect(remaining);
				}
			};
			f = reconnect.schedule(s, connector.reconnectDelay, TimeUnit.MILLISECONDS);
		}

		private AutoCloseable connect() throws InterruptedException, KNXException
		{
			if (targetOpen()) {
				return impl;
			}
			// if currently no connection attempt is active, we create one
			if (connecting.compareAndSet(false, true)) {
				try {
					final T t = creator.get();
					if (t instanceof KNXNetworkLink) {
						final KNXNetworkLink link = (KNXNetworkLink) t;
						if (impl == null) {
							settings = link.getKNXMedium();
							hopCount = link.getHopCount();
						}
						link.setKNXMedium(settings);
						link.setHopCount(hopCount);
						link.addLinkListener(this);
						listeners.forEach((l) -> link.addLinkListener((NetworkLinkListener) l));
					}
					else if (t instanceof KNXNetworkMonitor) {
						final KNXNetworkMonitor monitor = (KNXNetworkMonitor) t;
						monitor.setDecodeRawFrames(decodeRawFrames);
						monitor.addMonitorListener(this);
						listeners.forEach(monitor::addMonitorListener);
					}
					impl = t;
				}
				catch (final KNXRemoteException e) {
					final KNXLinkClosedException lce = new KNXLinkClosedException(e.getMessage());
					lce.initCause(e);
					throw lce;
				}
				finally {
					connecting.set(false);
					synchronized (lock) {
						lock.notifyAll();
					}
				}
			}
			else {
				// if a connection attempt is active, we use that one
				synchronized (lock) {
					while (connecting.get())
						lock.wait();
				}
				if (!targetOpen())
					throw new KNXLinkClosedException("ongoing connect attempt we waited for failed");
			}
			return impl;
		}

		private boolean targetOpen()
		{
			final T t = impl;
			if (t instanceof KNXNetworkLink)
				return ((KNXNetworkLink) t).isOpen();
			if (t instanceof KNXNetworkMonitor)
				return ((KNXNetworkMonitor) t).isOpen();
			return false;
		}

		private Logger logger()
		{
			return LoggerFactory.getLogger("calimero.link." + getName());
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy