|
| 1 | +package me.snoty.integration.common |
| 2 | + |
| 3 | +import io.micrometer.core.instrument.MeterRegistry |
| 4 | +import me.snoty.backend.User |
| 5 | +import me.snoty.integration.common.diff.EntityDiffMetrics |
| 6 | +import me.snoty.integration.common.diff.EntityStateTable |
| 7 | +import me.snoty.backend.scheduling.JobRequest |
| 8 | +import me.snoty.backend.scheduling.Scheduler |
| 9 | +import org.jetbrains.exposed.sql.Database |
| 10 | +import org.jetbrains.exposed.sql.SchemaUtils |
| 11 | +import org.jetbrains.exposed.sql.transactions.transaction |
| 12 | +import java.util.concurrent.ScheduledExecutorService |
| 13 | +import java.util.concurrent.TimeUnit |
| 14 | +import kotlin.reflect.KClass |
| 15 | + |
| 16 | +abstract class AbstractIntegration<S : IntegrationSettings, R : JobRequest>( |
| 17 | + final override val name: String, |
| 18 | + final override val settingsType: KClass<S>, |
| 19 | + private val stateTable: EntityStateTable<*>, |
| 20 | + fetcherFactory: IntegrationFetcherFactory<R>, |
| 21 | + database: Database, |
| 22 | + meterRegistry: MeterRegistry, |
| 23 | + private val metricsPool: ScheduledExecutorService, |
| 24 | + scheduler: Scheduler |
| 25 | +) : Integration { |
| 26 | + constructor( |
| 27 | + name: String, |
| 28 | + settingsType: KClass<S>, |
| 29 | + stateTable: EntityStateTable<*>, |
| 30 | + fetcherFactory: IntegrationFetcherFactory<R>, |
| 31 | + context: IntegrationContext |
| 32 | + ) : this( |
| 33 | + name, |
| 34 | + settingsType, |
| 35 | + stateTable, |
| 36 | + fetcherFactory, |
| 37 | + context.database, |
| 38 | + context.meterRegistry, |
| 39 | + context.metricsPool, |
| 40 | + context.scheduler |
| 41 | + ) |
| 42 | + |
| 43 | + private val entityDiffMetrics: EntityDiffMetrics = EntityDiffMetrics(meterRegistry, database, name, stateTable) |
| 44 | + override val fetcher = fetcherFactory.create(entityDiffMetrics) |
| 45 | + private val scheduler = IntegrationScheduler(name, scheduler) |
| 46 | + |
| 47 | + override fun start() { |
| 48 | + transaction { |
| 49 | + SchemaUtils.createMissingTablesAndColumns(stateTable) |
| 50 | + } |
| 51 | + metricsPool.scheduleAtFixedRate(entityDiffMetrics.Job(), 0, 30, TimeUnit.SECONDS) |
| 52 | + scheduleAll() |
| 53 | + } |
| 54 | + |
| 55 | + private fun scheduleAll() { |
| 56 | + val allSettings = IntegrationConfigTable.getAllIntegrationConfigs<S>(name) |
| 57 | + allSettings.forEach(::schedule) |
| 58 | + } |
| 59 | + |
| 60 | + abstract fun createRequest(config: IntegrationConfig<S>): JobRequest |
| 61 | + abstract fun getInstanceId(config: IntegrationConfig<S>): Int |
| 62 | + |
| 63 | + override fun schedule(user: User, settings: Any) { |
| 64 | + @Suppress("UNCHECKED_CAST") |
| 65 | + val integrationConfig = IntegrationConfig(user.id, settings as S) |
| 66 | + schedule(integrationConfig) |
| 67 | + } |
| 68 | + |
| 69 | + private fun schedule(config: IntegrationConfig<S>) { |
| 70 | + scheduler.scheduleJob(listOf(getInstanceId(config), config.user), createRequest(config)) |
| 71 | + } |
| 72 | +} |
0 commit comments