ref: b96ea951adb4c6659f64668075b3e49eeb771c4d
app/src/main/java/ml/adamsprogs/bimba/models/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 |
package ml.adamsprogs.bimba.models import android.content.Context import android.content.SharedPreferences import com.google.gson.Gson import com.google.gson.JsonArray import com.google.gson.JsonObject import ml.adamsprogs.bimba.MessageReceiver import ml.adamsprogs.bimba.models.gtfs.AgencyAndId 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 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(AgencyAndId(it.asJsonObject["stop"].asString), null) val plates = HashSet<Plate.ID>() it.asJsonObject["plates"].asJsonArray.mapTo(plates) { Plate.ID(AgencyAndId(it.asJsonObject["line"].asString), AgencyAndId(it.asJsonObject["stop"].asString), it.asJsonObject["headsign"].asString) } stopSegment.plates = plates stopSegment } favourites[name] = Favourite(name, timetables) } } override fun iterator(): Iterator<Favourite> = favourites.values.iterator() fun has(name: String): Boolean = favourites.contains(name) fun add(name: String, timetables: HashSet<StopSegment>) { if (favourites[name] == null) { favourites[name] = Favourite(name, timetables) serialize() } } fun add(name: String, favourite: Favourite) { if (favourites[name] == null) { favourites[name] = favourite serialize() } } fun delete(name: String) { favourites.remove(name) serialize() } fun delete(name: String, plate: Plate.ID) { favourites[name]?.delete(plate) serialize() } 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.id) val plates = JsonArray() for (plate in timetable.plates ?: HashSet()) { val element = JsonObject() element.addProperty("stop", plate.stop.id) element.addProperty("line", plate.line.id) element.addProperty("headsign", plate.headsign) plates.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 detach(name: String, plate: Plate.ID, newName: String) { val plates = HashSet<Plate.ID>() plates.add(plate) val segments = HashSet<StopSegment>() segments.add(StopSegment(plate.stop, plates)) favourites[newName] = Favourite(newName, segments) serialize() delete(name, plate) } fun merge(names: List<String>) { if (names.size < 2) return val newFavourite = Favourite(names[0], HashSet()) for (name in names) { newFavourite.segments.addAll(favourites[name]!!.segments) favourites.remove(name) } favourites[names[0]] = newFavourite serialize() } fun rename(oldName: String, newName: String) { val favourite = favourites[oldName] ?: return favourite.rename(newName) favourites.remove(oldName) favourites[newName] = favourite serialize() } fun registerOnVm(receiver: MessageReceiver, context: Context) { favourites.values.forEach { it.registerOnVm(receiver, context) } } fun deregisterOnVm(receiver: MessageReceiver, context: Context) { favourites.values.forEach { it.deregisterOnVm(receiver, context) } } operator fun get(name: String): Favourite? { return favourites[name] } operator fun get(position: Int): Favourite? { return favourites.entries.sortedBy { it.key }[position].value } fun indexOf(name: String): Int { val favourite = favourites[name] return favourites.values.sortedBy { it.name }.indexOf(favourite) } val size get() = favourites.size } |