org.apache.camel.component.vertx.VertxComponent Maven / Gradle / Ivy
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.
*/
package org.apache.camel.component.vertx;
import java.util.Map;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
import io.vertx.core.AsyncResult;
import io.vertx.core.Vertx;
import io.vertx.core.VertxOptions;
import io.vertx.core.impl.VertxBuilder;
import org.apache.camel.CamelContext;
import org.apache.camel.Endpoint;
import org.apache.camel.spi.Metadata;
import org.apache.camel.spi.annotations.Component;
import org.apache.camel.support.DefaultComponent;
import org.apache.camel.util.ObjectHelper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@Component("vertx")
public class VertxComponent extends DefaultComponent {
private static final Logger LOG = LoggerFactory.getLogger(VertxComponent.class);
private volatile boolean createdVertx;
@Metadata(label = "advanced")
private VertxBuilder vertxFactory;
@Metadata(autowired = true)
private Vertx vertx;
@Metadata
private String host;
@Metadata
private int port;
@Metadata(defaultValue = "60")
private int timeout = 60;
@Metadata
private VertxOptions vertxOptions;
public VertxComponent() {
}
public VertxComponent(CamelContext context) {
super(context);
}
public VertxBuilder getVertxFactory() {
return vertxFactory;
}
/**
* To use a custom VertxFactory implementation
*/
public void setVertxFactory(VertxBuilder vertxFactory) {
this.vertxFactory = vertxFactory;
}
public String getHost() {
return host;
}
/**
* Hostname for creating an embedded clustered EventBus
*/
public void setHost(String host) {
this.host = host;
}
public int getPort() {
return port;
}
/**
* Port for creating an embedded clustered EventBus
*/
public void setPort(int port) {
this.port = port;
}
public VertxOptions getVertxOptions() {
return vertxOptions;
}
/**
* Options to use for creating vertx
*/
public void setVertxOptions(VertxOptions vertxOptions) {
this.vertxOptions = vertxOptions;
}
public Vertx getVertx() {
return vertx;
}
/**
* To use the given vertx EventBus instead of creating a new embedded EventBus
*/
public void setVertx(Vertx vertx) {
this.vertx = vertx;
}
public int getTimeout() {
return timeout;
}
/**
* Timeout in seconds to wait for clustered Vertx EventBus to be ready.
*
* The default value is 60.
*/
public void setTimeout(int timeout) {
this.timeout = timeout;
}
@Override
protected Endpoint createEndpoint(String uri, String remaining, Map parameters) throws Exception {
VertxEndpoint endpoint = new VertxEndpoint(uri, this, remaining);
setProperties(endpoint, parameters);
return endpoint;
}
@Override
protected void doStart() throws Exception {
super.doStart();
if (vertx == null) {
boolean clustered = false;
if (vertxOptions == null) {
vertxOptions = new VertxOptions();
if (ObjectHelper.isNotEmpty(host)) {
vertxOptions.getEventBusOptions().setHost(host);
clustered = true;
}
if (port > 0) {
vertxOptions.getEventBusOptions().setPort(port);
clustered = true;
}
}
if (vertxFactory == null) {
vertxFactory = new VertxBuilder(vertxOptions);
}
// we are creating vertx so we should handle its lifecycle
createdVertx = true;
final CountDownLatch latch = new CountDownLatch(1);
// lets using a host / port if a host name is specified
if (clustered) {
LOG.info("Creating Clustered Vertx {}:{}", vertxOptions.getEventBusOptions().getHost(),
vertxOptions.getEventBusOptions().getPort());
// use the async api as we want to wait for the eventbus to be ready before we are in started state
vertxFactory.clusteredVertx((AsyncResult event) -> {
if (event.cause() != null) {
LOG.warn("Error creating Clustered Vertx {}:{} due {}", host, port,
event.cause().getMessage(), event.cause());
} else if (event.succeeded()) {
vertx = event.result();
LOG.info("EventBus is ready: {}", vertx);
}
latch.countDown();
});
} else {
LOG.info("Creating Non-Clustered Vertx");
vertx = vertxFactory.init().vertx();
LOG.info("EventBus is ready: {}", vertx);
latch.countDown();
}
if (latch.getCount() > 0) {
LOG.info("Waiting for EventBus to be ready using {} sec as timeout", timeout);
latch.await(timeout, TimeUnit.SECONDS);
}
} else {
LOG.debug("Using Vertx instance set on the component level.");
}
}
@Override
protected void doStop() throws Exception {
super.doStop();
if (createdVertx && vertx != null) {
LOG.info("Stopping Vertx {}", vertx);
vertx.close();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy