Add stubs for Score and Streak

pull/498/head
Alinson S. Xavier 7 years ago
parent 5d1f5168ad
commit 6ac7ef7807

@ -0,0 +1,39 @@
/*
* Copyright (C) 2016-2019 Álinson Santos Xavier <isoron@gmail.com>
*
* This file is part of Loop Habit Tracker.
*
* Loop Habit Tracker is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version.
*
* Loop Habit Tracker is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.isoron.uhabits.models
import org.isoron.platform.time.*
/**
* A Score is a number which indicates how strong the habit is at a given date.
*
* Scores are computed by taking an exponential moving average of the values of
* the checkmarks in preceding days. For boolean habits, when computing the
* average, each checked day (whether the check was manual or automatic) has
* value as 1, while days without checkmarks have value 0.
*
* For numerical habits, each day that exceeded the target has value 1, while
* days which failed to exceed the target receive a partial value, based on the
* proportion that was completed. For example, if the target is 100 units and
* the user completed 70 units, then the value for that day is 0.7 when
* computing the average.
*/
data class Score(val date: LocalDate,
val value: Double)

@ -0,0 +1,38 @@
/*
* Copyright (C) 2016-2019 Álinson Santos Xavier <isoron@gmail.com>
*
* This file is part of Loop Habit Tracker.
*
* Loop Habit Tracker is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version.
*
* Loop Habit Tracker is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.isoron.uhabits.models
import org.isoron.platform.time.*
class ScoreList(private val frequency: Frequency,
private val checkmarkList: CheckmarkList) {
/**
* Returns a list of all scores, from the beginning of the habit history
* until the specified date.
*
* The interval is inclusive, and the list is sorted from newest to oldest.
* That is, the first element of the returned list corresponds to the date
* provided.
*/
fun getValuesUntil(date: LocalDate): List<Double> {
TODO()
}
}

@ -0,0 +1,34 @@
/*
* Copyright (C) 2016-2019 Álinson Santos Xavier <isoron@gmail.com>
*
* This file is part of Loop Habit Tracker.
*
* Loop Habit Tracker is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version.
*
* Loop Habit Tracker is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.isoron.uhabits.models
import org.isoron.platform.time.*
/**
* A streak is an uninterrupted sequence of days where the habit was performed.
*
* For daily boolean habits, the definition is straightforward: a streak is a
* sequence of days that have checkmarks. For non-daily habits, note
* that automatic checkmarks (the ones added by the app) can also keep the
* streak going. For numerical habits, a streak is a sequence of days where the
* user has consistently exceeded the target for the habit.
*/
data class Streak(val start: LocalDate,
val end: LocalDate)

@ -0,0 +1,34 @@
/*
* Copyright (C) 2016-2019 Álinson Santos Xavier <isoron@gmail.com>
*
* This file is part of Loop Habit Tracker.
*
* Loop Habit Tracker is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version.
*
* Loop Habit Tracker is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.isoron.uhabits.models
class StreakList(private val checkmarkList: CheckmarkList) {
/**
* Returns the longest streaks.
*
* The argument specifies the maximum number of streaks to find. The
* returned list is sorted by date (descending). That is, the first element
* corresponds to the most recent streak.
*/
fun getBest(limit: Int): List<Streak> {
TODO()
}
}
Loading…
Cancel
Save