Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 3.22 KB

architecture.md

File metadata and controls

33 lines (20 loc) · 3.22 KB

Architecture

Project Structure

Lexical is designed to keep your application isolated from lexical's code. Because of this, lexical is structured as an umbrella app, with the following sub-apps:

  • common: Contains all code common to the other applications.
  • proto: Used by protocol to generate the Elixir representation of LSP data structures.
  • protocol: Code related to speaking the language server protocol.
  • remote_control: The application that's injected into a project's code, which gives lexical an API to do things in the context of your app.
  • server The language server itself.

Lexical is an umbrella app so we can control how many dependencies the remote control app has. By separating lexical into sub-applications, each is built as a separate archive, and we can pick and choose which of these applications (and their dependencies) are injected into the project's VM, thus reducing how much contamination the project sees. If lexical was a standard application, adding dependencies to lexical would cause those dependencies to appear in the project's VM, which might cause build issues, version conflicts in mix or other inconsistencies.

Since the remote_control app only depends on common, path_glob and elixir_sense, only those applications pollute the project's vm. Keeping remote_control's dependencies to a minimum is a design goal of this architecture.

Language Server

The language server (the server app) is the entry point to Lexical. When started by the start_lexical.sh command, it sets up a transport that reads JsonRPC from standard input and writes responses to standard output.

When a message is received, it is parsed into either a LSP Request or a LSP Notification and then it's handed to the language server to process.

The only messages the lexical server process handles directly are those related to the lifecycle of the language server itself:

  • Synchronizing document states.
  • Processing LSP configuration changes.
  • Performing initialization and shutdown.

All other messages are delegated to a Provider Handler. This delegation is accomplished by the server process adding the request to the provider queue. The provider queue asks the Lexical.Server.Provider.Handlers.for_request/1 function which handler is configured to handle the request, creates a task for the handler and starts it.

A Provider Handler is just a module that defines a function of arity 2 that takes the request to handle and a %Lexical.Server.Configuration{}. These functions can reply to the request, ignore it, or do some other action.