-- |
-- Module     : Simulation.Aivika.Trans.Results.Locale.Types
-- Copyright  : Copyright (c) 2009-2017, David Sorokin <david.sorokin@gmail.com>
-- License    : BSD3
-- Maintainer : David Sorokin <david.sorokin@gmail.com>
-- Stability  : experimental
-- Tested with: GHC 8.0.1
--
-- The module defines basic definitions for localisation.
--
module Simulation.Aivika.Trans.Results.Locale.Types
       (-- * Basic Types
        ResultLocale,
        ResultLocalisation(..),
        ResultName,
        ResultDescription,
        UserDefinedResult(..),
        LocalisedResult(..),
        -- * Locale Codes
        russianResultLocale,
        englishResultLocale,
        -- * Localisations
        pathResultLocalisation,
        localisePathResultDescription,
        localisePathResultTitle,
        lookupResultLocalisation,
        -- * Unique Identifiers
        ResultId(..),
        -- * Utilities
        resultNameToTitle) where

import Data.Char
import Data.List
import qualified Data.Map as M

import Simulation.Aivika.Trans.Dynamics
import Simulation.Aivika.Trans.Statistics
import Simulation.Aivika.Trans.Statistics.Accumulator
import qualified Simulation.Aivika.Trans.Queue as Q
import qualified Simulation.Aivika.Trans.Queue.Infinite as IQ
import Simulation.Aivika.Trans.Arrival
import Simulation.Aivika.Trans.Server
import Simulation.Aivika.Trans.Activity
import Simulation.Aivika.Trans.Resource
import Simulation.Aivika.Trans.Operation

-- | A locale to output the simulation results.
--
-- Examples are: @\"ru\", @\"en\" etc.
type ResultLocale = String

-- | It localises the description and title of simulation results.
data ResultLocalisation =
  ResultLocalisation { ResultLocalisation -> ResultId -> ResultDescription
localiseResultDescription :: ResultId -> ResultDescription,
                       -- ^ Localise the description.
                       ResultLocalisation -> ResultId -> ResultDescription
localiseResultTitle :: ResultId -> ResultDescription
                       -- ^ Localise the title.
                     }

-- | It describes the user-defined simulation result.
data UserDefinedResult =
  UserDefinedResult { UserDefinedResult -> ResultDescription
userDefinedResultName :: ResultName,
                      -- ^ The user-defined result name.
                      UserDefinedResult -> ResultDescription
userDefinedResultDescription :: ResultDescription,
                      -- ^ The user-defined result description.
                      UserDefinedResult -> ResultDescription
userDefinedResultTitle :: ResultDescription
                      -- ^ The user-defined result title.
                    } deriving (UserDefinedResult -> UserDefinedResult -> Bool
(UserDefinedResult -> UserDefinedResult -> Bool)
-> (UserDefinedResult -> UserDefinedResult -> Bool)
-> Eq UserDefinedResult
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UserDefinedResult -> UserDefinedResult -> Bool
$c/= :: UserDefinedResult -> UserDefinedResult -> Bool
== :: UserDefinedResult -> UserDefinedResult -> Bool
$c== :: UserDefinedResult -> UserDefinedResult -> Bool
Eq, Eq UserDefinedResult
Eq UserDefinedResult
-> (UserDefinedResult -> UserDefinedResult -> Ordering)
-> (UserDefinedResult -> UserDefinedResult -> Bool)
-> (UserDefinedResult -> UserDefinedResult -> Bool)
-> (UserDefinedResult -> UserDefinedResult -> Bool)
-> (UserDefinedResult -> UserDefinedResult -> Bool)
-> (UserDefinedResult -> UserDefinedResult -> UserDefinedResult)
-> (UserDefinedResult -> UserDefinedResult -> UserDefinedResult)
-> Ord UserDefinedResult
UserDefinedResult -> UserDefinedResult -> Bool
UserDefinedResult -> UserDefinedResult -> Ordering
UserDefinedResult -> UserDefinedResult -> UserDefinedResult
forall a.
Eq a
-> (a -> a -> Ordering)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> a)
-> (a -> a -> a)
-> Ord a
min :: UserDefinedResult -> UserDefinedResult -> UserDefinedResult
$cmin :: UserDefinedResult -> UserDefinedResult -> UserDefinedResult
max :: UserDefinedResult -> UserDefinedResult -> UserDefinedResult
$cmax :: UserDefinedResult -> UserDefinedResult -> UserDefinedResult
>= :: UserDefinedResult -> UserDefinedResult -> Bool
$c>= :: UserDefinedResult -> UserDefinedResult -> Bool
> :: UserDefinedResult -> UserDefinedResult -> Bool
$c> :: UserDefinedResult -> UserDefinedResult -> Bool
<= :: UserDefinedResult -> UserDefinedResult -> Bool
$c<= :: UserDefinedResult -> UserDefinedResult -> Bool
< :: UserDefinedResult -> UserDefinedResult -> Bool
$c< :: UserDefinedResult -> UserDefinedResult -> Bool
compare :: UserDefinedResult -> UserDefinedResult -> Ordering
$ccompare :: UserDefinedResult -> UserDefinedResult -> Ordering
$cp1Ord :: Eq UserDefinedResult
Ord, Int -> UserDefinedResult -> ShowS
[UserDefinedResult] -> ShowS
UserDefinedResult -> ResultDescription
(Int -> UserDefinedResult -> ShowS)
-> (UserDefinedResult -> ResultDescription)
-> ([UserDefinedResult] -> ShowS)
-> Show UserDefinedResult
forall a.
(Int -> a -> ShowS)
-> (a -> ResultDescription) -> ([a] -> ShowS) -> Show a
showList :: [UserDefinedResult] -> ShowS
$cshowList :: [UserDefinedResult] -> ShowS
show :: UserDefinedResult -> ResultDescription
$cshow :: UserDefinedResult -> ResultDescription
showsPrec :: Int -> UserDefinedResult -> ShowS
$cshowsPrec :: Int -> UserDefinedResult -> ShowS
Show)

-- | This is a localisation of the specified simulation result.
data LocalisedResult =
  LocalisedResult { LocalisedResult -> Map ResultDescription ResultDescription
localisedResultDescriptions :: M.Map ResultLocale ResultDescription,
                    -- ^ The localised descriptions.
                    LocalisedResult -> Map ResultDescription ResultDescription
localisedResultTitles :: M.Map ResultLocale ResultDescription
                    -- ^ The localised titles.
                  } deriving (LocalisedResult -> LocalisedResult -> Bool
(LocalisedResult -> LocalisedResult -> Bool)
-> (LocalisedResult -> LocalisedResult -> Bool)
-> Eq LocalisedResult
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: LocalisedResult -> LocalisedResult -> Bool
$c/= :: LocalisedResult -> LocalisedResult -> Bool
== :: LocalisedResult -> LocalisedResult -> Bool
$c== :: LocalisedResult -> LocalisedResult -> Bool
Eq, Eq LocalisedResult
Eq LocalisedResult
-> (LocalisedResult -> LocalisedResult -> Ordering)
-> (LocalisedResult -> LocalisedResult -> Bool)
-> (LocalisedResult -> LocalisedResult -> Bool)
-> (LocalisedResult -> LocalisedResult -> Bool)
-> (LocalisedResult -> LocalisedResult -> Bool)
-> (LocalisedResult -> LocalisedResult -> LocalisedResult)
-> (LocalisedResult -> LocalisedResult -> LocalisedResult)
-> Ord LocalisedResult
LocalisedResult -> LocalisedResult -> Bool
LocalisedResult -> LocalisedResult -> Ordering
LocalisedResult -> LocalisedResult -> LocalisedResult
forall a.
Eq a
-> (a -> a -> Ordering)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> a)
-> (a -> a -> a)
-> Ord a
min :: LocalisedResult -> LocalisedResult -> LocalisedResult
$cmin :: LocalisedResult -> LocalisedResult -> LocalisedResult
max :: LocalisedResult -> LocalisedResult -> LocalisedResult
$cmax :: LocalisedResult -> LocalisedResult -> LocalisedResult
>= :: LocalisedResult -> LocalisedResult -> Bool
$c>= :: LocalisedResult -> LocalisedResult -> Bool
> :: LocalisedResult -> LocalisedResult -> Bool
$c> :: LocalisedResult -> LocalisedResult -> Bool
<= :: LocalisedResult -> LocalisedResult -> Bool
$c<= :: LocalisedResult -> LocalisedResult -> Bool
< :: LocalisedResult -> LocalisedResult -> Bool
$c< :: LocalisedResult -> LocalisedResult -> Bool
compare :: LocalisedResult -> LocalisedResult -> Ordering
$ccompare :: LocalisedResult -> LocalisedResult -> Ordering
$cp1Ord :: Eq LocalisedResult
Ord, Int -> LocalisedResult -> ShowS
[LocalisedResult] -> ShowS
LocalisedResult -> ResultDescription
(Int -> LocalisedResult -> ShowS)
-> (LocalisedResult -> ResultDescription)
-> ([LocalisedResult] -> ShowS)
-> Show LocalisedResult
forall a.
(Int -> a -> ShowS)
-> (a -> ResultDescription) -> ([a] -> ShowS) -> Show a
showList :: [LocalisedResult] -> ShowS
$cshowList :: [LocalisedResult] -> ShowS
show :: LocalisedResult -> ResultDescription
$cshow :: LocalisedResult -> ResultDescription
showsPrec :: Int -> LocalisedResult -> ShowS
$cshowsPrec :: Int -> LocalisedResult -> ShowS
Show)

-- | A name used for indentifying the results when generating output.
type ResultName = String

-- | A description used for describing the results when generating output.
type ResultDescription = String

-- | The result entity identifier.
data ResultId = TimeId
                -- ^ A 'time' computation.
              | VectorId
                -- ^ Describes a vector.
              | VectorItemId String
                -- ^ Describes a vector item with the specified subscript.
              | SamplingStatsId
                -- ^ A 'SamplingStats' value.
              | SamplingStatsCountId
                -- ^ Property 'samplingStatsCount'.
              | SamplingStatsMinId
                -- ^ Property 'samplingStatsMin'.
              | SamplingStatsMaxId
                -- ^ Property 'samplingStatsMax'.
              | SamplingStatsMeanId
                -- ^ Property 'samplingStatsMean'.
              | SamplingStatsMean2Id
                -- ^ Property 'samplingStatsMean2'.
              | SamplingStatsVarianceId
                -- ^ Property 'samplingStatsVariance'.
              | SamplingStatsDeviationId
                -- ^ Property 'samplingStatsDeviation'.
              | SamplingCounterId
                -- ^ A 'SamplingCounter' value.
              | SamplingCounterValueId
                -- ^ Property 'samplingCounterValue'.
              | SamplingCounterStatsId
                -- ^ Property 'samplingCounterStats'.
              | TimingStatsId
                -- ^ A 'TimingStats' value.
              | TimingStatsCountId
                -- ^ Property 'timingStatsCount'.
              | TimingStatsMinId
                -- ^ Property 'timingStatsMin'.
              | TimingStatsMaxId
                -- ^ Property 'timingStatsMax'.
              | TimingStatsMeanId
                -- ^ Property 'timingStatsMean'.
              | TimingStatsVarianceId
                -- ^ Property 'timingStatsVariance'.
              | TimingStatsDeviationId
                -- ^ Property 'timingStatsDeviation'.
              | TimingStatsMinTimeId
                -- ^ Property 'timingStatsMinTime'.
              | TimingStatsMaxTimeId
                -- ^ Property 'timingStatsMaxTime'.
              | TimingStatsStartTimeId
                -- ^ Property 'timingStatsStartTime'.
              | TimingStatsLastTimeId
                -- ^ Property 'timingStatsLastTime'.
              | TimingStatsSumId
                -- ^ Property 'timingStatsSum'.
              | TimingStatsSum2Id
                -- ^ Property 'timingStatsSum2'.
              | TimingCounterId
                -- ^ A 'TimingCounter' value.
              | TimingCounterValueId
                -- ^ Property 'timingCounterValue'.
              | TimingCounterStatsId
                -- ^ Property 'timingCounterStats'.
              | FiniteQueueId
                -- ^ A finite 'Q.Queue'.
              | InfiniteQueueId
                -- ^ An infinite 'IQ.Queue'.
              | EnqueueStrategyId
                -- ^ Property 'Q.enqueueStrategy'.
              | EnqueueStoringStrategyId
                -- ^ Property 'Q.enqueueStoringStrategy'.
              | DequeueStrategyId
                -- ^ Property 'Q.dequeueStrategy'.
              | QueueNullId
                -- ^ Property 'Q.queueNull'.
              | QueueFullId
                -- ^ Property 'Q.queueFull'.
              | QueueMaxCountId
                -- ^ Property 'Q.queueMaxCount'.
              | QueueCountId
                -- ^ Property 'Q.queueCount'.
              | QueueCountStatsId
                -- ^ Property 'Q.queueCountStats'.
              | EnqueueCountId
                -- ^ Property 'Q.enqueueCount'.
              | EnqueueLostCountId
                -- ^ Property 'Q.enqueueLostCount'.
              | EnqueueStoreCountId
                -- ^ Property 'Q.enqueueStoreCount'.
              | DequeueCountId
                -- ^ Property 'Q.dequeueCount'.
              | DequeueExtractCountId
                -- ^ Property 'Q.dequeueExtractCount'.
              | QueueLoadFactorId
                -- ^ Property 'Q.queueLoadFactor'.
              | EnqueueRateId
                -- ^ Property 'Q.enqueueRate'.
              | EnqueueStoreRateId
                -- ^ Property 'Q.enqueueStoreRate'.
              | DequeueRateId
                -- ^ Property 'Q.dequeueRate'.
              | DequeueExtractRateId
                -- ^ Property 'Q.dequeueExtractRate'.
              | QueueWaitTimeId
                -- ^ Property 'Q.queueWaitTime'.
              | QueueTotalWaitTimeId
                -- ^ Property 'Q.queueTotalWaitTime'.
              | EnqueueWaitTimeId
                -- ^ Property 'Q.enqueueWaitTime'.
              | DequeueWaitTimeId
                -- ^ Property 'Q.dequeueWaitTime'.
              | QueueRateId
                -- ^ Property 'Q.queueRate'.
              | ArrivalTimerId
                -- ^ An 'ArrivalTimer'.
              | ArrivalProcessingTimeId
                -- ^ Property 'arrivalProcessingTime'.
              | ServerId
                -- ^ Represents a 'Server'.
              | ServerInitStateId
                -- ^ Property 'serverInitState'.
              | ServerStateId
                -- ^ Property 'serverState'.
              | ServerTotalInputWaitTimeId
                -- ^ Property 'serverTotalInputWaitTime'.
              | ServerTotalProcessingTimeId
                -- ^ Property 'serverTotalProcessingTime'.
              | ServerTotalOutputWaitTimeId
                -- ^ Property 'serverTotalOutputWaitTime'.
              | ServerTotalPreemptionTimeId
                -- ^ Property 'serverTotalPreemptionTime'.
              | ServerInputWaitTimeId
                -- ^ Property 'serverInputWaitTime'.
              | ServerProcessingTimeId
                -- ^ Property 'serverProcessingTime'.
              | ServerOutputWaitTimeId
                -- ^ Property 'serverOutputWaitTime'.
              | ServerPreemptionTimeId
                -- ^ Property 'serverPreemptionTime'.
              | ServerInputWaitFactorId
                -- ^ Property 'serverInputWaitFactor'.
              | ServerProcessingFactorId
                -- ^ Property 'serverProcessingFactor'.
              | ServerOutputWaitFactorId
                -- ^ Property 'serverOutputWaitFactor'.
              | ServerPreemptionFactorId
                -- ^ Property 'serverPreemptionFactor'.
              | ActivityId
                -- ^ Represents an 'Activity'.
              | ActivityInitStateId
                -- ^ Property 'activityInitState'.
              | ActivityStateId
                -- ^ Property 'activityState'.
              | ActivityTotalUtilisationTimeId
                -- ^ Property 'activityTotalUtilisationTime'.
              | ActivityTotalIdleTimeId
                -- ^ Property 'activityTotalIdleTime'.
              | ActivityTotalPreemptionTimeId
                -- ^ Property 'activityTotalPreemptionTime'.
              | ActivityUtilisationTimeId
                -- ^ Property 'activityUtilisationTime'.
              | ActivityIdleTimeId
                -- ^ Property 'activityIdleTime'.
              | ActivityPreemptionTimeId
                -- ^ Property 'activityPreemptionTime'.
              | ActivityUtilisationFactorId
                -- ^ Property 'activityUtilisationFactor'.
              | ActivityIdleFactorId
                -- ^ Property 'activityIdleFactor'.
              | ActivityPreemptionFactorId
                -- ^ Property 'activityPreemptionFactor'.
              | ResourceId
                -- ^ Represents a 'Resource'.
              | ResourceCountId
                -- ^ Property 'resourceCount'.
              | ResourceCountStatsId
                -- ^ Property 'resourceCountStats'.
              | ResourceUtilisationCountId
                -- ^ Property 'resourceUtilisationCount'.
              | ResourceUtilisationCountStatsId
                -- ^ Property 'resourceUtilisationCountStats'.
              | ResourceQueueCountId
                -- ^ Property 'resourceQueueCount'.
              | ResourceQueueCountStatsId
                -- ^ Property 'resourceQueueCountStats'.
              | ResourceTotalWaitTimeId
                -- ^ Property 'resourceTotalWaitTime'.
              | ResourceWaitTimeId
                -- ^ Property 'resourceWaitTime'.
              | OperationId
                -- ^ Represents an 'Operation'.
              | OperationTotalUtilisationTimeId
                -- ^ Property 'operationTotalUtilisationTime'.
              | OperationTotalPreemptionTimeId
                -- ^ Property 'operationTotalPreemptionTime'.
              | OperationUtilisationTimeId
                -- ^ Property 'operationUtilisationTime'.
              | OperationPreemptionTimeId
                -- ^ Property 'operationPreemptionTime'.
              | OperationUtilisationFactorId
                -- ^ Property 'operationUtilisationFactor'.
              | OperationPreemptionFactorId
                -- ^ Property 'operationPreemptionFactor'.
              | UserDefinedResultId UserDefinedResult
                -- ^ An user defined description.
              | LocalisedResultId LocalisedResult
                -- ^ A localised property or object name.
              deriving (ResultId -> ResultId -> Bool
(ResultId -> ResultId -> Bool)
-> (ResultId -> ResultId -> Bool) -> Eq ResultId
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ResultId -> ResultId -> Bool
$c/= :: ResultId -> ResultId -> Bool
== :: ResultId -> ResultId -> Bool
$c== :: ResultId -> ResultId -> Bool
Eq, Eq ResultId
Eq ResultId
-> (ResultId -> ResultId -> Ordering)
-> (ResultId -> ResultId -> Bool)
-> (ResultId -> ResultId -> Bool)
-> (ResultId -> ResultId -> Bool)
-> (ResultId -> ResultId -> Bool)
-> (ResultId -> ResultId -> ResultId)
-> (ResultId -> ResultId -> ResultId)
-> Ord ResultId
ResultId -> ResultId -> Bool
ResultId -> ResultId -> Ordering
ResultId -> ResultId -> ResultId
forall a.
Eq a
-> (a -> a -> Ordering)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> a)
-> (a -> a -> a)
-> Ord a
min :: ResultId -> ResultId -> ResultId
$cmin :: ResultId -> ResultId -> ResultId
max :: ResultId -> ResultId -> ResultId
$cmax :: ResultId -> ResultId -> ResultId
>= :: ResultId -> ResultId -> Bool
$c>= :: ResultId -> ResultId -> Bool
> :: ResultId -> ResultId -> Bool
$c> :: ResultId -> ResultId -> Bool
<= :: ResultId -> ResultId -> Bool
$c<= :: ResultId -> ResultId -> Bool
< :: ResultId -> ResultId -> Bool
$c< :: ResultId -> ResultId -> Bool
compare :: ResultId -> ResultId -> Ordering
$ccompare :: ResultId -> ResultId -> Ordering
$cp1Ord :: Eq ResultId
Ord, Int -> ResultId -> ShowS
[ResultId] -> ShowS
ResultId -> ResultDescription
(Int -> ResultId -> ShowS)
-> (ResultId -> ResultDescription)
-> ([ResultId] -> ShowS)
-> Show ResultId
forall a.
(Int -> a -> ShowS)
-> (a -> ResultDescription) -> ([a] -> ShowS) -> Show a
showList :: [ResultId] -> ShowS
$cshowList :: [ResultId] -> ShowS
show :: ResultId -> ResultDescription
$cshow :: ResultId -> ResultDescription
showsPrec :: Int -> ResultId -> ShowS
$cshowsPrec :: Int -> ResultId -> ShowS
Show)

-- | The Russian locale.
russianResultLocale :: ResultLocale
russianResultLocale :: ResultDescription
russianResultLocale = ResultDescription
"ru"

-- | The English locale.
englishResultLocale :: ResultLocale
englishResultLocale :: ResultDescription
englishResultLocale = ResultDescription
"en"

-- | Lookup a localisation by the specified locale.
lookupResultLocalisation :: ResultLocale -> M.Map ResultLocale ResultDescription -> ResultDescription
lookupResultLocalisation :: ResultDescription
-> Map ResultDescription ResultDescription -> ResultDescription
lookupResultLocalisation ResultDescription
loc Map ResultDescription ResultDescription
m =
  case ResultDescription
-> Map ResultDescription ResultDescription
-> Maybe ResultDescription
forall k a. Ord k => k -> Map k a -> Maybe a
M.lookup ResultDescription
loc Map ResultDescription ResultDescription
m of
    Just ResultDescription
x  -> ResultDescription
x
    Maybe ResultDescription
Nothing ->
      case ResultDescription
-> Map ResultDescription ResultDescription
-> Maybe ResultDescription
forall k a. Ord k => k -> Map k a -> Maybe a
M.lookup ResultDescription
russianResultLocale Map ResultDescription ResultDescription
m of
        Just ResultDescription
x  -> ResultDescription
x
        Maybe ResultDescription
Nothing ->
          case ResultDescription
-> Map ResultDescription ResultDescription
-> Maybe ResultDescription
forall k a. Ord k => k -> Map k a -> Maybe a
M.lookup ResultDescription
englishResultLocale Map ResultDescription ResultDescription
m of
            Just ResultDescription
x  -> ResultDescription
x
            Maybe ResultDescription
Nothing -> ResultDescription
""

-- | Return the path result localisation.
pathResultLocalisation :: (ResultId -> ResultDescription) -> [ResultId] -> ResultDescription
pathResultLocalisation :: (ResultId -> ResultDescription) -> [ResultId] -> ResultDescription
pathResultLocalisation ResultId -> ResultDescription
loc [ResultId]
is = [ResultId] -> [ShowS] -> ResultDescription
loop [ResultId]
is []
  where loop :: [ResultId] -> [ShowS] -> ResultDescription
loop [] [ShowS]
acc                      = (ShowS -> ShowS)
-> ResultDescription -> [ShowS] -> ResultDescription
forall (t :: * -> *) a b.
Foldable t =>
(a -> b -> b) -> b -> t a -> b
foldr ShowS -> ShowS
forall a b. (a -> b) -> a -> b
($) [] ([ShowS] -> [ShowS]
forall a. [a] -> [a]
reverse [ShowS]
acc)
        loop (ResultId
x : [ResultId]
xs) []                 = [ResultId] -> [ShowS] -> ResultDescription
loop [ResultId]
xs [(ResultId -> ResultDescription
loc ResultId
x ResultDescription -> ShowS
forall a. [a] -> [a] -> [a]
++)]
        loop ((VectorItemId ResultDescription
s) : [ResultId]
xs) [ShowS]
acc = [ResultId] -> [ShowS] -> ResultDescription
loop [ResultId]
xs ([ShowS] -> ResultDescription) -> [ShowS] -> ResultDescription
forall a b. (a -> b) -> a -> b
$ (ResultDescription
s ResultDescription -> ShowS
forall a. [a] -> [a] -> [a]
++) ShowS -> [ShowS] -> [ShowS]
forall a. a -> [a] -> [a]
: (ResultDescription
" " ResultDescription -> ShowS
forall a. [a] -> [a] -> [a]
++) ShowS -> [ShowS] -> [ShowS]
forall a. a -> [a] -> [a]
: [ShowS]
acc
        loop (ResultId
x : [ResultId]
xs) [ShowS]
acc                = [ResultId] -> [ShowS] -> ResultDescription
loop [ResultId]
xs ([ShowS] -> ResultDescription) -> [ShowS] -> ResultDescription
forall a b. (a -> b) -> a -> b
$ (ResultId -> ResultDescription
loc ResultId
x ResultDescription -> ShowS
forall a. [a] -> [a] -> [a]
++) ShowS -> [ShowS] -> [ShowS]
forall a. a -> [a] -> [a]
: (ResultDescription
" / " ResultDescription -> ShowS
forall a. [a] -> [a] -> [a]
++) ShowS -> [ShowS] -> [ShowS]
forall a. a -> [a] -> [a]
: [ShowS]
acc

-- | Localise the path result description.
localisePathResultDescription :: ResultLocalisation -> [ResultId] -> ResultDescription
localisePathResultDescription :: ResultLocalisation -> [ResultId] -> ResultDescription
localisePathResultDescription ResultLocalisation
loc [ResultId]
is = (ResultId -> ResultDescription) -> [ResultId] -> ResultDescription
pathResultLocalisation (ResultLocalisation -> ResultId -> ResultDescription
localiseResultDescription ResultLocalisation
loc) [ResultId]
is

-- | Localise the path result title.
localisePathResultTitle :: ResultLocalisation -> [ResultId] -> ResultDescription
localisePathResultTitle :: ResultLocalisation -> [ResultId] -> ResultDescription
localisePathResultTitle ResultLocalisation
loc [ResultId]
is = (ResultId -> ResultDescription) -> [ResultId] -> ResultDescription
pathResultLocalisation (ResultLocalisation -> ResultId -> ResultDescription
localiseResultTitle ResultLocalisation
loc) [ResultId]
is

-- | Convert the result name to title.
resultNameToTitle :: ResultName -> ResultDescription
resultNameToTitle :: ShowS
resultNameToTitle =
  [ResultDescription] -> ResultDescription
unwords ([ResultDescription] -> ResultDescription)
-> (ResultDescription -> [ResultDescription]) -> ShowS
forall b c a. (b -> c) -> (a -> b) -> a -> c
.
  [[ResultDescription]] -> [ResultDescription]
forall (t :: * -> *) a. Foldable t => t [a] -> [a]
concat ([[ResultDescription]] -> [ResultDescription])
-> (ResultDescription -> [[ResultDescription]])
-> ResultDescription
-> [ResultDescription]
forall b c a. (b -> c) -> (a -> b) -> a -> c
.
  ([ResultDescription] -> [ResultDescription])
-> [[ResultDescription]] -> [[ResultDescription]]
forall a b. (a -> b) -> [a] -> [b]
map (ShowS -> [ResultDescription] -> [ResultDescription]
forall a b. (a -> b) -> [a] -> [b]
map (ShowS -> [ResultDescription] -> [ResultDescription])
-> ShowS -> [ResultDescription] -> [ResultDescription]
forall a b. (a -> b) -> a -> b
$ (Char -> Char) -> ShowS
forall a b. (a -> b) -> [a] -> [b]
map Char -> Char
toLower) ([[ResultDescription]] -> [[ResultDescription]])
-> (ResultDescription -> [[ResultDescription]])
-> ResultDescription
-> [[ResultDescription]]
forall b c a. (b -> c) -> (a -> b) -> a -> c
.
  (ResultDescription -> [ResultDescription])
-> [ResultDescription] -> [[ResultDescription]]
forall a b. (a -> b) -> [a] -> [b]
map ((Char -> Char -> Bool) -> ResultDescription -> [ResultDescription]
forall a. (a -> a -> Bool) -> [a] -> [[a]]
groupBy (\Char
x Char
y -> Bool -> Bool
not (Bool -> Bool) -> Bool -> Bool
forall a b. (a -> b) -> a -> b
$ Char -> Bool
isUpper Char
y)) ([ResultDescription] -> [[ResultDescription]])
-> (ResultDescription -> [ResultDescription])
-> ResultDescription
-> [[ResultDescription]]
forall b c a. (b -> c) -> (a -> b) -> a -> c
.
  ResultDescription -> [ResultDescription]
words