mirror of
https://github.com/iSoron/uhabits.git
synced 2025-12-06 09:08:52 -06:00
Remove MemoryEntryList
This commit is contained in:
@@ -31,19 +31,22 @@ import java.util.*;
|
||||
import javax.annotation.concurrent.*;
|
||||
|
||||
import static org.isoron.uhabits.core.models.Entry.*;
|
||||
import static org.isoron.uhabits.core.utils.StringUtils.defaultToStringStyle;
|
||||
import static org.isoron.uhabits.core.utils.StringUtils.*;
|
||||
|
||||
/**
|
||||
* The collection of {@link Entry}s belonging to a habit.
|
||||
*/
|
||||
@ThreadSafe
|
||||
public abstract class EntryList
|
||||
public class EntryList
|
||||
{
|
||||
protected final Habit habit;
|
||||
|
||||
protected ArrayList<Entry> list;
|
||||
|
||||
public EntryList(Habit habit)
|
||||
{
|
||||
this.habit = habit;
|
||||
this.list = new ArrayList<>();
|
||||
}
|
||||
|
||||
@NonNull
|
||||
@@ -151,7 +154,13 @@ public abstract class EntryList
|
||||
}
|
||||
}
|
||||
|
||||
public abstract void add(List<Entry> entries);
|
||||
public void add(List<Entry> entries)
|
||||
{
|
||||
list.addAll(entries);
|
||||
Collections.sort(list,
|
||||
(c1, c2) -> c2.getTimestamp().compare(c1.getTimestamp()));
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the values for all the checkmarks, since the oldest repetition of
|
||||
@@ -185,13 +194,39 @@ public abstract class EntryList
|
||||
* That is, the first checkmark corresponds to the newest timestamp, and the
|
||||
* last checkmark corresponds to the oldest timestamp.
|
||||
*
|
||||
* @param fromTimestamp timestamp of the beginning of the interval.
|
||||
* @param toTimestamp timestamp of the end of the interval.
|
||||
* @param from timestamp of the beginning of the interval.
|
||||
* @param to timestamp of the end of the interval.
|
||||
* @return the list of checkmarks within the interval.
|
||||
*/
|
||||
@NonNull
|
||||
public abstract List<Entry> getByInterval(Timestamp fromTimestamp,
|
||||
Timestamp toTimestamp);
|
||||
public List<Entry> getByInterval(Timestamp from,
|
||||
Timestamp to)
|
||||
{
|
||||
compute();
|
||||
|
||||
Timestamp newestComputed = new Timestamp(0);
|
||||
Timestamp oldestComputed = new Timestamp(0).plus(1000000);
|
||||
|
||||
Entry newest = getNewestComputed();
|
||||
Entry oldest = getOldestComputed();
|
||||
if (newest != null) newestComputed = newest.getTimestamp();
|
||||
if (oldest != null) oldestComputed = oldest.getTimestamp();
|
||||
|
||||
List<Entry> filtered = new ArrayList<>(
|
||||
Math.max(0, oldestComputed.daysUntil(newestComputed) + 1));
|
||||
|
||||
for (int i = 0; i <= from.daysUntil(to); i++)
|
||||
{
|
||||
Timestamp t = to.minus(i);
|
||||
if (t.isNewerThan(newestComputed) || t.isOlderThan(oldestComputed))
|
||||
filtered.add(new Entry(t, Entry.UNKNOWN));
|
||||
else
|
||||
filtered.add(list.get(t.daysUntil(newestComputed)));
|
||||
}
|
||||
|
||||
return filtered;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the checkmark for today.
|
||||
@@ -281,7 +316,10 @@ public abstract class EntryList
|
||||
*
|
||||
* @param timestamp the timestamp
|
||||
*/
|
||||
public abstract void invalidateNewerThan(Timestamp timestamp);
|
||||
public void invalidateNewerThan(Timestamp timestamp)
|
||||
{
|
||||
list.clear();
|
||||
}
|
||||
|
||||
/**
|
||||
* Writes the entire list of checkmarks to the given writer, in CSV format.
|
||||
@@ -337,21 +375,19 @@ public abstract class EntryList
|
||||
else computeYesNo(reps);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns newest checkmark that has already been computed.
|
||||
*
|
||||
* @return newest checkmark already computed
|
||||
*/
|
||||
@Nullable
|
||||
protected abstract Entry getNewestComputed();
|
||||
protected Entry getNewestComputed()
|
||||
{
|
||||
if (list.isEmpty()) return null;
|
||||
return list.get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns oldest checkmark that has already been computed.
|
||||
*
|
||||
* @return oldest checkmark already computed
|
||||
*/
|
||||
@Nullable
|
||||
protected abstract Entry getOldestComputed();
|
||||
protected Entry getOldestComputed()
|
||||
{
|
||||
if (list.isEmpty()) return null;
|
||||
return list.get(list.size() - 1);
|
||||
}
|
||||
|
||||
private void computeNumerical(Entry[] original)
|
||||
{
|
||||
@@ -382,7 +418,8 @@ public abstract class EntryList
|
||||
add(buildEntriesFromInterval(original, intervals));
|
||||
}
|
||||
|
||||
public List<Entry> getAll() {
|
||||
public List<Entry> getAll()
|
||||
{
|
||||
Entry oldest = habit.getOriginalEntries().getOldest();
|
||||
if (oldest == null) return new ArrayList<>();
|
||||
return getByInterval(oldest.getTimestamp(), DateUtils.getTodayWithOffset());
|
||||
@@ -403,7 +440,8 @@ public abstract class EntryList
|
||||
this.end = end;
|
||||
}
|
||||
|
||||
public int length() {
|
||||
public int length()
|
||||
{
|
||||
return begin.daysUntil(end) + 1;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,101 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2016 Á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.core.models.memory;
|
||||
|
||||
import androidx.annotation.*;
|
||||
|
||||
import org.isoron.uhabits.core.models.*;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
/**
|
||||
* In-memory implementation of {@link EntryList}.
|
||||
*/
|
||||
public class MemoryEntryList extends EntryList
|
||||
{
|
||||
ArrayList<Entry> list;
|
||||
|
||||
public MemoryEntryList(Habit habit)
|
||||
{
|
||||
super(habit);
|
||||
list = new ArrayList<>();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void add(List<Entry> entries)
|
||||
{
|
||||
list.addAll(entries);
|
||||
Collections.sort(list,
|
||||
(c1, c2) -> c2.getTimestamp().compare(c1.getTimestamp()));
|
||||
}
|
||||
|
||||
@NonNull
|
||||
@Override
|
||||
public synchronized List<Entry> getByInterval(Timestamp from,
|
||||
Timestamp to)
|
||||
{
|
||||
compute();
|
||||
|
||||
Timestamp newestComputed = new Timestamp(0);
|
||||
Timestamp oldestComputed = new Timestamp(0).plus(1000000);
|
||||
|
||||
Entry newest = getNewestComputed();
|
||||
Entry oldest = getOldestComputed();
|
||||
if(newest != null) newestComputed = newest.getTimestamp();
|
||||
if(oldest != null) oldestComputed = oldest.getTimestamp();
|
||||
|
||||
List<Entry> filtered = new ArrayList<>(
|
||||
Math.max(0, oldestComputed.daysUntil(newestComputed) + 1));
|
||||
|
||||
for(int i = 0; i <= from.daysUntil(to); i++)
|
||||
{
|
||||
Timestamp t = to.minus(i);
|
||||
if(t.isNewerThan(newestComputed) || t.isOlderThan(oldestComputed))
|
||||
filtered.add(new Entry(t, Entry.UNKNOWN));
|
||||
else
|
||||
filtered.add(list.get(t.daysUntil(newestComputed)));
|
||||
}
|
||||
|
||||
return filtered;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void invalidateNewerThan(Timestamp timestamp)
|
||||
{
|
||||
list.clear();
|
||||
}
|
||||
|
||||
@Override
|
||||
@Nullable
|
||||
protected Entry getOldestComputed()
|
||||
{
|
||||
if(list.isEmpty()) return null;
|
||||
return list.get(list.size()-1);
|
||||
}
|
||||
|
||||
@Override
|
||||
@Nullable
|
||||
protected Entry getNewestComputed()
|
||||
{
|
||||
if(list.isEmpty()) return null;
|
||||
return list.get(0);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -28,7 +28,7 @@ public class MemoryModelFactory implements ModelFactory
|
||||
@Override
|
||||
public EntryList buildEntryList(Habit habit)
|
||||
{
|
||||
return new MemoryEntryList(habit);
|
||||
return new EntryList(habit);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -44,7 +44,7 @@ public class SQLModelFactory implements ModelFactory
|
||||
@Override
|
||||
public EntryList buildEntryList(Habit habit)
|
||||
{
|
||||
return new MemoryEntryList(habit);
|
||||
return new EntryList(habit);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user