Checks whether r
contains hoverPos
, taking into account EOF according to text
.
Equations
- tree.foldSnaps init f = Lean.Server.ServerTask.mapCheap (fun (x : α × Bool) => x.fst) (Lean.Language.SnapshotTree.foldSnaps.traverseTree f init tree)
Finds the first (in pre-order) snapshot task in tree
that contains hoverPos
(including whitespace) and which contains an info tree, and then returns that info tree,
waiting for any snapshot tasks on the way.
Subtrees that do not contain the position are skipped without forcing their tasks.
If the caller of this function needs the correct snapshot when the cursor is on whitespace,
then this function is likely the wrong one to call, as it simply yields the first snapshot
that contains hoverPos
in its whitespace, which is not necessarily the correct one
(e.g. it may be indentation-sensitive).
Equations
- One or more equations did not get rendered due to their size.
- code : JsonRpc.ErrorCode
- message : String
Instances For
Equations
- Lean.Server.instInhabitedRequestError = { default := { code := default, message := default } }
Equations
- Lean.Server.RequestError.fileChanged = { code := Lean.JsonRpc.ErrorCode.contentModified, message := "File changed." }
Equations
- Lean.Server.RequestError.methodNotFound method = { code := Lean.JsonRpc.ErrorCode.methodNotFound, message := toString "No request handler found for '" ++ toString method ++ toString "'" }
Equations
- Lean.Server.RequestError.invalidParams message = { code := Lean.JsonRpc.ErrorCode.invalidParams, message := message }
Equations
- Lean.Server.RequestError.internalError message = { code := Lean.JsonRpc.ErrorCode.internalError, message := message }
Equations
- Lean.Server.RequestError.requestCancelled = { code := Lean.JsonRpc.ErrorCode.requestCancelled, message := "" }
Equations
- Lean.Server.RequestError.ofException e = do let __do_lift ← liftM e.toMessageData.toString pure (Lean.Server.RequestError.internalError __do_lift)
Equations
- Lean.Server.RequestError.toLspResponseError id e = { id := id, code := e.code, message := e.message }
Equations
- One or more equations did not get rendered due to their size.
- rpcSessions : RBMap UInt64 (IO.Ref FileWorker.RpcSession) compare
- srcSearchPathTask : ServerTask SearchPath
- hLog : IO.FS.Stream
- initParams : Lsp.InitializeParams
- cancelTk : RequestCancellationToken
Equations
- rc.srcSearchPath = rc.srcSearchPathTask.get
Equations
Workers execute request handlers in this monad.
Equations
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- x.runInIO ctx = EStateM.adaptExcept (fun (x : Lean.Server.RequestError) => IO.userError x.message) (ReaderT.run x ctx)
Equations
- Lean.Server.RequestM.readDoc = do let rc ← readThe Lean.Server.RequestContext pure rc.doc
Equations
- t.asTask = do let rc ← readThe Lean.Server.RequestContext liftM (Lean.Server.ServerTask.EIO.asTask (ReaderT.run t rc))
Equations
- t.pureTask = do let r ← ReaderT.run t pure (Lean.Server.ServerTask.pure (Except.ok r))
Equations
- Lean.Server.RequestM.mapTaskCheap t f = do let rc ← readThe Lean.Server.RequestContext liftM (Lean.Server.ServerTask.EIO.mapTaskCheap (fun (x : α) => f x rc) t)
Equations
- Lean.Server.RequestM.mapTaskCostly t f = do let rc ← readThe Lean.Server.RequestContext liftM (Lean.Server.ServerTask.EIO.mapTaskCostly (fun (x : α) => f x rc) t)
Equations
- Lean.Server.RequestM.bindTaskCheap t f = do let rc ← readThe Lean.Server.RequestContext liftM (Lean.Server.ServerTask.EIO.bindTaskCheap t fun (x : α) => f x rc)
Equations
- Lean.Server.RequestM.bindTaskCostly t f = do let rc ← readThe Lean.Server.RequestContext liftM (Lean.Server.ServerTask.EIO.bindTaskCostly t fun (x : α) => f x rc)
Equations
- One or more equations did not get rendered due to their size.
Equations
- notFoundX.waitFindSnapAux x (Except.error e) = throw (Lean.Server.RequestError.ofIoError e)
- notFoundX.waitFindSnapAux x (Except.ok none) = notFoundX
- notFoundX.waitFindSnapAux x (Except.ok (some snap)) = x snap
Create a task which waits for the first snapshot matching p
, handles various errors,
and if a matching snapshot was found executes x
with it. If not found, the task executes
notFoundX
.
Equations
- Lean.Server.RequestM.withWaitFindSnap doc p notFoundX x = Lean.Server.RequestM.mapTaskCostly (IO.AsyncList.waitFind? p doc.cmdSnaps) (notFoundX.waitFindSnapAux x)
See withWaitFindSnap
.
Equations
- Lean.Server.RequestM.bindWaitFindSnap doc p notFoundX x = Lean.Server.RequestM.bindTaskCostly (IO.AsyncList.waitFind? p doc.cmdSnaps) (notFoundX.waitFindSnapAux x)
Create a task which waits for the snapshot containing lspPos
and executes f
with it.
If no such snapshot exists, the request fails with an error.
Equations
- One or more equations did not get rendered due to their size.
Finds the first CommandParsedSnapshot
containing hoverPos
, asynchronously.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Finds the command syntax and info tree of the first snapshot task containing pos
, asynchronously.
The info tree may be from a nested snapshot, such as a single tactic.
See SnapshotTree.findInfoTreeAtPos
for details on how the search is done.
Equations
- One or more equations did not get rendered due to their size.
Finds the info tree of the first snapshot task containing pos
, asynchronously.
The info tree may be from a nested snapshot, such as a single tactic.
See SnapshotTree.findInfoTreeAtPos
for details on how the search is done.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
The global request handlers table #
We maintain a global map of LSP request handlers. This allows user code such as plugins to register its own handlers, for example to support ITP functionality such as goal state visualization.
For details of how to register one, see registerLspRequestHandler
.
- fileSource : Json → Except RequestError Lsp.DocumentUri
- handle : Json → RequestM (RequestTask Json)
NB: This method may only be called in initialize
blocks (user or builtin).
A registration consists of:
- a type of JSON-parsable request data
paramType
- a
FileSource
instance for it so the system knows where to route requests - a type of JSON-serializable response data
respType
- an actual
handler
which runs in theRequestM
monad and is expected to produce an asynchronousRequestTask
which does any waiting/computation
A handler task may be cancelled at any time, so it should check the cancellation token when possible to handle this cooperatively. Any exceptions thrown in a request handler will be reported to the client as LSP error responses.
Equations
- One or more equations did not get rendered due to their size.
Equations
- Lean.Server.lookupLspRequestHandler method = do let __do_lift ← ST.Ref.get Lean.Server.requestHandlers pure (__do_lift.find? method)
NB: This method may only be called in initialize
blocks (user or builtin).
Register another handler to invoke after the last one registered for a method. At least one handler for the method must have already been registered to perform chaining.
For more details on the registration of a handler, see registerLspRequestHandler
.
Equations
- One or more equations did not get rendered due to their size.
- complete : RequestHandlerCompleteness
- partial
(refreshMethod : String)
(refreshIntervalMs : Nat)
: RequestHandlerCompleteness
A request handler is partial if the LSP spec states that the request method implemented by the handler should be responded to with the full state of the document, but our implementation of the handler only returns a partial result for the document (e.g. only for the processed regions of the document, to reduce latency after a
didChange
). A request handler can only be partial if LSP also specifies a correspondingrefresh
server-to-client request, e.g.workspace/inlayHint/refresh
fortextDocument/inlayHint
. This is necessary because we use therefresh
request to prompt the client to re-request the data for a partial request if we returned a partial response for that request in the past, so that the client eventually converges to a complete set of information for the full document.
- fileSource : Json → Except RequestError Lsp.DocumentUri
handle
with explicit state management for chaining request handlers. This function is pure w.r.t.lastTaskMutex
andstateRef
, but notRequestM
.- handle : Json → RequestM (RequestTask (LspResponse Json))
- pureOnDidChange : Lsp.DidChangeTextDocumentParams → StateT Dynamic RequestM Unit
onDidChange
with explicit state management for chaining request handlers. This function is pure w.r.t.lastTaskMutex
andstateRef
, but notRequestM
. - onDidChange : Lsp.DidChangeTextDocumentParams → RequestM Unit
- lastTaskMutex : Std.Mutex (ServerTask Unit)
- initState : Dynamic
stateRef
is synchronized inregisterStatefulLspRequestHandler
by usinglastTaskMutex
to ensure that stateful request tasks for the same handler are executed sequentially (in order of arrival).- completeness : RequestHandlerCompleteness
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- Lean.Server.isStatefulLspRequestMethod method = do let __do_lift ← ST.Ref.get Lean.Server.statefulRequestHandlers pure (__do_lift.contains method)
Equations
- Lean.Server.lookupStatefulLspRequestHandler method = do let __do_lift ← ST.Ref.get Lean.Server.statefulRequestHandlers pure (__do_lift.find? method)
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.