module Paths_http_reverse_proxy (
    version,
    getBinDir, getLibDir, getDataDir, getLibexecDir,
    getDataFileName, getSysconfDir
  ) where

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

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


version :: Version
version = Version {versionBranch = [0,4,0,1], versionTags = []}
bindir, libdir, datadir, libexecdir, sysconfdir :: FilePath

bindir     = "/usr/bin"
libdir     = "/usr/lib/haskell-packages/ghc/lib/x86_64-linux-ghc-7.8.4/http-reverse-proxy-0.4.0.1"
datadir    = "/usr/share/http-reverse-proxy"
libexecdir = "/usr/libexec"
sysconfdir = "/usr/etc"

getBinDir, getLibDir, getDataDir, getLibexecDir, getSysconfDir :: IO FilePath
getBinDir = catchIO (getEnv "http_reverse_proxy_bindir") (\_ -> return bindir)
getLibDir = catchIO (getEnv "http_reverse_proxy_libdir") (\_ -> return libdir)
getDataDir = catchIO (getEnv "http_reverse_proxy_datadir") (\_ -> return datadir)
getLibexecDir = catchIO (getEnv "http_reverse_proxy_libexecdir") (\_ -> return libexecdir)
getSysconfDir = catchIO (getEnv "http_reverse_proxy_sysconfdir") (\_ -> return sysconfdir)

getDataFileName :: FilePath -> IO FilePath
getDataFileName name = do
  dir <- getDataDir
  return (dir ++ "/" ++ name)