@Synchronized functions with Array
This commit is contained in:
parent
10d92b89fd
commit
c37bbeedc1
1 changed files with 24 additions and 6 deletions
|
@ -59,14 +59,28 @@ open class AutotuneIob @Inject constructor(
|
||||||
initializeTreatmentData(from - range(), to)
|
initializeTreatmentData(from - range(), to)
|
||||||
initializeTempBasalData(from - range(), to, tunedProfile)
|
initializeTempBasalData(from - range(), to, tunedProfile)
|
||||||
initializeExtendedBolusData(from - range(), to, tunedProfile)
|
initializeExtendedBolusData(from - range(), to, tunedProfile)
|
||||||
tempBasals = ArrayList(tempBasals.toList().sortedWith { o1: TemporaryBasal, o2: TemporaryBasal -> (o2.timestamp - o1.timestamp).toInt() })
|
sortTempBasal()
|
||||||
// Without Neutral TBR, Autotune Web will ignore iob for periods without TBR running
|
addNeutralTempBasal(from - range(), to, tunedProfile) // Without Neutral TBR, Autotune Web will ignore iob for periods without TBR running
|
||||||
addNeutralTempBasal(from - range(), to, tunedProfile)
|
sortNsTreatments()
|
||||||
nsTreatments = ArrayList(nsTreatments.toList().sortedWith { o1: NsTreatment, o2: NsTreatment -> (o2.date - o1.date).toInt() })
|
sortBoluses()
|
||||||
boluses = ArrayList(boluses.toList().sortedWith { o1: Bolus, o2: Bolus -> (o2.timestamp - o1.timestamp).toInt() })
|
|
||||||
aapsLogger.debug(LTag.AUTOTUNE, "Nb Treatments: " + nsTreatments.size + " Nb meals: " + meals.size)
|
aapsLogger.debug(LTag.AUTOTUNE, "Nb Treatments: " + nsTreatments.size + " Nb meals: " + meals.size)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Synchronized
|
||||||
|
private fun sortTempBasal() {
|
||||||
|
tempBasals = ArrayList(tempBasals.toList().sortedWith { o1: TemporaryBasal, o2: TemporaryBasal -> (o2.timestamp - o1.timestamp).toInt() })
|
||||||
|
}
|
||||||
|
|
||||||
|
@Synchronized
|
||||||
|
private fun sortNsTreatments() {
|
||||||
|
nsTreatments = ArrayList(nsTreatments.toList().sortedWith { o1: NsTreatment, o2: NsTreatment -> (o2.date - o1.date).toInt() })
|
||||||
|
}
|
||||||
|
|
||||||
|
@Synchronized
|
||||||
|
private fun sortBoluses() {
|
||||||
|
boluses = ArrayList(boluses.toList().sortedWith { o1: Bolus, o2: Bolus -> (o2.timestamp - o1.timestamp).toInt() })
|
||||||
|
}
|
||||||
|
|
||||||
private fun initializeBgreadings(from: Long, to: Long) {
|
private fun initializeBgreadings(from: Long, to: Long) {
|
||||||
glucose = repository.compatGetBgReadingsDataFromTime(from, to, false).blockingGet()
|
glucose = repository.compatGetBgReadingsDataFromTime(from, to, false).blockingGet()
|
||||||
}
|
}
|
||||||
|
@ -146,6 +160,7 @@ open class AutotuneIob @Inject constructor(
|
||||||
|
|
||||||
// addNeutralTempBasal will add a fake neutral TBR (100%) to have correct basal rate in exported file for periods without TBR running
|
// addNeutralTempBasal will add a fake neutral TBR (100%) to have correct basal rate in exported file for periods without TBR running
|
||||||
// to be able to compare results between oref0 algo and aaps
|
// to be able to compare results between oref0 algo and aaps
|
||||||
|
@Synchronized
|
||||||
private fun addNeutralTempBasal(from: Long, to: Long, tunedProfile: ATProfile) {
|
private fun addNeutralTempBasal(from: Long, to: Long, tunedProfile: ATProfile) {
|
||||||
var previousStart = to
|
var previousStart = to
|
||||||
for (i in tempBasals.indices) {
|
for (i in tempBasals.indices) {
|
||||||
|
@ -180,6 +195,7 @@ open class AutotuneIob @Inject constructor(
|
||||||
|
|
||||||
// toSplittedTimestampTB will split all TBR across hours in different TBR with correct absolute value to be sure to have correct basal rate
|
// toSplittedTimestampTB will split all TBR across hours in different TBR with correct absolute value to be sure to have correct basal rate
|
||||||
// even if profile rate is not the same
|
// even if profile rate is not the same
|
||||||
|
@Synchronized
|
||||||
private fun toSplittedTimestampTB(tb: TemporaryBasal, tunedProfile: ATProfile) {
|
private fun toSplittedTimestampTB(tb: TemporaryBasal, tunedProfile: ATProfile) {
|
||||||
var splittedTimestamp = tb.timestamp
|
var splittedTimestamp = tb.timestamp
|
||||||
val cutInMilliSec = T.mins(60).msecs() //30 min to compare with oref0, 60 min to improve accuracy
|
val cutInMilliSec = T.mins(60).msecs() //30 min to compare with oref0, 60 min to improve accuracy
|
||||||
|
@ -295,7 +311,7 @@ open class AutotuneIob @Inject constructor(
|
||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Synchronized
|
||||||
fun glucoseToJSON(): String {
|
fun glucoseToJSON(): String {
|
||||||
val glucoseJson = JSONArray()
|
val glucoseJson = JSONArray()
|
||||||
for (bgreading in glucose)
|
for (bgreading in glucose)
|
||||||
|
@ -303,6 +319,7 @@ open class AutotuneIob @Inject constructor(
|
||||||
return glucoseJson.toString(2)
|
return glucoseJson.toString(2)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Synchronized
|
||||||
fun bolusesToJSON(): String {
|
fun bolusesToJSON(): String {
|
||||||
val bolusesJson = JSONArray()
|
val bolusesJson = JSONArray()
|
||||||
for (bolus in boluses)
|
for (bolus in boluses)
|
||||||
|
@ -310,6 +327,7 @@ open class AutotuneIob @Inject constructor(
|
||||||
return bolusesJson.toString(2)
|
return bolusesJson.toString(2)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Synchronized
|
||||||
fun nsHistoryToJSON(): String {
|
fun nsHistoryToJSON(): String {
|
||||||
val json = JSONArray()
|
val json = JSONArray()
|
||||||
for (t in nsTreatments) {
|
for (t in nsTreatments) {
|
||||||
|
|
Loading…
Reference in a new issue