Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add Document and Workspace symbol example server #470

Merged
merged 1 commit into from
Jun 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/source/examples/symbols.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Document & Workspace Symbols
============================

.. example-server:: symbols.py
:start-at: import logging
7 changes: 7 additions & 0 deletions docs/source/getting-started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,13 @@ Each of the following example servers are focused on implementing a particular s

:octicon:`pencil`

.. grid-item-card:: Symbols
:link: /examples/symbols
:link-type: doc
:text-align: center

:octicon:`code`

These servers are dedicated to demonstrating features of *pygls* itself

.. grid:: 1 2 2 4
Expand Down
247 changes: 247 additions & 0 deletions examples/servers/symbols.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,247 @@
############################################################################
# Copyright(c) Open Law Library. All rights reserved. #
# See ThirdPartyNotices.txt in the project root for additional notices. #
# #
# Licensed under the Apache License, Version 2.0 (the "License") #
# you may not use this file except in compliance with the License. #
# You may obtain a copy of the License at #
# #
# http: // www.apache.org/licenses/LICENSE-2.0 #
# #
# Unless required by applicable law or agreed to in writing, software #
# distributed under the License is distributed on an "AS IS" BASIS, #
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
# See the License for the specific language governing permissions and #
# limitations under the License. #
############################################################################
"""This implements the :lsp:`textDocument/documentSymbol` and :lsp:`workspace/symbol`
requests from the LSP specification.
In VSCode, the ``textDocument/documentSymbol`` request features like the
`Outline View <https://code.visualstudio.com/docs/getstarted/tips-and-tricks#_outline-view>`__
or `Goto Symbol in File <https://code.visualstudio.com/docs/getstarted/tips-and-tricks#_go-to-symbol-in-file>`__.
While `Goto Symbol in Workspace <https://code.visualstudio.com/docs/getstarted/tips-and-tricks#_go-to-symbol-in-workspace>`__
is powered by the ``workspace/symbol`` request.
The results the server should return for the two requests is similar, but not identical.
The key difference is that ``textDocument/documentSymbol`` can provide a symbol hierarchy
whereas ``workspace/symbol`` is a flat list.
This server implements these requests for the pretend programming language featured in
the ``code.txt`` in the example workspace in the *pygls* repository.
.. literalinclude:: ../../../examples/servers/workspace/code.txt
:language: none
"""
import logging
import re

from lsprotocol import types

from pygls.server import LanguageServer
from pygls.workspace import TextDocument

ARGUMENT = re.compile(r"(?P<name>\w+)(: ?(?P<type>\w+))?")
FUNCTION = re.compile(r"^fn ([a-z]\w+)\(([^)]*?)\)")
TYPE = re.compile(r"^type ([A-Z]\w+)\(([^)]*?)\)")


class SymbolsLanguageServer(LanguageServer):
"""Language server demonstrating the document and workspace symbol methods in the LSP
specification."""

def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.index = {}

def parse(self, doc: TextDocument):
typedefs = {}
funcs = {}

for linum, line in enumerate(doc.lines):
if (match := TYPE.match(line)) is not None:
self.parse_typedef(typedefs, linum, line, match)

elif (match := FUNCTION.match(line)) is not None:
self.parse_function(funcs, linum, line, match)

self.index[doc.uri] = {
"types": typedefs,
"functions": funcs,
}
logging.info("Index: %s", self.index)

def parse_function(self, funcs, linum, line, match):
"""Parse a function definition on the given line."""
name = match.group(1)
args = match.group(2)

start_char = match.start() + line.find(name)
args_offset = match.start() + line.find(args)

funcs[name] = dict(
range_=types.Range(
start=types.Position(line=linum, character=start_char),
end=types.Position(line=linum, character=start_char + len(name)),
),
args=self.parse_args(args, linum, args_offset),
)

def parse_typedef(self, typedefs, linum, line, match):
"""Parse a type definition on the given line."""
name = match.group(1)
fields = match.group(2)

start_char = match.start() + line.find(name)
field_offset = match.start() + line.find(fields)

typedefs[name] = dict(
range_=types.Range(
start=types.Position(line=linum, character=start_char),
end=types.Position(line=linum, character=start_char + len(name)),
),
fields=self.parse_args(fields, linum, field_offset),
)

def parse_args(self, text: str, linum: int, offset: int):
"""Parse arguments for a type or function definition"""
arguments = {}

for match in ARGUMENT.finditer(text):
name = match.group("name")
start_char = offset + text.find(name)

arguments[name] = types.Range(
start=types.Position(line=linum, character=start_char),
end=types.Position(line=linum, character=start_char + len(name)),
)

return arguments


server = SymbolsLanguageServer("symbols-server", "v1")


@server.feature(types.TEXT_DOCUMENT_DID_OPEN)
def did_open(ls: SymbolsLanguageServer, params: types.DidOpenTextDocumentParams):
"""Parse each document when it is opened"""
doc = ls.workspace.get_text_document(params.text_document.uri)
ls.parse(doc)


@server.feature(types.TEXT_DOCUMENT_DID_CHANGE)
def did_change(ls: SymbolsLanguageServer, params: types.DidOpenTextDocumentParams):
"""Parse each document when it is changed"""
doc = ls.workspace.get_text_document(params.text_document.uri)
ls.parse(doc)


@server.feature(types.TEXT_DOCUMENT_DOCUMENT_SYMBOL)
def document_symbol(ls: SymbolsLanguageServer, params: types.DocumentSymbolParams):
"""Return all the symbols defined in the given document."""
if (index := ls.index.get(params.text_document.uri)) is None:
return None

results = []
for name, info in index.get("types", {}).items():
range_ = info["range_"]
type_symbol = types.DocumentSymbol(
name=name,
kind=types.SymbolKind.Class,
range=types.Range(
start=types.Position(line=range_.start.line, character=0),
end=types.Position(line=range_.start.line + 1, character=0),
),
selection_range=range_,
children=[],
)

for name, range_ in info["fields"].items():
field_symbol = types.DocumentSymbol(
name=name,
kind=types.SymbolKind.Field,
range=range_,
selection_range=range_,
)
type_symbol.children.append(field_symbol)

results.append(type_symbol)

for name, info in index.get("functions", {}).items():
range_ = info["range_"]
func_symbol = types.DocumentSymbol(
name=name,
kind=types.SymbolKind.Function,
range=types.Range(
start=types.Position(line=range_.start.line, character=0),
end=types.Position(line=range_.start.line + 1, character=0),
),
selection_range=range_,
children=[],
)

for name, range_ in info["args"].items():
arg_symbol = types.DocumentSymbol(
name=name,
kind=types.SymbolKind.Variable,
range=range_,
selection_range=range_,
)
func_symbol.children.append(arg_symbol)

results.append(func_symbol)

return results


@server.feature(types.WORKSPACE_SYMBOL)
def workspace_symbol(ls: SymbolsLanguageServer, params: types.WorkspaceSymbolParams):
"""Return all the symbols defined in the given document."""
query = params.query
results = []

for uri, symbols in ls.index.items():
for type_name, info in symbols.get("types", {}).items():
if params.query == "" or type_name.startswith(query):
func_symbol = types.WorkspaceSymbol(
name=type_name,
kind=types.SymbolKind.Class,
location=types.Location(uri=uri, range=info["range_"]),
)
results.append(func_symbol)

for field_name, range_ in info["fields"].items():
if params.query == "" or field_name.startswith(query):
field_symbol = types.WorkspaceSymbol(
name=field_name,
kind=types.SymbolKind.Field,
location=types.Location(uri=uri, range=range_),
container_name=type_name,
)
results.append(field_symbol)

for func_name, info in symbols.get("functions", {}).items():
if params.query == "" or func_name.startswith(query):
func_symbol = types.WorkspaceSymbol(
name=func_name,
kind=types.SymbolKind.Function,
location=types.Location(uri=uri, range=info["range_"]),
)
results.append(func_symbol)

for arg_name, range_ in info["args"].items():
if params.query == "" or arg_name.startswith(query):
arg_symbol = types.WorkspaceSymbol(
name=arg_name,
kind=types.SymbolKind.Variable,
location=types.Location(uri=uri, range=range_),
container_name=func_name,
)
results.append(arg_symbol)

return results


if __name__ == "__main__":
logging.basicConfig(level=logging.INFO, format="%(message)s")
server.start_io()
Loading
Loading