packages feed

elm-make-0.1: src/CrawlPackage.hs

{-# LANGUAGE FlexibleContexts #-}
module CrawlPackage where

import Control.Arrow (second)
import Control.Monad.Error (MonadError, MonadIO, liftIO, throwError)
import qualified Data.Map as Map
import qualified Data.Maybe as Maybe
import System.Directory (doesFileExist, getCurrentDirectory, setCurrentDirectory)
import System.FilePath ((</>), (<.>))

import qualified Elm.Compiler as Compiler
import qualified Elm.Compiler.Module as Module
import qualified Elm.Package.Description as Desc
import qualified Elm.Package.Name as Pkg
import qualified Elm.Package.Paths as Path
import qualified Elm.Package.Solution as Solution
import qualified Elm.Package.Version as V
import qualified TheMasterPlan as TMP
import TheMasterPlan ( PackageSummary(..), PackageData(..) )


-- STATE and ENVIRONMENT

data Env = Env
    { sourceDirs :: [FilePath]
    , availableForeignModules :: Map.Map Module.Name [(Pkg.Name, V.Version)]
    }


initEnv
    :: (MonadIO m, MonadError String m)
    => FilePath
    -> Desc.Description
    -> Solution.Solution
    -> m Env
initEnv root desc solution =
  do  availableForeignModules <- readAvailableForeignModules desc solution
      let sourceDirs = map (root </>) (Desc.sourceDirs desc)
      return (Env sourceDirs availableForeignModules)


-- GENERIC CRAWLER

dfsFromFiles
    :: (MonadIO m, MonadError String m)
    => FilePath
    -> Solution.Solution
    -> Desc.Description
    -> [FilePath]
    -> m ([Module.Name], PackageSummary)

dfsFromFiles root solution desc filePaths =
  do  env <- initEnv root desc solution
  
      let pkgName = Desc.name desc
      info <- mapM (readPackageData pkgName Nothing) filePaths
      let names = map fst info
      let unvisited = concatMap (snd . snd) info
      let pkgData = Map.fromList (map (second fst) info)
      let initialSummary = PackageSummary pkgData Map.empty Map.empty

      summary <-
          dfs (Desc.natives desc) pkgName unvisited env initialSummary

      return (names, summary)


dfsFromExposedModules
    :: (MonadIO m, MonadError String m)
    => FilePath
    -> Solution.Solution
    -> Desc.Description
    -> m PackageSummary

dfsFromExposedModules root solution desc =
  do  env <- initEnv root desc solution
      let unvisited = addParent Nothing (Desc.exposed desc)
      let summary = PackageSummary Map.empty Map.empty Map.empty
      dfs (Desc.natives desc) (Desc.name desc) unvisited env summary



-- DEPTH FIRST SEARCH

dfs :: (MonadIO m, MonadError String m)
    => Bool
    -> Pkg.Name
    -> [(Module.Name, Maybe Module.Name)]
    -> Env
    -> PackageSummary
    -> m PackageSummary

dfs _allowNatives _pkgName [] _env summary =
    return summary

dfs allowNatives pkgName ((name,_) : unvisited) env summary
    | Map.member name (packageData summary) =
        dfs allowNatives pkgName unvisited env summary

dfs allowNatives pkgName ((name,maybeParent) : unvisited) env summary =
  do  filePaths <- find allowNatives name (sourceDirs env)
      case (filePaths, Map.lookup name (availableForeignModules env)) of
        ([Elm filePath], Nothing) ->
            do  (name, (pkgData, newUnvisited)) <-
                    readPackageData pkgName (Just name) filePath

                dfs allowNatives pkgName (newUnvisited ++ unvisited) env $ summary {
                    packageData = Map.insert name pkgData (packageData summary)
                }

        ([JS filePath], Nothing) ->
            dfs allowNatives pkgName unvisited env $ summary {
                packageNatives = Map.insert name filePath (packageNatives summary)
            }

        ([], Just [pkg]) ->
            dfs allowNatives pkgName unvisited env $ summary {
                packageForeignDependencies =
                    Map.insert name pkg (packageForeignDependencies summary)
            }

        ([], Nothing) ->
            throwError (errorNotFound name maybeParent)

        (_, maybePkgs) ->
            throwError (errorTooMany name maybeParent filePaths maybePkgs)


-- FIND LOCAL FILE PATH

data CodePath = Elm FilePath | JS FilePath

find :: (MonadIO m) => Bool -> Module.Name -> [FilePath] -> m [CodePath]
find allowNatives moduleName sourceDirs =
    findHelp allowNatives [] moduleName sourceDirs


findHelp
    :: (MonadIO m)
    => Bool
    -> [CodePath]
    -> Module.Name
    -> [FilePath]
    -> m [CodePath]

findHelp _allowNatives locations _moduleName [] =
  return locations

findHelp allowNatives locations moduleName (dir:srcDirs) =
  do  locations' <- addElmPath locations
      updatedLocations <-
          if allowNatives then addJsPath locations' else return locations'
      findHelp allowNatives updatedLocations moduleName srcDirs
  where
    consIf bool x xs =
        if bool then x:xs else xs

    addElmPath locs =
      do  let elmPath = dir </> Module.nameToPath moduleName <.> "elm"
          elmExists <- liftIO (doesFileExist elmPath)
          return (consIf elmExists (Elm elmPath) locs)

    addJsPath locs =
      do  let jsPath = dir </> Module.nameToPath moduleName <.> "js"
          jsExists <-          
              case moduleName of
                Module.Name ("Native" : _) -> liftIO (doesFileExist jsPath)
                _ -> return False

          return (consIf jsExists (JS jsPath) locs)



-- READ and VALIDATE PACKAGE DATA for a file

readPackageData
    :: (MonadIO m, MonadError String m)
    => Pkg.Name
    -> Maybe Module.Name
    -> FilePath
    -> m (Module.Name, (PackageData, [(Module.Name, Maybe Module.Name)]))
readPackageData pkgName maybeName filePath =
  do  source <- liftIO (readFile filePath)
      (name, rawDeps) <- Compiler.parseDependencies source
      checkName filePath name maybeName

      let deps =
            if pkgName == TMP.core
              then rawDeps
              else Module.defaultImports ++ rawDeps

      return (name, (PackageData filePath deps, addParent (Just name) deps))


checkName
    :: (MonadError String m)
    => FilePath -> Module.Name -> Maybe Module.Name -> m ()
checkName path nameFromSource maybeName =
    case maybeName of
      Nothing -> return ()
      Just nameFromPath
        | nameFromSource == nameFromPath -> return ()
        | otherwise ->
            throwError (errorNameMismatch path nameFromPath nameFromSource)


addParent :: Maybe Module.Name -> [Module.Name] -> [(Module.Name, Maybe Module.Name)]
addParent maybeParent names =
    map (\name -> (name, maybeParent)) names


-- FOREIGN MODULES -- which ones are available, who exposes them?

readAvailableForeignModules
    :: (MonadIO m, MonadError String m)
    => Desc.Description
    -> Solution.Solution
    -> m (Map.Map Module.Name [(Pkg.Name, V.Version)])
readAvailableForeignModules desc solution =
  do  visiblePackages <- allVisible desc solution
      rawLocations <- mapM exposedModules visiblePackages
      return (Map.unionsWith (++) rawLocations)


allVisible
    :: (MonadError String m)
    => Desc.Description
    -> Solution.Solution
    -> m [(Pkg.Name, V.Version)]
allVisible desc solution =
    mapM getVersion visible
  where
    visible = map fst (Desc.dependencies desc)
    getVersion name =
        case Map.lookup name solution of
          Just version -> return (name, version)
          Nothing ->
            throwError $
            unlines
            [ "your " ++ Path.description ++ " file says you depend on package " ++ Pkg.toString name ++ ","
            , "but it looks like it is not properly installed. Try running 'elm-package install'."
            ]


exposedModules
    :: (MonadIO m, MonadError String m)
    => (Pkg.Name, V.Version)
    -> m (Map.Map Module.Name [(Pkg.Name, V.Version)])
exposedModules packageID@(pkgName, version) =
    within (Path.package pkgName version) $ do
        description <- Desc.read Path.description
        let exposed = Desc.exposed description
        return (foldr insert Map.empty exposed)
  where
    insert moduleName dict =
        Map.insert moduleName [packageID] dict


within :: (MonadIO m) => FilePath -> m a -> m a
within directory command =
    do  root <- liftIO getCurrentDirectory
        liftIO (setCurrentDirectory directory)
        result <- command
        liftIO (setCurrentDirectory root)
        return result


-- ERROR MESSAGES

errorNotFound :: Module.Name -> Maybe Module.Name -> String
errorNotFound name maybeParent =
    unlines
    [ "Error when searching for modules" ++ context ++ ":"
    , "    Could not find module '" ++ Module.nameToString name ++ "'"
    , ""
    , "Potential problems could be:"
    , "  * Misspelled the module name"
    , "  * Need to add a source directory or new dependency to " ++ Path.description
    ]
  where
    context =
        case maybeParent of
          Nothing -> " exposed by " ++ Path.description
          Just parent -> " imported by module '" ++ Module.nameToString parent ++ "'"


errorTooMany :: Module.Name -> Maybe Module.Name -> [CodePath] -> Maybe [(Pkg.Name,V.Version)] -> String
errorTooMany name maybeParent filePaths maybePkgs =
    "Error when searching for modules" ++ context ++ ".\n" ++
    "Found multiple modules named '" ++ Module.nameToString name ++ "'\n" ++
    "Modules with that name were found in the following locations:\n\n" ++
    concatMap (\str -> "    " ++ str ++ "\n") (paths ++ packages)
  where
    context =
        case maybeParent of
          Nothing -> " exposed by " ++ Path.description
          Just parent -> " imported by module '" ++ Module.nameToString parent ++ "'"

    packages =
        map ("package " ++) (Maybe.maybe [] (map (Pkg.toString . fst)) maybePkgs)

    paths =
        map ("directory " ++) (map extract filePaths)

    extract codePath =
        case codePath of
          Elm path -> path
          JS path -> path


errorNameMismatch :: FilePath -> Module.Name -> Module.Name -> String
errorNameMismatch path nameFromPath nameFromSource =
    unlines
    [ "The module name is messed up for " ++ path
    , "    According to the file's name it should be " ++ Module.nameToString nameFromPath
    , "    According to the source code it should be " ++ Module.nameToString nameFromSource
    , "Which is it?"
    ]