This is a new incarnation of the sourcer project, the old code is still available on the
legacy
branch.
Sourcer aims to provide:
lsp_server
erlang_ls
sourcer
lsp_server
The generic language server uses a TCP connection to talk LSP with clients. It encodes/decodes the messages and delegates the actual work to a language specific server, using cancelable worker processes. It also supports making requests to the client.
erlang_ls
This is the "real" server, connecting the generic and specific parts and an adapter from LSP to the 'sourcer' data format (see below) and back.
Configuration file contains property list.
Currently we only support these keys:
indent
- controls indentation parameters.Example:
{indent, [{indentW, 2}]}.
sourcer
The actual work is done by this application. It is meant to be LSP-agnostic so that it can be used in other contexts and tools.
An own parser (largely based on the legacy 'sourcer' code, but simpler) processes the source code and produces a ctags-like database containing information about all interesting code entities. The database should be distributed, in the sense that libraries should be able to provide the data about their own code (produced at build time).
Query facilities are provided so that the information in the database is presented in a way that the LSP expects.