call-alloy-0.3: src/Language/Alloy/Internal/Call.hs
{-# LANGUAGE CPP #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-|
Module : Language.Alloy.Internal.Call
Copyright : (c) Marcellus Siegburg, 2019 - 2021
License : MIT
This module provides the basic internal functionality to retrieve the raw
results from calling Alloy.
It provides data types and functions to interact with Alloy.
-}
module Language.Alloy.Internal.Call (
CallAlloyConfig (maxInstances, noOverflow, timeout),
defaultCallAlloyConfig,
getRawInstances,
getRawInstancesWith,
) where
import qualified Data.ByteString as BS
(hGetLine, intercalate, isSuffixOf, stripPrefix, writeFile)
import qualified Data.ByteString.Char8 as BS (unlines)
import Control.Concurrent (
ThreadId,
forkIO, killThread, newEmptyMVar, putMVar, takeMVar, threadDelay,
)
import Control.Exception (IOException)
import Control.Monad (unless, void, when)
import Data.ByteString (ByteString)
import Data.ByteString.Char8 (unpack)
import Data.Hashable (hash)
import Data.IORef (IORef, newIORef, readIORef)
import Data.List.Split (splitOn)
import Data.Maybe (fromMaybe)
import System.Directory
(XdgDirectory (..), createDirectory, doesFileExist, doesDirectoryExist,
getTemporaryDirectory, getXdgDirectory)
import System.Directory.Internal (setFileMode)
import System.Directory.Internal.Prelude
(catch, isDoesNotExistError)
import System.Exit (ExitCode (..))
import System.FilePath
((</>), (<.>), searchPathSeparator, takeDirectory)
import System.IO
(BufferMode (..), Handle, hClose, hFlush, hIsEOF, hPutStr, hSetBuffering)
import System.IO.Unsafe (unsafePerformIO)
import System.Process (
CreateProcess (..), StdStream (..), ProcessHandle,
createProcess, proc, terminateProcess, waitForProcess,
)
#if defined(mingw32_HOST_OS)
import System.Win32.Info (getUserName)
#else
import System.Posix.User (getLoginName)
#endif
import Language.Alloy.RessourceNames (
alloyJarName, className, classPackage, commonsCliJarName, slf4jJarName,
)
import Language.Alloy.Ressources (
alloyJar,
classFile,
commonsCliJar,
slf4jJar,
)
{-|
Configuration for calling alloy. These are:
* maximal number of instances to retrieve ('Nothing' for all)
* whether to not overflow when calculating numbers within Alloy
* an timeout after which to forcibly kill Alloy
(retrieving only instances that were returned before killing the process)
-}
data CallAlloyConfig = CallAlloyConfig {
-- | maximal number of instances to retrieve ('Nothing' for all)
maxInstances :: Maybe Integer,
-- | whether to not overflow when calculating numbers within Alloy
noOverflow :: Bool,
-- | the time in microseconds after which to forcibly kill Alloy
-- ('Nothing' for never)
timeout :: Maybe Int
}
{-|
Default configuration for calling Alloy. Defaults to:
* retrieve all instances
* do not overflow
-}
defaultCallAlloyConfig :: CallAlloyConfig
defaultCallAlloyConfig = CallAlloyConfig {
maxInstances = Nothing,
noOverflow = True,
timeout = Nothing
}
{-# NOINLINE mclassPath #-}
{-|
'IORef' for storing the class path.
-}
mclassPath :: IORef (Maybe FilePath)
mclassPath = unsafePerformIO (newIORef Nothing)
{-|
This function may be used to get all raw model instances for a given Alloy
specification. It calls Alloy via a Java interface and splits the raw instance
answers before returning the resulting list of raw instances.
-}
getRawInstances
:: Maybe Integer
-- ^ How many instances to return; 'Nothing' for all.
-> String
-- ^ The Alloy specification which should be loaded.
-> IO [ByteString]
getRawInstances maxIs = getRawInstancesWith defaultCallAlloyConfig {
maxInstances = maxIs
}
{-|
This function may be used to get all raw model instances for a given Alloy
specification. It calls Alloy via a Java interface and splits the raw instance
answers before returning the resulting list of raw instances.
Parameters are set using a 'CallAlloyConfig'.
-}
getRawInstancesWith
:: CallAlloyConfig
-- ^ The configuration to be used.
-> String
-- ^ The Alloy specification which should be loaded.
-> IO [ByteString]
getRawInstancesWith config content = do
classPath <- getClassPath
let callAlloy = proc "java"
$ ["-cp", classPath, classPackage ++ '.' : className,
"-i", show $ fromMaybe (-1) $ maxInstances config]
++ ["-o" | not $ noOverflow config]
(Just hin, Just hout, Just herr, ph) <-
createProcess callAlloy {
std_out = CreatePipe,
std_in = CreatePipe,
std_err = CreatePipe
}
pout <- listenForOutput hout
perr <- listenForOutput herr
#ifndef mingw32_HOST_OS
hSetBuffering hin NoBuffering
#endif
hPutStr hin content
hFlush hin
hClose hin
maybe (return ()) (void . startTimeout hin hout herr ph) $ timeout config
out <- getOutput pout
err <- getOutput perr
printContentOnError ph
let err' = removeInfoPrefix err
unless (null err') $ fail $ unpack $ BS.unlines err'
let instas = fmap (BS.intercalate "\n") $ drop 1 $ splitOn [begin] out
return $ filterLast (not . (partialInstance `BS.isSuffixOf`)) instas
where
begin :: ByteString
begin = "---INSTANCE---"
partialInstance :: ByteString
partialInstance = "---PARTIAL_INSTANCE---"
filterLast _ [] = []
filterLast p x@[_] = filter p x
filterLast p (x:xs) = x:filterLast p xs
getWholeOutput h = do
eof <- hIsEOF h
if eof
then return []
else catch
((:) <$> BS.hGetLine h <*> getWholeOutput h)
(\(_ :: IOException) -> return [partialInstance])
printContentOnError ph = do
code <- waitForProcess ph
when (code == ExitFailure 1)
$ putStrLn $ "Failed parsing the Alloy code:\n" <> content
listenForOutput h = do
mvar <- newEmptyMVar
pid <- forkIO $ getWholeOutput h >>= putMVar mvar
return (pid, mvar)
getOutput (pid, mvar) = do
output <- takeMVar mvar
killThread pid
return output
{-|
Removes lines such as
@
[main] INFO kodkod.engine.config.Reporter - detecting symmetries ...
[main] INFO kodkod.engine.config.Reporter - detected 16 equivalence classes of atoms ...
[main] INFO kodkod.engine.config.Reporter - optimizing bounds and formula (breaking predicate symmetries, inlining, skolemizing) ...
[main] INFO kodkod.engine.config.Reporter - translating to boolean ...
[main] INFO kodkod.engine.config.Reporter - generating lex-leader symmetry breaking predicate ...
@
which seem to be appearing since Alloy-6.0.0
-}
removeInfoPrefix :: [ByteString] -> [ByteString]
removeInfoPrefix (x:xs)
| Just _ <- BS.stripPrefix "[main] INFO" x
= removeInfoPrefix xs
removeInfoPrefix xs = xs
{-|
Start a new process that aborts execution by closing all handles and
killing the processes after the given amount of time.
-}
startTimeout
:: Handle
-- ^ the input handle to close
-> Handle
-- ^ the output handle to close
-> Handle
-- ^ the error handle to close
-> ProcessHandle
-- ^ the main process handle
-> Int -> IO ThreadId
startTimeout i o e ph t = forkIO $ do
threadDelay t
void $ forkIO $ hClose e
void $ forkIO $ hClose o
terminateProcess ph
hClose i
{-|
Check if the class path was determined already, if so use it, otherwise call
'readClassPath'.
Returns the class path.
-}
getClassPath :: IO FilePath
getClassPath = do
mclassPath' <- readIORef mclassPath
maybe readClassPath return mclassPath'
fallbackToTempDir :: IO FilePath -> IO FilePath
fallbackToTempDir m = catch m $ \e ->
if isDoesNotExistError e
then do
tmp <- getTemporaryDirectory
#if defined(mingw32_HOST_OS)
login <- getUserName
#else
login <- getLoginName
#endif
let tmpDir = tmp </> show (hash login) </> appName
createUserDirectoriesIfMissing tmpDir
return tmpDir
else error $ show e
{-|
Read the class path version specified in the user directory, if it is not
current or if it does not exist, call 'createVersionFile'.
Returns the class path.
-}
readClassPath :: IO FilePath
readClassPath = do
configDir <- fallbackToTempDir $ getXdgDirectory XdgConfig appName
let versionFile = configDir </> "version"
exists <- doesFileExist versionFile
if exists
then do
version <- read <$> readFile versionFile
unless (version == versionHash) $ createVersionFile configDir versionFile
else createVersionFile configDir versionFile
dataDir <- getXdgDirectory XdgData $ appName </> "dataDir"
return $ dataDir ++ searchPathSeparator : dataDir </> alloyJarName
++ searchPathSeparator : dataDir </> commonsCliJarName
++ searchPathSeparator : dataDir </> slf4jJarName
{-|
Create all library files within the users 'XdgDirectory' by calling
'createDataDir' then place the current version number into a configuration File.
-}
createVersionFile :: FilePath -> FilePath -> IO ()
createVersionFile configDir versionFile = do
createDataDir
createUserDirectoriesIfMissing configDir
writeFile versionFile $ show versionHash
{-|
Create all library files within the users 'XdgDirectory' based on the source
files enclosed into this library (see also 'Language.Alloy.RessourceNames' and
'Language.Alloy.Ressources').
-}
createDataDir :: IO ()
createDataDir = do
dataDir <- fallbackToTempDir $ getXdgDirectory XdgData $ appName </> "dataDir"
createUserDirectoriesIfMissing $ dataDir </> classPackage
BS.writeFile (dataDir </> classPackage </> className <.> "class") classFile
BS.writeFile (dataDir </> alloyJarName) alloyJar
BS.writeFile (dataDir </> commonsCliJarName) commonsCliJar
BS.writeFile (dataDir </> slf4jJarName) slf4jJar
{-|
Creates user directories using the file permissions 700.
This function creates the specified directory and all its parent directories as
well (if they are also missing).
-}
createUserDirectoriesIfMissing :: FilePath -> IO ()
createUserDirectoriesIfMissing fp = do
isDir <- doesDirectoryExist fp
let parent = takeDirectory fp
unless (isDir || parent == fp) $ do
createUserDirectoriesIfMissing parent
createDirectory fp
#ifndef mingw32_HOST_OS
setFileMode fp (7*8*8)
#endif
{-|
The application name (used to store data in a specific directory.
-}
appName :: String
appName = "call-alloy"
{-# INLINE versionHash #-}
{-|
Used to determine possible source code and Alloy version changes across multiple
versions of this library.
-}
versionHash :: Int
versionHash = hash $ alloyHash + commonsCliHash + slf4jHash + classFileHash
where
alloyHash = hash alloyJar
commonsCliHash = hash commonsCliJar
classFileHash = hash classFile
slf4jHash = hash slf4jJar