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

io.edurt.datacap.plugin.natived.kafka.KafkaPlugin Maven / Gradle / Ivy

The newest version!
package io.edurt.datacap.plugin.natived.kafka;

import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import io.edurt.datacap.spi.Plugin;
import io.edurt.datacap.spi.PluginType;
import io.edurt.datacap.spi.adapter.Adapter;
import io.edurt.datacap.spi.connection.JdbcConfigure;
import io.edurt.datacap.spi.model.Configure;
import io.edurt.datacap.spi.model.Response;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.beanutils.BeanUtils;
import org.apache.commons.lang3.ObjectUtils;

@Slf4j
@SuppressFBWarnings(value = {"EI_EXPOSE_REP"})
public class KafkaPlugin
        implements Plugin
{
    private Configure configure;
    private KafkaConnection connection;
    private Response response;

    @Override
    public String validator()
    {
        return "SHOW TOPICS";
    }

    @Override
    public String name()
    {
        return "Kafka";
    }

    @Override
    public String description()
    {
        return "Integrate Kafka data sources";
    }

    @Override
    public PluginType type()
    {
        return PluginType.NATIVE;
    }

    @Override
    public void connect(Configure configure)
    {
        try {
            this.response = new Response();
            this.configure = new JdbcConfigure();
            BeanUtils.copyProperties(this.configure, configure);
            this.connection = new KafkaConnection(this.configure, this.response);
        }
        catch (Exception ex) {
            this.response.setIsConnected(Boolean.FALSE);
            this.response.setMessage(ex.getMessage());
        }
    }

    @Override
    public Response execute(String content)
    {
        if (ObjectUtils.isNotEmpty(this.connection)) {
            log.info("Execute kafka plugin logic started");
            this.response = this.connection.getResponse();
            Adapter processor = new KafkaAdapter(this.connection, new KafkaParser(content));
            this.response = processor.handlerExecute(content);
            log.info("Execute kafka plugin logic end");
        }
        return this.response;
    }

    @Override
    public void destroy()
    {
        if (ObjectUtils.isNotEmpty(this.connection)) {
            this.connection.destroy();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy