{-# LANGUAGE CPP #-}
{-# LANGUAGE NoRebindableSyntax #-}
{-# OPTIONS_GHC -fno-warn-missing-import-lists #-}
{-# OPTIONS_GHC -w #-}
module Paths_mohws (
    version,
    getBinDir, getLibDir, getDynLibDir, getDataDir, getLibexecDir,
    getDataFileName, getSysconfDir
  ) where


import qualified Control.Exception as Exception
import qualified Data.List as List
import Data.Version (Version(..))
import System.Environment (getEnv)
import Prelude


#if defined(VERSION_base)

#if MIN_VERSION_base(4,0,0)
catchIO :: IO a -> (Exception.IOException -> IO a) -> IO a
#else
catchIO :: IO a -> (Exception.Exception -> IO a) -> IO a
#endif

#else
catchIO :: IO a -> (Exception.IOException -> IO a) -> IO a
#endif
catchIO = Exception.catch

version :: Version
version = Version [0,2,1,9] []

getDataFileName :: FilePath -> IO FilePath
getDataFileName name = do
  dir <- getDataDir
  return (dir `joinFileName` name)

getBinDir, getLibDir, getDynLibDir, getDataDir, getLibexecDir, getSysconfDir :: IO FilePath



bindir, libdir, dynlibdir, datadir, libexecdir, sysconfdir :: FilePath
bindir     = "/home/thielema/.cabal/bin"
libdir     = "/home/thielema/.cabal/lib/x86_64-linux-ghc-8.6.5/mohws-0.2.1.9-inplace"
dynlibdir  = "/home/thielema/.cabal/lib/x86_64-linux-ghc-8.6.5"
datadir    = "/home/thielema/.cabal/share/x86_64-linux-ghc-8.6.5/mohws-0.2.1.9"
libexecdir = "/home/thielema/.cabal/libexec/x86_64-linux-ghc-8.6.5/mohws-0.2.1.9"
sysconfdir = "/home/thielema/.cabal/etc"

getBinDir     = catchIO (getEnv "mohws_bindir")     (\_ -> return bindir)
getLibDir     = catchIO (getEnv "mohws_libdir")     (\_ -> return libdir)
getDynLibDir  = catchIO (getEnv "mohws_dynlibdir")  (\_ -> return dynlibdir)
getDataDir    = catchIO (getEnv "mohws_datadir")    (\_ -> return datadir)
getLibexecDir = catchIO (getEnv "mohws_libexecdir") (\_ -> return libexecdir)
getSysconfDir = catchIO (getEnv "mohws_sysconfdir") (\_ -> return sysconfdir)




joinFileName :: String -> String -> FilePath
joinFileName ""  fname = fname
joinFileName "." fname = fname
joinFileName dir ""    = dir
joinFileName dir fname
  | isPathSeparator (List.last dir) = dir ++ fname
  | otherwise                       = dir ++ pathSeparator : fname

pathSeparator :: Char
pathSeparator = '/'

isPathSeparator :: Char -> Bool
isPathSeparator c = c == '/'