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

Implement library/preinstall (Without Dependencies Yet) #1972

Merged
merged 18 commits into from
Aug 27, 2021

Conversation

radeusgd
Copy link
Member

@radeusgd radeusgd commented Aug 25, 2021

Pull Request Description

Closes #1890

Implements the library/preinstall endpoint, but for now does not try to download dependencies of the preinstalled library, only just the library itself.

The endpoint itself is a few lines of code plus some tests, the biggest part of this PR is infrastructure for sharing lock management between the runtime and the language-server managing it. The issue is that file locks cannot be used to synchronize threads of a single JVM instance (as they are of the same process), but the runtime and language-server are separated by the classpath isolation, so they cannot simply share a common LockManager instance. Instead, the runtime creates a LockManager which sends requests to a primary instance managed by the language-server using the runtime server connection. For this to work, the runtime server connection had to be made bi-directional, in the sense that not only can the language-server sent requests to the runtime, but also the runtime can send requests to the language-server now.

Important Notes

Checklist

Please include the following checklist in your PR:

  • The documentation has been updated if necessary.
  • All code conforms to the Scala, Java, and Rust style guides.
  • All documentation and configuration conforms to the markdown and YAML style guides.
  • All code has been tested where possible.

@radeusgd radeusgd self-assigned this Aug 25, 2021
@radeusgd radeusgd added Category: Backend -tooling Category: tooling p-high Should be completed in the next sprint labels Aug 25, 2021
@radeusgd radeusgd requested review from 4e6, kustosz and iamrecursion and removed request for 4e6 and kustosz August 25, 2021 19:49
Copy link
Contributor

@4e6 4e6 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good. Just a comment about the runtime API.

@radeusgd radeusgd force-pushed the wip/rw/library-preinstall-without-deps branch from 382b813 to aa33eb2 Compare August 26, 2021 11:28
@radeusgd radeusgd marked this pull request as ready for review August 26, 2021 21:23
@radeusgd radeusgd merged commit 826e28a into main Aug 27, 2021
@radeusgd radeusgd deleted the wip/rw/library-preinstall-without-deps branch August 27, 2021 12:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
-tooling Category: tooling p-high Should be completed in the next sprint
Projects
None yet
Development

Successfully merging this pull request may close these issues.

LockManager Synchronizing Runtime With Language Server
4 participants