haskell-language-server-2.10.0.0: plugins/hls-notes-plugin/src/Ide/Plugin/Notes.hs
module Ide.Plugin.Notes (descriptor, Log) where
import Control.Lens ((^.))
import Control.Monad.Except (throwError)
import Control.Monad.IO.Class (liftIO)
import qualified Data.Array as A
import Data.HashMap.Strict (HashMap)
import qualified Data.HashMap.Strict as HM
import qualified Data.HashSet as HS
import Data.Maybe (catMaybes, listToMaybe,
mapMaybe)
import Data.Text (Text, intercalate)
import qualified Data.Text as T
import qualified Data.Text.Utf16.Rope.Mixed as Rope
import Development.IDE hiding (line)
import Development.IDE.Core.PluginUtils (runActionE, useE)
import Development.IDE.Core.Shake (toKnownFiles)
import qualified Development.IDE.Core.Shake as Shake
import Development.IDE.Graph.Classes (Hashable, NFData)
import GHC.Generics (Generic)
import Ide.Plugin.Error (PluginError (..))
import Ide.Types
import qualified Language.LSP.Protocol.Lens as L
import Language.LSP.Protocol.Message (Method (Method_TextDocumentDefinition),
SMethod (SMethod_TextDocumentDefinition))
import Language.LSP.Protocol.Types
import Text.Regex.TDFA (Regex, caseSensitive,
defaultCompOpt,
defaultExecOpt,
makeRegexOpts, matchAllText)
data Log
= LogShake Shake.Log
| LogNotesFound NormalizedFilePath [(Text, Position)]
deriving Show
data GetNotesInFile = MkGetNotesInFile
deriving (Show, Generic, Eq, Ord)
deriving anyclass (Hashable, NFData)
type instance RuleResult GetNotesInFile = HM.HashMap Text Position
data GetNotes = MkGetNotes
deriving (Show, Generic, Eq, Ord)
deriving anyclass (Hashable, NFData)
type instance RuleResult GetNotes = HashMap Text (NormalizedFilePath, Position)
instance Pretty Log where
pretty = \case
LogShake l -> pretty l
LogNotesFound file notes ->
"Found notes in " <> pretty (show file) <> ": ["
<> pretty (intercalate ", " (fmap (\(s, p) -> "\"" <> s <> "\" at " <> T.pack (show p)) notes)) <> "]"
{-
The first time the user requests a jump-to-definition on a note reference, the
project is indexed and searched for all note definitions. Their location and
title is then saved in the HLS database to be retrieved for all future requests.
-}
descriptor :: Recorder (WithPriority Log) -> PluginId -> PluginDescriptor IdeState
descriptor recorder plId = (defaultPluginDescriptor plId "Provides goto definition support for GHC-style notes")
{ Ide.Types.pluginRules = findNotesRules recorder
, Ide.Types.pluginHandlers = mkPluginHandler SMethod_TextDocumentDefinition jumpToNote
}
findNotesRules :: Recorder (WithPriority Log) -> Rules ()
findNotesRules recorder = do
defineNoDiagnostics (cmapWithPrio LogShake recorder) $ \MkGetNotesInFile nfp -> do
findNotesInFile nfp recorder
defineNoDiagnostics (cmapWithPrio LogShake recorder) $ \MkGetNotes _ -> do
targets <- toKnownFiles <$> useNoFile_ GetKnownTargets
definedNotes <- catMaybes <$> mapM (\nfp -> fmap (HM.map (nfp,)) <$> use MkGetNotesInFile nfp) (HS.toList targets)
pure $ Just $ HM.unions definedNotes
jumpToNote :: PluginMethodHandler IdeState Method_TextDocumentDefinition
jumpToNote state _ param
| Just nfp <- uriToNormalizedFilePath uriOrig
= do
let Position l c = param ^. L.position
contents <-
err "Error getting file contents"
=<< liftIO (runAction "notes.getfileContents" state (getFileContents nfp))
line <- err "Line not found in file" (listToMaybe $ Rope.lines $ fst
(Rope.splitAtLine 1 $ snd $ Rope.splitAtLine (fromIntegral l) contents))
let noteOpt = listToMaybe $ mapMaybe (atPos $ fromIntegral c) $ matchAllText noteRefRegex line
case noteOpt of
Nothing -> pure (InR (InR Null))
Just note -> do
notes <- runActionE "notes.definedNotes" state $ useE MkGetNotes nfp
(noteFp, pos) <- err ("Note definition (a comment of the form `{- Note [" <> note <> "]\\n~~~ ... -}`) not found") (HM.lookup note notes)
pure $ InL (Definition (InL
(Location (fromNormalizedUri $ normalizedFilePathToUri noteFp) (Range pos pos))
))
where
uriOrig = toNormalizedUri $ param ^. (L.textDocument . L.uri)
err s = maybe (throwError $ PluginInternalError s) pure
atPos c arr = case arr A.! 0 of
-- We check if the line we are currently at contains a note
-- reference. However, we need to know if the cursor is within the
-- match or somewhere else. The second entry of the array contains
-- the title of the note as extracted by the regex.
(_, (c', len)) -> if c' <= c && c <= c' + len
then Just (fst (arr A.! 1)) else Nothing
jumpToNote _ _ _ = throwError $ PluginInternalError "conversion to normalized file path failed"
findNotesInFile :: NormalizedFilePath -> Recorder (WithPriority Log) -> Action (Maybe (HM.HashMap Text Position))
findNotesInFile file recorder = do
-- GetFileContents only returns a value if the file is open in the editor of
-- the user. If not, we need to read it from disk.
contentOpt <- (snd =<<) <$> use GetFileContents file
content <- case contentOpt of
Just x -> pure $ Rope.toText x
Nothing -> liftIO $ readFileUtf8 $ fromNormalizedFilePath file
let matches = (A.! 1) <$> matchAllText noteRegex content
m = toPositions matches content
logWith recorder Debug $ LogNotesFound file (HM.toList m)
pure $ Just m
where
uint = fromIntegral . toInteger
-- the regex library returns the character index of the match. However
-- to return the position from HLS we need it as a (line, character)
-- tuple. To convert between the two we count the newline characters and
-- reset the current character index every time. For every regex match,
-- once we have counted up to their character index, we save the current
-- line and character values instead.
toPositions matches = snd . fst . T.foldl' (\case
(([], m), _) -> const (([], m), (0, 0, 0))
((x@(name, (char, _)):xs, m), (n, nc, c)) -> \char' ->
let !c' = c + 1
(!n', !nc') = if char' == '\n' then (n + 1, c') else (n, nc)
p@(!_, !_) = if char == c then
(xs, HM.insert name (Position (uint n') (uint (char - nc'))) m)
else (x:xs, m)
in (p, (n', nc', c'))
) ((matches, HM.empty), (0, 0, 0))
noteRefRegex, noteRegex :: Regex
(noteRefRegex, noteRegex) =
( mkReg ("note \\[(.+)\\]" :: String)
, mkReg ("note \\[([[:print:]]+)\\][[:blank:]]*\r?\n[[:blank:]]*(--)?[[:blank:]]*~~~" :: String)
)
where
mkReg = makeRegexOpts (defaultCompOpt { caseSensitive = False }) defaultExecOpt