hspec-discover-2.4.5: src/Test/Hspec/Discover/Sort.hs
module Test.Hspec.Discover.Sort (
sortNaturally
, NaturalSortKey
, naturalSortKey
) where
import Control.Arrow
import Data.Char
import Data.List
import Data.Ord
sortNaturally :: [String] -> [String]
sortNaturally = sortBy (comparing naturalSortKey)
data NaturalSortKey = NaturalSortKey [Chunk]
deriving (Eq, Ord)
data Chunk = Numeric Integer Int | Textual [(Char, Char)]
deriving (Eq, Ord)
naturalSortKey :: String -> NaturalSortKey
naturalSortKey = NaturalSortKey . chunks
where
chunks [] = []
chunks s@(c:_)
| isDigit c = Numeric (read num) (length num) : chunks afterNum
| otherwise = Textual (map (toLower &&& id) str) : chunks afterStr
where
(num, afterNum) = span isDigit s
(str, afterStr) = break isDigit s