1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
------------------------------------------------------------------------------ --- Definition of the parameters which must be defined to --- implement a REPL for a given Curry compiler. --- --- These parameters might be read at startup time (e.g., from --- a JSON file) or statically defined in some module. --- --- @author Michael Hanus --- @version August 2022 ------------------------------------------------------------------------------ module REPL.Compiler where --- Data type for the specification of a Curry compiler invoked by the REPL. --- It contains the following components: --- --- * The name `ccName` should be a sequence of alphanumeric characters and --- is used for naming resource files, main modules etc. --- * The version `ccVersion` of the compiler is used by the front end --- and determines auxiliary directory names. --- * The banner `ccBanner` is shown at start up (if verbosity is not quiet). --- * `ccHome` is the home directory of the compiler. --- This directory should contain a file `<ccName>rc.default` --- with the template for a resource configuration file. --- This file is copied into the user's home directory (if it does not exist) --- or updated (when the variables in the template have been changed). --- * `ccFrontend` is the executable of the Curry front end. --- * `ccExec` is the executable of the Curry compiler. --- * `ccLibPath` is the path (possibly several directies) containing --- the base libraries of the Curry compiler. This path will be appended --- to an existing load path (specified by the envrionment variable --- `CURRYPATH`). --- * `ccTypedFC` should be set to `Nothing` if the (re)load command should --- compile the main program. Otherwise, the main program is only parsed --- with the front end where `Just True` indicates that the front end --- should produce Typed FlatCurry files instead of FlatCurry files --- (in case of `Just False`). --- * If `ccCurryPath` is `True`, then the actual load path is passed --- by the environment variable `CURRYPATH` to the compiler, --- otherwise it is passed by a sequence of options of the form `-iDIR`. --- * `ccVerbOpt` maps the actual verbosity to the compiler option to pass the --- verbosity to the compiler command. --- * `ccParseOpt` maps the actual parser options to the compiler option --- to pass further parser options. --- * `ccCmplOpt` maps the module name to the compiler option --- to compile a module without creating an executable. --- * `ccExecOpt` maps the module name to the compiler option --- to compile a module and create an executable having the same --- name as the module. --- * `ccCleanCmd` maps the module name to the system command which --- removes the module and all generated intermediate files. --- * `ccOpts` is the list of additional options supported by the compiler. data CCDescription = CCDescription { ccName :: String -- the name of the compiler , ccVersion :: (Int,Int,Int) -- major/minor/revision version , ccBanner :: String -- the banner shown for the compiler , ccMainOpts :: [(String,String)]-- a description (option/explanation) of -- further options to be listed with the -- `--help` options of the REPL , ccHome :: String -- home directory of the compiler , ccEmail :: String -- contact email (shown at startup) , ccFrontend :: String -- the executable of the Curry front end , ccExec :: String -- the executable of the compiler , ccLibPath :: String -- the path of the standard libraries , ccTypedFC :: Maybe Bool -- should the parser read typed FlatCurry? , ccCurryPath :: Bool -- use CURRYPATH instead of '-i' for imports , ccVerbOpt :: String -> String -- option to pass verbosity , ccParseOpt :: String -> String -- option to pass parser options , ccCmplOpt :: String -> String -- option to compile only , ccExecOpt :: String -> String -- option to create an executable , ccCleanCmd :: String -> String -- command to clean module and aux. files , ccFreeMode :: FreeMode -- Information on how to show bindings for free variables , ccOpts :: [CCOption] -- list of options for the compiler } data FreeMode = LegacyFreeMode | CommandLineFreeMode ([(String, Int)] -> String) isLegacyFreeMode :: FreeMode -> Bool isLegacyFreeMode fm = case fm of LegacyFreeMode -> True _ -> False --- The specification of an option implemented by a Curry compiler. --- It consists a short and long description (used in help messages) --- and a list of selections, where each selection is an option --- implementation containing a tag. --- All tags of an option are exclusive, i.e., at most one of them --- can be set. data CCOption = CCOption String String [CCOptionImpl] --- Maps a compiler option into the pair of their short and long description. showCompilerOptionDescr :: CCOption -> (String,String) showCompilerOptionDescr (CCOption s1 s2 _) = (s1, s2) --- Data type to specify the implementation of a compiler option. --- A constant option `ConstOpt` consists of a tag (shown in the REPL) --- and the conrete option passed to the Curry compiler when the tag is set. --- An argument option `ArgOpt` consists of a tag (shown in the REPL), --- an argument provided when the option is set, and a mapping from the --- argument to the concrete option passed to the Curry compiler (which --- is `Nothing` if the argument is not valid). data CCOptionImpl = ConstOpt String String | ArgOpt String String (String -> Maybe String) --- The tag of a specific compiler option. tagOfCompilerOption :: CCOptionImpl -> String tagOfCompilerOption (ConstOpt t _) = t tagOfCompilerOption (ArgOpt t _ _) = t --- The tags and all alternative tags of a specific compiler option --- where the complete list of options is provided as the first argument. tagsOfCompilerOption :: [CCOption] -> CCOptionImpl -> [String] tagsOfCompilerOption copts opt = concatMap (\ (CCOption _ _ opts) -> map tagOfCompilerOption opts) (filter (\ (CCOption _ _ opts) -> opttag `elem` map tagOfCompilerOption opts) copts) where opttag = tagOfCompilerOption opt --- Shows a specific compiler option in user-readable form. showCompilerOption :: CCOptionImpl -> String showCompilerOption (ConstOpt o _) = o showCompilerOption (ArgOpt o a _) = o ++ '=' : a --- Maps a specific compiler option into the option passed --- to the Curry compiler. mapCompilerOption :: CCOptionImpl -> String mapCompilerOption (ConstOpt _ co) = co mapCompilerOption (ArgOpt _ a fo) = maybe "" id (fo a) --- Replaces a compiler option by a compiler option (given as the second --- argument) if their tags belong to the same compiler option. --- The list of all compiler options a given as the first argument. replaceCompilerOption :: [CCOption] -> CCOptionImpl -> CCOptionImpl -> CCOptionImpl replaceCompilerOption copts newopt oldopt = if tagOfCompilerOption newopt `elem` tagsOfCompilerOption copts oldopt then newopt else oldopt ------------------------------------------------------------------------------ |