|
| 1 | +import logging |
| 2 | + |
| 3 | +from lsprotocol import types |
| 4 | + |
| 5 | +import codegen |
| 6 | +from codegen.extensions.lsp.definition import go_to_definition |
| 7 | +from codegen.extensions.lsp.document_symbol import get_document_symbol |
| 8 | +from codegen.extensions.lsp.protocol import CodegenLanguageServerProtocol |
| 9 | +from codegen.extensions.lsp.range import get_range |
| 10 | +from codegen.extensions.lsp.server import CodegenLanguageServer |
| 11 | +from codegen.extensions.lsp.utils import get_path |
| 12 | +from codegen.sdk.codebase.diff_lite import ChangeType, DiffLite |
| 13 | +from codegen.sdk.core.file import SourceFile |
| 14 | + |
| 15 | +version = getattr(codegen, "__version__", "v0.1") |
| 16 | +server = CodegenLanguageServer("codegen", version, protocol_cls=CodegenLanguageServerProtocol) |
| 17 | +logger = logging.getLogger(__name__) |
| 18 | + |
| 19 | + |
| 20 | +@server.feature(types.TEXT_DOCUMENT_DID_OPEN) |
| 21 | +def did_open(server: CodegenLanguageServer, params: types.DidOpenTextDocumentParams) -> None: |
| 22 | + """Handle document open notification.""" |
| 23 | + logger.info(f"Document opened: {params.text_document.uri}") |
| 24 | + # The document is automatically added to the workspace by pygls |
| 25 | + # We can perform any additional processing here if needed |
| 26 | + path = get_path(params.text_document.uri) |
| 27 | + file = server.codebase.get_file(str(path), optional=True) |
| 28 | + if not isinstance(file, SourceFile) and path.suffix in server.codebase.ctx.extensions: |
| 29 | + sync = DiffLite(change_type=ChangeType.Added, path=path) |
| 30 | + server.codebase.ctx.apply_diffs([sync]) |
| 31 | + |
| 32 | + |
| 33 | +@server.feature(types.TEXT_DOCUMENT_DID_CHANGE) |
| 34 | +def did_change(server: CodegenLanguageServer, params: types.DidChangeTextDocumentParams) -> None: |
| 35 | + """Handle document change notification.""" |
| 36 | + logger.info(f"Document changed: {params.text_document.uri}") |
| 37 | + # The document is automatically updated in the workspace by pygls |
| 38 | + # We can perform any additional processing here if needed |
| 39 | + path = get_path(params.text_document.uri) |
| 40 | + sync = DiffLite(change_type=ChangeType.Modified, path=path) |
| 41 | + server.codebase.ctx.apply_diffs([sync]) |
| 42 | + |
| 43 | + |
| 44 | +@server.feature(types.WORKSPACE_TEXT_DOCUMENT_CONTENT) |
| 45 | +def workspace_text_document_content(server: CodegenLanguageServer, params: types.TextDocumentContentParams) -> types.TextDocumentContentResult: |
| 46 | + """Handle workspace text document content notification.""" |
| 47 | + logger.debug(f"Workspace text document content: {params.uri}") |
| 48 | + path = get_path(params.uri) |
| 49 | + if not server.io.file_exists(path): |
| 50 | + logger.warning(f"File does not exist: {path}") |
| 51 | + return types.TextDocumentContentResult( |
| 52 | + text="", |
| 53 | + ) |
| 54 | + content = server.io.read_text(path) |
| 55 | + return types.TextDocumentContentResult( |
| 56 | + text=content, |
| 57 | + ) |
| 58 | + |
| 59 | + |
| 60 | +@server.feature(types.TEXT_DOCUMENT_DID_CLOSE) |
| 61 | +def did_close(server: CodegenLanguageServer, params: types.DidCloseTextDocumentParams) -> None: |
| 62 | + """Handle document close notification.""" |
| 63 | + logger.info(f"Document closed: {params.text_document.uri}") |
| 64 | + # The document is automatically removed from the workspace by pygls |
| 65 | + # We can perform any additional cleanup here if needed |
| 66 | + |
| 67 | + |
| 68 | +@server.feature( |
| 69 | + types.TEXT_DOCUMENT_RENAME, |
| 70 | +) |
| 71 | +def rename(server: CodegenLanguageServer, params: types.RenameParams) -> types.RenameResult: |
| 72 | + symbol = server.get_symbol(params.text_document.uri, params.position) |
| 73 | + if symbol is None: |
| 74 | + logger.warning(f"No symbol found at {params.text_document.uri}:{params.position}") |
| 75 | + return |
| 76 | + logger.info(f"Renaming symbol {symbol.name} to {params.new_name}") |
| 77 | + symbol.rename(params.new_name) |
| 78 | + server.codebase.commit() |
| 79 | + return types.WorkspaceEdit( |
| 80 | + document_changes=server.io.get_document_changes(), |
| 81 | + ) |
| 82 | + |
| 83 | + |
| 84 | +@server.feature( |
| 85 | + types.TEXT_DOCUMENT_DOCUMENT_SYMBOL, |
| 86 | +) |
| 87 | +def document_symbol(server: CodegenLanguageServer, params: types.DocumentSymbolParams) -> types.DocumentSymbolResult: |
| 88 | + file = server.get_file(params.text_document.uri) |
| 89 | + symbols = [] |
| 90 | + for symbol in file.symbols: |
| 91 | + symbols.append(get_document_symbol(symbol)) |
| 92 | + return symbols |
| 93 | + |
| 94 | + |
| 95 | +@server.feature( |
| 96 | + types.TEXT_DOCUMENT_DEFINITION, |
| 97 | +) |
| 98 | +def definition(server: CodegenLanguageServer, params: types.DefinitionParams): |
| 99 | + node = server.get_node_under_cursor(params.text_document.uri, params.position) |
| 100 | + resolved = go_to_definition(node, params.text_document.uri, params.position) |
| 101 | + return types.Location( |
| 102 | + uri=resolved.file.path.as_uri(), |
| 103 | + range=get_range(resolved), |
| 104 | + ) |
| 105 | + |
| 106 | + |
| 107 | +if __name__ == "__main__": |
| 108 | + logging.basicConfig(level=logging.INFO) |
| 109 | + server.start_io() |
0 commit comments