ligo/tools/lsp/squirrel/app/Main.hs

250 lines
7.9 KiB
Haskell
Raw Normal View History

2020-04-30 14:39:51 +04:00
2020-05-19 21:26:57 +04:00
import Control.Concurrent
import Control.Concurrent.STM
import Control.Exception as E
import Control.Lens
import Control.Monad
2020-06-02 15:47:56 +04:00
import Data.Default
2020-05-19 21:26:57 +04:00
import qualified Data.Text as Text
import Data.Text (Text)
import Data.Foldable
2020-05-19 21:26:57 +04:00
import Data.String.Interpolate (i)
2020-04-30 14:39:51 +04:00
2020-05-19 21:26:57 +04:00
import qualified Language.Haskell.LSP.Control as CTRL
import qualified Language.Haskell.LSP.Core as Core
import Language.Haskell.LSP.Diagnostics
import Language.Haskell.LSP.Messages as Msg
import qualified Language.Haskell.LSP.Types as J
import qualified Language.Haskell.LSP.Types.Lens as J
import qualified Language.Haskell.LSP.Utility as U
2020-07-07 17:41:14 +04:00
import Language.Haskell.LSP.VFS
2020-05-19 21:26:57 +04:00
import System.Exit
import qualified System.Log as L
import Parser
2020-07-07 17:41:14 +04:00
import ParseTree
2020-05-19 21:26:57 +04:00
import Range
import Product
2020-06-02 15:47:56 +04:00
import AST hiding (def)
import qualified AST.Find as Find
2020-06-04 13:48:04 +04:00
import Error
2020-04-30 14:39:51 +04:00
main :: IO ()
main = do
-- for_ [1.. 100] \_ -> do
-- print =<< runParser contract example
2020-05-19 21:26:57 +04:00
errCode <- mainLoop
exit errCode
mainLoop :: IO Int
mainLoop = do
chan <- atomically newTChan :: IO (TChan FromClientMessage)
let
callbacks = Core.InitializeCallbacks
{ Core.onInitialConfiguration = const $ Right ()
, Core.onConfigurationChange = const $ Right ()
, Core.onStartup = \lFuns -> do
_ <- forkIO $ eventLoop lFuns chan
return Nothing
}
Core.setupLogger (Just "log.txt") [] L.INFO
2020-06-02 15:47:56 +04:00
CTRL.run callbacks (lspHandlers chan) lspOptions (Just "log.txt")
2020-05-19 21:26:57 +04:00
`catches`
[ Handler \(e :: SomeException) -> do
print e
return 1
]
2020-06-02 15:47:56 +04:00
syncOptions :: J.TextDocumentSyncOptions
syncOptions = J.TextDocumentSyncOptions
{ J._openClose = Just True
, J._change = Just J.TdSyncIncremental
, J._willSave = Just False
, J._willSaveWaitUntil = Just False
, J._save = Just $ J.SaveOptions $ Just False
}
lspOptions :: Core.Options
2020-06-02 16:27:19 +04:00
lspOptions = def
{ Core.textDocumentSync = Just syncOptions
, Core.executeCommandCommands = Just ["lsp-hello-command"]
}
2020-06-02 15:47:56 +04:00
lspHandlers :: TChan FromClientMessage -> Core.Handlers
2020-06-02 16:27:19 +04:00
lspHandlers rin = def
{ Core.initializedHandler = Just $ passHandler rin NotInitialized
, Core.definitionHandler = Just $ passHandler rin ReqDefinition
, Core.referencesHandler = Just $ passHandler rin ReqFindReferences
2020-06-02 16:27:19 +04:00
, Core.didOpenTextDocumentNotificationHandler = Just $ passHandler rin NotDidOpenTextDocument
, Core.didSaveTextDocumentNotificationHandler = Just $ passHandler rin NotDidSaveTextDocument
, Core.didChangeTextDocumentNotificationHandler = Just $ passHandler rin NotDidChangeTextDocument
, Core.didCloseTextDocumentNotificationHandler = Just $ passHandler rin NotDidCloseTextDocument
, Core.cancelNotificationHandler = Just $ passHandler rin NotCancelRequestFromClient
, Core.responseHandler = Just $ responseHandlerCb rin
, Core.codeActionHandler = Just $ passHandler rin ReqCodeAction
, Core.executeCommandHandler = Just $ passHandler rin ReqExecuteCommand
}
2020-06-02 15:47:56 +04:00
passHandler :: TChan FromClientMessage -> (a -> FromClientMessage) -> Core.Handler a
passHandler rin c notification = do
atomically $ writeTChan rin (c notification)
responseHandlerCb :: TChan FromClientMessage -> Core.Handler J.BareResponseMessage
responseHandlerCb _rin resp = do
U.logs $ "******** got ResponseMessage, ignoring:" ++ show resp
2020-05-19 21:26:57 +04:00
send :: Core.LspFuncs () -> FromServerMessage -> IO ()
send = Core.sendFunc
nextID :: Core.LspFuncs () -> IO J.LspId
nextID = Core.getNextReqId
eventLoop :: Core.LspFuncs () -> TChan FromClientMessage -> IO ()
eventLoop funs chan = do
forever do
msg <- atomically (readTChan chan)
U.logs [i|Client: ${msg}|]
case msg of
RspFromClient {} -> do
return ()
NotInitialized _notif -> do
let
registration = J.Registration
"lsp-haskell-registered"
J.WorkspaceExecuteCommand
Nothing
registrations = J.RegistrationParams $ J.List [registration]
rid <- nextID funs
send funs
$ ReqRegisterCapability
$ fmServerRegisterCapabilityRequest rid registrations
NotDidOpenTextDocument notif -> do
let
doc = notif
^.J.params
.J.textDocument
.J.uri
ver = notif
^.J.params
.J.textDocument
.J.version
collectErrors funs
(J.toNormalizedUri doc)
(J.uriToFilePath doc)
(Just ver)
NotDidChangeTextDocument notif -> do
2020-05-19 21:26:57 +04:00
let
doc = notif
^.J.params
.J.textDocument
.J.uri
collectErrors funs
(J.toNormalizedUri doc)
(J.uriToFilePath doc)
(Just 0)
ReqDefinition req -> do
let uri = req^.J.params.J.textDocument.J.uri
let pos = posToRange $ req^.J.params.J.position
tree <- loadByURI uri
case Find.definitionOf pos tree of
Just defPos -> do
respondWith req RspDefinition $ J.MultiLoc [J.Location uri $ rangeToLoc defPos]
Nothing -> do
respondWith req RspDefinition $ J.MultiLoc []
ReqFindReferences req -> do
let uri = req^.J.params.J.textDocument.J.uri
let pos = posToRange $ req^.J.params.J.position
2020-07-07 17:41:14 +04:00
tree <- loadFromVFS funs uri
case Find.referencesOf pos tree of
Just refs -> do
let locations = J.Location uri . rangeToLoc <$> refs
respondWith req RspFindReferences $ J.List locations
Nothing -> do
respondWith req RspFindReferences $ J.List []
2020-06-09 15:56:11 +04:00
2020-06-04 17:16:04 +04:00
_ -> U.logs "unknown msg"
where
respondWith
:: J.RequestMessage J.ClientMethod req rsp
-> (J.ResponseMessage rsp -> FromServerMessage)
-> rsp
-> IO ()
respondWith req wrap rsp = Core.sendFunc funs $ wrap $ Core.makeResponseMessage req rsp
2020-06-02 15:47:56 +04:00
posToRange :: J.Position -> Range
posToRange (J.Position l c) = Range (l + 1, c + 1, 0) (l + 1, c + 1, 0) ""
rangeToLoc :: Range -> J.Range
rangeToLoc (Range (a, b, _) (c, d, _) _) =
J.Range
(J.Position (a - 1) (b - 1))
(J.Position (c - 1) (d - 1))
2020-07-07 17:41:14 +04:00
loadFromVFS
:: Core.LspFuncs ()
-> J.Uri
2020-07-08 20:31:42 +04:00
-> IO (Pascal (Product [[ScopedDecl], Maybe Category, Range, [Text]]))
2020-07-07 17:41:14 +04:00
loadFromVFS funs uri = do
Just vf <- Core.getVirtualFileFunc funs $ J.toNormalizedUri uri
let txt = virtualFileText vf
let Just fin = J.uriToFilePath uri
(tree, _) <- runParser contract (Text fin txt)
return $ addLocalScopes tree
2020-07-08 20:31:42 +04:00
loadByURI
:: J.Uri
-> IO (Pascal (Product [[ScopedDecl], Maybe Category, Range, [Text]]))
loadByURI uri = do
case J.uriToFilePath uri of
Just fin -> do
2020-07-07 17:41:14 +04:00
(tree, _) <- runParser contract (Path fin)
2020-06-17 22:05:44 +04:00
return $ addLocalScopes tree
2020-05-19 21:26:57 +04:00
collectErrors
:: Core.LspFuncs ()
-> J.NormalizedUri
-> Maybe FilePath
-> Maybe Int
-> IO ()
collectErrors funs uri path version = do
case path of
Just fin -> do
2020-07-07 17:41:14 +04:00
(tree, errs) <- runParser contract (Path fin)
2020-05-19 21:26:57 +04:00
Core.publishDiagnosticsFunc funs 100 uri version
$ partitionBySource
$ map errorToDiag (errs <> errors tree)
2020-06-04 17:16:04 +04:00
Nothing -> error "TODO: implement URI file loading"
errorToDiag :: Error ASTInfo -> J.Diagnostic
errorToDiag (Expected what _ (getRange -> (Range (sl, sc, _) (el, ec, _) _))) =
2020-05-19 21:26:57 +04:00
J.Diagnostic
(J.Range begin end)
(Just J.DsError)
Nothing
(Just "ligo-lsp")
2020-06-01 10:28:47 +04:00
(Text.pack [i|Expected #{what}|])
2020-05-19 21:26:57 +04:00
(Just $ J.List[])
where
begin = J.Position (sl - 1) (sc - 1)
end = J.Position (el - 1) (ec - 1)
exit :: Int -> IO ()
exit 0 = exitSuccess
exit n = exitWith (ExitFailure n)