ref: 7c62bb46c1b5597393d86720528d20fc6ef4c3dc
app/src/main/java/ml/adamsprogs/bimba/collections/FavouriteStorage.kt
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
package ml.adamsprogs.bimba.collections import android.content.* import com.google.gson.* import ml.adamsprogs.bimba.* import ml.adamsprogs.bimba.models.* import java.util.Calendar class FavouriteStorage private constructor(context: Context) : Iterable<Favourite> { companion object { private var favouriteStorage: FavouriteStorage? = null fun getFavouriteStorage(context: Context? = null): FavouriteStorage { return if (favouriteStorage == null) { if (context == null) throw IllegalArgumentException("requested new storage appContext not given") else { favouriteStorage = FavouriteStorage(context) favouriteStorage as FavouriteStorage } } else favouriteStorage as FavouriteStorage } } val favourites = HashMap<String, Favourite>() private val positionIndex = IndexableTreeSet<String>() private val preferences: SharedPreferences = context.getSharedPreferences("ml.adamsprogs.bimba.prefs", Context.MODE_PRIVATE) init { val favouritesString = preferences.getString("favourites", "{}") val favouritesMap = Gson().fromJson(favouritesString, JsonObject::class.java) for ((name, jsonTimetables) in favouritesMap.entrySet()) { val timetables = HashSet<StopSegment>() jsonTimetables.asJsonArray.mapTo(timetables) { val stopSegment = StopSegment(it.asJsonObject["stop"].asString, null) val plates = it.asJsonObject["plates"].let { jsonPlates -> if (jsonPlates == null || jsonPlates.isJsonNull) null else { HashSet<Plate.ID>().apply { jsonPlates.asJsonArray.map { Plate.ID(it.asJsonObject["line"].asString, it.asJsonObject["stop"].asString, it.asJsonObject["headsign"].asString) } } } } stopSegment.plates = plates stopSegment } favourites[name] = Favourite(name, timetables, context) positionIndex.add(name) } } override fun iterator(): Iterator<Favourite> = favourites.values.iterator() fun has(name: String): Boolean = favourites.contains(name) fun add(name: String, timetables: HashSet<StopSegment>, context: Context) { if (favourites[name] == null) { favourites[name] = Favourite(name, timetables, context) addIndex(name) serialize() } } fun add(name: String, favourite: Favourite) { if (favourites[name] == null) { favourites[name] = favourite addIndex(name) serialize() } } private fun addIndex(name: String) { positionIndex.add(name) } fun delete(name: String) { favourites.remove(name) positionIndex.remove(name) serialize() } fun delete(name: String, plate: Plate.ID): Boolean { return favourites[name]?.delete(plate).let { serialize() it } ?: false } private fun serialize() { val rootObject = JsonObject() for ((name, favourite) in favourites) { val timetables = JsonArray() for (timetable in favourite.segments) { val segment = JsonObject() segment.addProperty("stop", timetable.stop) val plates = if (timetable.plates == null) JsonNull.INSTANCE else JsonArray().apply { for (plate in timetable.plates ?: HashSet()) { val element = JsonObject() element.addProperty("stop", plate.stop) element.addProperty("line", plate.line) element.addProperty("headsign", plate.headsign) add(element) } } segment.add("plates", plates) timetables.add(segment) } rootObject.add(name, timetables) } val favouritesString = Gson().toJson(rootObject) val editor = preferences.edit() editor.putString("favourites", favouritesString) editor.apply() } fun merge(names: List<String>, context: Context) { if (names.size < 2) return val newCache = HashMap<String, ArrayList<Departure>>() names.forEach { favourites[it]!!.fullTimetable().forEach { if (newCache[it.key] == null) newCache[it.key] = ArrayList() newCache[it.key]!!.addAll(it.value) } } val now = Calendar.getInstance().secondsAfterMidnight() newCache.forEach { it.value.sortBy { it.timeTill(now) } } val newFavourite = Favourite(names[0], HashSet(), newCache, context) for (name in names) { newFavourite.segments.addAll(favourites[name]!!.segments) favourites.remove(name) positionIndex.remove(name) } favourites[names[0]] = newFavourite addIndex(names[0]) serialize() } fun rename(oldName: String, newName: String) { val favourite = favourites[oldName] ?: return favourite.rename(newName) favourites.remove(oldName) positionIndex.remove(oldName) favourites[newName] = favourite addIndex(newName) serialize() } operator fun get(name: String): Favourite? { return favourites[name] } operator fun get(position: Int): Favourite? { return favourites[positionIndex[position]] } fun indexOf(name: String): Int { return positionIndex.indexOf(name) } val size get() = favourites.size } |