package info.nightscout.androidaps.db import info.nightscout.androidaps.database.AppRepository import info.nightscout.androidaps.database.entities.* import info.nightscout.androidaps.events.* import info.nightscout.shared.logging.AAPSLogger import info.nightscout.shared.logging.LTag import info.nightscout.androidaps.plugins.bus.RxBus import info.nightscout.androidaps.plugins.iob.iobCobCalculator.events.EventNewHistoryData import io.reactivex.rxjava3.disposables.Disposable import javax.inject.Inject import javax.inject.Singleton @Singleton class CompatDBHelper @Inject constructor( val aapsLogger: AAPSLogger, val repository: AppRepository, val rxBus: RxBus ) { fun dbChangeDisposable(): Disposable = repository .changeObservable() .doOnSubscribe { rxBus.send(EventNewBG(null)) } .subscribe { /** * GlucoseValues can come in batch * oldest one should be used for invalidation, newest one for for triggering Loop. * Thus we need to collect both * */ var newestGlucoseValue: GlucoseValue? = null it.filterIsInstance().lastOrNull()?.let { gv -> aapsLogger.debug(LTag.DATABASE, "Firing EventNewBg $gv") rxBus.send(EventNewBG(gv)) newestGlucoseValue = gv } it.filterIsInstance().map { gv -> gv.timestamp }.minOrNull()?.let { timestamp -> aapsLogger.debug(LTag.DATABASE, "Firing EventNewHistoryData $newestGlucoseValue") rxBus.send(EventNewHistoryData(timestamp, true, newestGlucoseValue)) } it.filterIsInstance().map { t -> t.timestamp }.minOrNull()?.let { timestamp -> aapsLogger.debug(LTag.DATABASE, "Firing EventTreatmentChange $timestamp") rxBus.send(EventTreatmentChange()) rxBus.send(EventNewHistoryData(timestamp, false)) } it.filterIsInstance().map { t -> t.timestamp }.minOrNull()?.let { timestamp -> aapsLogger.debug(LTag.DATABASE, "Firing EventTreatmentChange $timestamp") rxBus.send(EventTreatmentChange()) rxBus.send(EventNewHistoryData(timestamp, false)) } it.filterIsInstance().map { t -> t.timestamp }.minOrNull()?.let { timestamp -> aapsLogger.debug(LTag.DATABASE, "Firing EventTempBasalChange $timestamp") rxBus.send(EventTempBasalChange()) rxBus.send(EventNewHistoryData(timestamp, false)) } it.filterIsInstance().map { t -> t.timestamp }.minOrNull()?.let { timestamp -> aapsLogger.debug(LTag.DATABASE, "Firing EventExtendedBolusChange $timestamp") rxBus.send(EventExtendedBolusChange()) rxBus.send(EventNewHistoryData(timestamp, false)) } it.filterIsInstance().firstOrNull()?.let { tt -> aapsLogger.debug(LTag.DATABASE, "Firing EventTempTargetChange $tt") rxBus.send(EventTempTargetChange()) } it.filterIsInstance().firstOrNull()?.let { te -> aapsLogger.debug(LTag.DATABASE, "Firing EventTherapyEventChange $te") rxBus.send(EventTherapyEventChange()) } it.filterIsInstance().firstOrNull()?.let { food -> aapsLogger.debug(LTag.DATABASE, "Firing EventFoodDatabaseChanged $food") rxBus.send(EventFoodDatabaseChanged()) } it.filterIsInstance().firstOrNull()?.let { ps -> aapsLogger.debug(LTag.DATABASE, "Firing EventProfileSwitchChanged $ps") rxBus.send(EventProfileSwitchChanged()) } it.filterIsInstance().firstOrNull()?.let { eps -> aapsLogger.debug(LTag.DATABASE, "Firing EventEffectiveProfileSwitchChanged $eps") rxBus.send(EventEffectiveProfileSwitchChanged(eps)) } it.filterIsInstance().firstOrNull()?.let { oe -> aapsLogger.debug(LTag.DATABASE, "Firing EventOfflineChange $oe") rxBus.send(EventOfflineChange()) } } }