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

com.mageddo.tobby.Tobby.orig Maven / Gradle / Ivy

There is a newer version: 2.1.6-alpha
Show newest version
package com.mageddo.tobby;

import javax.sql.DataSource;

import com.mageddo.tobby.dagger.TobbyFactory;
import com.mageddo.tobby.dagger.TobbyReplicatorConfig;
import com.mageddo.tobby.producer.ProducerConfig;
import com.mageddo.tobby.replicator.ReplicatorConfig;
import com.mageddo.tobby.replicator.Replicators;

import lombok.Data;
import lombok.NonNull;

import org.apache.kafka.clients.producer.Producer;
import org.apache.kafka.common.serialization.Serializer;

import lombok.Builder;

@Builder
public class Tobby {

  private final TobbyFactory tobbyFactory;

  //
  // vanilla producers
  //
  public com.mageddo.tobby.producer.Producer producer() {
    return this.tobbyFactory.producer();
  }

  //
  // kafka producer adapters
  //
  public  Producer kafkaProducer(
      Class> keySerializer, Class> valueSerializer
  ) {
    return this.tobbyFactory.jdbcProducerAdapter(keySerializer, valueSerializer);
  }

  public  Producer kafkaProducer(
      Producer delegate,
      Class> keySerializer,
      Class> valueSerializer
  ) {
    return this.tobbyFactory.jdbcProducerAdapter(delegate, keySerializer, valueSerializer);
  }

  public  Producer kafkaProducer(
      Serializer keySerializer, Serializer valueSerializer
  ) {
    return this.tobbyFactory.jdbcProducerAdapter(keySerializer, valueSerializer);
  }

  public  Producer kafkaProducer(
      Producer delegate, Serializer keySerializer, Serializer valueSerializer
  ) {
    return this.tobbyFactory.jdbcProducerAdapter(delegate, keySerializer, valueSerializer);
  }

  public  Producer kafkaProducer(
      com.mageddo.tobby.producer.Producer producer, Serializer keySerializer, Serializer valueSerializer
  ) {
    return this.tobbyFactory.jdbcProducerAdapter(keySerializer, valueSerializer, producer);
  }

  //
  // replicators
  //

  public static Replicators replicator(ReplicatorConfig config) {
    return TobbyReplicatorConfig.create(config);
  }

  public static Tobby build(DataSource dataSource) {
    return build(dataSource, null);
  }

  public static Tobby build(DataSource dataSource, Config config) {
    return Tobby
        .builder()
<<<<<<< HEAD
        .tobbyConfig(TobbyConfig.build(dataSource, config))
=======
        .tobbyFactory(TobbyFactory.build(dataSource))
        .build();
  }

  public static Tobby build(ProducerConfig config) {
    return Tobby
        .builder()
        .tobbyFactory(TobbyFactory.build(config))
>>>>>>> origin/main
        .build();
  }

  /**
   * General Tobby configurations, for specific replication configurations, see {@link ReplicatorConfig}.
   */
  @Data
  @Builder(toBuilder = true)
  public static class Config {

    public static final String TOBBY_RECORD_TABLE_NAME_PROP = "tobby.record-table.name";

    /**
     * The table name which tobby will consider to create and replicate the records from.
     * Your table must be compliance with a specific DDL, see {@link RecordDAO}.
     *
     * This property also can be set by System Property {@value #TOBBY_RECORD_TABLE_NAME_PROP}
     */
    @NonNull
    @Builder.Default
    private String recordTableName = "TTO_RECORD";

    public static Config theDefault() {
      return Config
          .builder()
          .build();
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy