schedule-planner-0.1.0.2: src/SchedulePlanner/Calculator/Solver.hs
{-# LANGUAGE DeriveDataTypeable #-}
{-|
Module : $Header$
Description : Calculate schedules
Copyright : (c) Justus Adam, 2015
License : LGPL-3
Maintainer : development@justusadam.com
Stability : experimental
Portability : POSIX
This module provides functions for calculating possibilities for an ideal
schedule layout from weighted Lessons as well as providing functions for
converting them into readable/printable format.
-}
module SchedulePlanner.Calculator.Solver (
calcFromMap,
calcFromList,
mapToSubject,
totalWeight,
time,
Lesson (..),
Timeslot (..),
MappedSchedule,
MappedLessons
) where
import Control.Applicative (pure, (<*>))
import Data.Data (Data)
import Data.List as List (sortBy, take)
import qualified Data.Map as Map (Map, empty, foldl, fromList,
fromListWith, insert, keys, lookup,
map, null, toList)
import Data.Maybe (fromMaybe)
import qualified Data.Ord as Ord (comparing)
import Data.Typeable (Typeable)
-- |Base datastructure for representing lessons
data Lesson s = Lesson {
timeslot :: Int,
day :: Int,
weight :: Int,
subject :: s
} deriving (Show, Eq, Ord, Typeable, Data)
-- |type Alias for readability
-- maps lessons to their respective subject
type MappedLessons s = Map.Map s [Lesson s]
-- |type Alias for readability
-- (Slot, Day)
type Timeslot = (Int, Int)
-- |type Alias for readability
-- represents a schedule
type MappedSchedule s = Map.Map Timeslot (Lesson s)
-- |Convenience function extracing the (day, timeslot) 'Tuple' from a 'Lesson'
time :: Lesson a -> Timeslot
time = pure (,) <*> day <*> timeslot
-- |Convenience function to obtain the total weight of a particular Schedule
totalWeight :: MappedSchedule a -> Int
totalWeight = Map.foldl (+) 0 . Map.map weight
{-|
Map a List of 'Lesson's to their respective subjects
-}
mapToSubject :: Ord s => [Lesson s] -> Map.Map s [Lesson s]
mapToSubject = Map.fromListWith (++) . map (\x -> (subject x, [x]))
{-|
Same as 'calcFromMap' but operates on a List of 'Lesson's
-}
calcFromList :: Ord s => [Lesson s] -> Maybe [MappedSchedule s]
calcFromList = calcFromMap.mapToSubject
{-|
Main evaluation function
Transforms a map of weighted 'Lesson's of a particular subject into a list
of lightest schedules by branching the evaluation at avery point
where there is a timeslot collision
-}
calcFromMap :: Ord s => Map.Map s [Lesson s] -> Maybe [MappedSchedule s]
calcFromMap mappedLessons
| Map.null mappedLessons = Nothing
| otherwise = Map.lookup subjX sortedLessons >>=
(\(x : xs) ->
calc' x (Map.insert subjX xs sortedLessons) Map.empty minList
)
where
sortedLessons = Map.map (List.sortBy (Ord.comparing weight)) mappedLessons
(subjX : minList) = Map.keys sortedLessons
{-|
Helper function for 'calcFromMap'
represents a recusively called and forking calculation step
-}
calc' :: Ord s => Lesson s -> MappedLessons s -> MappedSchedule s -> [s] -> Maybe [MappedSchedule s]
calc' x lists hourMap minList =
case Map.lookup (time x) hourMap of
Nothing ->
case minList of
[] -> return [newMap]
(c : cs) -> Map.lookup c lists >>=
(\(l : ls) -> calc' l (Map.insert c ls lists) newMap cs)
Just old ->
return $ r1 ++ r2
where
r1 = fromMaybe [] $ reduceLists (subject x) lists hourMap minList
r2 = fromMaybe [] $ reduceLists (subject old) lists newMap minList
where
newMap = Map.insert (time x) x hourMap
reduceLists :: Ord s => s -> MappedLessons s -> MappedSchedule s -> [s] -> Maybe [MappedSchedule s]
reduceLists s lists schedules subjects = Map.lookup s lists >>=
(\l ->
case l of
[] -> Nothing
(c : cs) -> calc' c (Map.insert s cs lists) schedules subjects
)