/** * ProjectLaogai * * Copyright 2019-2020 * * This program 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. * * This program 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, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301, USA. * */ package org.mosad.seil0.projectlaogai.controller import org.mosad.seil0.projectlaogai.util.Lesson import org.mosad.seil0.projectlaogai.util.TimetableWeek /** * TODO this controller contains * * a list with all additional lessons * * the main course and additional info for timetables * * all concrete objects * * TODO add configurable week to addSubject() and removeSubject() */ class TimetableController { companion object { val timetable = ArrayList() val lessonMap = HashMap() // the key is courseName-subject-lessonID val subjectMap = HashMap>() // the key is courseName /** * add a subject to the subjectMap and all it's lessons * to the lessonMap * @param courseName course to which the subject belongs * @param subject the subjects name */ fun addSubject(courseName: String, subject: String) { // add subject if (subjectMap.containsKey(courseName)) { subjectMap[courseName]?.add(subject) } else { subjectMap[courseName] = arrayListOf(subject) } // add concrete lessons TCoRAPIController.getLessons(courseName, subject, 0).forEach {lesson -> //the courseName, subject and lessonID, separator: - val key = "$courseName-$subject-${lesson.lessonID}" lessonMap[key] = lesson // add lesson to the timetable val id = lesson.lessonID.split(".") if(id.size == 3) timetable[0].days[id[0].toInt()].timeslots[id[1].toInt()].add(lesson) } } /** * remove a subject from the subjectMap and all it's lessons * from the lessonMap * @param courseName course to which the subject belongs * @param subject the subjects name */ fun removeSubject(courseName: String, subject: String) { // remove subject subjectMap[courseName]?.remove(subject) // remove concrete lessons val iterator = lessonMap.iterator() while (iterator.hasNext()) { val it = iterator.next() if(it.key.contains("$courseName-$subject")) { // remove the lesson from the lessons list iterator.remove() // use iterator to remove, otherwise ConcurrentModificationException // remove the lesson from the timetable val id = it.value.lessonID.split(".") if(id.size == 3) timetable[0].days[id[0].toInt()].timeslots[id[1].toInt()].remove(it.value) } } } } }