2019-12-13 02:12:19 +01:00
|
|
|
package info.nightscout.androidaps.dependencyInjection
|
|
|
|
|
2019-12-21 20:17:08 +01:00
|
|
|
import dagger.BindsInstance
|
2019-12-13 02:12:19 +01:00
|
|
|
import dagger.Component
|
|
|
|
import dagger.android.AndroidInjectionModule
|
2019-12-21 20:17:08 +01:00
|
|
|
import dagger.android.AndroidInjector
|
2019-12-13 02:12:19 +01:00
|
|
|
import info.nightscout.androidaps.MainApp
|
2020-01-01 23:23:16 +01:00
|
|
|
import info.nightscout.androidaps.db.BgReading
|
2019-12-28 02:49:00 +01:00
|
|
|
import info.nightscout.androidaps.plugins.aps.openAPSMA.LoggerCallback
|
2019-12-30 00:53:44 +01:00
|
|
|
import info.nightscout.androidaps.plugins.constraints.objectives.objectives.*
|
2020-01-05 12:02:32 +01:00
|
|
|
import info.nightscout.androidaps.plugins.general.automation.AutomationEvent
|
2020-01-02 19:20:36 +01:00
|
|
|
import info.nightscout.androidaps.plugins.general.automation.actions.*
|
2020-01-05 12:02:32 +01:00
|
|
|
import info.nightscout.androidaps.plugins.general.automation.elements.*
|
|
|
|
import info.nightscout.androidaps.plugins.general.automation.triggers.*
|
2020-01-01 23:23:16 +01:00
|
|
|
import info.nightscout.androidaps.plugins.general.overview.notifications.NotificationWithAction
|
|
|
|
import info.nightscout.androidaps.plugins.treatments.Treatment
|
2019-12-27 04:17:49 +01:00
|
|
|
import info.nightscout.androidaps.queue.commands.CommandSetProfile
|
2019-12-31 11:57:58 +01:00
|
|
|
import info.nightscout.androidaps.utils.wizard.BolusWizard
|
|
|
|
import info.nightscout.androidaps.utils.wizard.QuickWizardEntry
|
2019-12-21 20:17:08 +01:00
|
|
|
import javax.inject.Singleton
|
2019-12-13 02:12:19 +01:00
|
|
|
|
2019-12-21 20:17:08 +01:00
|
|
|
@Singleton
|
2019-12-13 02:12:19 +01:00
|
|
|
@Component(
|
2019-12-21 20:17:08 +01:00
|
|
|
modules = [
|
|
|
|
AndroidInjectionModule::class,
|
|
|
|
ActivitiesModule::class,
|
2019-12-23 13:27:15 +01:00
|
|
|
FragmentsModule::class,
|
2019-12-30 00:53:44 +01:00
|
|
|
AppModule::class,
|
|
|
|
ReceiversModule::class,
|
|
|
|
ServicesModule::class
|
2019-12-21 20:17:08 +01:00
|
|
|
]
|
2019-12-13 02:12:19 +01:00
|
|
|
)
|
2019-12-21 20:17:08 +01:00
|
|
|
interface AppComponent : AndroidInjector<MainApp> {
|
|
|
|
|
2019-12-27 04:17:49 +01:00
|
|
|
fun injectCommandSetProfile(commandSetProfile: CommandSetProfile)
|
|
|
|
|
2019-12-30 00:53:44 +01:00
|
|
|
fun injectObjective0(objective0: Objective0)
|
|
|
|
fun injectObjective1(objective1: Objective1)
|
|
|
|
fun injectObjective2(objective2: Objective2)
|
|
|
|
fun injectObjective3(objective3: Objective3)
|
2019-12-28 01:14:04 +01:00
|
|
|
fun injectObjective5(objective5: Objective5)
|
2019-12-30 00:53:44 +01:00
|
|
|
fun injectObjective6(objective6: Objective6)
|
2019-12-28 01:14:04 +01:00
|
|
|
|
2020-01-05 12:02:32 +01:00
|
|
|
fun injectAutomationEvent(automationEvent: AutomationEvent)
|
|
|
|
|
|
|
|
fun injectTrigger(trigger: Trigger)
|
|
|
|
fun injectTrigger(triggerAutosensValue: TriggerAutosensValue)
|
|
|
|
fun injectTrigger(triggerBg: TriggerBg)
|
|
|
|
fun injectTrigger(triggerBolusAgo: TriggerBolusAgo)
|
|
|
|
fun injectTrigger(triggerCOB: TriggerCOB)
|
|
|
|
fun injectTrigger(triggerConnector: TriggerConnector)
|
|
|
|
fun injectTrigger(triggerDelta: TriggerDelta)
|
|
|
|
fun injectTrigger(triggerDummy: TriggerDummy)
|
|
|
|
fun injectTrigger(triggerIob: TriggerIob)
|
|
|
|
fun injectTrigger(triggerLocation: TriggerLocation)
|
|
|
|
fun injectTrigger(triggerProfilePercent: TriggerProfilePercent)
|
|
|
|
fun injectTrigger(triggerPumpLastConnection: TriggerPumpLastConnection)
|
|
|
|
fun injectTrigger(triggerRecurringTime: TriggerRecurringTime)
|
|
|
|
fun injectTrigger(triggerTempTarget: TriggerTempTarget)
|
|
|
|
fun injectTrigger(triggerTime: TriggerTime)
|
|
|
|
fun injectTrigger(triggerTimeRange : TriggerTimeRange)
|
|
|
|
fun injectTrigger(triggerWifiSsid: TriggerWifiSsid)
|
|
|
|
|
2020-01-02 19:20:36 +01:00
|
|
|
fun injectAction(action: Action)
|
|
|
|
fun injectActionDummy(action: ActionDummy)
|
|
|
|
fun injectActionLoopDisable(action: ActionLoopDisable)
|
|
|
|
fun injectActionLoopEnable(action: ActionLoopEnable)
|
|
|
|
fun injectActionLoopResume(action: ActionLoopResume)
|
|
|
|
fun injectAction(action: ActionLoopSuspend)
|
|
|
|
fun injectActionLoopSuspend(action: ActionNotification)
|
|
|
|
fun injectActionProfileSwitch(action: ActionProfileSwitch)
|
|
|
|
fun injectAction(action: ActionProfileSwitchPercent)
|
|
|
|
fun injectActionProfileSwitchPercent(action: ActionSendSMS)
|
|
|
|
fun injectActionStartTempTarget(action: ActionStartTempTarget)
|
|
|
|
fun injectActionStopTempTarget(action: ActionStopTempTarget)
|
|
|
|
|
2020-01-05 12:02:32 +01:00
|
|
|
fun injectElement(element: Element)
|
|
|
|
fun injectElement(inputBg: InputBg)
|
|
|
|
fun injectElement(inputButton: InputButton)
|
2020-01-05 17:19:03 +01:00
|
|
|
fun injectElement(comparator: Comparator)
|
|
|
|
fun injectElement(comparatorExists: ComparatorExists)
|
|
|
|
fun injectElement(inputDateTime: InputDateTime)
|
2020-01-05 12:02:32 +01:00
|
|
|
fun injectElement(inputDelta: InputDelta)
|
|
|
|
fun injectElement(inputDouble: InputDouble)
|
|
|
|
fun injectElement(inputDuration: InputDuration)
|
|
|
|
fun injectElement(inputInsulin: InputInsulin)
|
|
|
|
fun injectElement(inputLocationMode: InputLocationMode)
|
|
|
|
fun injectElement(inputPercent: InputPercent)
|
|
|
|
fun injectElement(inputProfileName: InputProfileName)
|
|
|
|
fun injectElement(inputString: InputString)
|
|
|
|
fun injectElement(inputTempTarget: InputTempTarget)
|
2020-01-05 17:19:03 +01:00
|
|
|
fun injectElement(inputTimeRange: InputTimeRange)
|
2020-01-05 12:02:32 +01:00
|
|
|
fun injectElement(labelWithElement: LabelWithElement)
|
|
|
|
fun injectElement(staticLabel: StaticLabel)
|
|
|
|
|
2020-01-01 23:23:16 +01:00
|
|
|
fun injectTreatment(treatment: Treatment)
|
|
|
|
fun injectBgReading(bgReading: BgReading)
|
|
|
|
|
|
|
|
fun injectNotification(notificationWithAction: NotificationWithAction)
|
|
|
|
|
2019-12-28 02:49:00 +01:00
|
|
|
fun injectLoggerCallback(loggerCallback: LoggerCallback)
|
2019-12-31 11:57:58 +01:00
|
|
|
fun injectBolusWizard(bolusWizard: BolusWizard)
|
|
|
|
fun injectQuickWizardEntry(quickWizardEntry: QuickWizardEntry)
|
2019-12-28 02:49:00 +01:00
|
|
|
|
2019-12-21 20:17:08 +01:00
|
|
|
@Component.Builder
|
|
|
|
interface Builder {
|
|
|
|
|
|
|
|
@BindsInstance
|
2019-12-26 17:50:16 +01:00
|
|
|
fun application(mainApp: MainApp): Builder
|
2019-12-13 02:12:19 +01:00
|
|
|
|
2019-12-21 20:17:08 +01:00
|
|
|
fun build(): AppComponent
|
|
|
|
}
|
2019-12-13 02:12:19 +01:00
|
|
|
}
|