phino-0.0.0.60: src/CLI.hs
{-# LANGUAGE DeriveAnyClass #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE ScopedTypeVariables #-}
-- SPDX-FileCopyrightText: Copyright (c) 2025 Objectionary.com
-- SPDX-License-Identifier: MIT
module CLI (runCLI) where
import AST
import qualified Canonizer as C
import Condition (parseConditionThrows)
import Control.Exception.Base (Exception (displayException), SomeException, catch, fromException, handle, throwIO)
import Control.Monad (forM_, unless, when, (>=>))
import Data.Char (toLower, toUpper)
import Data.Foldable (for_)
import Data.Functor ((<&>))
import Data.List (intercalate)
import Data.Maybe (fromJust, fromMaybe, isJust, isNothing)
import Data.Version (showVersion)
import Dataize (DataizeContext (DataizeContext), dataize)
import Deps (SaveStepFunc, saveStep)
import Encoding (Encoding (UNICODE))
import qualified Filter as F
import Functions (buildTerm)
import LaTeX (LatexContext (LatexContext), defaultMeetLength, defaultMeetPopularity, explainRules, expressionToLaTeX, programToLaTeX, rewrittensToLatex)
import Lining (LineFormat (MULTILINE, SINGLELINE))
import Locator (locatedExpression)
import Logger
import Margin (defaultMargin)
import Merge (merge)
import Misc (ensuredFile)
import qualified Misc
import Must (Must (..), validateMust)
import Options.Applicative
import Parser (parseExpressionThrows, parseProgramThrows)
import Paths_phino (version)
import qualified Printer as P
import Rewriter (RewriteContext (RewriteContext), Rewritten, rewrite)
import Rule (RuleContext (RuleContext), matchProgramWithRule)
import Sugar
import System.Exit (ExitCode (..), exitFailure)
import System.IO (getContents')
import Text.Printf (printf)
import XMIR (XmirContext (XmirContext), defaultXmirContext, parseXMIRThrows, printXMIR, programToXMIR, xmirToPhi)
import Yaml (normalizationRules)
import qualified Yaml as Y
data PrintProgramContext = PrintProgCtx
{ _sugar :: SugarType
, _line :: LineFormat
, _margin :: Int
, _xmirCtx :: XmirContext
, _nonumber :: Bool
, _compress :: Bool
, _sequence :: Bool
, _meetPopularity :: Int
, _meetLength :: Int
, _focus :: Expression
, _expression :: Maybe String
, _label :: Maybe String
, _meetPrefix :: Maybe String
, _outputFormat :: IOFormat
}
data CmdException
= InvalidCLIArguments String
| CouldNotReadFromStdin String
| CouldNotDataize
| CouldNotPrintExpressionInXMIR
deriving (Exception)
instance Show CmdException where
show (InvalidCLIArguments msg) = printf "Invalid set of arguments: %s" msg
show (CouldNotReadFromStdin msg) = printf "Could not read input from stdin\nReason: %s" msg
show CouldNotDataize = "Could not dataize given program"
show CouldNotPrintExpressionInXMIR = "Could not print expression with --output=xmir, only program printing is allowed"
data Command
= CmdRewrite OptsRewrite
| CmdDataize OptsDataize
| CmdExplain OptsExplain
| CmdMerge OptsMerge
| CmdMatch OptsMatch
data IOFormat = XMIR | PHI | LATEX
deriving (Eq)
instance Show IOFormat where
show XMIR = "xmir"
show PHI = "phi"
show LATEX = "latex"
data OptsDataize = OptsDataize
{ _logLevel :: LogLevel
, _logLines :: Int
, _inputFormat :: IOFormat
, _outputFormat :: IOFormat
, _sugarType :: SugarType
, _flat :: LineFormat
, _omitListing :: Bool
, _omitComments :: Bool
, _nonumber :: Bool
, _sequence :: Bool
, _canonize :: Bool
, _depthSensitive :: Bool
, _quiet :: Bool
, _compress :: Bool
, _maxDepth :: Int
, _maxCycles :: Int
, _margin :: Int
, _meetPopularity :: Maybe Int
, _meetLength :: Maybe Int
, _hide :: [String]
, _show :: [String]
, _locator :: String
, _focus :: String
, _expression :: Maybe String
, _label :: Maybe String
, _meetPrefix :: Maybe String
, _stepsDir :: Maybe FilePath
, _inputFile :: Maybe FilePath
}
data OptsExplain = OptsExplain
{ _logLevel :: LogLevel
, _logLines :: Int
, _rules :: [FilePath]
, _normalize :: Bool
, _shuffle :: Bool
, _targetFile :: Maybe FilePath
}
data OptsRewrite = OptsRewrite
{ _logLevel :: LogLevel
, _logLines :: Int
, _inputFormat :: IOFormat
, _outputFormat :: IOFormat
, _sugarType :: SugarType
, _flat :: LineFormat
, _must :: Must
, _normalize :: Bool
, _shuffle :: Bool
, _omitListing :: Bool
, _omitComments :: Bool
, _depthSensitive :: Bool
, _nonumber :: Bool
, _inPlace :: Bool
, _sequence :: Bool
, _canonize :: Bool
, _compress :: Bool
, _maxDepth :: Int
, _maxCycles :: Int
, _margin :: Int
, _meetPopularity :: Maybe Int
, _meetLength :: Maybe Int
, _rules :: [FilePath]
, _hide :: [String]
, _show :: [String]
, _locator :: String
, _focus :: String
, _expression :: Maybe String
, _label :: Maybe String
, _meetPrefix :: Maybe String
, _targetFile :: Maybe FilePath
, _stepsDir :: Maybe FilePath
, _inputFile :: Maybe FilePath
}
data OptsMerge = OptsMerge
{ _logLevel :: LogLevel
, _logLines :: Int
, _inputFormat :: IOFormat
, _outputFormat :: IOFormat
, _sugarType :: SugarType
, _flat :: LineFormat
, _omitListing :: Bool
, _omitComments :: Bool
, _margin :: Int
, _targetFile :: Maybe FilePath
, _inputs :: [FilePath]
}
data OptsMatch = OptsMatch
{ _logLevel :: LogLevel
, _logLines :: Int
, _sugarType :: SugarType
, _flat :: LineFormat
, _pattern :: Maybe String
, _when :: Maybe String
, _inputFile :: Maybe FilePath
}
validateIntOption :: (Int -> Bool) -> String -> Int -> ReadM Int
validateIntOption cmp msg num
| cmp num = return num
| otherwise = readerError msg
optLogLevel :: Parser LogLevel
optLogLevel =
option
parseLogLevel
( long "log-level"
<> metavar "LEVEL"
<> help ("Log level (" <> intercalate ", " (map show [DEBUG, ERROR, NONE]) <> ")")
<> value ERROR
<> showDefault
)
where
parseLogLevel :: ReadM LogLevel
parseLogLevel = eitherReader $ \lvl -> case map toUpper lvl of
"DEBUG" -> Right DEBUG
"ERROR" -> Right ERROR
"ERR" -> Right ERROR
"NONE" -> Right NONE
_ -> Left $ "unknown log-level: " <> lvl
optLogLines :: Parser Int
optLogLines =
option
(auto >>= validateIntOption (>= -1) "--log-lines must be >= -1")
(long "log-lines" <> metavar "LINES" <> help "Amount of lines printed to console per each log operation (0 - print nothing, -1 - no limits)" <> value 25 <> showDefault)
optRule :: Parser [FilePath]
optRule = many (strOption (long "rule" <> metavar "[FILE]" <> help "Path to custom rule"))
optInputFormat :: Parser IOFormat
optInputFormat = option (parseIOFormat "input") (long "input" <> metavar "FORMAT" <> help "Program input format (phi, xmir)" <> value PHI <> showDefault)
parseIOFormat :: String -> ReadM IOFormat
parseIOFormat type' = eitherReader $ \format -> case (map toLower format, type') of
("xmir", _) -> Right XMIR
("phi", _) -> Right PHI
("latex", "output") -> Right LATEX
_ -> Left (printf "The value '%s' can't be used for '--%s' option, use --help to check possible values" format type')
optOutputFormat :: Parser IOFormat
optOutputFormat =
option
(parseIOFormat "output")
(long "output" <> metavar "FORMAT" <> help (printf "Result and intermediate (see %s option(s)) programs output format (phi, xmir, latex)" _intermediateOptions) <> value PHI <> showDefault)
argInputFile :: Parser (Maybe FilePath)
argInputFile = optional (argument str (metavar "FILE" <> help "Path to input file"))
optMaxDepth :: Parser Int
optMaxDepth =
option
(auto >>= validateIntOption (> 0) "--max-depth must be positive")
(long "max-depth" <> metavar "DEPTH" <> help "Maximum number of rewriting iterations per rule" <> value 25 <> showDefault)
optMaxCycles :: Parser Int
optMaxCycles =
option
(auto >>= validateIntOption (> 0) "--max-cycles must be positive")
(long "max-cycles" <> metavar "CYCLES" <> help "Maximum number of rewriting cycles across all rules" <> value 25 <> showDefault)
optMargin :: Parser Int
optMargin =
option
(auto >>= validateIntOption (> 0) "--margin must be positive")
(long "margin" <> help "The maximum right margin for the printed π-programs or π-expressions" <> value defaultMargin <> showDefault)
optMeetPopularity :: Parser (Maybe Int)
optMeetPopularity =
optional
( option
( auto
>>= validateIntOption (> 0) "--meet-popularity must be positive"
>>= validateIntOption (< 100) "--meet-popularity must be <= 100"
)
( long "meet-popularity"
<> metavar "PERCENTAGE"
<> help (printf "The minimum popularity of an expression in order to be suitable for \\phiMeet{}, in percentage (default: %d)" defaultMeetPopularity)
)
)
optMeetLength :: Parser (Maybe Int)
optMeetLength =
optional
( option
(auto >>= validateIntOption (> 0) "--meet-length must be positive")
( long "meet-length"
<> metavar "NODES"
<> help (printf "The minimum length of an expression that fits into \\phiMeet{}, in AST nodes (default: %d)" defaultMeetLength)
)
)
optDepthSensitive :: Parser Bool
optDepthSensitive = switch (long "depth-sensitive" <> help "Fail if rewriting is not finished after reaching max attempts (see --max-cycles or --max-depth)")
optNonumber :: Parser Bool
optNonumber = switch (long "nonumber" <> help "Turn off equation auto numbering in LaTeX rendering (see --output option)")
optSequence :: Parser Bool
optSequence = switch (long "sequence" <> help "Result output contains all intermediate π-programs concatenated with EOL")
optCanonize :: Parser Bool
optCanonize = switch (long "canonize" <> help "Rename all functions attached to Ξ» binding with F1, F2, etc.")
optExpression :: Parser (Maybe String)
optExpression = optional (strOption (long "expression" <> metavar "NAME" <> help "Name for 'phiExpression' element when rendering to LaTeX (see --output option)"))
optLabel :: Parser (Maybe String)
optLabel = optional (strOption (long "label" <> metavar "NAME" <> help "Name for 'label' element when rendering to LaTeX (see --output option)"))
optMeetPrefix :: Parser (Maybe String)
optMeetPrefix = optional (strOption (long "meet-prefix" <> metavar "PREFIX" <> help "Prefix to be inserted before index in \\phiMeet{} and \\phiAgain{} LaTeX functions, e.g. \\phiMeet{foo:1}"))
optHide :: Parser [String]
optHide = many (strOption (long "hide" <> metavar "FQN" <> help "Location of object to exclude from result and intermediate programs after rewriting. Must be a valid dispatch expression; e.g. Q.org.eolang"))
optShow :: Parser [String]
optShow =
many
( strOption
( long "show"
<> metavar "FQN"
<> help
"Location of object to include to result and intermediate programs after rewriting. \
\Must be a valid dispatch expression; e.g. Q.org.eolang. Unlike --hide, can be used only once"
)
)
optLocator :: Parser String
optLocator = strOption (long "locator" <> metavar "FQN" <> help "Location of object to dataize. Must be a valid dispatch expression; e.g. Q.foo.bar" <> value "Q" <> showDefault)
optFocus :: Parser String
optFocus =
strOption
( long "focus"
<> metavar "FQN"
<> help "Location of only object to be printed in entire program. Must be a valid dispatch expression; e.g. Q.foo.bar"
<> value "Q"
<> showDefault
)
optNormalize :: Parser Bool
optNormalize = switch (long "normalize" <> help "Use built-in normalization rules")
optTarget :: Parser (Maybe FilePath)
optTarget = optional (strOption (long "target" <> short 't' <> metavar "FILE" <> help "File to save output to"))
optStepsDir :: Parser (Maybe FilePath)
optStepsDir = optional (strOption (long "steps-dir" <> metavar "FILE" <> help "Directory to save intermediate steps during rewriting/dataizing"))
optShuffle :: Parser Bool
optShuffle = switch (long "shuffle" <> help "Shuffle rules before applying")
optSugar :: Parser SugarType
optSugar = flag SALTY SWEET (long "sweet" <> help (printf "Print result and intermediate (see %s option(s)) π-programs using syntax sugar" _intermediateOptions))
optSugar' :: Parser SugarType
optSugar' = flag SALTY SWEET (long "sweet" <> help "Print result π-program using syntax sugar")
optLineFormat :: Parser LineFormat
optLineFormat = flag MULTILINE SINGLELINE (long "flat" <> help (printf "Print result and intermediate (see %s option(s)) π-programs in one line" _intermediateOptions))
optLineFormat' :: Parser LineFormat
optLineFormat' = flag MULTILINE SINGLELINE (long "flat" <> help "Print result π-program in one line")
optOmitListing :: Parser Bool
optOmitListing = switch (long "omit-listing" <> help "Omit full program listing in XMIR output")
optOmitComments :: Parser Bool
optOmitComments = switch (long "omit-comments" <> help "Omit comments in XMIR output")
optCompress :: Parser Bool
optCompress = switch (long "compress" <> help "Compress expressions in LaTeX output using \\phiMeet{} and \\phiAgain{} functions")
_intermediateOptions :: String
_intermediateOptions = intercalate ", " ["--sequence", "--steps-dir"]
explainParser :: Parser Command
explainParser =
CmdExplain
<$> ( OptsExplain
<$> optLogLevel
<*> optLogLines
<*> optRule
<*> optNormalize
<*> optShuffle
<*> optTarget
)
dataizeParser :: Parser Command
dataizeParser =
CmdDataize
<$> ( OptsDataize
<$> optLogLevel
<*> optLogLines
<*> optInputFormat
<*> optOutputFormat
<*> optSugar
<*> optLineFormat
<*> optOmitListing
<*> optOmitComments
<*> optNonumber
<*> optSequence
<*> optCanonize
<*> optDepthSensitive
<*> switch (long "quiet" <> help "Don't print the result of dataization")
<*> optCompress
<*> optMaxDepth
<*> optMaxCycles
<*> optMargin
<*> optMeetPopularity
<*> optMeetLength
<*> optHide
<*> optShow
<*> optLocator
<*> optFocus
<*> optExpression
<*> optLabel
<*> optMeetPrefix
<*> optStepsDir
<*> argInputFile
)
rewriteParser :: Parser Command
rewriteParser =
CmdRewrite
<$> ( OptsRewrite
<$> optLogLevel
<*> optLogLines
<*> optInputFormat
<*> optOutputFormat
<*> optSugar
<*> optLineFormat
<*> option
auto
( long "must"
<> metavar "RANGE"
<> help "Must-rewrite range (e.g., '3', '..5', '3..', '3..5'). Stops execution if number of rules applied is not in range. Use 0 to disable."
<> value MtDisabled
<> showDefaultWith show
)
<*> optNormalize
<*> optShuffle
<*> optOmitListing
<*> optOmitComments
<*> optDepthSensitive
<*> optNonumber
<*> switch (long "in-place" <> help "Edit file in-place instead of printing to output")
<*> optSequence
<*> optCanonize
<*> optCompress
<*> optMaxDepth
<*> optMaxCycles
<*> optMargin
<*> optMeetPopularity
<*> optMeetLength
<*> optRule
<*> optHide
<*> optShow
<*> optLocator
<*> optFocus
<*> optExpression
<*> optLabel
<*> optMeetPrefix
<*> optTarget
<*> optStepsDir
<*> argInputFile
)
mergeParser :: Parser Command
mergeParser =
CmdMerge
<$> ( OptsMerge
<$> optLogLevel
<*> optLogLines
<*> optInputFormat
<*> option (parseIOFormat "output") (long "output" <> metavar "FORMAT" <> help (printf "Result program output format (phi, xmir, latex)") <> value PHI <> showDefault)
<*> optSugar'
<*> optLineFormat'
<*> optOmitListing
<*> optOmitComments
<*> optMargin
<*> optTarget
<*> many (argument str (metavar "[FILE]" <> help "Paths to input files"))
)
matchParser :: Parser Command
matchParser =
CmdMatch
<$> ( OptsMatch
<$> optLogLevel
<*> optLogLines
<*> optSugar
<*> optLineFormat
<*> optional (strOption (long "pattern" <> metavar "EXPRESSION" <> help "Pattern expression to match against"))
<*> optional (strOption (long "when" <> metavar "CONDITION" <> help "Predicate for matched substitutions"))
<*> argInputFile
)
commandParser :: Parser Command
commandParser =
hsubparser
( command "rewrite" (info rewriteParser (progDesc "Rewrite the π-program"))
<> command "dataize" (info dataizeParser (progDesc "Dataize the π-program"))
<> command "explain" (info explainParser (progDesc "Explain rules in LaTeX format"))
<> command "merge" (info mergeParser (progDesc "Merge π-programs into single one by merging their top level formations"))
<> command "match" (info matchParser (progDesc "Match π-program against provided pattern and build matched substitutions"))
)
parserInfo :: ParserInfo Command
parserInfo =
info
(commandParser <**> helper <**> simpleVersioner (showVersion version))
(fullDesc <> header "Phino - CLI Manipulator of π-Calculus Expressions")
handler :: SomeException -> IO ()
handler e = case fromException e of
Just ExitSuccess -> pure () -- prevent printing error on --version etc.
_ -> do
logError (displayException e)
exitFailure
setLogger :: Command -> IO ()
setLogger cmd =
let (level, lns) = case cmd of
CmdRewrite OptsRewrite{_logLevel, _logLines} -> (_logLevel, _logLines)
CmdDataize OptsDataize{_logLevel, _logLines} -> (_logLevel, _logLines)
CmdExplain OptsExplain{_logLevel, _logLines} -> (_logLevel, _logLines)
CmdMerge OptsMerge{_logLevel, _logLines} -> (_logLevel, _logLines)
CmdMatch OptsMatch{_logLevel, _logLines} -> (_logLevel, _logLines)
in setLogConfig level lns
invalidCLIArguments :: String -> IO a
invalidCLIArguments msg = throwIO (InvalidCLIArguments msg)
runCLI :: [String] -> IO ()
runCLI args = handle handler $ do
cmd <- handleParseResult (execParserPure defaultPrefs parserInfo args)
setLogger cmd
case cmd of
CmdRewrite OptsRewrite{..} -> do
validateOpts
excluded <- validatedDispatches "hide" _hide
included <- validatedDispatches "show" _show
[loc] <- validatedDispatches "locator" [_locator]
[foc] <- validatedDispatches "focus" [_focus]
logDebug (printf "Amount of rewriting cycles across all the rules: %d, per rule: %d" _maxCycles _maxDepth)
input <- readInput _inputFile
rules <- getRules _normalize _shuffle _rules
program <- parseProgram input _inputFormat
let listing = if null rules then const input else (\prog -> P.printProgram' prog (_sugarType, UNICODE, _flat, _margin))
xmirCtx = XmirContext _omitListing _omitComments listing
printCtx = printProgCtx xmirCtx foc
canonize = if _canonize then C.canonize else id
exclude = (`F.exclude` excluded)
include = (`F.include` included)
rewrittens <- rewrite program rules (context loc printCtx) <&> canonize . exclude . include
let rewrittens' = if _sequence then rewrittens else [last rewrittens]
logDebug (printf "Printing rewritten π-program as %s" (show _outputFormat))
progs <- printRewrittens printCtx rewrittens'
output _targetFile progs
where
validateOpts :: IO ()
validateOpts = do
when
(_inPlace && isNothing _inputFile)
(invalidCLIArguments "The option --in-place requires an input file")
when
(_inPlace && isJust _targetFile)
(invalidCLIArguments "The options --in-place and --target cannot be used together")
when (length _show > 1) (invalidCLIArguments "The option --show can be used only once")
validateLatexOptions
_outputFormat
[(_nonumber, "nonumber"), (_compress, "compress")]
[(_expression, "expression"), (_label, "label"), (_meetPrefix, "meet-prefix")]
[(_meetPopularity, "meet-popularity"), (_meetLength, "meet-length")]
validateMust' _must
validateXmirOptions _outputFormat [(_omitListing, "omit-listing"), (_omitComments, "omit-comments")] _focus
output :: Maybe FilePath -> String -> IO ()
output target prog = case (_inPlace, target, _inputFile) of
(True, _, Just file) -> do
logDebug (printf "The option '--in-place' is specified, writing back to '%s'..." file)
writeFile file prog
logDebug (printf "The file '%s' was modified in-place" file)
(True, _, Nothing) ->
error "The option --in-place requires an input file"
(False, Just file, _) -> do
logDebug (printf "The option '--target' is specified, printing to '%s'..." file)
writeFile file prog
logDebug (printf "The command result was saved in '%s'" file)
(False, Nothing, _) -> do
logDebug "The option '--target' is not specified, printing to console..."
putStrLn prog
context :: Expression -> PrintProgramContext -> RewriteContext
context loc ctx =
RewriteContext
loc
_maxDepth
_maxCycles
_depthSensitive
buildTerm
_must
(saveStepFunc _stepsDir ctx)
printProgCtx :: XmirContext -> Expression -> PrintProgramContext
printProgCtx xmirCtx focus =
PrintProgCtx
_sugarType
_flat
_margin
xmirCtx
_nonumber
_compress
_sequence
(justMeetPopularity _meetPopularity)
(justMeetLength _meetLength)
focus
_expression
_label
_meetPrefix
_outputFormat
CmdDataize OptsDataize{..} -> do
validateOpts
excluded <- validatedDispatches "hide" _hide
included <- validatedDispatches "show" _show
[loc] <- validatedDispatches "locator" [_locator]
[foc] <- validatedDispatches "focus" [_focus]
input <- readInput _inputFile
prog <- parseProgram input _inputFormat
let printCtx = printProgCtx foc
canonize = if _canonize then C.canonize else id
exclude = (`F.exclude` excluded)
include = (`F.include` included)
(maybeBytes, chain) <- dataize (context loc prog printCtx)
when _sequence (printRewrittens printCtx (canonize $ exclude $ include chain) >>= putStrLn)
unless _quiet (putStrLn (maybe (P.printExpression ExTermination) P.printBytes maybeBytes))
where
validateOpts :: IO ()
validateOpts = do
validateLatexOptions
_outputFormat
[(_nonumber, "nonumber"), (_compress, "compress")]
[(_expression, "expression"), (_label, "label"), (_meetPrefix, "meet-prefix")]
[(_meetPopularity, "meet-popularity"), (_meetLength, "meet-length")]
validateXmirOptions _outputFormat [(_omitListing, "omit-listing"), (_omitComments, "omit-comments")] _focus
when (length _show > 1) (invalidCLIArguments "The option --show can be used only once")
context :: Expression -> Program -> PrintProgramContext -> DataizeContext
context loc prog ctx =
DataizeContext
loc
prog
_maxDepth
_maxCycles
_depthSensitive
buildTerm
(saveStepFunc _stepsDir ctx)
printProgCtx :: Expression -> PrintProgramContext
printProgCtx focus =
PrintProgCtx
_sugarType
_flat
_margin
defaultXmirContext
_nonumber
_compress
_sequence
(justMeetPopularity _meetPopularity)
(justMeetLength _meetLength)
focus
_expression
_label
_meetPrefix
_outputFormat
CmdExplain OptsExplain{..} -> do
validateOpts
rules <- getRules _normalize _shuffle _rules
printOut _targetFile (explainRules rules)
where
validateOpts :: IO ()
validateOpts =
when
(null _rules && not _normalize)
(throwIO (InvalidCLIArguments "Either --rule or --normalize must be specified"))
CmdMerge OptsMerge{..} -> do
validateOpts
inputs' <- traverse (readInput . Just) _inputs
progs <- traverse (`parseProgram` _inputFormat) inputs'
prog <- merge progs
let listing = const (P.printProgram' prog (_sugarType, UNICODE, _flat, _margin))
xmirCtx = XmirContext _omitListing _omitComments listing
printCtx = printProgCtx xmirCtx
prog' <- printProgram printCtx prog
printOut _targetFile prog'
where
validateOpts :: IO ()
validateOpts = do
when
(null _inputs)
(throwIO (InvalidCLIArguments "At least one input file must be specified for 'merge' command"))
validateXmirOptions _outputFormat [(_omitListing, "omit-listing"), (_omitComments, "omit-comments")] "Q"
printProgCtx :: XmirContext -> PrintProgramContext
printProgCtx xmirCtx =
PrintProgCtx
_sugarType
_flat
_margin
xmirCtx
False
False
False
(justMeetPopularity Nothing)
(justMeetLength Nothing)
ExGlobal
Nothing
Nothing
Nothing
_outputFormat
CmdMatch OptsMatch{..} -> do
input <- readInput _inputFile
prog <- parseProgram input PHI
if isNothing _pattern
then logDebug "The --pattern is not provided, no substitutions are built"
else do
ptn <- parseExpressionThrows (fromJust _pattern)
condition <- traverse parseConditionThrows _when
substs <- matchProgramWithRule prog (rule ptn condition) (RuleContext buildTerm)
if null substs
then logDebug "Provided pattern was not matched, no substitutions are built"
else putStrLn (P.printSubsts' substs (_sugarType, UNICODE, _flat, defaultMargin))
where
rule :: Expression -> Maybe Y.Condition -> Y.Rule
rule ptn cnd = Y.Rule Nothing Nothing ptn ExGlobal cnd Nothing Nothing
justMeetPopularity :: Maybe Int -> Int
justMeetPopularity = fromMaybe defaultMeetPopularity
justMeetLength :: Maybe Int -> Int
justMeetLength = fromMaybe defaultMeetLength
-- Prepare saveStepFunc
saveStepFunc :: Maybe FilePath -> PrintProgramContext -> SaveStepFunc
saveStepFunc stepsDir ctx@PrintProgCtx{..} = saveStep stepsDir ioToExt (printProgram ctx)
where
ioToExt :: String
ioToExt
| _outputFormat == LATEX = "tex"
| otherwise = show _outputFormat
-- Validate given expressions as valid dispatches
validatedDispatches :: String -> [String] -> IO [Expression]
validatedDispatches opt = traverse (parseExpressionThrows >=> asDispatch)
where
asDispatch :: Expression -> IO Expression
asDispatch expr = asDispatch' expr
where
asDispatch' :: Expression -> IO Expression
asDispatch' ex@ExGlobal = pure ex
asDispatch' disp@(ExDispatch ex _) = asDispatch' ex >> pure disp
asDispatch' _ =
invalidCLIArguments
( printf
"Only dispatch expression started with Ξ¦ (or Q) can be used in --%s, but given: %s"
opt
(P.printExpression' expr P.logPrintConfig)
)
-- Validate LaTeX options
validateLatexOptions :: IOFormat -> [(Bool, String)] -> [(Maybe String, String)] -> [(Maybe Int, String)] -> IO ()
validateLatexOptions LATEX _ _ _ = pure ()
validateLatexOptions _ bools strings ints = do
let (bools', opts) = unzip bools
msg = "The --%s option can stay together with --output=latex only"
callback (maybe', opt) = when (isJust maybe') (invalidCLIArguments (printf msg opt))
validateBoolOpts (zip bools' (map (printf msg) opts))
forM_ strings callback
forM_ ints callback
-- Validate 'must' option
validateMust' :: Must -> IO ()
validateMust' must = for_ (validateMust must) invalidCLIArguments
-- Validate options for output to XMIR
validateXmirOptions :: IOFormat -> [(Bool, String)] -> String -> IO ()
validateXmirOptions XMIR _ focus = when (focus /= "Q") (invalidCLIArguments "Only --focus=Q is allowed to be used with --output=xmir")
validateXmirOptions _ bools _ =
let (bools', opts) = unzip bools
in validateBoolOpts (zip bools' (map (printf "The --%s can be used only with --output=xmir") opts))
validateBoolOpts :: [(Bool, String)] -> IO ()
validateBoolOpts bools = forM_ bools (\(bool, msg) -> when bool (invalidCLIArguments msg))
-- Read input from file or stdin
readInput :: Maybe FilePath -> IO String
readInput inputFile' = case inputFile' of
Just pth -> do
logDebug (printf "Reading from file: '%s'" pth)
readFile =<< ensuredFile pth
Nothing -> do
logDebug "Reading from stdin"
getContents' `catch` (\(e :: SomeException) -> throwIO (CouldNotReadFromStdin (show e)))
-- Parse program from String input depending on input IO format
parseProgram :: String -> IOFormat -> IO Program
parseProgram phi PHI = parseProgramThrows phi
parseProgram xmir XMIR = do
doc <- parseXMIRThrows xmir
xmirToPhi doc
parseProgram _ LATEX = invalidCLIArguments "LaTeX cannot be used as input format"
printRewrittens :: PrintProgramContext -> [Rewritten] -> IO String
printRewrittens ctx@PrintProgCtx{..} rewrittens
| _outputFormat == LATEX && _sequence = rewrittensToLatex rewrittens (LatexContext _sugar _line _margin _nonumber _compress _meetPopularity _meetLength _focus _expression _label _meetPrefix)
| _focus == ExGlobal = mapM (printProgram ctx . fst) rewrittens <&> intercalate "\n"
| otherwise = mapM (\(prog, _) -> locatedExpression _focus prog >>= printExpression ctx) rewrittens <&> intercalate "\n"
printExpression :: PrintProgramContext -> Expression -> IO String
printExpression PrintProgCtx{..} ex = case _outputFormat of
PHI -> pure (P.printExpression' ex (_sugar, UNICODE, _line, _margin))
XMIR -> throwIO CouldNotPrintExpressionInXMIR
LATEX -> pure (expressionToLaTeX ex (LatexContext _sugar _line _margin _nonumber _compress _meetPopularity _meetLength _focus _expression _label _meetPrefix))
-- Convert
-- Convert program to corresponding String format
printProgram :: PrintProgramContext -> Program -> IO String
printProgram PrintProgCtx{..} prog = case _outputFormat of
PHI -> pure (P.printProgram' prog (_sugar, UNICODE, _line, _margin))
XMIR -> programToXMIR prog _xmirCtx <&> printXMIR
LATEX -> pure (programToLaTeX prog (LatexContext _sugar _line _margin _nonumber _compress _meetPopularity _meetLength _focus _expression _label _meetPrefix))
-- Get rules for rewriting depending on provided flags
getRules :: Bool -> Bool -> [FilePath] -> IO [Y.Rule]
getRules normalize shuffle rules = do
ordered <-
if normalize
then do
let rules' = normalizationRules
logDebug (printf "The --normalize option is provided, %d built-it normalization rules are used" (length rules'))
pure rules'
else
if null rules
then do
logDebug "No --rule and no --normalize options are provided, no rules are used"
pure []
else do
logDebug (printf "Using rules from files: [%s]" (intercalate ", " rules))
yamls <- mapM ensuredFile rules
mapM Y.yamlRule yamls
if shuffle
then do
logDebug "The --shuffle option is provided, rules are used in random order"
Misc.shuffle ordered
else pure ordered
-- Output content
printOut :: Maybe FilePath -> String -> IO ()
printOut target content = case target of
Nothing -> do
logDebug "The option '--target' is not specified, printing to console..."
putStrLn content
Just file -> do
logDebug (printf "The option '--target' is specified, printing to '%s'..." file)
writeFile file content
logDebug (printf "The command result was saved in '%s'" file)