Agda
Safe HaskellNone
LanguageHaskell2010

Agda.Interaction.FindFile

Description

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.

Synopsis

Documentation

newtype SourceFile Source #

SourceFiles must exist and be registered in our file dictionary.

Constructors

SourceFile 

Fields

Instances

Instances details
NFData SourceFile Source # 
Instance details

Defined in Agda.TypeChecking.Monad.Base.Types

Methods

rnf :: SourceFile -> () #

Generic SourceFile Source # 
Instance details

Defined in Agda.TypeChecking.Monad.Base.Types

Associated Types

type Rep SourceFile 
Instance details

Defined in Agda.TypeChecking.Monad.Base.Types

type Rep SourceFile = D1 ('MetaData "SourceFile" "Agda.TypeChecking.Monad.Base.Types" "Agda-2.8.0-inplace" 'True) (C1 ('MetaCons "SourceFile" 'PrefixI 'True) (S1 ('MetaSel ('Just "srcFileId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 FileId)))
Show SourceFile Source # 
Instance details

Defined in Agda.TypeChecking.Monad.Base.Types

Eq SourceFile Source # 
Instance details

Defined in Agda.TypeChecking.Monad.Base.Types

Ord SourceFile Source # 
Instance details

Defined in Agda.TypeChecking.Monad.Base.Types

type Rep SourceFile Source # 
Instance details

Defined in Agda.TypeChecking.Monad.Base.Types

type Rep SourceFile = D1 ('MetaData "SourceFile" "Agda.TypeChecking.Monad.Base.Types" "Agda-2.8.0-inplace" 'True) (C1 ('MetaCons "SourceFile" 'PrefixI 'True) (S1 ('MetaSel ('Just "srcFileId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 FileId)))

data InterfaceFile Source #

File must exist.

Instances

Instances details
Pretty InterfaceFile Source # 
Instance details

Defined in Agda.Interaction.FindFile

toIFile :: HasCallStack => SourceFile -> TCM AbsolutePath Source #

Converts an Agda file name to the corresponding interface file name. Note that we do not guarantee that the file exists.

mkInterfaceFile Source #

Arguments

:: AbsolutePath

Path to the candidate interface file

-> IO (Maybe InterfaceFile)

Interface file iff it exists

Makes an interface file from an AbsolutePath candidate. If the file does not exist, then fail by returning Nothing.

data FindError Source #

Errors which can arise when trying to find a source file.

Invariant: All paths are absolute.

Constructors

NotFound [AbsolutePath]

The file was not found. It should have had one of the given file names.

Ambiguous (List2 AbsolutePath)

Several matching files were found.

Instances

Instances details
Show FindError Source # 
Instance details

Defined in Agda.Interaction.FindFile

findErrorToTypeError :: TopLevelModuleName -> FindError -> TypeError Source #

Given the module name which the error applies to this function converts a FindError to a TypeError.

findFile :: TopLevelModuleName -> TCM SourceFile Source #

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 (Either FindError SourceFile) Source #

Tries to find the source file corresponding to a given top-level module name. The returned paths are absolute.

SIDE EFFECT: Updates stModuleToSource.

findFile'_ Source #

A variant of findFile' which manipulates an extra ModuleToSourceId

findFile'' Source #

A variant of findFile' which does not require TCM.

findInterfaceFile' Source #

Arguments

:: HasCallStack 
=> SourceFile

Path to the source file

-> TCM (Maybe InterfaceFile)

Maybe path to the interface file

Finds the interface file corresponding to a given top-level module file. The returned paths are absolute.

Raises Nothing if the interface file cannot be found.

findInterfaceFile :: HasCallStack => TopLevelModuleName -> TCM (Maybe InterfaceFile) Source #

Finds the interface file corresponding to a given top-level module file. 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.

checkModuleName Source #

Arguments

:: TopLevelModuleName

The name of the module.

-> SourceFile

The file from which it was loaded.

-> Maybe TopLevelModuleName

The expected name, coming from an import statement.

-> TCM () 

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.

dropAgdaExtension :: FilePath -> FilePath Source #

Remove an existing Agda file extension from a file path.

hasAgdaExtension :: FilePath -> Bool Source #

Check if a file path has an Agda extension.

stripAgdaExtension :: FilePath -> Maybe FilePath Source #

Remove an Agda file extension from a filepath, if possible.