Java tutorial
/** * Copyright (c) 2016, 2017 Bosch Software Innovations GmbH. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Bosch Software Innovations GmbH - initial creation */ package org.eclipse.hono.messaging; import java.util.Objects; import org.eclipse.hono.util.Constants; import org.eclipse.hono.util.ResourceIdentifier; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import io.vertx.core.Future; import io.vertx.core.Handler; import io.vertx.proton.ProtonConnection; import io.vertx.proton.ProtonQoS; import io.vertx.proton.ProtonSender; import io.vertx.proton.ProtonSession; /** * A default {@code SenderFactory} for creating {@code ProtonSender}s from a given connection. */ @Component public class SenderFactoryImpl implements SenderFactory { private static final Logger LOG = LoggerFactory.getLogger(SenderFactoryImpl.class); private HonoMessagingConfigProperties config; /** * Sets the configuration properties. * * @param config The configuration. * @throws NullPointerException if config is {@code null}. */ @Autowired(required = false) public void setConfiguration(final HonoMessagingConfigProperties config) { this.config = Objects.requireNonNull(config); } @Override public Future<ProtonSender> createSender(final ProtonConnection connection, final ResourceIdentifier address, final ProtonQoS qos, final Handler<ProtonSender> sendQueueDrainHandler) { Objects.requireNonNull(connection); Objects.requireNonNull(address); Objects.requireNonNull(qos); if (connection.isDisconnected()) { return Future.failedFuture("connection is disconnected"); } else { return newSession(connection, address).compose(session -> { return newSender(connection, session, address, qos, sendQueueDrainHandler); }); } } private Future<ProtonSession> newSession(final ProtonConnection con, final ResourceIdentifier targetAddress) { final Future<ProtonSession> result = Future.future(); ProtonSession session = con.attachments().get(targetAddress.getEndpoint(), ProtonSession.class); if (session != null) { LOG.debug("re-using existing session for sending {} data downstream", targetAddress.getEndpoint()); result.complete(session); } else { LOG.debug("creating new session for sending {} data downstream", targetAddress.getEndpoint()); session = con.createSession(); con.attachments().set(targetAddress.getEndpoint(), ProtonSession.class, session); session.openHandler(remoteOpen -> { if (remoteOpen.succeeded()) { result.complete(remoteOpen.result()); } else { result.fail(remoteOpen.cause()); } }); session.open(); } return result; } private Future<ProtonSender> newSender(final ProtonConnection connection, final ProtonSession session, final ResourceIdentifier address, final ProtonQoS qos, final Handler<ProtonSender> sendQueueDrainHandler) { Future<ProtonSender> result = Future.future(); ProtonSender sender = session.createSender(getTenantOnlyTargetAddress(address)); sender.setQoS(qos); sender.sendQueueDrainHandler(sendQueueDrainHandler); sender.openHandler(openAttempt -> { if (openAttempt.succeeded()) { LOG.debug("sender [{}] for container [{}] open", address, connection.getRemoteContainer()); result.complete(openAttempt.result()); } else { LOG.debug("could not open sender [{}] for container [{}]", address, connection.getRemoteContainer(), openAttempt.cause()); result.fail(openAttempt.cause()); } }); sender.closeHandler(closed -> { if (closed.succeeded()) { LOG.debug("sender [{}] for container [{}] closed", address, connection.getRemoteContainer()); } }); sender.open(); return result; } private String getTenantOnlyTargetAddress(final ResourceIdentifier id) { String pathSeparator = config == null ? Constants.DEFAULT_PATH_SEPARATOR : config.getPathSeparator(); return String.format("%s%s%s", id.getEndpoint(), pathSeparator, id.getTenantId()); } }