rhaiscript / lsp

Language server for Rhai.
Apache License 2.0
43 stars 4 forks source link
lsp lsp-server rhai scripting-language vscode vscode-extension vscode-language

Rhai LSP

Experimental Rhai LSP Server and IDE support.

It's incomplete and not recommended for general use yet, everything can be subject to changes.

Requirements

Project Structure

crates/rowan

Rhai syntax and a recursive descent parser based on Rowan.

The high-level syntax (ungrammar) definition is found in crates/rowan/src/ast/rhai.ungram. The parser mimics the structure and produces a fitting CST.

crates/lsp

The LSP server implementation backed up by lsp-async-stub.

It can be compiled to WASM only right now, but native binaries with stdio or TCP communication can be easily implemented.

crates/sourcegen

Crate for source generation.

Currently only some node types and helper macros are generated from the ungrammar definition. Later the AST will also be generated from it.

editors/vscode

VS Code extension that uses the LSP.

If all the tools are available from the Requirements, it can be built and installed with task ide:vscode:dev.

Tests

Run all tests with cargo test.

Parser tests are based on scripts found in testdata, and also in the upstream rhai submodule.

Benchmarks

Run benchmarks with cargo bench.

Current parser results:

bench

We can only go up from here. (although it is 3 times faster than a similar LALR generated parser)

Profiling

To profile the parser, run cargo bench --bench parse -- --profile-time 5.

The flame graph outputs can be found in target/criterion/profile afterwards.

Contributing

The documentation is still pretty much WIP (as everything else). All contributions are welcome!

Development Process

Currently the following steps are used to develop the project via vscode:

Building the Rhai CLI

cargo install --path crates/rhai-cli --debug

This will build and install the rhai executable globally that the vscode extension can also use.

Debugging the Language Server

The debugging process can consist of either strategically placed tracing::info statements that are visible in the VSCode debug console under Rhai LSP, or attaching a debugger to the running rhai process via LLDB VSCode. Both approaches deemed sufficient so far.

Building the VSCode Extension

The vscode extension relies on rhai-lsp compiled to WebAssembly via rhai-wasm. There are several related js libraries that are built on top of it.

Requirements
Build Steps

You'll need to build all local js libraries in dependency order:

First the core js library with common utilities:

# from js/core

yarn install --force
yarn build

Then the LSP wrapper, it will also build the WASM library:

# from js/lsp

yarn install --force
yarn build

Finally the extension itself:

# from editors/vscode

yarn install --force
vsce package --no-yarn

Then you can use vscode to install the packaged extension via the UI or the following command:

code --install-extension rhai-0.0.0.vsix --force

After this the Rhai extension will be available in vscode.

If you modify any of the packages, unfortunately you will have to build all dependent packages manually, e.g. if you modify js/core, you will have to repeat all the above steps.

Unless you wish to develop any of the javascript parts (the libraries or the extension itself), instead of rebuilding the extension, it is enough to install the Rhai CLI, and setting "rhai.executable.bundled": false in vscode. This way the extension will use the language server from the rhai executable which is easier to debug, rebuild and develop in general.