Agda-2.5.2: src/full/Agda/Interaction/FindFile.hs
{-# LANGUAGE CPP #-}
------------------------------------------------------------------------
-- | Functions which map between module names and file names.
--
-- Note that file name lookups are cached in the 'TCState'. The code
-- assumes that no Agda source files are added or removed from the
-- include directories while the code is being type checked.
------------------------------------------------------------------------
module Agda.Interaction.FindFile
( toIFile
, FindError(..), findErrorToTypeError
, findFile, findFile', findFile''
, findInterfaceFile
, checkModuleName
, moduleName', moduleName
, rootNameModule
, replaceModuleExtension
) where
import Prelude hiding (null)
import Control.Applicative hiding (empty)
import Control.Monad
import Control.Monad.Trans
import Data.List hiding (null)
import Data.Maybe (catMaybes)
import qualified Data.Map as Map
import System.FilePath
import Agda.Syntax.Common
import Agda.Syntax.Concrete
import Agda.Syntax.Parser
import Agda.Syntax.Parser.Literate (literateExts, literateExtsShortList)
import Agda.Syntax.Position
import Agda.TypeChecking.Monad.Base
import Agda.TypeChecking.Monad.Trace
import Agda.TypeChecking.Monad.Benchmark (billTo)
import qualified Agda.TypeChecking.Monad.Benchmark as Bench
import {-# SOURCE #-} Agda.TypeChecking.Monad.Options (getIncludeDirs)
import Agda.Utils.Except
import Agda.Utils.FileName
import Agda.Utils.Lens
import Agda.Utils.Null
#include "undefined.h"
import Agda.Utils.Impossible
-- | Converts an Agda file name to the corresponding interface file
-- name.
toIFile :: AbsolutePath -> AbsolutePath
toIFile = replaceModuleExtension ".agdai"
replaceModuleExtension :: String -> AbsolutePath -> AbsolutePath
replaceModuleExtension ext@('.':_) = mkAbsolute . (++ ext) . dropAgdaExtension . filePath
replaceModuleExtension ext = replaceModuleExtension ('.':ext)
-- | Errors which can arise when trying to find a source file.
--
-- Invariant: All paths are absolute.
data FindError
= NotFound [AbsolutePath]
-- ^ The file was not found. It should have had one of the given
-- file names.
| Ambiguous [AbsolutePath]
-- ^ Several matching files were found.
--
-- Invariant: The list of matching files has at least two
-- elements.
-- | Given the module name which the error applies to this function
-- converts a 'FindError' to a 'TypeError'.
findErrorToTypeError :: TopLevelModuleName -> FindError -> TypeError
findErrorToTypeError m (NotFound files) = FileNotFound m files
findErrorToTypeError m (Ambiguous files) =
AmbiguousTopLevelModuleName m files
-- | Finds the source file corresponding to a given top-level module
-- name. The returned paths are absolute.
--
-- Raises an error if the file cannot be found.
findFile :: TopLevelModuleName -> TCM AbsolutePath
findFile m = do
mf <- findFile' m
case mf of
Left err -> typeError $ findErrorToTypeError m err
Right f -> return f
-- | Tries to find the source file corresponding to a given top-level
-- module name. The returned paths are absolute.
--
-- SIDE EFFECT: Updates 'stModuleToSource'.
findFile' :: TopLevelModuleName -> TCM (Either FindError AbsolutePath)
findFile' m = do
dirs <- getIncludeDirs
modFile <- use stModuleToSource
(r, modFile) <- liftIO $ findFile'' dirs m modFile
stModuleToSource .= modFile
return r
-- | A variant of 'findFile'' which does not require 'TCM'.
findFile''
:: [AbsolutePath]
-- ^ Include paths.
-> TopLevelModuleName
-> ModuleToSource
-- ^ Cached invocations of 'findFile'''. An updated copy is returned.
-> IO (Either FindError AbsolutePath, ModuleToSource)
findFile'' dirs m modFile =
case Map.lookup m modFile of
Just f -> return (Right f, modFile)
Nothing -> do
files <- fileList sourceFileExts
filesShortList <- fileList sourceFileExtsShortList
existingFiles <-
liftIO $ filterM (doesFileExistCaseSensitive . filePath) files
return $ case nub existingFiles of
[] -> (Left (NotFound filesShortList), modFile)
[file] -> (Right file, Map.insert m file modFile)
files -> (Left (Ambiguous existingFiles), modFile)
where
fileList exts = mapM absolute
[ filePath dir </> file
| dir <- dirs
, file <- map (moduleNameToFileName m) exts
]
-- | Finds the interface file corresponding to a given top-level
-- module name. The returned paths are absolute.
--
-- Raises an error if the source file cannot be found, and returns
-- 'Nothing' if the source file can be found but not the interface
-- file.
findInterfaceFile :: TopLevelModuleName -> TCM (Maybe AbsolutePath)
findInterfaceFile m = do
f <- toIFile <$> findFile m
ex <- liftIO $ doesFileExistCaseSensitive $ filePath f
return $ if ex then Just f else Nothing
-- | Ensures that the module name matches the file name. The file
-- corresponding to the module name (according to the include path)
-- has to be the same as the given file name.
checkModuleName
:: TopLevelModuleName
-- ^ The name of the module.
-> AbsolutePath
-- ^ The file from which it was loaded.
-> Maybe TopLevelModuleName
-- ^ The expected name, coming from an import statement.
-> TCM ()
checkModuleName name file mexpected = do
findFile' name >>= \case
Left (NotFound files) -> typeError $
case mexpected of
Nothing -> ModuleNameDoesntMatchFileName name files
Just expected -> ModuleNameUnexpected name expected
Left (Ambiguous files) -> typeError $
AmbiguousTopLevelModuleName name files
Right file' -> do
file <- liftIO $ absolute (filePath file)
if file === file' then
return ()
else
typeError $ ModuleDefinedInOtherFile name file file'
-- | Computes the module name of the top-level module in the given file.
--
-- Warning! Parses the whole file to get the module name out.
-- Use wisely!
--
-- No side effects! Only in 'TCM' to raise errors.
moduleName' :: AbsolutePath -> TCM (Ranged TopLevelModuleName)
moduleName' file = billTo [Bench.ModuleName] $ do
q <- runPM (parseFile' moduleParser file)
let name = topLevelModuleName q
case name of
TopLevelModuleName ["_"] -> do
q <- runPM (parse moduleNameParser defaultName)
`catchError` \_ ->
typeError $
GenericError $ "File name " ++ show file ++
" is invalid as it does not correspond to a valid module name."
return $ Ranged (getRange q) $ TopLevelModuleName [defaultName]
_ -> return $ Ranged (getRange q) name
where
defaultName = rootNameModule file
sourceFileExts :: [String]
sourceFileExts = [".agda"] ++ literateExts
sourceFileExtsShortList :: [String]
sourceFileExtsShortList = [".agda"] ++ literateExtsShortList
dropAgdaExtension :: String -> String
dropAgdaExtension s = case catMaybes [ stripExtension ext s
| ext <- sourceFileExts ] of
[name] -> name
_ -> __IMPOSSIBLE__
where
stripExtension :: String -> String -> Maybe String
stripExtension e = fmap reverse . stripPrefix (reverse e) . reverse
rootNameModule :: AbsolutePath -> String
rootNameModule = dropAgdaExtension . snd . splitFileName . filePath
-- | A variant of 'moduleName'' which raises an error if the file name
-- does not match the module name.
--
-- The file name is interpreted relative to the current working
-- directory (unless it is absolute).
moduleName :: AbsolutePath -> TCM TopLevelModuleName
moduleName file = do
Ranged r m <- moduleName' file
-- Andreas, 2016-07-11, issue 2092
-- The error range should be set to the file with the wrong module name
-- not the importing one (which would be the default).
(if null r then id else traceCall (SetRange r)) $
checkModuleName m file Nothing
return m